 /* Event Font -------------------------*/
 @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

 @import url("https://use.typekit.net/hme6bej.css");
 /* Setting of Landing page colors and Font */
 :root {
 --mainThemeColor: #4B3F7F;
 --mainThemeColor-rgb:55,36,107;
 --mainThemeColor2: #1E1952;
 --eventFontColor: #000000;
 --overlayHeadingTextColor: #f7f7f7;
 --overlayHeadingTextColor2: rgb(255 255 255 / 10%);
 --eventFontSize: 16px;
 --smalltext: 14px;
 --eventFont: "din-2014", sans-serif;
 --eventHeadingFont: "din-2014", sans-serif;
 --h1FontSize: 45px;
 --h2FontSize: 42px;
 --h3FontSize: 38px;
 --h4FontSize: 22px;
 --h5FontSize: 20px;
 --h6FontSize: 18px;
 --white: #fff;
 --black: #000;
 --yellow: #ffd600;
 --lightGrey: #ddd;
 --darkgrey: #333;
 --halfWidth: 50%;
 --quarterWidth: 75%;
 --faqBgColor: #fafafa;
 --footerBg: #131C4B;
 --curved: 6px;
 --rounded: 50px;
 --btnFontSize: 18px;
 }
 /* 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;
 overflow: hidden;
 }
 body > .header-content > .container {
 max-width: 100%;
 width: 100%;
 padding: 0px;
 }
 body > .header-content {
 position:relative;}
 .simple-section {
 padding: 100px 0px;
 }
 .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(--white);
 }
 .whiteText a:hover,
 .whiteText a:focus {
 color: var(--yellow);
 }
 h4.form-heading {
 font-size: 0px;
 }
 body > p:first-of-type {
 margin: 0px;
 }
 /* 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(--white);
 color: var(--mainThemeColor);
 border: 2px solid var(--mainThemeColor);
 }
 .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;
 }
 .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;
 }
 .btnWhite:hover,
 .btnWhite:focus,
 .btnBlack:hover,
 .btnBlack:focus {
 background: var(--mainThemeColor);
 color: var(--white);
 text-decoration: none !important;
 }
 /* Headings--------------------------- */
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 .popup h1 {
 font-family: var(--eventHeadingFont);
 font-weight: 700;
 }
 h1,
 .popup h1 {
 font-size: var(--h1FontSize);
 font-weight: 800;
 }
 h2 {
 font-size: var(--h2FontSize);
 }
 h3 {
 font-size: var(--h3FontSize);
 }
 h4 {
 font-size: var(--h4FontSize);
 }
 h5 {
 font-size: var(--h5FontSize);
 }
 h6 {
 font-size: var(--h6FontSize);
 }
 /* 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: center;
 position: relative;
 z-index: 0;
 }
 .main-title span {
 display: block;
 color: var(--mainThemeColor);
 font-size: 22px;
 text-transform: uppercase;
 font-weight: 600;
 }
 .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;
 }
 /* Main Navigation------------------------------ */
 #main-nav {
 padding: 0px;
 display: flex !important;
 }
 #main-nav .navbar-nav {
 flex-direction: row;
 justify-content: start;
 flex-grow: 1;
 }
 #main-nav a {
 color: var(--eventFontColor);
 font-size: var(--eventFontSize);
 padding: 8px 12px;
 }
 #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;
 }
 .header-content nav {
 margin-bottom: 0px;
 display: flex;
 align-items: center;
 justify-content: start;
 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: 42px;
 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/10164/content/files/1717072420background-16-9-white-png1717072420.png")no-repeat center;
 background-size: cover;
 padding-top: 4%;
 padding-bottom: 6%;
 position: relative;
 background-attachment: fixed !important;
 background-position: top;
 }
 .main_top_area::before {
 width: 100%;
 height: 100%;
 left: 0px;
 top: 0px;
 content: "";
 /* background-image: -webkit-linear-gradient(left, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%);
 background-image: linear-gradient(to right, var(--mainThemeColor) 0%, var(--mainThemeColor2) 100%); */
 position: absolute;
 opacity: 0.9;
 }
 .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(--white);
 font-weight: 600;
 font-family: var(--eventFont);
 }
 .eventDate::after {
 content: "|";
 margin-left: 7px;
 }
.two-btns {
    text-align: center;
    margin: 0px 0 0px;
    padding: 2px;
    
    display: 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: 1px;
 font-size: 18px;
 }
.two-btns a:first-child {
    background: #31B4C3;
    color: white !important;
    box-shadow: none;
}
 .two-btns:hover a {
 background: transparent;
 color: var(--white) !important;
 box-shadow: none;
 }
 .two-btns a:hover {
 background: var(--white) !important;
 color: var(--mainThemeColor) !important;
 box-shadow: 0px 15px 25px 0px rgba(var(--mainThemeColor-rgb),0.3);
 text-decoration: none;
 }
 .two-btns i {
 margin-right: 5px;
 }
 /*Registration Form---------------------*/
 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: 1px;
 }
 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(--eventFontColor);
 }
 .reg-form-data .form-control {
 font-size: var(--smallText);
 font-family: var(--eventFont);
 color: var(--eventFontColor);
 }
 .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: -50px;
 position: relative;
 display: inline-flex;
 justify-content: center;
 align-items: center;
 background: #fff;
 left: 50%;
 transform: translateX(-50%);
 border-radius: 15px;
 padding: 0px 29px 0px 15px;
 box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
 }
 #clockdiv {
 font-family: var(--eventHeadingFont);
 color: var(--mainThemeColor);
 display: inline-block;
 font-weight: 700;
 text-align: center;
 font-size: 50px;
 }
 #clockdiv .smalltext {
 color: var(--eventFontColor);
 font-size: var(--eventFontSize);
 }
 #clockdiv>div {
 background: none;
 position: relative;
 margin-right: 40px;
 }
 #clockdiv>div::before {
 content: ":";
 color: var(--lightGrey);
 position: absolute;
 right: -22px;
 top: 50%;
 transform: translateY(-60%);
 }
 #clockdiv>div:last-child::before {
 content: "";
 }
 #clockdiv .eventlive {
 max-width: 500px;
 font-size: 24px;
 }
 /* About section -------------------------------------- */
 .main-intro {
 max-width: 75%;
 text-align: center;
 margin: auto;
 }
 .main-intro strong {
 margin-bottom: 25px;
 font-size: 20px;
 display: block;
 }
 /* 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 {
 background-color: #f1f1f1;
 }
 #agenda section .container>h3 {
 display: none;
 }
 #agenda section h3 {
 font-size: var(--h4FontSize);
 font-weight: 600;
 }
 #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;
 }
 /*Sponsors Section----------------------------------------*/
 .logos-list {
 text-align: center;
 }
 .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%);
 }
 .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;
 
 padding-right: 5px;
 font-size: 19px;
 color: var(--mainThemeColor);
 }
 .faq .panel-title>a.collapsed:before {
 float: right !important;
 
 }
 .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-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;
 }
 /* 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(--footerBg);
 padding: 20px 0px;
 position: relative;
 border-top-color: var(--mainThemeColor);
 }
 .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;
 }
 @media (min-width: 1440px) {
 .countdown-container{
 width: 1200px !important
 }
 }
 @media (max-width: 1200px) {
 #clockdiv>div {
 margin-right: 100px !important;
 }
 }
 @media (max-width: 1024px) {
 #clockdiv>div {
 margin-right: 70px !important;
 }
 }
 @media (max-width: 992px) {
 .event-buttons{
 flex-direction: column;
 gap: 10px;
 }
 #clockdiv>div {
 margin-right:50px !important;
 }
 .popup .hero_main-title{
 font-size: 8rem !important;
 line-height: 100px !important;
 }
 .popup .hero_sub-title h2{
 font-size: 8rem !important;
 line-height: 100px;
 }
 }
 @media (max-width: 767px) {
    #certificate-sec1 .vfairsBtn, #certificate-sec2 .vfairsBtn{
        margin: 22px 6px !important;
    }
    .hero-img img {
    
        margin-bottom: 12px;
      }
    #about .item-thumb {
        height: auto !important;
    }
    .hero_sub-title h4,   .hero_sub-title h5 {
        width: 100% !important; 
        padding: 0 20px !important;
    }
    
 .popup .hero_main-title{
 font-size: 6rem !important;
 line-height: 80px !important;
 }
 .popup .hero_sub-title h2{
 font-size: 8rem !important;
 }
 #clockdiv>div {
 margin-right: 24px !important;
 }
 .header-content .row{
 flex-direction: column;
 }
 #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;
 }
 .navClose {
 position: absolute;
 top: 15px;
 right: 20px;
 color: var(--white);
 font-size: 22px;
 font-family:"din-2014", sans-serif;
 border-radius: 100%;
 width: 40px;
 height: 40px;
 border: 2px solid var(--white);
 display: flex;
 justify-content: center;
 align-items: center;
 }
 #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;
 }
 .countdown-container #clockdiv div > span {
 font-size: 48px !important ;
 }
 .countdown-container #clockdiv .smalltext{
 font-size: 24px !important;
 }
 #certificate-sec1 .vfairsBtn, #certificate-sec2 .vfairsBtn  {
 font-size: 22px !important;
 padding: 18px 20px !important;
 }
 }
 @media (max-width: 575px) {
 .popup .hero_main-title{
 font-size: 6rem !important;
 margin-bottom: 0 !important;
 }
 .popup .hero_sub-title h2{
 font-size: 8rem !important;
 }
 #clockdiv>div {
 margin-right: 12px !important;
 }
 .countdown-container{
 margin-top: -30px !important;
 padding: 14px 0px !important;
 }
.popup .col-sm-12 img {
    display: none;
}
 .countdown-container #clockdiv div > span {
 font-size: 36px !important;
 }
 .countdown-container #clockdiv .smalltext {
 font-size: 20px !important;
 }
 .main-intro {
 max-width: 100%;
 }
 .headingOverlayText {
 display: none !important;
 }
 .main-title span {
 font-size: 18px;
 }
 h3.main-title {
 font-size: 30px;
 }
 .two-btns {
 margin: 0px 0 50px;
 }
 .simple-section {
 padding: 20px 0px;
 }
 #whyAttend {
 padding-top: 20px;
 }
 }
 @media (max-width: 480px) {
 :root {
 --h1FontSize: 35px;
 --h4FontSize: 18px;
 }
 .popup .hero_main-title{
 font-size: 4rem !important;
 line-height: 60px !important;
 }
 .popup .hero_sub-title h2{
 font-size: 6rem !important;
 }
 #clockdiv>div {
 margin-right: 0px !important;
 }
 .countdown-container #clockdiv div > span {
 font-size: 30px !important;
 }
 .countdown-container #clockdiv .smalltext {
 font-size: 16px !important;
 }
 #date-info span {
 display: block;
 text-align: center;
 }
 .eventDate::after {
 content: "";
 margin-left: 0px;
 }
 .countdown-container {
 padding: 0px 19px 0px 5px;
 }
 #clockdiv>div>span {
 min-width: 50px;
 }
 #clockdiv {
 font-size: 40px;
 }
 #clockdiv .smalltext {
 font-size: 12px;
 }
 #clockdiv>div {
 margin-right: 13px;
 }
 #clockdiv>div::before {
 right: -11px;
 }
 .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;
 }
 }
 @media (min-width: 767px) {
 .event-buttons .btn{
 margin: 0 10px;
 }
 }
 .event-buttons {
 margin: 20px 0;
 display: flex;
 align-items: center;
 justify-content: space-between;
 flex-wrap: wrap;
 }
 .event-buttons .gradientbtnColored{
    background: #31B4C3 !important;
 /* background-image: -webkit-linear-gradient(90deg, #31B4C3 0%, #FAB12E 100%);
 background-image: linear-gradient(90deg, #31B4C3 0%, #FAB12E 100%); */
 color: var(--white) !important;
 }
 .event-buttons .gradientbtnColored:hover,
 .event-buttons .gradientbtnColored:focus {
    background: #6EC1E4;

 /* background-image: -webkit-linear-gradient(left,#FAB12E 0%, #31B4C3 100%);
 background-image: linear-gradient(to right,#FAB12E 0%, #31B4C3 100%); */
 color: var(--white) !important;
 text-decoration: none !important;
 }
 .event-buttons .btnColored{
 background-color: #07B2E1;
 background-image: unset;
 }
 .event-buttons .btnColored:hover{
 background-color: var(--mainThemeColor2);
 }
 .event-buttons .btn{
 border-radius: 15px 15px 15px 15px !important;
 font-size: 16px !important;
 padding: 12px 30px !important;
 font-weight: 600;
 }
 ul.vipticket {
 font-size: 16px;
 color: #5F6269;
 line-height: 14px;
 }
 ul.primeticket {
 font-size: 16px;
 color: #5F6269;
 line-height: 14px;
 }
 /* Event Font -------------------------*/
 @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
 /* Setting of Landing page colors and Font */
 :root {
 --mainThemeColor: #37246B;
 --mainThemeColor-rgb:55,36,107;
 --mainThemeColor2: #131C4B;
 --eventFontColor: #404042;
 --overlayHeadingTextColor: #f7f7f7;
 --overlayHeadingTextColor2: rgb(255 255 255 / 10%);
 --eventFontSize: 16px;
 --smalltext: 14px;
 --eventFont: "din-2014", sans-serif;
 --eventHeadingFont: "din-2014", sans-serif;
 --h1FontSize: 45px;
 --h2FontSize: 42px;
 --h3FontSize: 38px;
 --h4FontSize: 22px;
 --h5FontSize: 20px;
 --h6FontSize: 18px;
 --white: #fff;
 --black: #000;
 --yellow: #ffd600;
 --lightGrey: #ddd;
 --darkgrey: #333;
 --halfWidth: 50%;
 --quarterWidth: 75%;
 --faqBgColor: #fafafa;
 --footerBg: #131C4B;
 --curved: 6px;
 --rounded: 50px;
 --btnFontSize: 18px;
 }
 /* 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;
 }
 body > .header-content > .container {
 max-width: 100%;
 width: 100%;
 padding: 0px;
 }
 body > .header-content {
 position:relative;}
 .simple-section {
 padding: 100px 0px;
 }
 .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(--white);
 }
 .whiteText a:hover,
 .whiteText a:focus {
 color: var(--yellow);
 }
 h4.form-heading {
 font-size: 0px;
 }
 body > p:first-of-type {
 margin: 0px;
 }
 /* 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(--white);
 color: var(--mainThemeColor);
 border: 2px solid var(--mainThemeColor);
 }
 .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;
 }
 .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;
 }
 .btnWhite:hover,
 .btnWhite:focus,
 .btnBlack:hover,
 .btnBlack:focus {
 background: var(--mainThemeColor);
 color: var(--white);
 text-decoration: none !important;
 }
 /* Headings--------------------------- */
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 .popup h1 {
 font-family: var(--eventHeadingFont);
 font-weight: 700;
 }
 h1,
 .popup h1 {
 font-size: var(--h1FontSize);
 font-weight: 800;
 }
 h2 {
 font-size: var(--h2FontSize);
 }
 h3 {
 font-size: var(--h3FontSize);
 }
 h4 {
 font-size: var(--h4FontSize);
 }
 h5 {
 font-size: var(--h5FontSize);
 }
 h6 {
 font-size: var(--h6FontSize);
 }
 /* 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: center;
 position: relative;
 z-index: 0;
 }
 .main-title span {
 display: block;
 color: var(--mainThemeColor);
 font-size: 22px;
 text-transform: uppercase;
 font-weight: 600;
 }
 .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;
   width: 160px;
 }
 /* Main Navigation------------------------------ */
 #main-nav {
 padding: 0px;
 display: flex !important;
 }
 #main-nav .navbar-nav {
 flex-direction: row;
 justify-content: start;
 flex-grow: 1;
 }
 #main-nav a {
 color: var(--eventFontColor);
 font-size: var(--eventFontSize);
 padding: 12px 12px;
 }
 #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;
 }
 .header-content nav {
 margin-bottom: 0px;
 display: flex;
 align-items: center;
 justify-content: start;
 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: 42px;
 background: var(--mainThemeColor);
 border-radius: 6px;*/
 }
 .navbar-default .navbar-toggle .icon-bar {
 background-color: var(--white);
 }
 /*Registration Form---------------------*/
 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: 1px;
 }
 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(--eventFontColor);
 }
 .reg-form-data .form-control {
 font-size: var(--smallText);
 font-family: var(--eventFont);
 color: var(--eventFontColor);
 }
 .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: -50px;
 position: relative;
 display: inline-flex;
 justify-content: center;
 align-items: center;
 background: #fff;
 left: 50%;
 transform: translateX(-50%);
 border-radius: 15px;
 padding: 0px 29px 0px 15px;
 box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
 }
 #clockdiv {
 font-family: var(--eventHeadingFont);
 color: var(--mainThemeColor);
 display: inline-block;
 font-weight: 700;
 text-align: center;
 font-size: 50px;
 }
 #clockdiv .smalltext {
 color: var(--eventFontColor);
 font-size: var(--eventFontSize);
 }
 #clockdiv>div {
 background: none;
 position: relative;
 margin-right: 40px;
 }
 #clockdiv>div::before {
 content: ":";
 color: var(--lightGrey);
 position: absolute;
 right: -22px;
 top: 50%;
 transform: translateY(-60%);
 }
 #clockdiv>div:last-child::before {
 content: "";
 }
 #clockdiv .eventlive {
 max-width: 500px;
 font-size: 24px;
 }
 /* About section -------------------------------------- */
 .main-intro {
 max-width: 75%;
 text-align: center;
 margin: auto;
 }
 .main-intro strong {
 margin-bottom: 25px;
 font-size: 20px;
 display: block;
 }
 /* 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 {
 background-color: #f1f1f1;
 }
 #agenda section .container>h3 {
 display: none;
 }
 #agenda section h3 {
 font-size: var(--h4FontSize);
 font-weight: 600;
 }
 #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;
 }
 /*Sponsors Section----------------------------------------*/
 .logos-list {
 text-align: center;
 }
 .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%);
 }
 .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;
 
 padding-right: 5px;
 font-size: 19px;
 color: var(--mainThemeColor);
 }
 .faq .panel-title>a.collapsed:before {
 float: right !important;
 
 }
 .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-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;
 }
 /* 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: #31B4C3;
    padding: 20px 0px;
    position: relative;
    border-top-color: #00B2E3;
}
 .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;
 }
 @media (max-width: 992px) {
 .event-buttons{
 flex-direction: column!important;
 gap: 10px;
 }
 }
 @media (max-width: 767px) {
 .header-content .row{
 flex-direction: column!important;
 }
   .header-content.sticky{
     position:unset!important;
   }
 #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;
 }
 .navClose {
 position: absolute;
 top: 15px;
 right: 20px;
 color: var(--white);
 font-size: 22px;
 font-family:"din-2014", sans-serif;
 border-radius: 100%;
 width: 40px;
 height: 40px;
 border: 2px solid var(--white);
 display: flex;
 justify-content: center;
 align-items: center;
 }
 #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) {
 .main-intro {
 max-width: 100%;
 }
 .headingOverlayText {
 display: none !important;
 }
 .main-title span {
 font-size: 18px;
 }
 h3.main-title {
 font-size: 30px;
 }
 .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 19px 0px 5px;
 }
 #clockdiv>div>span {
 min-width: 50px;
 }
 #clockdiv {
 font-size: 40px;
 }
 #clockdiv .smalltext {
 font-size: 12px;
 }
 #clockdiv>div {
 margin-right: 13px;
 }
 #clockdiv>div::before {
 right: -11px;
 }
 .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;
 }
 }
 @media (min-width: 767px) {
 .event-buttons .btn{
 margin: 4px 4px;
 }
 }
 .event-buttons {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
}
 .event-buttons .gradientbtnColored{
    background: #31B4C3;
 /* background-image: -webkit-linear-gradient(90deg, #31B4C3 0%, #FAB12E 100%);
 background-image: linear-gradient(90deg, #31B4C3 0%, #FAB12E 100%); */
 color: var(--white) !important;
 }
 .event-buttons .gradientbtnColored:hover,
 .event-buttons .gradientbtnColored:focus {
    background: #6EC1E4 !important;

 /* background-image: -webkit-linear-gradient(left,#FAB12E 0%, #31B4C3 100%);
 background-image: linear-gradient(to right,#FAB12E 0%, #31B4C3 100%); */
 color: var(--white) !important;
 text-decoration: none !important;
 }
 .event-buttons .btnColored{
 background-color: #07B2E1 !important;
 background-image: unset;
 }
 .event-buttons .btnColored:hover{
 background-color: var(--mainThemeColor2);
 }
 .event-buttons .btn{
 border-radius: 15px 15px 15px 15px !important;
 font-size: 16px !important;
 padding: 12px 30px !important;
 font-weight: 600;
 }
 ul.vipticket {
 font-size: 16px;
 color: #5F6269;
 line-height: 14px;
 }
 ul.primeticket {
 font-size: 16px;
 color: #5F6269;
 line-height: 14px;
 }
 .hero_main-title {
     font-size: 5rem !important;
     color: #212121 !important;
     /* line-height: 130px !important;
     margin-bottom: 30px !important; */
     font-weight: 600 !important;
     text-transform: uppercase !important;
     text-align: center;
 }
.hero_sub-title h4 {
    font-size: 2.5rem !important;
    padding: 0 10px;
    text-align: center;
    width: 100%;
    margin: 0px auto;
    font-weight: 400;
    line-height: 1.5;
    color: #797979;
}
    .hero_sub-title h5 {
        font-size: 3rem !important;
        padding: 0 60px;
        text-align: center;
        width: 80%;
        margin: 0px auto;
        font-weight: 500;
        line-height: 1.5;
        color: #31B4C3;
      padding-bottom: 20px;
      }
 .hero_sub-title h2{
 font-size: 16rem;
 font-weight: bolder;
 line-height: 200px;
 color: rgba(255, 255, 255, 0.5);
 margin:0px;
 /* z-index: -1; */
 position: relative;
 }
 .hero-img{
 position: relative;
 }
 .hero-img img {
 border-radius: 20px;
 width: 100%;
 }
 .hero-img .video-link {
 width: 70px;
 height: 70px;
 background-color: #fff;
 color: #212121;
 display: inline-flex;
 justify-content: center;
 align-items: center;
 z-index: 1;
 border-radius: 50%;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 cursor: pointer;
 text-decoration: none;
 }
 .countdown-container {
 background: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1696350390schedule-bg3-png1696350390.png);
 background-size: cover;
 background-position: center;
 padding: 30px 0px;
 border-radius: 32px;
 position: relative;
 margin-bottom: 40px;
 box-shadow: 0px 40px 70px rgba(75, 3, 116, 0.15);
 width: 85%;
 margin-top: -100px;
 }
#clockdiv div > span {
    font-size: 44px;
    background: linear-gradient(97.14deg, #212121 7.11%, #B224EF 97.04%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-align: center;
}
#clockdiv>div {
    margin-right: 100px;
}
 #clockdiv .smalltext {
 font-size: 28px !important;
 }
 #clockdiv>div::before{
 content: " ";
 }
 .countdown-container .dots {
 position: absolute;
 bottom: -22px;
 right: -92px;
 opacity: 0.8;
 z-index: -1;
 }
 .sec-label {
 font-size: 14px;
 color: var(--bs-primary);
 background-color: rgba(102, 0, 204, 0.1019607843);
 padding: 5px 14px;
 border-radius: 32px;
 display: inline-block;
 margin-bottom: 22px;
 }
 .main-title{
 font-size: 4rem;
 }
 .main-intro{
 font-size: 2rem;
 }
 #about, #speakers{
 position: relative;
 }
 #about .about-items-wrap {
 position: relative;
 margin-top: 28px;
 }
 #about .main-intro , #speakers .main-intro{
 margin: 20px auto;
 color: #797979;
 }
 #about .about-items-wrap .row ,#speakers .speakers-gallery-items-wrap .row{
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 width: 100%;
 margin: 0;
 }
 #about .dots {
 position: absolute;
 bottom: -35px;
 left: -70px;
 opacity: 0.5;
 z-index: -1;
 }
 #about .item-thumb {
    position: relative;
    background-size: cover;
    margin-bottom: 12px; 
    width: 100%;
    height: 175px;
    border-radius: 12px;
 }
 #about .item-thumb img {
 width: 100%;
 max-width: 100%;
 border: none;
 border-radius: 0;
 box-shadow: none;
 height: 100%;
 object-fit: cover;
 border-radius: 12px;
 object-position: top;
 }
 #about .item-thumb .item-content {
 display: flex;
 align-items: center;
 justify-content: space-between;
 position: absolute;
 bottom: 0px;
 padding: 0px 18px 30px;
 width: 100%;
 }
 #about .item-thumb .item-content .content-title .date {
 font-size: 16px;
 font-weight: 400;
 line-height: 19px;
 display: inline-block;
 margin-bottom: 10px;
 color: #fff;
 }
 #about .item-thumb .item-content .content-title .title {
 font-size: 18px;
 font-weight: 600;
 line-height: 21.6px;
 margin-bottom: 0;
 color: #fff;
 }
 #about .item-thumb .item-content .about-video .video-btn1 {
 width: 40px;
 height: 40px;
 display: inline-flex;
 justify-content: center;
 align-items: center;
 background-color: rgba(221, 221, 239, 0.3607843137);
 transition: 0.7s;
 border-radius: 5px;
 }
 #about .item-thumb .item-content .about-video .video-btn1 i {
 color: #fff;
 cursor: pointer;
 }
 #speakers .speakers-gallery-items-wrap {
 position: relative;
 }
 #speakers .speakers-gallery-items-wrap .speakers-gallery-item {
 position: relative;
 margin: 28px 0;
   width: 90%;
 }
 #speakers .speakers-gallery-items-wrap .speakers-gallery-item .speakers-gallery-item-thumb {
 border-radius: 20px;
 overflow: hidden !important;
 position: relative !important;
 }
 #speakers .speakers-gallery-items-wrap .speakers-gallery-item:hover .social-icons {
 transition: 0.7s;
 z-index: 95;
 }
 #speakers .social-icons {
 display: flex;
 gap: 8px;
 justify-content: center;
 width: 100%;
 align-items: center;
 }
 #speakers .speakers-gallery-items-wrap .speakers-gallery-item .social-icons {
 list-style: none;
 position: absolute;
 bottom: 100px;
 transition: 0.7s;
 }
 #speakers .speakers-gallery-items-wrap .speakers-gallery-item .social-icons li {
 transform: translateY(50px);
 transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
 opacity: 0;
 }
 #speakers .speakers-gallery-items-wrap .speakers-gallery-item:hover .social-icons > li {
 opacity: 1;
 -webkit-transform: translateY(0);
 transform: translateY(0);
 }
 #speakers .speakers-gallery-items-wrap .speakers-gallery-item:hover .social-icons > li:nth-child(1) {
 -webkit-transition-delay: 0.1s;
 transition-delay: 0.1s;
 }
 #speakers .speakers-gallery-items-wrap .speakers-gallery-item:hover .social-icons > li:nth-child(2) {
 -webkit-transition-delay: 0.2s;
 transition-delay: 0.2s;
 }
 #speakers .speakers-gallery-items-wrap .speakers-gallery-item:hover .social-icons > li:nth-child(3) {
 -webkit-transition-delay: 0.3s;
 transition-delay: 0.3s;
 }
 #speakers .speakers-gallery-items-wrap .speakers-gallery-item .social-icons a {
 justify-content: center;
 display: flex;
 align-items: center;
 width: 40px;
 height: 40px;
 border-radius: 5px;
 display: flex;
 justify-content: center;
 align-items: center;
 background-color: black;
 color: #fff;
 transition: 0.7s;
 box-shadow: none;
 text-decoration: none;
 }
 #speakers .speakers-gallery-items-wrap .speakers-gallery-item .item-content {
 text-align: center;
 margin-top: 30px;
 }
 #speakers .speakers-gallery-items-wrap .speakers-gallery-item .item-content .title {
 font-size: 18px;
 font-weight: 600;
 }
 #speakers .speakers-gallery-items-wrap .speakers-gallery-item .item-content .sub {
 font-size: 14px;
 color: #797979 ;
 }
 #speakers .speakers-gallery-items-wrap .speakers-gallery-item:hover .speakers-gallery-item-thumb:after {
 content: "";
 background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
 position: absolute;
 left: 0;
 right: 0;
 top: 0;
 bottom: 0;
 }
 #speakers .speakers-gallery-items-wrap .speakers-gallery-item:hover .speakers-gallery-item-thumb {
 opacity: 0.9;
 }
 #speakers .speakers-gallery-items-wrap .dots {
 position: absolute;
 top: -120px;
 right: -45px;
 z-index: -1;
 opacity: 0.5;
 }
 #speakers .shape {
 position: absolute;
 bottom: -28%;
 left: 0px;
 z-index: -1;
 }
 .parallax-sec, .parallax-sec-2{
 background-image: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1696372873parallax-1-crowd-jpg1696372873.jpg );
 background-position: center center;
 background-repeat: no-repeat;
 background-size: cover;
 background-attachment: fixed;
 position: relative;
 }
 .parallax-sec::before, .parallax-sec-2::before {
 content: '';
 background-color: #2A2A2A;
 opacity: 0.8;
 width: 100%;
 height: 100%;
 position: absolute;
 top: 0;
 left: 0;
 z-index: 0;
 }
 .parallax-sec img,.parallax-sec-2 img {
 position: relative;
 z-index: 1;
 }
 .parallax-sec-2{
 background-image: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1696378597parallax-2-crowd-jpg1696378597.jpg );
 }
 #testimonial-sec .testimonial {
 margin-top: 30px;
 }
#testimonial-sec, #about {
    background: url(https://vepimg.b8cdn.com/uploads/vjfnew/10164/content/files/1717072420background-16-9-white-png1717072420.png) no-repeat center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    background-position: top;
}
 #testimonial-sec .ratting-inner {
 position: relative;
 height: 25px;
 width: 126px;
 background-image: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1696375934star-grey-png1696375934.png );
 background-repeat: repeat;
 background-size: 25px;
 /* margin: 0 auto; */
 }
 #testimonial-sec .ratting-inner .ratting {
 height: 25px;
 width: 100%;
 position: absolute;
 left: 0;
 top: 0;
 background-image: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1696375873star-yellow-png1696375873.png );
 background-repeat: repeat;
 background-size: 25px;
 /* margin: 0 auto; */
 }
 #testimonial-sec .testimonial_box{
 background-color: #fff;
 margin: 0px 15px;
 padding: 30px;
 border-radius: 20px;
 }
 #testimonial-sec .testimonial_box-text p {
 font-size: 18px;
 color: #212121;
 }
 #testimonial-sec .user-profile{
 display: flex;
 align-items: center;
 margin: 15px 0;
 }
 #testimonial-sec .user-profile .testimonial_box-img img{
 margin-right: 20px;
 max-width: 60px;
 border-radius: 50%;
 }
 #testimonial-sec .user-profile .testimonial_box-name h4{
 font-size: 18px;
 font-weight: 600;
 margin: 0px;
 }
 #testimonial-sec .user-profile .testimonial_box-job p{
 font-size: 16px;
 color: #212121;
 margin: 0px;
 }
 #certificate-sec1 .vfairsBtn , #certificate-sec2 .vfairsBtn  {
 background-image: unset;
 font-size: 30px;
 font-weight: 700;
 background-color: #07B2E1;
 border-radius: 15px 15px 15px 15px;
 padding: 20px 80px;
 margin: 50px 6px;
 }
 #certificate-sec1 .vfairsBtn:hover, #certificate-sec2  .vfairsBtn:hover {
    background-color: var(--mainThemeColor2);
    }
 #certificate-sec1 .vfairsBtn:first-child , #certificate-sec2 .vfairsBtn:first-child{
    background-color: #31B4C3 !important;
 } 
 #certificate-sec1 .vfairsBtn:first-child:hover, #certificate-sec2  .vfairsBtn:first-child:hover {
    background-color: #6EC1E4 !important;
    }
 
 .ticket__avail {
     display: none!important;
 }
 
 .popupvideos .modal-header {
     display: none;
 }
 
 .popupvideos .modal-dialog {
     width: 60vW;
     height: auto;
 }
 
 a.btn.btn-primary.form-control.valid.lsx-button.user-number.attendeGr__btn {
     color: white;
 }
 
 label.control-label.checkbox-label {
     font-size: 15px;
     font-weight: normal;
 }
 
 ul.social-icons.ps-0 {
     display: none!important;
 }
 #about .sec-label {
    background: #31B4C3;
    color: #fff;
 }

.content-title.text-white span.date {
    display: none!important;
}
.member_list_delete {
    position: absolute;
    background: #428aca;
    color: white;
    top: -10px;
    right: -10px;
    border: 0px;
}

.group-member-box {
    position: relative;
    padding: 50px;
    border: 1px solid #428aca;
    border-radius: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.reg-form-data br {
    display: block!important;
}

.ticket__content {
    padding-bottom: 0px!important;
}

.nw-frm-bldr .reg-form-data {
    box-shadow: 0 0 0 0;
    border-radius: 20px;
    border: 0px solid #dedede;
    margin-bottom: 0px;
}


.soldout{position:absolute;max-width:110px;left:0px;top:0px;}
#ticket{background:#31B4C3;}
#ticket .container-fluid{max-width:100%;width:100%;}
.ticket {
    background: #8E9091;
    padding: 40px 20px;
    color: #000;
    margin: 15px;
    position: relative;
    text-align: center;
    flex: 1;
    min-width: 260px;
        border-radius: 20px;
  transition: 0.5s;
}
/*.ticket::before{content:"";position:absolute;top:0;left:0;right:0;background:url('https://vepimg.b8cdn.com/uploads/vjfnew/10164/uploads/vjf/content/misc/1717069781166808550216675726561599645981right.png');width:100%;height:15px;}
.ticket::after{content:"";position:absolute;bottom:0;left:0;right:0;background:url('https://vepimg.b8cdn.com/uploads/vjfnew/10164/uploads/vjf/content/misc/1717069781166808550216675726561599645981right.png');width:100%;height:15px;transform:rotate(180deg);}*/
.tickets{display:flex;justify-content:center;margin-bottom:30px;flex-wrap:wrap;position:relative;}
/*.ticket:hover h3,.ticket:hover p{color:#005776;}*/
.ticket h3 {
    text-align: center !important;
    color: white;
    font-size: 26px;
    font-weight: bolder;
    color: #37246B;
  text-transform: uppercase;
}
.section-title{margin:0 0 20px;font-size:36px;color:#4c315c;font-weight:600;font-family:'inherit', sans-serif;text-transform:uppercase;letter-spacing:1.5px;text-align:center;}
.section-title a{color:#000;}
.ticket p {
    color: white;
    text-align: center !important;
    font-size: 20px;
    line-height: 22px;
}
.ticket{color:#000;}
.ticket:hover{text-decoration:none;}

section#speakers {
    background: url(https://vepimg.b8cdn.com/uploads/vjfnew/10164/content/files/1717072420background-16-9-white-png1717072420.png) no-repeat center;
    background-size: auto;
    background-position: top;
}

section#ticket {
    padding: 20px;
}

.ticket:hover {
    transform: scale(1.05);
}

section#contact {
    background: #31B4C3 !important;
}

a.contbutton {
    font-weight: bold;
    color: #00B2E3;
}

.pricebtn-btn {
    background: #31B4C3!important;
    border: 1px solid #31B4C3!important;
    color: #fff;
}

.coupncode button {
    background: #31B4C3!important;
    color: #fff;
}

.ticketItems button {
    background: #31B4C3!important;
    border-radius: 4px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    border: 0;
    font-family: 'Outfit', sans-serif !important;
}

.ticket__desc__text p {
    font-family: 'Outfit', sans-serif !important;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin: 8px 0;
    color: black;
}

.pricebtn-btn {
    background: #00366B;
    border: 1px solid #00366B;
    color: #fff;
    font-family: 'Outfit', sans-serif !important;
}

.totalcountT p {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #5F6269;
    margin-bottom: 0;
    font-family: 'Outfit', sans-serif 
      
}

.nw-frm-bldr .reg-form-data span {
    height: auto !important;
    min-height: auto !important;
    font-family: 'Outfit', sans-serif !important;
}

.pricing p {
    margin: 0px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #5F6269;
    font-family: 'Outfit', sans-serif !important;
}

.ticket__desc__text p span {
    display: inline !important;
}

a.ticketmore__text {
    display: none!important;
}

.item-content h3 {
    text-transform: uppercase !important;
}

.item-content span {
    text-transform: uppercase !important;
}

.coupncode button {
    background: #FEF0EA;
    border-radius: 4px;
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 7px 16px;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #F36531;
    border: 0;
    font-family: 'outfit'!important;
}

.ticket__item {
    display: flex;
    background: #fff;
    border-radius: 8px;
    margin-top: 15px;
    position: relative;
    border: 2px solid #00366B;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
}



img.hte {
    border-radius: 14px;
}

section#hotel {
    background: url('https://vepimg.b8cdn.com/uploads/vjfnew/10164/uploads/vjf/content/misc/1717166483orlando world.png');
    background-size: cover;
}

.row.d-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.ticket__desc__text h5 {
    font-family: 'Outfit' !important;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 26px;
    color: #1B1F29;
    margin-top: 0;
    text-transform: uppercase;
}

.both-block {
    width: 100% !important;
}