/* Event Font -------------------------*/
/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Candal&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* Setting of Landing page colors and Font */

:root {
    --mainThemeColor: #314c68;
  	--mainThemeColor-rgb:243,101,49;
    --mainThemeColor2: #b24a51;
    --eventFontColor: #ffffff;
    --overlayHeadingTextColor: #f7f7f7;
    --overlayHeadingTextColor2: rgb(255 255 255 / 10%);
    --eventFontSize: 16px;
    --smalltext: 14px;
    --eventFont: "Montserrat", sans-serif;
    --eventHeadingFont:  "Candal", sans-serif;
    --h1FontSize: 120px;
    --h2FontSize: 42px;
    --h3FontSize: 45px;
    --h4FontSize: 22px;
    --h5FontSize: 20px;
    --h6FontSize: 18px;
    --white: #fff;
    --black: #000;
    --yellow: #ffd600;
    --lightGrey: #ddd;
  	--darkgrey: #333;
    --halfWidth: 50%;
    --quarterWidth: 75%;
    --faqBgColor: #fafafa;
    --footerBg: #212121;
    --curved: 6px;
    --rounded: 50px;
    --btnFontSize: 18px;
  --bodyBg:#17161A;
  
}
/*--------------Dark Theme setting-------------------*/
body.dark{
  --eventFontColor: #ffffff;
  /* --bodyBg:#17161A; */
  --bodyBg:#fff;
  --lightBg:#ffffff07;
  --lightText:#ffffff70;
}
/*--------------Light Theme setting-------------------*/
body.light{
  --eventFontColor: #333;
  --bodyBg:#fff;
  --lightBg:#00000007;
  --lightText:#00000070;
}

/* General-------------------------- */
html,
a,
* {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

body {
    font-family: var(--eventFont);
    font-size: var(--eventFontSize);
    color: var(--eventFontColor);
    line-height: 26px;
  background:#fff !important;
}

body.curr-lang-en.dark,body.curr-lang-en{
    background:#fff !important;
}

body > .header-content > .container {
    max-width: 100%;
    width: 100%;
    padding: 0px;
}

body > .header-content {
    position: absolute;
    top: 0px;
    z-index: 1;
    width: 100%;
}

.simple-section {
    padding: 60px 0px;
  position:relative;
}
section#speakers .modal-body {
    color: #000;
}

p{margin-bottom:20px !important;}

.coloredBg {
    background: var(--mainThemeColor);
  background-image: -webkit-linear-gradient(left, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%);
    background-image: linear-gradient(to right, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%);
}

.whiteText * {
    color:var(--eventFontColor);
}

.whiteText a:hover,
.whiteText a:focus {
    color: var(--yellow);
}

h4.form-heading {
    font-size: 0px;
}
body > p:first-of-type {
    margin: 0px !important;
}



/* Buttons------------------------------ */
.vfairsBtn {
    padding: 12px 35px;
    margin: 30px 5px;
    display: inline-block;
    font-size: var(--btnFontSize);
    font-weight: 600;
    border: 2px solid transparent;
}

.coloredShadow {
    box-shadow: 0px 15px 25px 0px rgba(var(--mainThemeColor-rgb),0.3);
}

.grayShadow {
    box-shadow: 0px 15px 25px 0px rgba(67, 67, 67, 0.2);
}

.curved {
    border-radius: var(--curved);
}

.rounded {
    border-radius: var(--rounded);
}

.btnWhite {
    background: var(--mainThemeColor);
    color: var(--white);
    border: 2px solid transparent;
}
.header-content .btnWhite {
    padding: 8px 30px;
}
.btnWhite.secondary {
    background: none;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 3px;
}
.btnWhite.secondary:hover, .btnWhite.secondary:focus {
    background: var(--mainThemeColor);
    color: var(--white);
    border-color: transparent;
}

.btnBlack {
    background: var(--black);
    color: var(--white);
}

.btnColored {
    /* background-image: -webkit-linear-gradient(left, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%);
    background-image: linear-gradient(to right, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%); */
    color: var(--white) !important;
    background: var(--mainThemeColor);
}

.btnColored:hover,
.btnColored:focus {
    /* background-image: -webkit-linear-gradient(left, var(--mainThemeColor2) 0%, var(--mainThemeColor) 100%);
    background-image: linear-gradient(to right, var(--mainThemeColor2) 0%, var(--mainThemeColor) 100%); */
    color: var(--white) !important;
    text-decoration: none !important;
    background: var(--mainThemeColor2);
}

.btnWhite:hover,
.btnWhite:focus,
.btnBlack:hover,
.btnBlack:focus {
    background: var(--white);
    color: var(--mainThemeColor);
    text-decoration: none !important;
    border-color: var(--mainThemeColor);
}

/* Headings--------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
.popup h1 {
    font-family: var(--eventHeadingFont);
    font-weight: 800;
}

h1, .popup h1 {
    font-size: var(--h1FontSize);
    font-weight: 800;
    line-height: 1.0em;
}

h2 {
    font-size: var(--h2FontSize);
}

h3 {
    font-size: var(--h3FontSize) !important;
  font-weight:900;
}

h4 {
    font-size: var(--h4FontSize);
}

h5 {
    font-size: var(--h5FontSize);
}

h6 {
    font-size: var(--h6FontSize);
}

p{
  font-family: var(--eventFont);
}

/*Our Speakers-------------------------*/
svg.wave {
    position: absolute;
    right: 0px;
    opacity: 0.05;
    top: 0px;
}
.speakerImg img {
    border-radius: 38px;
    max-width: 255px;
    box-shadow: -10px -10px 0px var(--mainThemeColor2);
}
.speakerCompany {
    display: block;
}
.speakerDesignation {
    font-size: 13px;
}

.speakerTitle {
    font-size: 30px;
    font-weight: 700;
    margin-top: 19px;
}

.speakerImg {
    text-align: center;
    margin-top: 30px;
}
.speakerImg a:hover img, .speakerImg a:focus img {
    box-shadow: 0px 0px 0px;
}
/*Our Speakers end---------------------*/


/*Attractions ---------------------------*/
.attractionsRow .main-title::before {
    content: "";
}
.attractionsRow {
  display: flex;
  background: var(--mainThemeColor2);
}



.time-box img {
  display: none !important;
}


.attentionIcon {
  width: 160px;
  /* background: #27262a00; */
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  border-radius: 100%;
  margin-bottom: 30px;
}
.attentionDetails {
    font-weight: 900;
    font-size: 60px;
    line-height: 1em;
}


.session-location {
    display: none;
}


.attentionDetails span {
  font-weight: 500;
  font-size: 32px;
  display: block;
  color: var(--white);
  /* text-transform: uppercase; */
  /* letter-spacing: 3px; */
  line-height: normal;
  text-align: center;
}
 
.attractionsRow > div {
  display: flex ;
      flex-direction: column;
      justify-content: center;
      border: 1px solid #ffffff25;
      padding: 40px 50px;
      border-right: 0px;
      align-items: center;
}
.attractionsRow > div:first:child {
border-left:0px;
}
/* .attractionsRow > div:first-child ~ div:hover {
    background: var(--mainThemeColor2);
} */
.attractionsRow > div:first-child ~ div:hover .attentionDetails span {
    color: var(--bodyBg);
}

/* .attractionsRow > div:first-child ~ div:hover .attentionIcon {
    background: #26272a70;
} */


/*Attractions end ---------------------------*/
/* Top black bar----------------------- */
.slim-bar {
    position: initial;
    background-color: var(--black);
    color: var(--white);

}

.slim-bar ul>li {
    list-style: none;
    margin: 0px 0px 0px 0px;
    padding: 5px 0px 0px 0px;

}

.slim-bar .row {
    justify-content: end !important;
}

/* Set 0 padding or Margin */
.noPadding {
    padding: 0px !important;
}

.noTopPadding {
    padding-top: 0px !important;
}

.noBottomPadding {
    padding-bottom: 0px !important;
}

.noLeftPadding {
    padding-left: 0px !important;
}

.noRightPadding {
    padding-right: 0px !important;
}

.noMargin {
    margin: 0px !important;
}

.noTopMargin {
    margin-top: 0px !important;
}

.noBottomMargin {
    margin-bottom: 0px !important;
}

.noLeftMargin {
    margin-left: 0px !important;
}

.noRightMargin {
    margin-right: 0px !important;
}

.speaker_img-src img{
    box-shadow: unset !important;
}


/* Main Heading------------------------- */
.main-title {
    text-align: left !important;
    position: relative;
    z-index: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
}
/* .main-title::before {
    content: "...";
    letter-spacing: 1px;
    text-shadow: 0px -11px 0px var(--mainThemeColor);
    font-size: 45px;
    color: var(--mainThemeColor);
    line-height: 31px;
} */
.main-title span {
    display: block;
    color: var(--eventFontColor);
   
}


.main-title .headingOverlayText {
    position: absolute;
    color: var(--overlayHeadingTextColor);
    margin: 0px 0px 0px 0px;
    font-size: 150px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: -9px;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
    width: 100%;
    display: inline;
    text-transform: lowercase;
}




/* Unordered list------------------------------- */
ul {
    list-style: none;
    padding: 0px;
}

ul li {
    margin-bottom: 15px;
}

ul.checklist li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 40px;
   
}

ul.checklist li i {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 25px;
}

/* Event Logo----------------------------------- */
.event-logo img {
    margin: 8px 0px;
    min-width: 150px;
    max-width: 160px;
    width: 100%;
}
.navCol {
    flex-grow: 1;
}

/* Main Navigation------------------------------ */
.header-content > .container > .row > div {
    /* margin: 0px 15px; */
    position: relative;
}
body > .container-parent.header-content {
    position: inherit;
}
.header-content  .rounded {
    font-size: var(--eventFontSize) !important;
    border-radius: var(--rounded) !important;
}
.header-content > .container > .row {
    background: #ffffff20;
    border-radius: var(--rounded);
    margin-top: 15px;
}
.header-content .container .row {
    background: #606262;
    border-radius: var(--rounded);
    margin-top: 15px;
}
.homepage-body .header-content > .container > .row {
  background: #606262;
}

#main-nav a:before, #main-nav a:after {
	content: '';
	position: absolute;	
	transition: inherit;
	z-index: -1;
}

#main-nav a:hover {
    color: var(--white) !important;
    transition-delay: .5s;
    background: var(--mainThemeColor);
}

#main-nav a:hover:before {
	transition-delay: 0s;
}

#main-nav a:hover:after {
	background: var(--mainThemeColor);
	transition-delay: .35s;
}

/* From Top */

.from-top:before, 
.from-top:after {
	left: 0;
	height: 0;
	width: 100%;
}

.from-top:before {
	bottom: 0;	
	border: 1px solid var(--mainThemeColor2);
	border-top: 0;
	border-bottom: 0;
}

.from-top:after {
	top: 0;
	height: 0;
}

.from-top:hover:before,
.from-top:hover:after {
	height: 100%;
}

/* From Left */

.from-left:before, 
.from-left:after {
	top: 0;
	width: 0;
	height: 100%;
}

.from-left:before {
	right: 0;
	border: 1px solid var(--mainThemeColor);
	border-left: 0;
	border-right: 0;	
}

.from-left:after {
	left: 0;
}

.from-left:hover:before,
.from-left:hover:after {
	width: 100%;
}

/* From Right */

.from-right:before, 
.from-right:after {
	top: 0;
	width: 0;
	height: 100%;
}

.from-right:before {
	left: 0;
	border: 1px solid var(--mainThemeColor);
	border-left: 0;
	border-right: 0;	
}

.from-right:after {
	right: 0;
}

.from-right:hover:before,
.from-right:hover:after {
	width: 100%;
}

/* From center */

.from-center:before {
	top: 0;
	left: 50%;
	height: 100%;
	width: 0;
	border: 1px solid var(--mainThemeColor);
	border-left: 0;
	border-right: 0;
}

.from-center:after {
	bottom: 0;
	left: 0;
	height: 0;
	width: 100%;
	background: var(--mainThemeColor);
}

.from-center:hover:before {
	left: 0;
	width: 100%;
}

.from-center:hover:after {
	top: 0;
	height: 100%;
}

/* From Bottom */

.from-bottom:before, 
.from-bottom:after {
	left: 0;
	height: 0;
	width: 100%;
}

.from-bottom:before {
	top: 0;	
	border: 1px solid var(--mainThemeColor);
	border-top: 0;
	border-bottom: 0;
}

.from-bottom:after {
	bottom: 0;
	height: 0;
}

.from-bottom:hover:before,
.from-bottom:hover:after {
	height: 100%;
}
.header-content {
  /*  overflow-x: hidden;*/
}
#main-nav {
    padding: 0px;
    display: flex !important;
}
#main-nav .navbar-nav {
    flex-direction: row;
    justify-content: end;
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

#main-nav a {
    color: var(--eventFontColor);
    font-size: var(--eventFontSize);
    padding: 8px 15px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    font-family: var(--eventFont);
}

#main-nav a:hover,
#main-nav a:focus {
    color: var(--mainThemeColor);
    text-decoration: none;
}

.fullWidthNav .container {
    max-width: 100%;
    width: 100%;
}

.header-content .row {
    display: flex;
    align-items: center;
    flex-wrap: initial;
    justify-content: space-between;
}

.header-content nav {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    padding-right: 0px;
}

#main-nav .navbar-nav li {
    margin-bottom: 0px;
}

.stickyNav {
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 55;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    background: var(--white);
}

#main-nav .navbar-nav li.active a {
    color: var(--mainThemeColor);
    text-decoration: none;
}

.navClose {
    display: none;
}
.navbar-toggle {
    margin-right: 0px;
    background: var(--mainThemeColor);
    border-radius: 6px;
}
#LoginBtn {
    border-radius: var(--rounded) !important;
    font-family: var(--eventFont);
}

#LoginBtn:hover, #LoginBtn:focus{
color:var(--white) !important;
}

.navbar-toggle {
  /*Set to 0 if Accessibility Feature not added*/
    margin-right: 0px;
    background: var(--mainThemeColor);
    border-radius: 6px;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: var(--white);
}



/* Hero Section */
.main_top_area {
    /* background: url("https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1672321610bg-2jpg-jpg1672321610.jpg")no-repeat center; */
    background-size: cover;
    padding-top: 12%;
    padding-bottom: 12%;
    position: relative;
  z-index:0;
}
.popup h1 {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    text-transform: capitalize;
    -webkit-text-stroke-color: var(--mainThemeColor2);
}
.popup h1 span {
    display: block;
    -webkit-text-fill-color: var(--eventFontColor);
    -webkit-text-stroke-width: 0px;
}

.main_top_area::before {
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    content: "";
    /* background-image: -webkit-linear-gradient(left, #1C1C1F 0%, #232323 100%);
    background-image: linear-gradient(to right, #1C1C1F 0%, #232323 100%); */
    background: #fff;
    position: absolute;
    opacity: 1;
}

.popup .col-sm-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}

#date-info {
    margin-top: 0px;
    margin-bottom: 30px;
    color: var(--eventFontColor);
    font-weight: 600;
    font-family: var(--eventFont);
}

.eventDate::after {
    content: "|";
    margin-left: 7px;
}

.two-btns {
    text-align: center;
    margin: 35px 0 20px;
    padding: 2px;
    border: solid 2px var(--white);
    display: inline-block;
    border-radius: 40px;

}


.two-btns a {
    background: var(--white);
    color: var(--mainThemeColor) !important;
    display: inline-block;
    padding: 12px 34px;
    border-radius: 40px;
    letter-spacing: 0px;
    font-size: 20px;
    font-weight: 500;
}


.two-btns a:first-child {
    background: var(--mainThemeColor);
    color: var(--white) !important;
    box-shadow: none;
}

.two-btns:hover a {
    background: transparent;
    color: var(--white) !important;
    box-shadow: none;
}

.two-btns a:hover {
    background: var(--mainThemeColor2) !important;
    color: var(--whi) !important;
    box-shadow: 0px 10px 0px 0px rgba(var(--mainThemeColor-rgb),0);
    text-decoration: none;
}

.two-btns i {
    margin-right: 5px;
}

/*Registration Form---------------------*/
.nw-frm-bldr .reg-form-data * {
    font-family: var(--eventFont) !important;
}
input[type="file"] {
    width: 40%;
}
.reg-form-wrap h3 {
    font-size: 28px;
    font-weight: bold;
    margin: 20px auto;
    max-width: 850px;
    color: var(--eventFontColor);
}
.page-heading {
    height: 0px;
  border-bottom:0px solid #eaeaea !important;
}
form input[type=submit] {
    background: var(--mainThemeColor);
    border-color: var(--mainThemeColor);
    border-radius: var(--rounded) !important;
}
.reg-form-data .col-12 input[type=submit]:hover,
.reg-form-data .col-12 input[type=submit]:focus{background: var(--darkgrey);}
  .reg-form-data input::file-selector-button {
    background: var(--mainThemeColor) !important;
}

.nw-frm-bldr .reg-form-data {
    box-shadow: 0px 2px 20px 0 rgba(0,0,0, 0.1);
    border-radius: 20px;
    border: 1px solid #dedede;
  margin-bottom:30px;
}

.nw-frm-bldr .control-label {
    font-size: var(--smallText);
    font-family: var(--eventHeadingFont);
  color: var(--black);
}

.reg-form-data .form-control {
   font-size: var(--smallText);
    font-family: var(--eventFont);
  color: var(--black);
}
.nw-frm-bldr.reg-form-wrap > .row > .col-12,
.row.row-content > div > .container-fluid
{
    padding: 0;
}
 

/*Thank you page-----------------------*/
.thanksWrapper {
    text-align: center;
    max-width: var(--halfWidth);
    margin: 20px auto;
    box-shadow: 0px 2px 20px 0 rgba(0,0,0, 0.1);
    border-radius: 20px;
    border: 1px solid #dedede;
    padding: 30px 50px 50px;
    width: 100%;
    max-width: 90%;
}
.thanksWrapper span {
    display: block;
    font-size: 22px;
    font-weight: 400;
}
.thanksWrapper p {
    margin-top: 30px;
}

.full-page-container .col-lg-12 {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.row-content {
    padding: 10px 0px;
}

/* Login Modal----------------------- */
#LoginModal h4,
#forgot-pwd-modal h4{
    font-size: 20px;
}

#LoginModal .modal-header,
#forgot-pwd-modal .modal-header{
    background: var(--mainThemeColor);
}

#login-footer a,
#login-footer button,
#reset-pwd-frm a,
#reset-pwd-frm button
{
    background: var(--mainThemeColor);
    font-family: var(--eventFont);
}

#login-footer .btn-default,
#reset-pwd-frm .btn-default
{
    background: var(--white);
}

#login-footer .btn-darkgrey,
#reset-pwd-frm .btn-darkgrey
{color: var(--white);}
#login-footer .btn-default,
#reset-pwd-frm .btn-default{border-color:#ccc;}
#login-footer .col-sm-8 .btn-darkgrey, 
#reset-pwd-frm .btn-darkgrey {
    border-radius: var(--rounded) !important;
    font-family: var(--eventFont);
}

#LoginBtn {
    font-size: var(--smallText);
    padding: 6px 12px;
}
.modal .modal-dialog {
    max-width: initial;
}
#login-footer .row .col-sm-4 {
    max-width: initial;
    flex: 33%;
    order: 2;
}
#login-footer .btn,
#reset-pwd-frm .btn
{
    border-radius: var(--rounded);
}
#login-footer .btn:hover,
#reset-pwd-frm .btn:hover
{
    background: var(--darkgrey) !important;
    color: var(--white) !important;
}
#reset-pwd-frm label,
#LoginModal label{
    font-family: var(--eventHeadingFont);
}
#reset-pwd-frm input,
#LoginModal input{
    font-family: var(--eventFont);
}


/* Countdown Timer---------------------------- */
.countdown-container {
    text-align: center;
    margin-top: 0px;
    position: relative;
    display: flex;
    justify-content: center;
    background: #2D4C69;
    border-radius: 0px;
    padding: 0px 100px 0px 100px;
}

#clockdiv {
    font-family: var(--eventHeadingFont);
    color: var(--mainThemeColor);
    display: flex !important;
    font-weight: 700;
    text-align: center;
    flex-grow: 1;
    font-size: 50px;
    flex-basis: 0;
}

#clockdiv .smalltext {
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 4px;
  font-family: var(--eventFont);
  margin-top: 10px;
}

#clockdiv>div {
    background: none;
    position: relative;
    margin-right: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-basis: 0;
  padding:40px 10px;
}

#clockdiv>div::before {
    
    position: absolute;
    right: -22px;
    top: 50%;
    width: 2px;
    transform: translateY(-60%);
    height: 40%;
    background: var(--eventFontColor);
    content: "";
    opacity: 0.25;
}

#clockdiv>div:last-child::before {
    content: "";
  width:0px;

}
#clockdiv .eventlive {
    max-width: 500px;
    font-size: 24px;
}
#clockdiv div > span {
    padding: 7px 10px 0;
    border-radius: 3px;
    background: none;
    display: block;
    line-height: 1em;
    min-width: 78px;
    font-size: 100px;
    font-weight: 900;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #f69060;
}
.countdownHeading {
    color: var(--eventFontColor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    /* background: var(--lightBg); */
    margin-left: -15px;
    padding: 0px 30px 0px 70px;
    position: relative;
}
#clockdiv>div:first-child {
    margin-left: 40px;
}
.countdownHeading p {
    font-size: 22px;
    margin-top: 12px;
}
.countdownHeading p a {
    color: var(--mainThemeColor2);
}
.heading {
  font-size: 38px;
  font-weight: 900;
  position: relative;
  line-height: 40px;
  text-align: left;
  font-family: var(--eventHeadingFont);
  text-transform: capitalize;
}
/* .heading::before {
    content: "";
    background: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1717766312clock-png1717766312.png)no-repeat center;
    position: absolute;
    left: -50px;
    width: 40px;
    height: 40px;
    top: -7px;
} */

/* .countdownHeading::after {
    width: 50px;
    height: 50px;
    border-top: 110px solid transparent;
    border-left: 40px solid #ffffff07;
    border-bottom: 110px solid transparent;
    position: absolute;
    content: "";
    right: -50px;
} */
/* About section -------------------------------------- */
#about {
    /* background: url("https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1718004659about-globe-svg1718004659.svg")no-repeat right top;
    background-size: contain; */
    background: var(--white);
    color: var(--black);
}
div#about .main-title{
  color: var(--mainThemeColor2);
    max-width: 600px;
    width: 100%;
}
.aboutVidWrpper {
    position: relative;
}
.main-intro {
    max-width: 100%;
    text-align: left;
    margin: auto;
    font-size: 18px;
    line-height: 1.6em;
}

.main-intro strong {
 }
.vidThumb {
    border-radius: 20px;
}
body {
  background: var(--bodyBg);
  overflow-x: hidden;
  overflow-y: clip;
}

.video-play-button {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#play-video svg{
position: relative;
    z-index: 2;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--mainThemeColor2);
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: var(--mainThemeColor2);
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}



.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.80);
  opacity: 0;
  transition: all ease 500ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}

.video-overlay-close:hover {
  color: #fa183d;
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  /* width: 90%; */
  /* height: auto; */
  box-shadow: 0 0 15px rgba(0,0,0,0.75);
}

.eventInfo {
    display: flex;
    flex-wrap: wrap;
    background: var(--lightBg);
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
}
.eventInfo > div {
    display: flex;
    flex-grow: 1;
    flex-basis: 0;
}
.eventInfo > div svg {
    margin-right: 16px;
}
.eventInfo > div svg path {
    fill: var(--eventFontColor);
}
.eventInfo > div > div {
    font-size: 20px;
}
.eventInfo > div h6 {
    color: var(--mainThemeColor);
    text-transform: uppercase;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 5px;
}
.eventInfo a {
    margin: 0;
    display: inline-block;
    width: 100%;
}

/* Why Attend section------------------------------------ */
#whyAttend {
    padding-top: 80px;
}

#whyAttend .main-title {
    margin-bottom: 60px;
}

#whyAttend .headingOverlayText {
    color: var(--overlayHeadingTextColor2)
}

#whyAttend li i {
    color: var(--yellow);
}

.whiteText .main-title span {
    color: var(--yellow);
}



/* Agenda-------------------------------------------- */
#agenda, #sponsors {
    background-color: #1C1C1F;
}

#agenda section .container>h3 {
    display: none;
}

#agenda section h3 {
    font-size: var(--h4FontSize) !important;
    background: none;
    color: var(--eventFontColor) !important;
    padding-left: 0px;
    margin-top: 45px;
}

#agenda section {
    background: none !important;
}

#agenda .nav-tabs>li>a {
    color: var(--mainThemeColor) !important;
    background-color: var(--white) !important;

}

#agenda .nav>li>a:hover,
.nav>li>a:focus {
   
    color: var(--mainThemeColor) !important;
}

#agenda .agenda-style-6 .time-box,
#agenda .nav-tabs>li.active>a,
#agenda .nav-tabs>li.active>a:hover,
#agenda .nav-tabs>li.active>a:focus {
    background: var(--mainThemeColor) !important;
    color: var(--white) !important;

}

.nav-tabs>li.active>a:before,
.nav-tabs>li.active>a:focus:before,
.nav-tabs>li.active>a:hover:before {
    border-top-color: var(--mainThemeColor) !important;

}

div.speaker2[data-toggle="modal"] {
    cursor: pointer;
}

div.speaker2[data-toggle="modal"]:hover strong {
    color: var(--mainThemeColor);
}

.agenda-time span {
    background-image: -webkit-linear-gradient(left, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%) !important;
    background-image: linear-gradient(to right, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%) !important;

}

.nav-tabs>li.active>a:after,
.nav-tabs>li.active>a:focus:after,
.nav-tabs>li.active>a:hover:after {


    border-top-color: var(--mainThemeColor) !important;
}
.agenda-row p {
    color: #333 !important;
}
.agenda-design2-speaker .agenda-row .agenda-col:last-child {
    border-left: none !important;
    padding: 30px !important;
    background: var(--lightBg) !important;
    border-radius: 20px !important;
}
.agenda-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: end;
    margin-bottom: 30px;
}
/* .agenda-rows {
    max-width: 950px;
    min-width: 950px;
} */
.agenda-design2-speaker h4 {
    position: sticky;
    top: 0px;
    margin-top: 0px;
    margin-right: 33px;
}

.agenda-design2-speaker h4::after {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 20px solid var(--mainThemeColor2);
    border-bottom: 10px solid transparent;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  display:none;
}
.agenda-design2-speaker .agenda-row .agenda-col:first-child {
    text-align: center !important;
    position: absolute !important;
    left: 30px;
    display: inline-flex !important;
    width: max-content !important;
    align-items: center;
    background: var(--mainThemeColor2);
    padding: 3px 15px !important;
    border-radius: 50px !important;
    color: var(--white) !important;
    top: 30px;
}
.agenda-design2-speaker .agenda-row .agenda-col:last-child {
    border-left: none !important;
    padding: 30px!important;
    background: var(--lightBg)!important;
    border-radius: 0px!important;
    display: block!important;
}
.agenda-design2-speaker h4 span {
    display: inline-block!important;
    padding-bottom: 0!important;
    background: rgb(249,102,52)!important;
background: linear-gradient(90deg, rgba(249,102,52,1) 0%, rgba(239,70,120,1) 100%)!important;
    color: var(--white)!important;
    padding: 10px 12px 10px 20px!important;
    border-radius: 20px!important;
    margin-left: 0px!important;
    margin-bottom: 0px!important;
}
.agenda-design2-speaker h4 span span {
    font-size: 16px;
    display: block!important;
    text-align: left;
    font-weight: 300;
    padding-left: 0px!important;
    padding-top: 5px!important;
}
.agenda-design2-speaker .agenda-row {
    position: relative;
    margin-bottom: 0px !important;
}
.agendaRow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.agendaRow > div:last-child p {
    margin-bottom: 0px !important;
}
/* span.webinar_time::before {
    content: "\e855";
    font-family: "Material Icons";
    font-size: 20px;
    margin-right: 8px;
} */
span.webinar_time {
    position: relative;
}
.agenda-design2-speaker .agenda-row .agenda-col:first-child img {
    display: none;
}
.agenda-design2-speaker .agenda-row .agenda-col:first-child span {
    display: flex;
}
span.webinar_time {
    display: flex !important;
}
.agenda-group .agenda-rows:nth-of-type(1) .agenda-col:last-child {
    border-radius: 20px 20px 0px 0px !important;
}
.agenda-group .agenda-rows:last-child .agenda-col:last-child {
    border-radius: 0px 0px 20px 20px !important;
}


/*Speakers-----------------------------*/
.speaker_img-src img {
  width: 255px !important;
    height: 328px !important;
    border-radius: 25px;
    box-shadow: -10px -10px 0px var(--mainThemeColor2);
}
.speaker_img-src:hover img {
    box-shadow: none;
}


/*Sponsors Section----------------------------------------*/
.logos-list {
   text-align: center;
    /*background: var(--lightBg)!important;*/
    padding: 40px 40px;
    border-radius: 20px;
    margin-top: 40px;
}
.logos-list img {
    display: inline-block;
    width: 100%;
    height: auto;
    max-width: 250px;
    margin: 5px;
    padding: 5px;
   /* border: solid 1px #eee;*/
    transition: all 0.2s ease;
}
.logos-list img:hover {
    box-shadow: 0px 10px 20px rgb(0 0 0 / 5%);
}


/* FAQs Section------------------------------------------- */
.faq.padding {
    padding: 0
}

.faq .panel {
    background: var(--faqBgColor);
    padding: 24px 25px 24px;
    margin: 0 0 27px;
    /* border: none; */
    border-radius: 15px;
    box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
    background: none;
    border-color: #ffffff20;
}


.faq .panel-heading {
    padding: 0 !important;
    background: 0 0 !important
}

.faq h4.panel-title a {
    text-decoration: none;
    cursor: pointer;
    outline: 0;
    line-height: 24px;
    color: var(--eventFontColor);
    font-family: var(--eventHeadingFont);
    font-weight: 700;
    text-transform: none;
  padding-left: 45px;
}

.faq .panel-collapse {
    text-decoration: none;
    cursor: pointer
}

.faq .panel-collapse .panel-body {
    width: 100% !important;
    padding-bottom: 0;
    border: none !important;
    padding-top: 9px;
    font-size: var(--eventFontSize) !important;
    font-family: var(--eventFont) !important;
    line-height: 24px !important;
    color: var(--eventFontColor) !important
}

.faq .panel-title>a:before {
  float: right !important;
  font-family: FontAwesome;
  content: '\f068';
  padding-right: 5px;
  font-size: 19px;
  color: #fff;
  background: #f69060;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.faq .panel-title>a.collapsed:before {
    float: right !important;
    content: '\f067';
}

.faq .panel-title>a:hover,
.faq .panel-title>a:active,
.faq .panel-title>a:focus {
    text-decoration: none;
}

.num_icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    line-height: 30px;
    text-align: center;
    background: var(--mainThemeColor);
    /* background-image: -webkit-linear-gradient(left, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%) !important;
    background-image: linear-gradient(to right, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%) !important; */
    color: var(--white);
    font-style: normal;
    margin-right: 10px;
  position: absolute;
    left: 0px;
}

.cus-accordian .panel-default>.panel-heading+.panel-collapse>.panel-body {
    padding: 12px 45px 0px 45px;
}

.faq .panel.active i {
    background: var(--white) !important;
    color: var(--mainThemeColor2);
}
.faq .panel.active {
    background: var(--mainThemeColor2);
}
.faq .panel.active .panel-title>a:before {
    color: var(--white);
}
/* Contact Section------------------------------ */
.ask-cta {
    background-image: -webkit-linear-gradient(left, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%) !important;
    background-image: linear-gradient(to right, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ask-cta>.container>.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ask-cta .contact-img {
    max-height: 200px;
}

#contact {
    padding-top: 60px;
    padding-bottom: 60px;
}

.contactPersons {
    display: flex;
    flex-wrap: wrap;
}

.contactPersons_box {
    margin-right: 70px;
    margin-bottom: 30px;
}

.contactPersons_box p {
    margin-bottom: 0px;
}

.textSmall {
    font-size: var(--smalltext);
    font-weight: 400;
}

.contactPersons_box h5 {
    line-height: 23px;
}

.contactPersons>div:nth-child(even) {
    margin-right: 0px;
}




/* Footer----------------------------- */
footer {
    background: var(--mainThemeColor);
    padding: 20px 0px;
    position: relative;
    border-top-color: #f69060;
}

.footer-links li {
    display: inline-block;
    position: relative;
}

.footer-links li:after {
    content: "|";
    margin: 0px 5px 0px 12px;
}

.footer-links li:last-child::after {
    margin-right: 0px;
    content: "";
}

.footer-links a {
    font-size: var(--smalltext) !important;
}

.socialIcons {
    list-style: none;
    padding: 0px;
    margin-bottom: 0px;
}

.socialIcons li {
    display: inline-block;
    padding-right: 10px;
}

.socialIcons li:last-child {
    padding-right: 0px;
}

.socialIcons li a {
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
}

.socialIcons li a:hover i {
    color: var(--mainThemeColor);
 }

/*Top to the Page button---------------*/
#top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: var(--white);
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    padding-top: 5px;
    z-index: 45;
    display: none;
    background-color: var(--mainThemeColor);
    font-size: 24px;
    padding-top: 13px;
    border-radius: 5px;
}

#top:hover, #top:focus{
background-color:var(--darkgrey);
}


/*Accessibility Features---------------*/
.btn.btn-access.slide {
    position: absolute;
    z-index: 45;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    background: var(--darkgrey);
    right: 12px;
    top: 46px;
    text-align: center;
    padding: 5;
}
.btn.btn-access.slide:hover{background:var(--mainThemeColor);}
.accsess_tray {
    display: block;
    position: fixed;
    right: 10px;
    background-color: var(--white);
    top: 110px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 4px;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.2);
}
   .accsess_tray #readspeaker_button1,
   .accsess_tray .hall-wrap .rsbtn {
    right: -34px;
  }
   .accsess_tray .rsexpanded span {
    margin: 0;
  }
   .accsess_tray .rsexpanded span.rsbtn_text {
    margin: 5px 0 0 6px;
  }
   .accsess_tray .rsexpanded .rsbtn_progress_container.rsimg {
    margin: 7px 0 0 5px;
  }
   .accsess_tray .rsexpanded .rsbtn_powered .rsbtn_btnlabel a span.rsbtn_label_icon.rsimg {
    display: inline-block;
  }
   .accsess_tray svg path {
    fill: var(--mainThemeColor);
  }
   .accsess_tray .btn-tray {
    padding: 6px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px !important;
    line-height: normal;
    display: flex;
    align-items: center;
    margin-right: 5px;
    background: rgba(var(--mainThemeColor-rgb), 0.1);
    color: var(--mainThemeColor);
  }
   .accsess_tray .btn-tray:last-child {
    margin-right: 4px;
  }
   .accsess_tray .btn-tray.btn:hover {
    opacity: 0.9;
  }
   .accsess_tray .btn-tray svg path {
    fill: var(--mainThemeColor);
  }
   .accsess_tray span {
    margin-right: 8px;
  }
   .accsess_tray .btn-close-access {
    text-align: center;
    padding: 8px 8px;
    background: transparent;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }
   #accessibility-fade-in {
    width: 1px;
    opacity: 0;
    transition: all 0.75s ease;
    z-index: 5;
  }
   #accessibility-fade-in.show {
    opacity: 1;
    width: 262px;
    display: flex !important;
  }

/* Privacy Policy------------- */
.content-page ul {
    list-style-type: disc;
    margin-left: 20px;
}

.content-page ul li {
    margin-bottom: 0;
}

.content-page p,
.content-page li {
    text-align: justify;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    width: 100%;
}

.section.travel-info .popup .col-sm-12 {
    min-height: auto;
}
.section.travel-info .container.full-page-container {
    max-width: 100%;
    width: 100%;
    padding: 0;
}
.section.travel-info .main_top_area {
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.section.travel-info .main_top_area::before {
    /* background: #314c68; */
}
.section.travel-info .main_top_area .sub-title {
    color: var(--mainThemeColor);
    font-size: 22px;
    margin-bottom: 0 !important;
}

@media (max-width: 1199px) {
/* .agenda-rows {
    max-width: 79%;
    min-width: 79%;
} */
#clockdiv .smalltext{
      font-size: 16px;
}

#clockdiv div > span {
    min-width: 50px;
    font-size: 50px;
}
.heading {
    font-size: 28px;
    line-height: 36px;
}
}

@media (max-width: 768px) {
  .section.travel-info .main_top_area .sub-title {
    font-size: 18px;
    text-align: center;
}
.section.travel-info .main_top_area .btn-group {
    text-align: center;
}
  .vfairsBtn {
    margin: 10px 5px;
    font-size: 16px;
  }
  .order-md-2 {
    order: 2;
}
 .order-md-1 {
    order: 1;
}
#about .col-sm-7.order-md-1 {
    margin-top: 20px;
}
  .countdown-container::before {
    left: -12px;
  }
  .countdown-container::after {
    right: -12px;
  }
  #clockdiv>div::before {
    right: -6px;
  }
  .countdownHeading {

    padding: 0px 30px 0px 30px;

}
#clockdiv>div:first-child {
    margin: 0px;
}
.countdown-container {
        padding: 20px 2% 5px 2% !important;
        flex-direction: column;
    }
   .countdown-container .heading{
    text-align: center;
        width: 100%;

   }
  #clockdiv>div {

          padding: 10px 5px;
        width: 60px !important;
        margin: 0;
}
    .header-content .gradient.primary {

    width: 60vh !important;

}
 :root{
  --h1FontSize:70px !important;
  }

  .main_top_area {
   
    padding-top: 12%;
    padding-bottom: 10%;
   
}
  canvas.vanta-canvas{
  height:100% !important;
  }
  #main-nav a {
        padding: 8px 8px;
        font-size: 14px;
 }
 .event-logo img{
  min-width: unset !important;
 }
 .header-content .btnWhite {
    padding: 8px 12px;
}
  .heading {
  font-size: 24px;
        padding-left: 0;
        line-height: 30px;
}
.countdownHeading .heading br {
    display: none;
}
.countdownHeading{
      flex: 0 0 100%;
    width: 100%;
    padding: 0 !important;
}
#clockdiv{
      flex: 0 0 100%;
    width: 100%;
}
  .heading::before {
    left: 0px;
    }
  #clockdiv div > span {
    padding: 7px 4px 0;
    font-size: 60px;
    }
  #clockdiv .smalltext {
    font-size: 12px;
 
 }
  /* .countdownHeading::after {
    width: 50px;
    height: 50px;
    border-top: 80px solid transparent;
    border-left: 40px solid #ffffff07;
    border-bottom: 80px solid transparent;
    right: -50px;
} */
  .countdownHeading p {
     display: none;
}
  .eventInfo > div:last-child {
    flex-basis: 100%;
    margin-top: 20px;
}
  .attractionsRow > div:first-child {
    flex-basis: 100%;
    padding: 0px 50px;
    border-bottom: none;
}
  .attractionsRow > div {
    flex-basis: 33.33%;
}
  .attractionsRow {
    flex-wrap: wrap;
}
  .attentionDetails span {

    font-size: 26px;
}
  .attentionDetails {
    font-size: 45px;

}
  #eventAttractions {
    padding-top: 0px;
}
  
}
  
@media (max-width: 767px) {
  .navCol {
    flex-grow: 0;
}
  .header-content > .container > .row > div.text-right {
    display: none;
}
    #main-nav {
        position: fixed;
        top: 0;
        left: 0px;
        z-index: 55;
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
        height: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
      display: none !important;
    }
  
  #main-nav .navbar-nav {
    flex-direction: column;
    
 }
  
#main-nav .navbar-nav {
    flex-direction: column;
    flex-grow: initial;
    width: 90%;
}
  #main-nav .navbar-nav li.visible-xs a {
    margin-bottom: 18px;
}

    .navClose {
        position: absolute;
        top: 15px;
        right: 20px;
        color: var(--white);
        font-size: 22px;
        font-family: 'Poppins';
        border-radius: 100%;
        width: 40px;
        height: 40px;
        border: 2px solid var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
    }

    #main-nav.in {
        display: flex !important;
    }

    #main-nav a {
    color: var(--white);
    font-size: 18px;
    padding: 18px 15px;
}
  #LoginBtn {
    margin-top: 12px;
}

    .event-logo {
        flex-grow: 1;
    }

    .whyAttendImg {
        max-width: 320px !important;
        display: block;
        margin: auto;
    }

    .contactPersons {
        justify-content: space-around;
    }

    .contactPersons_box {
        margin-right: 0px;
    }

    #contact h3 {
        text-align: center;
    }

    .footer-section .row>div {
        text-align: center !important;
    }
   input[type="file"] {
    width: 100%;
}
  .modal .modal-dialog {
    width: 95% !important;
  }
  .modal-footer .btn+.btn {
    margin-left: 2px;
}
  #login-footer .row{flex-direction:column;}
  #login-footer .row .col-sm-4 {
    order: 1;
}
    #login-footer .row .col-sm-8 {
    order: 2;
}
  #login-footer .col-sm-8 {
    padding-left: 2px;
    padding-right: 2px;
}
  form input[type=submit] {
    width: 100% !important;
}
  .reg-form-data input::file-selector-button {
    background: var(--mainThemeColor) !important;
}
}

@media (max-width: 575px) {
      .heading {
        font-size: 20px;
        line-height: 24px;
    }
  .gradient.primary {

    width: 40vh !important;

}
  .main_top_area {
    padding-top: 20%;
}
  :root {
    --h1FontSize: 50px !important;
}
  .agenda-rows {
    max-width: 100%;
    min-width: 100%;
}
  .agenda-group {
    justify-content: start;
    margin-bottom: 30px;
}
  .agenda-design2-speaker h4 {
    margin-right: 0px;
    width: 100%;
    z-index: 22;
}
  .agenda-design2-speaker h4 span {
    display: block !important;
}
  .event-logo img {

    max-width: 120px;
}
/* .countdownHeading::after {
    width: 50px;
    height: 50px;
    border-top: 30px solid transparent;
    border-left: 20px solid #ffffff07;
    border-bottom: 30px solid transparent;
    left: 46%;
    transform: rotate(90deg) translateX(-50%);
    top: 86px;
    right: initial;
} */
  .countdownHeading {
   align-items: center;
   margin-left: 0px;
   padding: 20px 30px 20px 20px;
   /* flex-basis: 100%; */
}
  .countdown-container {
    padding: 0px 0px 0px 0px;
    flex-wrap: wrap;
}
.attractionsRow > div {
    flex-basis: 100%;
    align-items: center;
}
  .attentionDetails {
 
    text-align: center;
}
    .main-intro {
        max-width: 100%;
    }

    .headingOverlayText {
        display: none !important;
    }

    .main-title span {
      /*  font-size: 18px;*/
    }

    h3.main-title {
        font-size: 32px !important;
    }

    .two-btns {
        margin: 0px 0 50px;
    }

    .simple-section {
        padding: 20px 0px;
    }

    #whyAttend {
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --h1FontSize: 35px;
        --h4FontSize: 18px;
    }

    #date-info span {
        display: block;
        text-align: center;
    }

    .eventDate::after {
        content: "";
        margin-left: 0px;
    }

    .countdown-container {
        padding: 0px 5px 0px 5px;

    }
    .heading {
        font-size: 18px;
       
    }
        #clockdiv>div {
        width: 50px !important;
    }
        #clockdiv .smalltext {
        font-size: 8px;
    }
   #clockdiv>div>span {
              min-width: 50px;
        font-size: 22px;
    }
#clockdiv>div:first-child {
    margin-left: 0px;
}
  	#clockdiv {
        font-size: 40px;
    }
    .countdown-container {
        padding: 20px 2% 5px 2% !important;
    }
      #clockdiv .smalltext {
        font-size: 10px;
        letter-spacing: normal;
    }

    #clockdiv>div {

        margin-right: 0px;
    }

    #clockdiv>div::before {

        right: 0px;

    }

    .two-btns {
        border-radius: 29px;
        width: 100%;
      border:none;
    }

    .two-btns a {
        display: block;
    }
  .two-btns a:first-child {
    border: 2px solid var(--white);
    margin-bottom: 10px;
}

}
.block-overlay.Restream_Webinar {
    display: none !important;
}
 #LoginModal .modal-dialog {
        width: 100%;
        max-width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
      }
      #LoginModal .modal-dialog .modal-content {
        max-width: 350px;
        width: 100%;
        background: #f3f4f6;
        padding: 20px 20px 10px;
      }
      #LoginModal .modal-dialog .modal-header {
        padding: 9px 15px 20px;
        background: transparent !important;
        border: 0;
      }
      #LoginModal .modal-dialog .modal-header .modal-title {
        color: #f36531;
        font-weight: 600;
        font-size: 22px;
      }
      #LoginModal .modal-dialog .modal-header .close {
        position: absolute;
        right: 10px;
        top: 10px;
        color: #000000;
        opacity: 0.6;
        font-size: 32px;
        font-weight: 100;
      }
      #LoginModal .modal-dialog .modal-body {
        padding-top: 0;
        padding-bottom: 0;
      }
      #LoginModal .modal-dialog .modal-body .form-group {
        margin-bottom: 0;
        position: relative;
      }
      #LoginModal .modal-dialog .modal-body .control-label {
        color: #344054;
        font-size: 14px;
        padding-bottom: 5px;
        font-family: 'Avenir';
        font-weight: 500;
        margin-bottom: 0;
      }
      #LoginModal .modal-dialog .modal-body .form-control {
        color: #6c757d;
        border-radius: 6px;
        height: 45px;
        padding: 15px 15px 13px;
        font-size: 13px;
        box-shadow: none;
      }
      #LoginModal .modal-dialog .modal-body input#LoginEmail {
        padding-left: 35px !important;
      }
      #LoginModal .modal-dialog .modal-body .form-group.group-email::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 44px;
        width: 20px;
        height: 20px;
        z-index: 1;
        background-image: url('https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1685016767user-icon-png1685016767.png') !important;
        background-position: center center !important;
        background-repeat: no-repeat;
        background-size: contain;
      }
      #LoginModal .modal-dialog .modal-body input#Password {
        padding-left: 35px !important;
      }
      #LoginModal .modal-dialog .modal-body .form-group.grp-password-field::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 44px;
        width: 20px;
        height: 20px;
        z-index: 1;
        background-image: url('https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1685016767lock2-icon-png1685016767.png') !important;
        background-position: center center !important;
        background-repeat: no-repeat;
        background-size: contain;
      }
      #LoginModal .modal-dialog .modal-body .ResponseBox {
        color: red;
        font-weight: 100;
        font-family: 'Avenir';
        margin-top: 10px;
        font-size: 14px;
        line-height: 16px;
      }
      #LoginModal .modal-dialog #login-footer {
        border: 0;
        padding: 20px 15px 0;
      }
      #LoginModal .modal-dialog #login-footer .row {
        display: flex;
        flex-direction: column;
        margin: 0.25rem;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-4 {
        width: 100%;
        margin-bottom: 15px;
        padding: 0;
        order: inherit;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-4 .btn.btn-default {
        display: none;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-4 .btn-darkgrey {
        width: 100%;
        margin: 0 !important;
        padding: 12px 12px 12px;
        border-radius: 5px !important;
        text-transform: uppercase;
        box-shadow: none;
        outline: none;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-8 {
        width: 100%;
        max-width: 100%;
        flex-flow: wrap;
        flex-direction: column-reverse;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-8 button.btn-darkgrey {
        background: transparent !important;
        color: #686a6e !important;
        font-weight: 500 !important;
        font-family: 'Avenir';
        padding: 0;
        font-family: 'Avenir';
        font-weight: 600;
        box-shadow: none;
        outline: none;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-8 button.btn-darkgrey:hover {
        text-decoration: underline;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-8 a.btn-darkgrey {
        background: transparent !important;
        color: #80bded !important;
        font-weight: 500 !important;
        font-family: 'Avenir';
        font-size: 14px;
        padding: 20px 5px 5px 5px;
        box-shadow: none;
        outline: none;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-8 a.btn-darkgrey:hover {
        text-decoration: underline;
      }
      #forgot-pwd-modal .modal-dialog {
        width: 100%;
        max-width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
      }
      #forgot-pwd-modal .modal-dialog .modal-content {
        max-width: 350px;
        width: 100%;
        background: #f3f4f6;
        padding: 20px 20px 10px;
      }
      #forgot-pwd-modal .modal-dialog .modal-header {
        padding: 9px 15px 20px;
        background: transparent !important;
        border: 0;
      }
      #forgot-pwd-modal .modal-dialog .modal-header .modal-title {
        color: #f36531;
        font-weight: 600;
        font-size: 22px;
      }
      #forgot-pwd-modal .modal-dialog .modal-header .close {
        position: absolute;
        right: 10px;
        top: 10px;
        color: #000000;
        opacity: 0.6;
        font-size: 32px;
        font-weight: 100;
      }
      #forgot-pwd-modal .modal-dialog .modal-body {
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 15px;
      }
      #forgot-pwd-modal .modal-dialog .modal-body .form-group {
        margin-bottom: 0;
        position: relative;
      }
      #forgot-pwd-modal .modal-dialog .modal-body .control-label {
        color: #344054;
        font-size: 14px;
        padding-bottom: 5px;
        font-family: 'Avenir';
        font-weight: 500;
        margin-bottom: 0;
      }
      #forgot-pwd-modal .modal-dialog .modal-body .form-control {
        color: #6c757d;
        border-radius: 6px;
        height: 45px;
        padding: 15px 15px 13px;
        font-size: 13px;
        box-shadow: none;
      }
      #forgot-pwd-modal .modal-dialog .modal-body input#resetemail {
        padding-left: 35px !important;
      }
      #forgot-pwd-modal .modal-dialog .modal-body .form-group:first-child::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 44px;
        width: 20px;
        height: 20px;
        z-index: 1;
        background-image: url('https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1685016767user-icon-png1685016767.png') !important;
        background-position: center center !important;
        background-repeat: no-repeat;
        background-size: contain;
      }
      #forgot-pwd-modal .modal-dialog .modal-body .FormResponseSuccess {
        color: red;
        font-weight: 100;
        font-family: 'Avenir';
        margin-top: 10px;
        font-size: 14px;
        line-height: 16px;
      }
      #forgot-pwd-modal .modal-dialog .modal-body .FormResponseError {
        color: red;
        font-weight: 100;
        font-family: 'Avenir';
        margin-top: 10px;
        font-size: 14px;
        line-height: 16px;
      }
      #forgot-pwd-modal .modal-dialog .modal-body .has-error .help-block {
        color: red;
        font-weight: 100;
        font-family: 'Avenir';
        margin-top: 10px;
        font-size: 14px;
        line-height: 16px;
      }
      #forgot-pwd-modal .modal-dialog .modal-footer {
        border: 0;
        padding: 20px 15px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
      }
      #forgot-pwd-modal .modal-dialog .modal-footer .btn.btn-default {
        text-transform: capitalize;
        box-shadow: none !important;
        background: transparent !important;
        color: #686a6e;
        font-family: 'Avenir';
        font-weight: 500 !important;
        outline: none;
        padding: 0;
        border: 0;
        display: none;
      }
      #forgot-pwd-modal .modal-dialog .modal-footer .btn.btn-default:hover {
        text-decoration: underline;
      }
      #forgot-pwd-modal .modal-dialog .modal-footer .btn-darkgrey {
        background: #f36531 !important;
        color: #fff;
        font-family: 'Avenir';
        font-size: 14px;
        width: 100%;
        margin: 0 0 25px !important;
        padding: 12px 12px 12px;
        border-radius: 5px !important;
        text-transform: uppercase;
        box-shadow: none;
        outline: none;
        font-weight: 600;
      }

/*light glow-----------------*/
.gradient.primary {
    filter: blur(55px);
    width: 100vh;
    height: 80vh;
    opacity: 0.5;
}
.gradient {
    z-index: 35;
    background-image: radial-gradient(circle farthest-side at 20% 20%, var(--mainThemeColor), rgb(91 223 231 / 0%)), radial-gradient(circle closest-corner at 60% 70%, var(--mainThemeColor2), rgb(120 155 206 / 0%));
    /* background: red; */
    border-radius: 1000px;
   /* position: absolute;
  top:350px;*/
}
.gradient.secondary {
    z-index: 4;
    opacity: 0.65;
    filter: blur(80px);
}

.gradient-wrapper.mouse-track {
    justify-content: center;
    align-items: center;
}

.gradient-wrapper {
    z-index: 0;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
     position: absolute;
  /* top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;*/
}
/*light glow end-------------------*/

/*-------scrollReveal----------*/

.scrollReveal{
    opacity: 0;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
}

.revealTop{
    transform: translate(0px,150px);
}
.revealRight{
    transform: translate(-150px,0px);
}
.revealLeft{
    transform: translate(150px,0px);
}
.revealBottom{
    transform: translate(0px,-150px);
}

.scrollReveal.reveal{
    opacity: 1;
    transform: translate(0,0);
}

.main_video{
  display: block;
   position: absolute;
   z-index: 0;
   top: 0px;
   left: 0px;
   width: 100%;
   min-height: 700px;
 height:100%;
 object-fit: cover;
}

.header-content .gradient-wrapper {
  display: none !important;
}
.popup .col-sm-12{
  position: relative;
  z-index: 4;
  width: 100%;
  min-height: 750px;
  justify-content: end;
}
.main_top_area{
  padding: 0 !important;
}
.popup .col-sm-12 .two-btns {
  margin: 0 0 20px;
  
}
.popup .col-sm-12  #date-info{
  margin-bottom: 20px;
  color: var(--mainThemeColor2);
}
.countdown-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1746467953blue-grit-png1746467953.png) no-repeat center;
background-size: contain;
    min-height: 200px;
    height: 100%;
    width: 230px;
}
.countdown-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1746467953blue-grit-png1746467953.png) no-repeat center;
background-size: contain;
    min-height: 200px;
    height: 100%;
    width: 230px;
  transform: rotate(180deg);
}
/* div#clockdiv{
  position: relative;
  z-index: 2;
}
.countdownHeading{
  position: relative;
  z-index: 2;
} */
 .countdown-container {
    position: relative;
    z-index: 0;
}
.countdown-container::before, .countdown-container::after{
  z-index: -1;
}
div#about img.modern_building {
  position: absolute;
  left: -180px;
  top: 0;
  min-width: 700px;
  width: 100%;
}
div#about  .eventInfo {
  margin-top: 80px;
  background: #616262;
}
div#about .eventInfo img.calender_img {
  max-width: 36px;
  height: auto;
  max-height: max-content;
  margin-right: 20px;
}
div#about img.location_img {
  max-width: 36px;
  height: auto;
  max-height: max-content;
  margin-right: 20px;
}
div#about .eventInfo .whenContent, div#about .eventInfo .whenContent h6 {
  color: #fff;
  font-weight: 600;
  font-family: var(--eventFont);
}
div#about .eventInfo .whereContent, div#about .eventInfo .whereContent h6 {
  color: #fff;
  font-weight: 600;
  font-family: var(--eventFont);
}
div#about .eventInfo .whenContent,div#about .eventInfo .whereContent {
  font-size: 18px;
}
.eventInfo .vfairsBtn {
  display: inline-block;
  height: max-content;
}
#agenda{
  background: var(--white);
}
#agenda .main-title {
  color: var(--mainThemeColor);
}
#agenda .agenda-design1 h4 span {
  color: #616262;
  background: transparent;
  margin: 0;
  padding-left: 0;
  padding-top: 0;
}



span.webinar_time span {
    display: none !important;
}






.speaker_img-src p {
    color: #333;
}

.speaker_img-src h4 {
    color: #314c68 !important;
}


#agenda section .agenda-group {
  justify-content: start;
  width: 100%;
}
/* .agenda-design1 .agenda-row .speaker{
    display: none !important;
} */
 .agenda-design1 .agenda-row p:last-child{
  padding-bottom: 0 !important;
 }
 .agenda-design1 .agenda-rows .agenda-row:last-child .agenda-col:last-child h3 {
    margin-bottom: 20px;
}
 .agenda-design1 .agenda-row .speaker img
 {
    object-fit: cover;
    object-position: top;
}
.agenda-design1 .agenda-row .agenda-col:first-child {
  
  width: 200px;
}
.agenda-design1 .agenda-row .agenda-col:first-child .webinar_time span br {
  display: none;
}
.agenda-design1 .agenda-row .agenda-col:first-child {
  width: 170px !important;
}
.agenda-design1 .agenda-row .agenda-col:first-child img {
  display: none;
}
.agenda-design1 .agenda-row .agenda-col:first-child  span,#agenda section h3{
  color: #616262 !important;
}
.agenda-design1 .agenda-row .agenda-col:last-child {
  background: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1746485810circle-dot-png1746485810.png	) no-repeat left top 24px / 10px, url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1746485810timeline-strip1-png1746485810.png	) repeat-y left 3px top !important;
}
#agenda section h3 {
  margin-top: 22px;
}
#agenda   .agenda-design1{
  border-bottom: none !important;
}
#agenda img.cloude_img1 {
  position: absolute;
  max-width: 500px;
  right: 20%;
  top: 30%;
  z-index:-2;
}
#agenda  img.cloude_img2 {
  position: absolute;
  right: 0;
  top: 45%;
  max-width: 500px;
  width: 100%;
  z-index: -2;
}

#agenda img.cloude_img3 {
  max-width: 1024px;
  margin: 0 auto;
  display: block;
  z-index: -2;
}
section#eventAttractions {
  padding: 0;
}
.attractionsRow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1746490834red-grit-png1746490834.png) no-repeat center;
  background-size: cover;
  min-height: 216px;
  height: 100%;
  width: 100%;
}
section#speakers {
  background: #e2f1f7;
}
section#speakers .main-title {
  color: var(--mainThemeColor2);
}
section#speakers .main-sub-title {
  color: var(--mainThemeColor);
}
section#sponsors {
  background: #fff;
  color: var(--mainThemeColor);

}
section#sponsors .main-title{
  color: var(--mainThemeColor);
}
section#interest {
  background: #fff url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1746490833beige-grit-png1746490833.png) no-repeat bottom;
  background-size: contain;
  padding-bottom: 0;
  padding-top: 0;
}
section#interest .main-title {
  color: var(--mainThemeColor2);
}
section#interest .main-intro {
  color: var(--mainThemeColor);
}
section#interest img.interest_img {
  position: absolute;
  right: -180px;
  top: 42px;
  min-width: 700px;
  width: 100%;
}
section#faq {
  background: var(--mainThemeColor);
}
.faq .panel {
  background: #fff;

}
.faq h4.panel-title a{
  color: var(--mainThemeColor) !important;
}
.cus-accordian .panel-default>.panel-heading+.panel-collapse>.panel-body {
  color: var(--mainThemeColor) !important;

}
#agenda section h3 {
    font-family: var(--eventFont);
    line-height: normal;
}
.faq h4.panel-title a {
    font-family: var(--eventFont);
}

@media screen and (min-width: 1920px){
  .main_video{
   min-height: 1024px;
        max-width: 1920px;
        width: 100%;
        margin: 0 auto;
        display: block;
        height: 100%;
        left: 50%;
        transform: translate(-50%);
  }
.popup .col-sm-12{
  min-height: 950px;
}

}
@media screen and (max-width: 1024px){
  .countdown-container::before {
    left: -20px;
}
 .countdown-container::after {
    right: -20px;
}
  img.interest_img {
    top: 150px;
}
  div#about img.modern_building{
    min-width: 580px;
  }
.header-content .row {
  flex-wrap: wrap;
  justify-content: center;
}
}
@media screen and (max-width: 768px){
  .popup .col-sm-12{
        min-height: 620px;
  }
  .main_video {
    min-height: 400px;
    object-fit: contain;
}
  div#about .eventInfo .whenContent, div#about .eventInfo .whereContent{
    font-size: 16px;
  }
  img.interest_img {
    position: relative;
    top: unset;
    right: unset;
}
  /* .countdown-container::before,.countdown-container::after{
    background-size: contain;
        min-height: 150px;
        height: 100%;
        width: 190px;
 
  } */
   .countdown-container::before{
    left: -80px;
   }
    .countdown-container::after{
    right: -80px;
   }
  div#about img.modern_building {
    position: relative;
    width: 100%;
    min-width: 100%;
    left: 0;
    margin: 20px 0 10px 0;
}
div#about  .eventInfo {
  margin-top: 20px;
  gap: 20px;
}
.agenda-design1 .agenda-row {
  display: flex !important;
  flex-wrap: wrap;
}
.agenda-design1 .agenda-row .agenda-col:first-child {
  display: block;
  width: 100% !important;
}
.agenda-design1 .agenda-rows .agenda-row:last-child .agenda-col:last-child {
  width: 100% !important;
}
}
@media screen and (max-width: 767px){
    .scrollReveal{
        opacity: 1 !important;
    }
    .revealTop,
    .revealRight,
    .revealLeft,
    .revealBottom{
        transform: translate(0,0) !important;
    }
}
@media screen and (max-width: 480px){
  .main_video{
    min-height: 450px;
    object-fit: contain;
    background: var(--white);
  }
.popup .col-sm-12{
  min-height: 450px;
}
/* .countdown-container::before,.countdown-container::after{
 
    background-size: contain;
    min-height: 150px;
    height: 100%;
    width: 330px;
  } */

}
/* travel page styles */
/* Event Font -------------------------*/
/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Candal&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* Setting of Landing page colors and Font */

:root {
    --mainThemeColor: #314c68;
  	--mainThemeColor-rgb:243,101,49;
    --mainThemeColor2: #b24a51;
    --eventFontColor: #ffffff;
    --overlayHeadingTextColor: #f7f7f7;
    --overlayHeadingTextColor2: rgb(255 255 255 / 10%);
    --eventFontSize: 16px;
    --smalltext: 14px;
    --eventFont: "Montserrat", sans-serif;
    --eventHeadingFont:  "Candal", sans-serif;
    --h1FontSize: 120px;
    --h2FontSize: 42px;
    --h3FontSize: 45px;
    --h4FontSize: 22px;
    --h5FontSize: 20px;
    --h6FontSize: 18px;
    --white: #fff;
    --black: #000;
    --yellow: #ffd600;
    --lightGrey: #ddd;
  	--darkgrey: #333;
    --halfWidth: 50%;
    --quarterWidth: 75%;
    --faqBgColor: #fafafa;
    --footerBg: #212121;
    --curved: 6px;
    --rounded: 50px;
    --btnFontSize: 18px;
  --bodyBg:#17161A;
  
}
/*--------------Dark Theme setting-------------------*/
body.dark{
  --eventFontColor: #ffffff;
  /* --bodyBg:#17161A; */
  --bodyBg:#fff;
  --lightBg:#ffffff07;
  --lightText:#ffffff70;
}
/*--------------Light Theme setting-------------------*/
body.light{
  --eventFontColor: #333;
  --bodyBg:#fff;
  --lightBg:#00000007;
  --lightText:#00000070;
}

/* General-------------------------- */
html,
a,
* {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

body {
    font-family: var(--eventFont);
    font-size: var(--eventFontSize);
    color: var(--eventFontColor);
    line-height: 26px;
  background:var(--bodyBg) !important;
}

body > .header-content > .container {
    max-width: 100%;
    width: 100%;
    padding: 0px;
}

body > .header-content {
    position: absolute;
    top: 0px;
    z-index: 1;
    width: 100%;
}

.simple-section {
    padding: 60px 0px;
  position:relative;
}
section#speakers .modal-body {
    color: #000;
}

p{margin-bottom:20px !important;}

.coloredBg {
    background: var(--mainThemeColor);
  background-image: -webkit-linear-gradient(left, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%);
    background-image: linear-gradient(to right, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%);
}

.whiteText * {
    color:var(--eventFontColor);
}

.whiteText a:hover,
.whiteText a:focus {
    color: var(--yellow);
}

h4.form-heading {
    font-size: 0px;
}
body > p:first-of-type {
    margin: 0px !important;
}



/* Buttons------------------------------ */
.vfairsBtn {
    padding: 12px 35px;
    margin: 30px 5px;
    display: inline-block;
    font-size: var(--btnFontSize);
    font-weight: 600;
    border: 2px solid transparent;
}

.coloredShadow {
    box-shadow: 0px 15px 25px 0px rgba(var(--mainThemeColor-rgb),0.3);
}

.grayShadow {
    box-shadow: 0px 15px 25px 0px rgba(67, 67, 67, 0.2);
}

.curved {
    border-radius: var(--curved);
}

.rounded {
    border-radius: var(--rounded);
}

.btnWhite {
    background: var(--mainThemeColor);
    color: var(--white);
    border: 2px solid transparent;
}
.header-content .btnWhite {
    padding: 8px 30px;
}
.btnWhite.secondary {
    background: none;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 3px;
}
.btnWhite.secondary:hover, .btnWhite.secondary:focus {
    background: var(--mainThemeColor);
    color: var(--white);
    border-color: transparent;
}

.btnBlack {
    background: var(--black);
    color: var(--white);
}

.btnColored {
    /* background-image: -webkit-linear-gradient(left, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%);
    background-image: linear-gradient(to right, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%); */
    color: var(--white) !important;
    background: var(--mainThemeColor);
}

.btnColored:hover,
.btnColored:focus {
    /* background-image: -webkit-linear-gradient(left, var(--mainThemeColor2) 0%, var(--mainThemeColor) 100%);
    background-image: linear-gradient(to right, var(--mainThemeColor2) 0%, var(--mainThemeColor) 100%); */
    color: var(--white) !important;
    text-decoration: none !important;
    background: var(--mainThemeColor2);
}

.btnWhite:hover,
.btnWhite:focus,
.btnBlack:hover,
.btnBlack:focus {
    background: var(--white);
    color: var(--mainThemeColor);
    text-decoration: none !important;
    border-color: var(--mainThemeColor);
}

/* Headings--------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
.popup h1 {
    font-family: var(--eventHeadingFont);
    font-weight: 800;
}

h1, .popup h1 {
    font-size: var(--h1FontSize);
    font-weight: 800;
    line-height: 1.0em;
}

h2 {
    font-size: var(--h2FontSize);
}

h3 {
    font-size: var(--h3FontSize) !important;
  font-weight:900;
}

h4 {
    font-size: var(--h4FontSize);
}

h5 {
    font-size: var(--h5FontSize);
}

h6 {
    font-size: var(--h6FontSize);
}

p{
  font-family: var(--eventFont);
}

/*Our Speakers-------------------------*/
svg.wave {
    position: absolute;
    right: 0px;
    opacity: 0.05;
    top: 0px;
}
.speakerImg img {
    border-radius: 38px;
    max-width: 255px;
    box-shadow: -10px -10px 0px var(--mainThemeColor2);
}
.speakerCompany {
    display: block;
}
.speakerDesignation {
    font-size: 13px;
}

.speakerTitle {
    font-size: 30px;
    font-weight: 700;
    margin-top: 19px;
}

.speakerImg {
    text-align: center;
    margin-top: 30px;
}
.speakerImg a:hover img, .speakerImg a:focus img {
    box-shadow: 0px 0px 0px;
}
/*Our Speakers end---------------------*/


/*Attractions ---------------------------*/
.attractionsRow .main-title::before {
    content: "";
}
.attractionsRow {
  display: flex;
  background: var(--mainThemeColor2);
}
.attentionIcon {
  width: 160px;
  /* background: #27262a00; */
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  border-radius: 100%;
  margin-bottom: 30px;
}
.attentionDetails {
    font-weight: 900;
    font-size: 60px;
    line-height: 1em;
}
.attentionDetails span {
  font-weight: 500;
  font-size: 32px;
  display: block;
  color: var(--white);
  /* text-transform: uppercase; */
  /* letter-spacing: 3px; */
  line-height: normal;
  text-align: center;
}
 
.attractionsRow > div {
  display: flex ;
      flex-direction: column;
      justify-content: center;
      border: 1px solid #ffffff25;
      padding: 40px 50px;
      border-right: 0px;
      align-items: center;
}
.attractionsRow > div:first:child {
border-left:0px;
}
/* .attractionsRow > div:first-child ~ div:hover {
    background: var(--mainThemeColor2);
} */
.attractionsRow > div:first-child ~ div:hover .attentionDetails span {
    color: var(--bodyBg);
}

/* .attractionsRow > div:first-child ~ div:hover .attentionIcon {
    background: #26272a70;
} */


/*Attractions end ---------------------------*/
/* Top black bar----------------------- */
.slim-bar {
    position: initial;
    background-color: var(--black);
    color: var(--white);

}

.slim-bar ul>li {
    list-style: none;
    margin: 0px 0px 0px 0px;
    padding: 5px 0px 0px 0px;

}

.slim-bar .row {
    justify-content: end !important;
}

/* Set 0 padding or Margin */
.noPadding {
    padding: 0px !important;
}

.noTopPadding {
    padding-top: 0px !important;
}

.noBottomPadding {
    padding-bottom: 0px !important;
}

.noLeftPadding {
    padding-left: 0px !important;
}

.noRightPadding {
    padding-right: 0px !important;
}

.noMargin {
    margin: 0px !important;
}

.noTopMargin {
    margin-top: 0px !important;
}

.noBottomMargin {
    margin-bottom: 0px !important;
}

.noLeftMargin {
    margin-left: 0px !important;
}

.noRightMargin {
    margin-right: 0px !important;
}


/* Main Heading------------------------- */
.main-title {
    text-align: left !important;
    position: relative;
    z-index: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
}
/* .main-title::before {
    content: "...";
    letter-spacing: 1px;
    text-shadow: 0px -11px 0px var(--mainThemeColor);
    font-size: 45px;
    color: var(--mainThemeColor);
    line-height: 31px;
} */
.main-title span {
    display: block;
    color: var(--eventFontColor);
   
}


.main-title .headingOverlayText {
    position: absolute;
    color: var(--overlayHeadingTextColor);
    margin: 0px 0px 0px 0px;
    font-size: 150px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: -9px;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
    width: 100%;
    display: inline;
    text-transform: lowercase;
}




/* Unordered list------------------------------- */
ul {
    list-style: none;
    padding: 0px;
}

ul li {
    margin-bottom: 15px;
}

ul.checklist li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 40px;
   
}

ul.checklist li i {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 25px;
}

/* Event Logo----------------------------------- */
.event-logo img {
    margin: 8px 0px;
    min-width: 150px;
    max-width: 160px;
    width: 100%;
}
.navCol {
    flex-grow: 1;
}

/* Main Navigation------------------------------ */
.header-content > .container > .row > div {
    /* margin: 0px 15px; */
    position: relative;
}
body > .container-parent.header-content {
    position: inherit;
}
.header-content  .rounded {
    font-size: var(--eventFontSize) !important;
    border-radius: var(--rounded) !important;
}
.header-content > .container > .row {
    background: #ffffff20;
    border-radius: var(--rounded);
    margin-top: 15px;
}
.header-content .container .row {
    background: #606262;
    border-radius: var(--rounded);
    margin-top: 15px;
}
.homepage-body .header-content > .container > .row {
  background: #606262;
}

#main-nav a:before, #main-nav a:after {
	content: '';
	position: absolute;	
	transition: inherit;
	z-index: -1;
}

#main-nav a:hover {
    color: var(--white) !important;
    transition-delay: .5s;
    background: var(--mainThemeColor);
}

#main-nav a:hover:before {
	transition-delay: 0s;
}

#main-nav a:hover:after {
	background: var(--mainThemeColor);
	transition-delay: .35s;
}

/* From Top */

.from-top:before, 
.from-top:after {
	left: 0;
	height: 0;
	width: 100%;
}

.from-top:before {
	bottom: 0;	
	border: 1px solid var(--mainThemeColor2);
	border-top: 0;
	border-bottom: 0;
}

.from-top:after {
	top: 0;
	height: 0;
}

.from-top:hover:before,
.from-top:hover:after {
	height: 100%;
}

/* From Left */

.from-left:before, 
.from-left:after {
	top: 0;
	width: 0;
	height: 100%;
}

.from-left:before {
	right: 0;
	border: 1px solid var(--mainThemeColor);
	border-left: 0;
	border-right: 0;	
}

.from-left:after {
	left: 0;
}

.from-left:hover:before,
.from-left:hover:after {
	width: 100%;
}

/* From Right */

.from-right:before, 
.from-right:after {
	top: 0;
	width: 0;
	height: 100%;
}

.from-right:before {
	left: 0;
	border: 1px solid var(--mainThemeColor);
	border-left: 0;
	border-right: 0;	
}

.from-right:after {
	right: 0;
}

.from-right:hover:before,
.from-right:hover:after {
	width: 100%;
}

/* From center */

.from-center:before {
	top: 0;
	left: 50%;
	height: 100%;
	width: 0;
	border: 1px solid var(--mainThemeColor);
	border-left: 0;
	border-right: 0;
}

.from-center:after {
	bottom: 0;
	left: 0;
	height: 0;
	width: 100%;
	background: var(--mainThemeColor);
}

.from-center:hover:before {
	left: 0;
	width: 100%;
}

.from-center:hover:after {
	top: 0;
	height: 100%;
}

/* From Bottom */

.from-bottom:before, 
.from-bottom:after {
	left: 0;
	height: 0;
	width: 100%;
}

.from-bottom:before {
	top: 0;	
	border: 1px solid var(--mainThemeColor);
	border-top: 0;
	border-bottom: 0;
}

.from-bottom:after {
	bottom: 0;
	height: 0;
}

.from-bottom:hover:before,
.from-bottom:hover:after {
	height: 100%;
}
.header-content {
  /*  overflow-x: hidden;*/
}
#main-nav {
    padding: 0px;
    display: flex !important;
}
#main-nav .navbar-nav {
    flex-direction: row;
    justify-content: end;
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

#main-nav a {
    color: var(--eventFontColor);
    font-size: var(--eventFontSize);
    padding: 8px 15px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    font-family: var(--eventFont);
}

#main-nav a:hover,
#main-nav a:focus {
    color: var(--mainThemeColor);
    text-decoration: none;
}

.fullWidthNav .container {
    max-width: 100%;
    width: 100%;
}

.header-content .row {
    display: flex;
    align-items: center;
    flex-wrap: initial;
    justify-content: space-between;
}

.header-content nav {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    padding-right: 0px;
}

#main-nav .navbar-nav li {
    margin-bottom: 0px;
}

.stickyNav {
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 55;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    background: var(--white);
}

#main-nav .navbar-nav li.active a {
    color: var(--mainThemeColor);
    text-decoration: none;
}

.navClose {
    display: none;
}
.navbar-toggle {
    margin-right: 0px;
    background: var(--mainThemeColor);
    border-radius: 6px;
}
#LoginBtn {
    border-radius: var(--rounded) !important;
    font-family: var(--eventFont);
}

#LoginBtn:hover, #LoginBtn:focus{
color:var(--white) !important;
}

.navbar-toggle {
  /*Set to 0 if Accessibility Feature not added*/
    margin-right: 0px;
    background: var(--mainThemeColor);
    border-radius: 6px;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: var(--white);
}



/* Hero Section */
.main_top_area {
    /* background: url("https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1672321610bg-2jpg-jpg1672321610.jpg")no-repeat center; */
    background-size: cover;
    padding-top: 12%;
    padding-bottom: 12%;
    position: relative;
  z-index:0;
}
.popup h1 {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    text-transform: capitalize;
    -webkit-text-stroke-color: var(--mainThemeColor2);
}
.popup h1 span {
    display: block;
    -webkit-text-fill-color: var(--eventFontColor);
    -webkit-text-stroke-width: 0px;
}

.main_top_area::before {
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    content: "";
    /* background-image: -webkit-linear-gradient(left, #1C1C1F 0%, #232323 100%);
    background-image: linear-gradient(to right, #1C1C1F 0%, #232323 100%); */
    background: #fff;
    position: absolute;
    opacity: 1;
}

.popup .col-sm-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}

#date-info {
    margin-top: 0px;
    margin-bottom: 30px;
    color: var(--eventFontColor);
    font-weight: 600;
    font-family: var(--eventFont);
}

.eventDate::after {
    content: "|";
    margin-left: 7px;
}

.two-btns {
    text-align: center;
    margin: 35px 0 20px;
    padding: 2px;
    border: solid 2px var(--white);
    display: inline-block;
    border-radius: 40px;

}


.two-btns a {
    background: var(--white);
    color: var(--mainThemeColor) !important;
    display: inline-block;
    padding: 12px 34px;
    border-radius: 40px;
    letter-spacing: 0px;
    font-size: 20px;
    font-weight: 500;
}


.two-btns a:first-child {
    background: var(--mainThemeColor);
    color: var(--white) !important;
    box-shadow: none;
}

.two-btns:hover a {
    background: transparent;
    color: var(--white) !important;
    box-shadow: none;
}

.two-btns a:hover {
    background: var(--mainThemeColor2) !important;
    color: var(--whi) !important;
    box-shadow: 0px 10px 0px 0px rgba(var(--mainThemeColor-rgb),0);
    text-decoration: none;
}

.two-btns i {
    margin-right: 5px;
}

/*Registration Form---------------------*/
.nw-frm-bldr .reg-form-data * {
    font-family: var(--eventFont) !important;
}
input[type="file"] {
    width: 40%;
}
.reg-form-wrap h3 {
    font-size: 28px;
    font-weight: bold;
    margin: 20px auto;
    max-width: 850px;
    color: var(--eventFontColor);
}
.page-heading {
    height: 0px;
  border-bottom:0px solid #eaeaea !important;
}
form input[type=submit] {
    background: var(--mainThemeColor);
    border-color: var(--mainThemeColor);
    border-radius: var(--rounded) !important;
}
.reg-form-data .col-12 input[type=submit]:hover,
.reg-form-data .col-12 input[type=submit]:focus{background: var(--darkgrey);}
  .reg-form-data input::file-selector-button {
    background: var(--mainThemeColor) !important;
}

.nw-frm-bldr .reg-form-data {
    box-shadow: 0px 2px 20px 0 rgba(0,0,0, 0.1);
    border-radius: 20px;
    border: 1px solid #dedede;
  margin-bottom:30px;
}

.nw-frm-bldr .control-label {
    font-size: var(--smallText);
    font-family: var(--eventHeadingFont);
  color: var(--black);
}

.reg-form-data .form-control {
   font-size: var(--smallText);
    font-family: var(--eventFont);
  color: var(--black);
}
.nw-frm-bldr.reg-form-wrap > .row > .col-12,
.row.row-content > div > .container-fluid
{
    padding: 0;
}
 

/*Thank you page-----------------------*/
.thanksWrapper {
    text-align: center;
    max-width: var(--halfWidth);
    margin: 20px auto;
    box-shadow: 0px 2px 20px 0 rgba(0,0,0, 0.1);
    border-radius: 20px;
    border: 1px solid #dedede;
    padding: 30px 50px 50px;
    width: 100%;
    max-width: 90%;
}
.thanksWrapper span {
    display: block;
    font-size: 22px;
    font-weight: 400;
}
.thanksWrapper p {
    margin-top: 30px;
}

.full-page-container .col-lg-12 {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.row-content {
    padding: 10px 0px;
}

/* Login Modal----------------------- */
#LoginModal h4,
#forgot-pwd-modal h4{
    font-size: 20px;
}

#LoginModal .modal-header,
#forgot-pwd-modal .modal-header{
    background: var(--mainThemeColor);
}

#login-footer a,
#login-footer button,
#reset-pwd-frm a,
#reset-pwd-frm button
{
    background: var(--mainThemeColor);
    font-family: var(--eventFont);
}

#login-footer .btn-default,
#reset-pwd-frm .btn-default
{
    background: var(--white);
}

#login-footer .btn-darkgrey,
#reset-pwd-frm .btn-darkgrey
{color: var(--white);}
#login-footer .btn-default,
#reset-pwd-frm .btn-default{border-color:#ccc;}
#login-footer .col-sm-8 .btn-darkgrey, 
#reset-pwd-frm .btn-darkgrey {
    border-radius: var(--rounded) !important;
    font-family: var(--eventFont);
}

#LoginBtn {
    font-size: var(--smallText);
    padding: 6px 12px;
}
.modal .modal-dialog {
    max-width: initial;
}
#login-footer .row .col-sm-4 {
    max-width: initial;
    flex: 33%;
    order: 2;
}
#login-footer .btn,
#reset-pwd-frm .btn
{
    border-radius: var(--rounded);
}
#login-footer .btn:hover,
#reset-pwd-frm .btn:hover
{
    background: var(--darkgrey) !important;
    color: var(--white) !important;
}
#reset-pwd-frm label,
#LoginModal label{
    font-family: var(--eventHeadingFont);
}
#reset-pwd-frm input,
#LoginModal input{
    font-family: var(--eventFont);
}


/* Countdown Timer---------------------------- */
.countdown-container {
    text-align: center;
    margin-top: 0px;
    position: relative;
    display: flex;
    justify-content: center;
    background: #2D4C69;
    border-radius: 0px;
    padding: 0px 100px 0px 100px;
}

#clockdiv {
    font-family: var(--eventHeadingFont);
    color: var(--mainThemeColor);
    display: flex !important;
    font-weight: 700;
    text-align: center;
    flex-grow: 1;
    font-size: 50px;
    flex-basis: 0;
}

#clockdiv .smalltext {
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 4px;
  font-family: var(--eventFont);
  margin-top: 10px;
}

#clockdiv>div {
    background: none;
    position: relative;
    margin-right: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-basis: 0;
  padding:40px 10px;
}

#clockdiv>div::before {
    
    position: absolute;
    right: -22px;
    top: 50%;
    width: 2px;
    transform: translateY(-60%);
    height: 40%;
    background: var(--eventFontColor);
    content: "";
    opacity: 0.25;
}

#clockdiv>div:last-child::before {
    content: "";
  width:0px;

}
#clockdiv .eventlive {
    max-width: 500px;
    font-size: 24px;
}
#clockdiv div > span {
    padding: 7px 10px 0;
    border-radius: 3px;
    background: none;
    display: block;
    line-height: 1em;
    min-width: 78px;
    font-size: 100px;
    font-weight: 900;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #f69060;
}
.countdownHeading {
    color: var(--eventFontColor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    /* background: var(--lightBg); */
    margin-left: -15px;
    padding: 0px 30px 0px 70px;
    position: relative;
}
#clockdiv>div:first-child {
    margin-left: 40px;
}
.countdownHeading p {
    font-size: 22px;
    margin-top: 12px;
}
.countdownHeading p a {
    color: var(--mainThemeColor2);
}
.heading {
  font-size: 38px;
  font-weight: 900;
  position: relative;
  line-height: 40px;
  text-align: left;
  font-family: var(--eventHeadingFont);
  text-transform: capitalize;
}
/* .heading::before {
    content: "";
    background: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1717766312clock-png1717766312.png)no-repeat center;
    position: absolute;
    left: -50px;
    width: 40px;
    height: 40px;
    top: -7px;
} */

/* .countdownHeading::after {
    width: 50px;
    height: 50px;
    border-top: 110px solid transparent;
    border-left: 40px solid #ffffff07;
    border-bottom: 110px solid transparent;
    position: absolute;
    content: "";
    right: -50px;
} */
/* About section -------------------------------------- */
#about {
    /* background: url("https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1718004659about-globe-svg1718004659.svg")no-repeat right top;
    background-size: contain; */
    background: var(--white);
    color: var(--black);
}
div#about .main-title{
  color: var(--mainThemeColor2);
    max-width: 600px;
    width: 100%;
}
.aboutVidWrpper {
    position: relative;
}
.main-intro {
    max-width: 100%;
    text-align: left;
    margin: auto;
    font-size: 18px;
    line-height: 1.6em;
}

.main-intro strong {
 }
.vidThumb {
    border-radius: 20px;
}
body {
  background: var(--bodyBg);
  overflow-x: hidden;
  overflow-y: clip;
}

.video-play-button {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#play-video svg{
position: relative;
    z-index: 2;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--mainThemeColor2);
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: var(--mainThemeColor2);
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}



.eventInfo {
    display: flex;
    flex-wrap: wrap;
    background: var(--lightBg);
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
}
.eventInfo > div {
    display: flex;
    flex-grow: 1;
    flex-basis: 0;
}
.eventInfo > div svg {
    margin-right: 16px;
}
.eventInfo > div svg path {
    fill: var(--eventFontColor);
}
.eventInfo > div > div {
    font-size: 20px;
}
.eventInfo > div h6 {
    color: var(--mainThemeColor);
    text-transform: uppercase;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 5px;
}
.eventInfo a {
    margin: 0;
    display: inline-block;
    width: 100%;
}

/* Why Attend section------------------------------------ */
#whyAttend {
    padding-top: 80px;
}

#whyAttend .main-title {
    margin-bottom: 60px;
}

#whyAttend .headingOverlayText {
    color: var(--overlayHeadingTextColor2)
}

#whyAttend li i {
    color: var(--yellow);
}

.whiteText .main-title span {
    color: var(--yellow);
}



/* Agenda-------------------------------------------- */
#agenda, #sponsors {
    background-color: #1C1C1F;
}

#agenda section .container>h3 {
    display: none;
}

#agenda section h3 {
    font-size: var(--h4FontSize) !important;
    background: none;
    color: var(--eventFontColor) !important;
    padding-left: 0px;
    margin-top: 45px;
}

#agenda section {
    background: none !important;
}

#agenda .nav-tabs>li>a {
    color: var(--mainThemeColor) !important;
    background-color: var(--white) !important;

}

#agenda .nav>li>a:hover,
.nav>li>a:focus {
   
    color: var(--mainThemeColor) !important;
}

#agenda .agenda-style-6 .time-box,
#agenda .nav-tabs>li.active>a,
#agenda .nav-tabs>li.active>a:hover,
#agenda .nav-tabs>li.active>a:focus {
    background: var(--mainThemeColor) !important;
    color: var(--white) !important;

}

.nav-tabs>li.active>a:before,
.nav-tabs>li.active>a:focus:before,
.nav-tabs>li.active>a:hover:before {
    border-top-color: var(--mainThemeColor) !important;

}

div.speaker2[data-toggle="modal"] {
    cursor: pointer;
}

div.speaker2[data-toggle="modal"]:hover strong {
    color: var(--mainThemeColor);
}

.agenda-time span {
    background-image: -webkit-linear-gradient(left, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%) !important;
    background-image: linear-gradient(to right, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%) !important;

}

.nav-tabs>li.active>a:after,
.nav-tabs>li.active>a:focus:after,
.nav-tabs>li.active>a:hover:after {


    border-top-color: var(--mainThemeColor) !important;
}
.agenda-row p {
    color: #333 !important;
}
.agenda-design2-speaker .agenda-row .agenda-col:last-child {
    border-left: none !important;
    padding: 30px !important;
    background: var(--lightBg) !important;
    border-radius: 20px !important;
}
.agenda-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: end;
    margin-bottom: 30px;
}
/* .agenda-rows {
    max-width: 950px;
    min-width: 950px;
} */
 .agenda-rows{
    width: 100%;
    max-width: 100%;
 }
.agenda-design2-speaker h4 {
    position: sticky;
    top: 0px;
    margin-top: 0px;
    margin-right: 33px;
}

.agenda-design2-speaker h4::after {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 20px solid var(--mainThemeColor2);
    border-bottom: 10px solid transparent;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  display:none;
}
.agenda-design2-speaker .agenda-row .agenda-col:first-child {
    text-align: center !important;
    position: absolute !important;
    left: 30px;
    display: inline-flex !important;
    width: max-content !important;
    align-items: center;
    background: var(--mainThemeColor2);
    padding: 3px 15px !important;
    border-radius: 50px !important;
    color: var(--white) !important;
    top: 30px;
}
.agenda-design2-speaker .agenda-row .agenda-col:last-child {
    border-left: none !important;
    padding: 30px!important;
    background: var(--lightBg)!important;
    border-radius: 0px!important;
    display: block!important;
}
.agenda-design2-speaker h4 span {
    display: inline-block!important;
    padding-bottom: 0!important;
    background: rgb(249,102,52)!important;
background: linear-gradient(90deg, rgba(249,102,52,1) 0%, rgba(239,70,120,1) 100%)!important;
    color: var(--white)!important;
    padding: 10px 12px 10px 20px!important;
    border-radius: 20px!important;
    margin-left: 0px!important;
    margin-bottom: 0px!important;
}
.agenda-design2-speaker h4 span span {
    font-size: 16px;
    display: block!important;
    text-align: left;
    font-weight: 300;
    padding-left: 0px!important;
    padding-top: 5px!important;
}
.agenda-design2-speaker .agenda-row {
    position: relative;
    margin-bottom: 0px !important;
}
.agendaRow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.agendaRow > div:last-child p {
    margin-bottom: 0px !important;
}
/* span.webinar_time::before {
    content: "\e855";
    font-family: "Material Icons";
    font-size: 20px;
    margin-right: 8px;
} */
span.webinar_time {
    position: relative;
}
.agenda-design2-speaker .agenda-row .agenda-col:first-child img {
    display: none;
}
.agenda-design2-speaker .agenda-row .agenda-col:first-child span {
    display: flex;
}
span.webinar_time {
    display: flex !important;
}
.agenda-group .agenda-rows:nth-of-type(1) .agenda-col:last-child {
    border-radius: 20px 20px 0px 0px !important;
}
.agenda-group .agenda-rows:last-child .agenda-col:last-child {
    border-radius: 0px 0px 20px 20px !important;
}


/*Speakers-----------------------------*/
.speaker_img-src img {
  width: 255px !important;
    height: 328px !important;
    border-radius: 25px;
    box-shadow: -10px -10px 0px var(--mainThemeColor2);
}
.speaker_img-src:hover img {
    box-shadow: none;
}


/*Sponsors Section----------------------------------------*/
.logos-list {
   text-align: center;
    /*background: var(--lightBg)!important;*/
    padding: 40px 40px;
    border-radius: 20px;
    margin-top: 40px;
}
.logos-list img {
    display: inline-block;
    width: 100%;
    height: auto;
    max-width: 250px;
    margin: 5px;
    padding: 5px;
   /* border: solid 1px #eee;*/
    transition: all 0.2s ease;
}
.logos-list img:hover {
    box-shadow: 0px 10px 20px rgb(0 0 0 / 5%);
}


/* FAQs Section------------------------------------------- */
.faq.padding {
    padding: 0
}

.faq .panel {
    background: var(--faqBgColor);
    padding: 24px 25px 24px;
    margin: 0 0 27px;
    /* border: none; */
    border-radius: 15px;
    box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
    background: none;
    border-color: #ffffff20;
}


.faq .panel-heading {
    padding: 0 !important;
    background: 0 0 !important
}

.faq h4.panel-title a {
    text-decoration: none;
    cursor: pointer;
    outline: 0;
    line-height: 24px;
    color: var(--eventFontColor);
    font-family: var(--eventHeadingFont);
    font-weight: 700;
    text-transform: none;
  padding-left: 45px;
}

.faq .panel-collapse {
    text-decoration: none;
    cursor: pointer
}

.faq .panel-collapse .panel-body {
    width: 100% !important;
    padding-bottom: 0;
    border: none !important;
    padding-top: 9px;
    font-size: var(--eventFontSize) !important;
    font-family: var(--eventFont) !important;
    line-height: 24px !important;
    color: var(--eventFontColor) !important
}

.faq .panel-title>a:before {
  float: right !important;
  font-family: FontAwesome;
  content: '\f068';
  padding-right: 5px;
  font-size: 19px;
  color: #fff;
  background: #f69060;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.faq .panel-title>a.collapsed:before {
    float: right !important;
    content: '\f067';
}

.faq .panel-title>a:hover,
.faq .panel-title>a:active,
.faq .panel-title>a:focus {
    text-decoration: none;
}

.num_icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    line-height: 30px;
    text-align: center;
    background: var(--mainThemeColor);
    /* background-image: -webkit-linear-gradient(left, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%) !important;
    background-image: linear-gradient(to right, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%) !important; */
    color: var(--white);
    font-style: normal;
    margin-right: 10px;
  position: absolute;
    left: 0px;
}

.cus-accordian .panel-default>.panel-heading+.panel-collapse>.panel-body {
    padding: 12px 45px 0px 45px;
}

.faq .panel.active i {
    background: var(--white) !important;
    color: var(--mainThemeColor2);
}
.faq .panel.active {
    background: var(--mainThemeColor2);
}
.faq .panel.active .panel-title>a:before {
    color: var(--white);
}
/* Contact Section------------------------------ */
.ask-cta {
    background-image: -webkit-linear-gradient(left, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%) !important;
    background-image: linear-gradient(to right, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ask-cta>.container>.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ask-cta .contact-img {
    max-height: 200px;
}

#contact {
    padding-top: 60px;
    padding-bottom: 60px;
}

.contactPersons {
    display: flex;
    flex-wrap: wrap;
}

.contactPersons_box {
    margin-right: 70px;
    margin-bottom: 30px;
}

.contactPersons_box p {
    margin-bottom: 0px;
}

.textSmall {
    font-size: var(--smalltext);
    font-weight: 400;
}

.contactPersons_box h5 {
    line-height: 23px;
}

.contactPersons>div:nth-child(even) {
    margin-right: 0px;
}




/* Footer----------------------------- */
footer {
    background: var(--mainThemeColor);
    padding: 20px 0px;
    position: relative;
    border-top-color: #f69060;
}

.footer-links li {
    display: inline-block;
    position: relative;
}

.footer-links li:after {
    content: "|";
    margin: 0px 5px 0px 12px;
}

.footer-links li:last-child::after {
    margin-right: 0px;
    content: "";
}

.footer-links a {
    font-size: var(--smalltext) !important;
}

.socialIcons {
    list-style: none;
    padding: 0px;
    margin-bottom: 0px;
}

.socialIcons li {
    display: inline-block;
    padding-right: 10px;
}

.socialIcons li:last-child {
    padding-right: 0px;
}

.socialIcons li a {
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
}

.socialIcons li a:hover i {
    color: var(--mainThemeColor);
 }

/*Top to the Page button---------------*/
#top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: var(--white);
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    padding-top: 5px;
    z-index: 45;
    display: none;
    background-color: var(--mainThemeColor);
    font-size: 24px;
    padding-top: 13px;
    border-radius: 5px;
}

#top:hover, #top:focus{
background-color:var(--darkgrey);
}


/*Accessibility Features---------------*/
.btn.btn-access.slide {
    position: absolute;
    z-index: 45;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    background: var(--darkgrey);
    right: 12px;
    top: 46px;
    text-align: center;
    padding: 5;
}
.btn.btn-access.slide:hover{background:var(--mainThemeColor);}
.accsess_tray {
    display: block;
    position: fixed;
    right: 10px;
    background-color: var(--white);
    top: 110px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 4px;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.2);
}
   .accsess_tray #readspeaker_button1,
   .accsess_tray .hall-wrap .rsbtn {
    right: -34px;
  }
   .accsess_tray .rsexpanded span {
    margin: 0;
  }
   .accsess_tray .rsexpanded span.rsbtn_text {
    margin: 5px 0 0 6px;
  }
   .accsess_tray .rsexpanded .rsbtn_progress_container.rsimg {
    margin: 7px 0 0 5px;
  }
   .accsess_tray .rsexpanded .rsbtn_powered .rsbtn_btnlabel a span.rsbtn_label_icon.rsimg {
    display: inline-block;
  }
   .accsess_tray svg path {
    fill: var(--mainThemeColor);
  }
   .accsess_tray .btn-tray {
    padding: 6px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px !important;
    line-height: normal;
    display: flex;
    align-items: center;
    margin-right: 5px;
    background: rgba(var(--mainThemeColor-rgb), 0.1);
    color: var(--mainThemeColor);
  }
   .accsess_tray .btn-tray:last-child {
    margin-right: 4px;
  }
   .accsess_tray .btn-tray.btn:hover {
    opacity: 0.9;
  }
   .accsess_tray .btn-tray svg path {
    fill: var(--mainThemeColor);
  }
   .accsess_tray span {
    margin-right: 8px;
  }
   .accsess_tray .btn-close-access {
    text-align: center;
    padding: 8px 8px;
    background: transparent;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }
   #accessibility-fade-in {
    width: 1px;
    opacity: 0;
    transition: all 0.75s ease;
    z-index: 5;
  }
   #accessibility-fade-in.show {
    opacity: 1;
    width: 262px;
    display: flex !important;
  }

/* Privacy Policy------------- */
.content-page ul {
    list-style-type: disc;
    margin-left: 20px;
}

.content-page ul li {
    margin-bottom: 0;
}

.content-page p,
.content-page li {
    text-align: justify;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    width: 100%;
}

.section.travel-info .popup .col-sm-12 {
    min-height: auto;
}
.section.travel-info .container.full-page-container {
    max-width: 100%;
    width: 100%;
    padding: 0;
}
.section.travel-info .main_top_area {
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.section.travel-info .main_top_area::before {
    /* background: #314c68; */
}
.section.travel-info .main_top_area .sub-title {
    color: var(--mainThemeColor);
    font-size: 22px;
    margin-bottom: 0 !important;
}

@media (max-width: 1199px) {
/* .agenda-rows {
    max-width: 79%;
    min-width: 79%;
} */
#clockdiv .smalltext{
      font-size: 16px;
}

#clockdiv div > span {
    min-width: 50px;
    font-size: 50px;
}
.heading {
    font-size: 28px;
    line-height: 36px;
}
}

@media (max-width: 768px) {
  .section.travel-info .main_top_area .sub-title {
    font-size: 18px;
    text-align: center;
}
.section.travel-info .main_top_area .btn-group {
    text-align: center;
}
  .vfairsBtn {
    margin: 10px 5px;
    font-size: 16px;
  }
  .order-md-2 {
    order: 2;
}
 .order-md-1 {
    order: 1;
}
#about .col-sm-7.order-md-1 {
    margin-top: 20px;
}
  .countdown-container::before {
    left: -12px;
  }
  .countdown-container::after {
    right: -12px;
  }
  #clockdiv>div::before {
    right: -6px;
  }
  .countdownHeading {

    padding: 0px 30px 0px 30px;

}
#clockdiv>div:first-child {
    margin: 0px;
}
.countdown-container {
        padding: 20px 2% 5px 2% !important;
        flex-direction: column;
    }
   .countdown-container .heading{
    text-align: center;
        width: 100%;

   }
  #clockdiv>div {

          padding: 10px 5px;
        width: 60px !important;
        margin: 0;
}
    .header-content .gradient.primary {

    width: 60vh !important;

}
 :root{
  --h1FontSize:70px !important;
  }

  .main_top_area {
   
    padding-top: 12%;
    padding-bottom: 10%;
   
}
  canvas.vanta-canvas{
  height:100% !important;
  }
  #main-nav a {
        padding: 8px 8px;
        font-size: 14px;
 }
 .event-logo img{
  min-width: unset !important;
 }
 .header-content .btnWhite {
    padding: 8px 12px;
}
  .heading {
  font-size: 24px;
        padding-left: 0;
        line-height: 30px;
}
.countdownHeading .heading br {
    display: none;
}
.countdownHeading{
      flex: 0 0 100%;
    width: 100%;
    padding: 0 !important;
}
#clockdiv{
      flex: 0 0 100%;
    width: 100%;
}
  .heading::before {
    left: 0px;
    }
  #clockdiv div > span {
    padding: 7px 4px 0;
    font-size: 60px;
    }
  #clockdiv .smalltext {
    font-size: 12px;
 
 }
  /* .countdownHeading::after {
    width: 50px;
    height: 50px;
    border-top: 80px solid transparent;
    border-left: 40px solid #ffffff07;
    border-bottom: 80px solid transparent;
    right: -50px;
} */
  .countdownHeading p {
     display: none;
}
  .eventInfo > div:last-child {
    flex-basis: 100%;
    margin-top: 20px;
}
  .attractionsRow > div:first-child {
    flex-basis: 100%;
    padding: 0px 50px;
    border-bottom: none;
}
  .attractionsRow > div {
    flex-basis: 33.33%;
}
  .attractionsRow {
    flex-wrap: wrap;
}
  .attentionDetails span {

    font-size: 26px;
}
  .attentionDetails {
    font-size: 45px;

}
  #eventAttractions {
    padding-top: 0px;
}
  
}
  
@media (max-width: 767px) {
  .navCol {
    flex-grow: 0;
}
  .header-content > .container > .row > div.text-right {
    display: none;
}
    #main-nav {
        position: fixed;
        top: 0;
        left: 0px;
        z-index: 55;
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
        height: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
      display: none !important;
    }
  
  #main-nav .navbar-nav {
    flex-direction: column;
    
 }
  
#main-nav .navbar-nav {
    flex-direction: column;
    flex-grow: initial;
    width: 90%;
}
  #main-nav .navbar-nav li.visible-xs a {
    margin-bottom: 18px;
}

    .navClose {
        position: absolute;
        top: 15px;
        right: 20px;
        color: var(--white);
        font-size: 22px;
        font-family: 'Poppins';
        border-radius: 100%;
        width: 40px;
        height: 40px;
        border: 2px solid var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
    }

    #main-nav.in {
        display: flex !important;
    }

    #main-nav a {
    color: var(--white);
    font-size: 18px;
    padding: 18px 15px;
}
  #LoginBtn {
    margin-top: 12px;
}

    .event-logo {
        flex-grow: 1;
    }

    .whyAttendImg {
        max-width: 320px !important;
        display: block;
        margin: auto;
    }

    .contactPersons {
        justify-content: space-around;
    }

    .contactPersons_box {
        margin-right: 0px;
    }

    #contact h3 {
        text-align: center;
    }

    .footer-section .row>div {
        text-align: center !important;
    }
   input[type="file"] {
    width: 100%;
}
  .modal .modal-dialog {
    width: 95% !important;
  }
  .modal-footer .btn+.btn {
    margin-left: 2px;
}
  #login-footer .row{flex-direction:column;}
  #login-footer .row .col-sm-4 {
    order: 1;
}
    #login-footer .row .col-sm-8 {
    order: 2;
}
  #login-footer .col-sm-8 {
    padding-left: 2px;
    padding-right: 2px;
}
  form input[type=submit] {
    width: 100% !important;
}
  .reg-form-data input::file-selector-button {
    background: var(--mainThemeColor) !important;
}
}

@media (max-width: 575px) {
      .heading {
        font-size: 20px;
        line-height: 24px;
    }
  .gradient.primary {

    width: 40vh !important;

}
  .main_top_area {
    padding-top: 20%;
}
  :root {
    --h1FontSize: 50px !important;
}
  .agenda-rows {
    max-width: 100%;
    min-width: 100%;
}
  .agenda-group {
    justify-content: start;
    margin-bottom: 30px;
}
  .agenda-design2-speaker h4 {
    margin-right: 0px;
    width: 100%;
    z-index: 22;
}
  .agenda-design2-speaker h4 span {
    display: block !important;
}
  .event-logo img {

    max-width: 120px;
}
/* .countdownHeading::after {
    width: 50px;
    height: 50px;
    border-top: 30px solid transparent;
    border-left: 20px solid #ffffff07;
    border-bottom: 30px solid transparent;
    left: 46%;
    transform: rotate(90deg) translateX(-50%);
    top: 86px;
    right: initial;
} */
  .countdownHeading {
   align-items: center;
   margin-left: 0px;
   padding: 20px 30px 20px 20px;
   /* flex-basis: 100%; */
}
  .countdown-container {
    padding: 0px 0px 0px 0px;
    flex-wrap: wrap;
}
.attractionsRow > div {
    flex-basis: 100%;
    align-items: center;
}
  .attentionDetails {
 
    text-align: center;
}
    .main-intro {
        max-width: 100%;
    }

    .headingOverlayText {
        display: none !important;
    }

    .main-title span {
      /*  font-size: 18px;*/
    }

    h3.main-title {
        font-size: 32px !important;
    }

    .two-btns {
        margin: 0px 0 50px;
    }

    .simple-section {
        padding: 20px 0px;
    }

    #whyAttend {
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --h1FontSize: 35px;
        --h4FontSize: 18px;
    }

    #date-info span {
        display: block;
        text-align: center;
    }

    .eventDate::after {
        content: "";
        margin-left: 0px;
    }

    .countdown-container {
        padding: 0px 5px 0px 5px;

    }
    .heading {
        font-size: 18px;
       
    }
        #clockdiv>div {
        width: 50px !important;
    }
        #clockdiv .smalltext {
        font-size: 8px;
    }
   #clockdiv>div>span {
              min-width: 50px;
        font-size: 22px;
    }
#clockdiv>div:first-child {
    margin-left: 0px;
}
  	#clockdiv {
        font-size: 40px;
    }
    .countdown-container {
        padding: 20px 2% 5px 2% !important;
    }
      #clockdiv .smalltext {
        font-size: 10px;
        letter-spacing: normal;
    }

    #clockdiv>div {

        margin-right: 0px;
    }

    #clockdiv>div::before {

        right: 0px;

    }

    .two-btns {
        border-radius: 29px;
        width: 100%;
      border:none;
    }

    .two-btns a {
        display: block;
    }
  .two-btns a:first-child {
    border: 2px solid var(--white);
    margin-bottom: 10px;
}

}
.block-overlay.Restream_Webinar {
    display: none !important;
}
 #LoginModal .modal-dialog {
        width: 100%;
        max-width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
      }
      #LoginModal .modal-dialog .modal-content {
        max-width: 350px;
        width: 100%;
        background: #f3f4f6;
        padding: 20px 20px 10px;
      }
      #LoginModal .modal-dialog .modal-header {
        padding: 9px 15px 20px;
        background: transparent !important;
        border: 0;
      }
      #LoginModal .modal-dialog .modal-header .modal-title {
        color: #f36531;
        font-weight: 600;
        font-size: 22px;
      }
      #LoginModal .modal-dialog .modal-header .close {
        position: absolute;
        right: 10px;
        top: 10px;
        color: #000000;
        opacity: 0.6;
        font-size: 32px;
        font-weight: 100;
      }
      #LoginModal .modal-dialog .modal-body {
        padding-top: 0;
        padding-bottom: 0;
      }
      #LoginModal .modal-dialog .modal-body .form-group {
        margin-bottom: 0;
        position: relative;
      }
      #LoginModal .modal-dialog .modal-body .control-label {
        color: #344054;
        font-size: 14px;
        padding-bottom: 5px;
        font-family: 'Avenir';
        font-weight: 500;
        margin-bottom: 0;
      }
      #LoginModal .modal-dialog .modal-body .form-control {
        color: #6c757d;
        border-radius: 6px;
        height: 45px;
        padding: 15px 15px 13px;
        font-size: 13px;
        box-shadow: none;
      }
      #LoginModal .modal-dialog .modal-body input#LoginEmail {
        padding-left: 35px !important;
      }
      #LoginModal .modal-dialog .modal-body .form-group.group-email::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 44px;
        width: 20px;
        height: 20px;
        z-index: 1;
        background-image: url('https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1685016767user-icon-png1685016767.png') !important;
        background-position: center center !important;
        background-repeat: no-repeat;
        background-size: contain;
      }
      #LoginModal .modal-dialog .modal-body input#Password {
        padding-left: 35px !important;
      }
      #LoginModal .modal-dialog .modal-body .form-group.grp-password-field::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 44px;
        width: 20px;
        height: 20px;
        z-index: 1;
        background-image: url('https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1685016767lock2-icon-png1685016767.png') !important;
        background-position: center center !important;
        background-repeat: no-repeat;
        background-size: contain;
      }
      #LoginModal .modal-dialog .modal-body .ResponseBox {
        color: red;
        font-weight: 100;
        font-family: 'Avenir';
        margin-top: 10px;
        font-size: 14px;
        line-height: 16px;
      }
      #LoginModal .modal-dialog #login-footer {
        border: 0;
        padding: 20px 15px 0;
      }
      #LoginModal .modal-dialog #login-footer .row {
        display: flex;
        flex-direction: column;
        margin: 0.25rem;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-4 {
        width: 100%;
        margin-bottom: 15px;
        padding: 0;
        order: inherit;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-4 .btn.btn-default {
        display: none;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-4 .btn-darkgrey {
        width: 100%;
        margin: 0 !important;
        padding: 12px 12px 12px;
        border-radius: 5px !important;
        text-transform: uppercase;
        box-shadow: none;
        outline: none;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-8 {
        width: 100%;
        max-width: 100%;
        flex-flow: wrap;
        flex-direction: column-reverse;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-8 button.btn-darkgrey {
        background: transparent !important;
        color: #686a6e !important;
        font-weight: 500 !important;
        font-family: 'Avenir';
        padding: 0;
        font-family: 'Avenir';
        font-weight: 600;
        box-shadow: none;
        outline: none;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-8 button.btn-darkgrey:hover {
        text-decoration: underline;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-8 a.btn-darkgrey {
        background: transparent !important;
        color: #80bded !important;
        font-weight: 500 !important;
        font-family: 'Avenir';
        font-size: 14px;
        padding: 20px 5px 5px 5px;
        box-shadow: none;
        outline: none;
      }
      #LoginModal .modal-dialog #login-footer .col-sm-8 a.btn-darkgrey:hover {
        text-decoration: underline;
      }
      #forgot-pwd-modal .modal-dialog {
        width: 100%;
        max-width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
      }
      #forgot-pwd-modal .modal-dialog .modal-content {
        max-width: 350px;
        width: 100%;
        background: #f3f4f6;
        padding: 20px 20px 10px;
      }
      #forgot-pwd-modal .modal-dialog .modal-header {
        padding: 9px 15px 20px;
        background: transparent !important;
        border: 0;
      }
      #forgot-pwd-modal .modal-dialog .modal-header .modal-title {
        color: #f36531;
        font-weight: 600;
        font-size: 22px;
      }
      #forgot-pwd-modal .modal-dialog .modal-header .close {
        position: absolute;
        right: 10px;
        top: 10px;
        color: #000000;
        opacity: 0.6;
        font-size: 32px;
        font-weight: 100;
      }
      #forgot-pwd-modal .modal-dialog .modal-body {
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 15px;
      }
      #forgot-pwd-modal .modal-dialog .modal-body .form-group {
        margin-bottom: 0;
        position: relative;
      }
      #forgot-pwd-modal .modal-dialog .modal-body .control-label {
        color: #344054;
        font-size: 14px;
        padding-bottom: 5px;
        font-family: 'Avenir';
        font-weight: 500;
        margin-bottom: 0;
      }
      #forgot-pwd-modal .modal-dialog .modal-body .form-control {
        color: #6c757d;
        border-radius: 6px;
        height: 45px;
        padding: 15px 15px 13px;
        font-size: 13px;
        box-shadow: none;
      }
      #forgot-pwd-modal .modal-dialog .modal-body input#resetemail {
        padding-left: 35px !important;
      }
      #forgot-pwd-modal .modal-dialog .modal-body .form-group:first-child::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 44px;
        width: 20px;
        height: 20px;
        z-index: 1;
        background-image: url('https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1685016767user-icon-png1685016767.png') !important;
        background-position: center center !important;
        background-repeat: no-repeat;
        background-size: contain;
      }
      #forgot-pwd-modal .modal-dialog .modal-body .FormResponseSuccess {
        color: red;
        font-weight: 100;
        font-family: 'Avenir';
        margin-top: 10px;
        font-size: 14px;
        line-height: 16px;
      }
      #forgot-pwd-modal .modal-dialog .modal-body .FormResponseError {
        color: red;
        font-weight: 100;
        font-family: 'Avenir';
        margin-top: 10px;
        font-size: 14px;
        line-height: 16px;
      }
      #forgot-pwd-modal .modal-dialog .modal-body .has-error .help-block {
        color: red;
        font-weight: 100;
        font-family: 'Avenir';
        margin-top: 10px;
        font-size: 14px;
        line-height: 16px;
      }
      #forgot-pwd-modal .modal-dialog .modal-footer {
        border: 0;
        padding: 20px 15px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
      }
      #forgot-pwd-modal .modal-dialog .modal-footer .btn.btn-default {
        text-transform: capitalize;
        box-shadow: none !important;
        background: transparent !important;
        color: #686a6e;
        font-family: 'Avenir';
        font-weight: 500 !important;
        outline: none;
        padding: 0;
        border: 0;
        display: none;
      }
      #forgot-pwd-modal .modal-dialog .modal-footer .btn.btn-default:hover {
        text-decoration: underline;
      }
      #forgot-pwd-modal .modal-dialog .modal-footer .btn-darkgrey {
        background: #f36531 !important;
        color: #fff;
        font-family: 'Avenir';
        font-size: 14px;
        width: 100%;
        margin: 0 0 25px !important;
        padding: 12px 12px 12px;
        border-radius: 5px !important;
        text-transform: uppercase;
        box-shadow: none;
        outline: none;
        font-weight: 600;
      }

/*light glow-----------------*/
.gradient.primary {
    filter: blur(55px);
    width: 100vh;
    height: 80vh;
    opacity: 0.5;
}
.gradient {
    z-index: 35;
    background-image: radial-gradient(circle farthest-side at 20% 20%, var(--mainThemeColor), rgb(91 223 231 / 0%)), radial-gradient(circle closest-corner at 60% 70%, var(--mainThemeColor2), rgb(120 155 206 / 0%));
    /* background: red; */
    border-radius: 1000px;
   /* position: absolute;
  top:350px;*/
}
.gradient.secondary {
    z-index: 4;
    opacity: 0.65;
    filter: blur(80px);
}

.gradient-wrapper.mouse-track {
    justify-content: center;
    align-items: center;
}

.gradient-wrapper {
    z-index: 0;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
     position: absolute;
  /* top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;*/
}
/*light glow end-------------------*/

/*-------scrollReveal----------*/

.scrollReveal{
    opacity: 0;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
}

.revealTop{
    transform: translate(0px,150px);
}
.revealRight{
    transform: translate(-150px,0px);
}
.revealLeft{
    transform: translate(150px,0px);
}
.revealBottom{
    transform: translate(0px,-150px);
}

.scrollReveal.reveal{
    opacity: 1;
    transform: translate(0,0);
}

.main_video{
  display: block;
   position: absolute;
   z-index: 0;
   top: 0px;
   left: 0px;
   width: 100%;
   min-height: 700px;
 height:100%;
 object-fit: cover;
}

.header-content .gradient-wrapper {
  display: none !important;
}
.popup .col-sm-12{
  position: relative;
  z-index: 4;
  width: 100%;
  min-height: 750px;
  justify-content: end;
}
.main_top_area{
  padding: 0 !important;
}
.popup .col-sm-12 .two-btns {
  margin: 0 0 20px;
  
}
.popup .col-sm-12  #date-info{
  margin-bottom: 20px;
  color: var(--mainThemeColor2);
}
.countdown-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1746467953blue-grit-png1746467953.png) no-repeat center;
background-size: contain;
    min-height: 200px;
    height: 100%;
    width: 230px;
}
.countdown-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1746467953blue-grit-png1746467953.png) no-repeat center;
background-size: contain;
    min-height: 200px;
    height: 100%;
    width: 230px;
  transform: rotate(180deg);
}
/* div#clockdiv{
  position: relative;
  z-index: 2;
}
.countdownHeading{
  position: relative;
  z-index: 2;
} */
 .countdown-container {
    position: relative;
    z-index: 0;
}
.countdown-container::before, .countdown-container::after{
  z-index: -1;
}
div#about img.modern_building {
  position: absolute;
  left: -180px;
  top: 0;
  min-width: 700px;
  width: 100%;
}
div#about  .eventInfo {
  margin-top: 80px;
  background: #616262;
}
div#about .eventInfo img.calender_img {
  max-width: 36px;
  height: auto;
  max-height: max-content;
  margin-right: 20px;
}
div#about img.location_img {
  max-width: 36px;
  height: auto;
  max-height: max-content;
  margin-right: 20px;
}
div#about .eventInfo .whenContent, div#about .eventInfo .whenContent h6 {
  color: #fff;
  font-weight: 600;
  font-family: var(--eventFont);
}
div#about .eventInfo .whereContent, div#about .eventInfo .whereContent h6 {
  color: #fff;
  font-weight: 600;
  font-family: var(--eventFont);
}
div#about .eventInfo .whenContent,div#about .eventInfo .whereContent {
  font-size: 18px;
}
.eventInfo .vfairsBtn {
  display: inline-block;
  height: max-content;
}
#agenda{
  /* background: var(--white); */
  background: transparent;
}
#agenda .main-title {
  color: var(--mainThemeColor);
}
#agenda .agenda-design1 h4 span {
  color: #616262;
  background: transparent;
  margin: 0;
  padding-left: 0;
  padding-top: 0;
}



span.webinar_time span {
    display: none !important;
}






.speaker_img-src p {
    color: #333;
}

.speaker_img-src h4 {
    color: #333 !important;
}


#agenda section .agenda-group {
  justify-content: start;
  width: 100%;
}
/* .agenda-design1 .agenda-row .speaker{
    display: none !important;
} */
 .agenda-design1 .agenda-row p:last-child{
  padding-bottom: 0 !important;
 }
 .agenda-design1 .agenda-rows .agenda-row:last-child .agenda-col:last-child h3 {
    margin-bottom: 20px;
}
 .agenda-design1 .agenda-row .speaker img
 {
    object-fit: cover;
    object-position: top;
}
.agenda-design1 .agenda-row .agenda-col:first-child {
  
  width: 200px;
}
.agenda-design1 .agenda-row .agenda-col:first-child .webinar_time span br {
  display: none;
}
.agenda-design1 .agenda-row .agenda-col:first-child {
  width: 170px !important;
}
.agenda-design1 .agenda-row .agenda-col:first-child img {
  display: none;
}
.agenda-design1 .agenda-row .agenda-col:first-child  span,#agenda section h3{
  color: #616262 !important;
}
.agenda-design1 .agenda-row .agenda-col:last-child {
  background: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1746485810circle-dot-png1746485810.png	) no-repeat left top 24px / 10px, url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1746485810timeline-strip1-png1746485810.png	) repeat-y left 3px top !important;
}
#agenda section h3 {
  margin-top: 22px;
}
#agenda   .agenda-design1{
  border-bottom: none !important;
}
#agenda img.cloude_img1 {
  position: absolute;
  max-width: 500px;
  right: 20%;
  top: 30%;
  z-index:-2;
}
#agenda  img.cloude_img2 {
  position: absolute;
  right: 0;
  top: 45%;
  max-width: 500px;
  width: 100%;
  z-index: -2;
}

#agenda img.cloude_img3 {
  max-width: 1024px;
  margin: 0 auto;
  display: block;
  z-index: -2;
}
section#eventAttractions {
  padding: 0;
}
.attractionsRow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1746490834red-grit-png1746490834.png) no-repeat center;
  background-size: cover;
  min-height: 216px;
  height: 100%;
  width: 100%;
}
section#speakers {
  background: #e2f1f7;
}
section#speakers .main-title {
  color: var(--mainThemeColor2);
}
section#speakers .main-sub-title {
  color: var(--mainThemeColor);
}
section#sponsors {
  background: #fff;
  color: var(--mainThemeColor);

}
section#sponsors .main-title{
  color: var(--mainThemeColor);
}
section#interest {
  background: #fff url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1746490833beige-grit-png1746490833.png) no-repeat bottom;
  background-size: contain;
  padding-bottom: 0;
  padding-top: 0;
}
section#interest .main-title {
  color: var(--mainThemeColor2);
}
section#interest .main-intro {
  color: var(--mainThemeColor);
}
section#interest img.interest_img {
  position: absolute;
  right: -180px;
  top: 42px;
  min-width: 700px;
  width: 100%;
}
section#faq {
  background: var(--mainThemeColor);
}
.faq .panel {
  background: #fff;

}
.faq h4.panel-title a{
  color: var(--mainThemeColor) !important;
}
.cus-accordian .panel-default>.panel-heading+.panel-collapse>.panel-body {
  color: var(--mainThemeColor) !important;

}
#agenda section h3 {
    font-family: var(--eventFont);
    line-height: normal;
}
.faq h4.panel-title a {
    font-family: var(--eventFont);
}

@media screen and (min-width: 1920px){
  .main_video{
   min-height: 1024px;
        max-width: 1920px;
        width: 100%;
        margin: 0 auto;
        display: block;
        height: 100%;
        left: 50%;
        transform: translate(-50%);
  }
.popup .col-sm-12{
  min-height: 950px;
}

}
@media screen and (max-width: 1024px){
  .countdown-container::before {
    left: -20px;
}
 .countdown-container::after {
    right: -20px;
}
  img.interest_img {
    top: 150px;
}
  div#about img.modern_building{
    min-width: 580px;
  }
.header-content .row {
  flex-wrap: wrap;
  justify-content: center;
}
}
@media screen and (max-width: 768px){
  .popup .col-sm-12{
        min-height: 620px;
  }
  .main_video {
    min-height: 400px;
    object-fit: contain;
}
  div#about .eventInfo .whenContent, div#about .eventInfo .whereContent{
    font-size: 16px;
  }
  img.interest_img {
    position: relative;
    top: unset;
    right: unset;
}
  /* .countdown-container::before,.countdown-container::after{
    background-size: contain;
        min-height: 150px;
        height: 100%;
        width: 190px;
 
  } */
   .countdown-container::before{
    left: -80px;
   }
    .countdown-container::after{
    right: -80px;
   }
  div#about img.modern_building {
    position: relative;
    width: 100%;
    min-width: 100%;
    left: 0;
    margin: 20px 0 10px 0;
}
div#about  .eventInfo {
  margin-top: 20px;
  gap: 20px;
}
.agenda-design1 .agenda-row {
  display: flex !important;
  flex-wrap: wrap;
}
.agenda-design1 .agenda-row .agenda-col:first-child {
  display: block;
  width: 100% !important;
}
.agenda-design1 .agenda-rows .agenda-row:last-child .agenda-col:last-child {
  width: 100% !important;
}
}
@media screen and (max-width: 767px){
    .scrollReveal{
        opacity: 1 !important;
    }
    .revealTop,
    .revealRight,
    .revealLeft,
    .revealBottom{
        transform: translate(0,0) !important;
    }
}
@media screen and (max-width: 480px){
  .main_video{
    min-height: 450px;
    object-fit: contain;
    background: var(--white);
  }
.popup .col-sm-12{
  min-height: 450px;
}
/* .countdown-container::before,.countdown-container::after{
 
    background-size: contain;
    min-height: 150px;
    height: 100%;
    width: 330px;
  } */

}
 .travel-info .panel {
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
      background: rgba(255,255,255,0.8);
      border-radius: 8px;
      border: none;
      margin-bottom: 24px;
    }
    .travel-info .panel-heading {
      background: var(--mainThemeColor);
      color: white;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
      padding: 20px;
    }
    .travel-info .panel-title {
      font-size: 24px !important;
      font-weight: bold;
      display: flex;
      align-items: center;
      margin: 0;
    }
    .travel-info .panel-title svg {
      margin-right: 12px;
    }
    .travel-info .panel-heading p {
      color: #cfe8ff;
      font-size: 16px;
      margin: 8px 0 0 0;
    }
    .travel-info .panel-body {
      padding: 30px;
    }
    .media {
      padding: 15px;
      border: 1px solid var(--mainThemeColor);
      border-radius: 6px;
      background: var(--mainThemeColor);
      margin-bottom: 15px;
      cursor: pointer;
      display: flex;
      align-items: center;
      transition: box-shadow 0.2s;
    }
    a.media,a.media:hover , a.hotel-media,a.hotel-media:hover {
      color: inherit;
      text-decoration: none;
    }
     
    .media:last-child {
      margin-bottom: 0;
    }
    .media-left {
      margin-right: 16px;
      flex-shrink: 0;
    }
    .media-left .text-center,
    .media-left > div {
      width: 48px;
      height: 48px;
      background-color: #ffffff1a;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .media-body {
      flex: 1;
    }
    .media-heading {
      color: #fff;
    font-weight: 500;
    margin: 0 0 4px 0;
    font-size: 16px;
    }
    .media-body p {
      color: #fff;
      font-size: 13px;
      margin: 0 !important;
    }
    /* Accommodations panel */
    .travel-info .panel-green {
      background: var(--mainThemeColor2);
      color: white;
      border-top-left-radius: 6px;
      border-top-right-radius: 6px;
      padding: 20px;
    }
    .travel-info .panel-green .panel-title svg {
      width: 32px;
      height: 32px;
      margin-right: 12px;
    }
   .travel-info  .panel-green p {
      color: #dcfce7;
      font-size: 18px;
      margin: 10px 0 0;
    }
    .hotel-media {
      background: var(--mainThemeColor2);
      border: 1px solid var(--mainThemeColor2);
      border-radius: 6px;
      padding: 15px;
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      transition: box-shadow 0.2s;
      cursor: pointer;
    }
    /* .hotel-media:last-child {
      margin-bottom: 0;
    } */
    .hotel-media .media-left > div {
      background-color: #ffffff1a;
      margin-right: 15px;
    }
    .hotel-media .media-body h4 {
     color: #fff;
    font-weight: 500;
    margin: 0 0 4px 0;
    font-size: 16px;
    }
    .hotel-media .media-body p {
      color: #fff;
      font-size: 14px;
      margin: 0 !important;
    }
    .media-right {
      margin-left: 16px;
    }
    .label-success {
      border: 1px solid #fff;
      color: #fff;
      background-color: transparent;
      border-radius: 20px;
      padding: 4px 10px;
      font-size: 12px;
      font-weight: 600;
    }
    @media (max-width: 767px) {
      .main-title {
        font-size: 32px;
      }
      .sub-title {
        font-size: 16px;
      }
      .travel-info .panel-body {
        padding: 16px;
      }
      .travel-card-sec {
        padding: 20px 0;
      }
     .travel-info  .panel-title {
        font-size: 18px;
      }
      .media, .hotel-media {
        flex-direction: column;
        align-items: flex-start;
      }
      .media-left, .media-right {
        margin: 0 0 10px 0;
      }
    }

.ticket-form h3 {
    margin: 20px 0;
    font-size: 28px !important;
}
.col-12.order-change div label {
    display: block;
}

section#faq .faq-text {
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-family: 'Montserrat';
    max-width: 850px;
    margin: 0 auto;
    width: 100%;
    line-height: 28px;
}

.faq .panel-collapse p, .faq .panel-collapse ul, .faq .panel-collapse ul li {
    font-size: 16px;
    text-align: left;
    color: var(--mainThemeColor);
    font-family: 'Montserrat';
    margin-bottom: 6px !important;

}
 .faq .panel-collapse ul {
    list-style: disc;
}
.faq h4.panel-title a {
    font-size: 18px;
}
.faq-text a {
    color: #f69060;
    font-weight: 600;
}

.ticket-form h3 {
    margin: 20px 0;
    font-size: 28px !important;
}
.col-12.order-change div label {
    display: block;
}

section#faq .faq-text {
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-family: 'Montserrat';
    max-width: 850px;
    margin: 0 auto;
    width: 100%;
    line-height: 28px;
}

.faq .panel-collapse p, .faq .panel-collapse ul, .faq .panel-collapse ul li {
    font-size: 16px;
    text-align: left;
    color: var(--mainThemeColor);
    font-family: 'Montserrat';
    margin-bottom: 6px !important;

}
 .faq .panel-collapse ul {
    list-style: disc;
}
.faq h4.panel-title a {
    font-size: 18px;
}
.faq-text a {
    color: #f69060;
    font-weight: 600;
}
.travel-info .panel a, .travel-info .panel a:hover {
    text-decoration: none;
}