		/* Event Font -------------------------*/
		@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;800;900&family=Roboto:wght@400;500;700&display=swap');

		/* Setting of Landing page colors and Font */
		:root {
		    --mainThemeColor: #f96634;
		  	--mainThemeColor-rgb:243,101,49;
		    --mainThemeColor2: #ef4678;
		    --eventFontColor: #696969;
		    --overlayHeadingTextColor: #f7f7f7;
		    --overlayHeadingTextColor2: rgb(255 255 255 / 10%);
		    --eventFontSize: 16px;
		    --smalltext: 14px;
		    --eventFont: 'Roboto';
		    --eventHeadingFont: 'Poppins';
		    --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: #212121;
		    --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;
		}


		.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;
		}

		
		#LoginBtn {
		    border-radius: var(--rounded) !important;
		    font-family: var(--eventFont);
		}

		#LoginBtn:hover, #LoginBtn:focus{
		color:var(--white) !important;
		}

	 

		/* 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: 4%;
		    padding-bottom: 6%;
		    position: relative;
		}

		.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: 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: 1px;
		    font-size: 18px;
		}


		.two-btns a:first-child {
		    background: transparent;
		    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(--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;
		}

		/* 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;
		    content: '068';
		    padding-right: 5px;
		    font-size: 19px;
		    color: var(--mainThemeColor);
		}

		.faq .panel-title>a.collapsed:before {
		    float: right !important;
		    content: '067';
		}

		.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 (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;
		}

		}
		.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;
		      }
/* here is code */

div#speakers{
      position: relative;
    overflow: hidden;
}
.agenda-design11-speaker > .container {
  padding: 0 15px !important;
}

.session-loc {
  font-size: 18px;
  margin-bottom: 10px;
}

.agenda-design4 .nav-tabs > li > a {
  color: #000;
  background: #ffffff;
}

.agenda-design4 .nav-tabs > li.active > a {
  background: #000000;
  color: #ffff;
}

.col-md-12.ticket__totalBox.discount-box-block.cpn_fld_1423415 {
  display: none !important;
}

form#form_6594 input[type="submit"] {
  background: #c21125;
  border-radius: 8px !important;
}

.agenda-design4 {
  color: #000;
  text-align: left;
  border-bottom: 1px solid #ffffff;
  width: 100%;
  padding: 50px 30px;
}

.ticket__content h3 {
  display: none;
}

.is_ticket_show_payment_details {
  margin-top: 0px !important;
}

.agenda-design4 h1 {
  font-size: 40px;
  text-align: left;
  margin: 0 0 20px;
  font-weight: 400;
  color: #ffffff;
}

.agenda-design4 .agenda-row h3 {
  font-size: 20px;
  line-height: 24px;
  display: block;
  text-align: left;
  color: #fff;
  margin: 20px 0 16px;
  background: #008751;
  padding: 10px;
}

.agenda-design4 ol {
  padding-left: 16px;
  padding-top: 6px;
}

.agenda-design4 ol li {
  padding-bottom: 10px;
  padding-left: 8px;
}

.agenda-design4 p {
  font-size: 16px;
  line-height: 22px;
  text-align: left;
}

.agenda-design4 h4 {
  margin-bottom: 0;
  border: none;
}

.agenda-design4 h4 span {
  display: inline-block;
  padding-bottom: 0;
  background: #000000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  margin-left: 35px;
}

.agenda-design4.agenda-design4 h4 span.green {
  background: green;
}

.agenda-design4.agenda-design4 h4 span.red {
  background: #ffffff;
}

.agenda-design4 .agenda-rows .agenda-row:last-child .agenda-col:last-child {
  padding-bottom: 40px;
}

.agenda-design4 .agenda-row .agenda-col:first-child span {
  display: block;
}

.agenda-design4 .agenda-rows .agenda-row:last-child p,
.agenda-rows .agenda-row:last-child h3 {
  border-bottom: none;
}

.agenda-design4 .agenda-row {
  display: table;
  width: 100%;
}

.agenda-design4 .agenda-col {
  display: table-cell;
  vertical-align: middle;
}

.agenda-design4 .agenda-row .agenda-col:first-child {
  vertical-align: top;
  padding-top: 18px;
  width: 100px;
  text-align: center;
}

.agenda-design4 .agenda-row .agenda-col:last-child {
  padding: 0 0 0 30px;
  background: url(https://vepimg.b8cdn.com/uploads/vjfnew/2530/uploads/vjf/content/misc/1636574628images.png)
      no-repeat left top 24px / 10px,
    url(http://vepimg.b8cdn.com/uploads/vjf/173-ccw/timeline-strip.png) repeat-y
      left 3px top;
}

.agenda-design4 .agenda-row.no-speaker h3 {
  padding-bottom: 20px;
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
}

.agenda-row .speaker {
  cursor: pointer;
  padding-left: 60px;
  position: relative;
}

.agenda-design4 .agenda-row .speaker-name {
  font-size: 14px;
  font-weight: 700;
  padding-top: 3px;
}

.agenda-design4 .agenda-row .speaker img {
  height: 50px;
  border-radius: 25px;
  border: 1px solid #ddd;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}

.agenda-design4 .agenda-row .speaker.no-spk-img {
  padding-left: 0;
}

.agenda-design4 .agenda-row span.designation {
  display: block;
  font-size: 13px;
}

.agenda-design4 .agenda-row label {
  display: block;
  font-size: 11px;
  color: #666;
}

.agenda-design4 .agenda-row p {
  font-size: 16px;
  margin: 10px 0 0;
  padding-bottom: 0px;
  color: #393938;
}

.agenda-design4 .agenda-row p:last-child {
  padding-bottom: 20px;
}

.agenda-design4 .time-display {
  width: 120px;
  font-family: "Open Sans", sans-serif;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  color: #777;
  font-size: 16px;
  font-weight: bold;
  margin-right: 15px;
}

.agenda-design4 .time-display img {
  margin-bottom: 0;
}

.mh-60 {
  min-height: 60px;
}

.agenda-design4 .nav-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  border-bottom: none;
}

.agenda-design4 .nav-tabs li.active::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 12px 0 12px;
  border-color: #c21125 transparent transparent transparent;
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
  margin: auto;
}

.agenda-design4 .nav-tabs li.active a {
  background-color: #c21125;
  color: #fff;
  border: none;
  border-radius: 4px 4px 0 0;
}

.agenda-design4 .nav-tabs li a {
  font-size: 15px;
  padding: 15px 20px;
  min-width: 140px;
  text-align: center;
  border: none;
  border-radius: 4px 4px 0 0;
  color: #707070;
  background-color: #fafafa;
}

h3.main-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
}

.speaker.mh-60 img {
  background: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1637318330dummy-png1637318330.png);
  background-size: 100% 100%;
  padding: 1px;
}

.modal-dialog .modal-body p {
  padding: 0;
  margin-top: 0px;
}
section#readMore {
    background: #233269;
}

section#readMore * {
    color: #fff;
}

section#readMore .table-row {
    display: flex;
    flex-wrap: wrap;
    /* background: #fff; */
    padding: 10px !important;
    border-radius: 6px !important;
}
section#readMore .table-row > div {
    max-width: 16%;
    width: 100%;
}

section#readMore .table-row div{
    flex-direction: column;
    justify-content: start;
}
section#readMore .table-row div span {
    color: #ffffff !important;
    font-weight: bold;
    padding: 10px;
    background: #233269;
    border: 1px solid #ffffff;
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {

    section#readMore .table-row > div {
    max-width: 100%;
    width: 100%;
}



 div#speakers .row .col-md-3
{
    width: 50% !important;
}
  .agenda-design4 .agenda-row .agenda-col:first-child {
    text-align: left;
    width: 100%;
  }

  .agenda-design4 .agenda-col,
  .agenda-design4 .agenda-row {
    display: block;
  }
}

#LoginModal .form-group label[for="message-text"] {
  display: none;
}

.order__summary h6,
.ticketFormCol .panel-heading {
  background: #c21125 !important;
}

.section.payment-success,
.payment-failure {
  padding: 5% 0px 12% 0;
}

.agenda-row table {
  width: 100% !important;
}

#form_6594 input[type="file"]::file-selector-button {
  background: #c21125 !important;
}

.section.payment-success p,
.payment-failure p {
  color: #fff;
  font-size: 24px;
  text-align: center;
}

.sp-box img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.pricebtn-btn {
  background: #c21125 !important;
  border: 1px solid #c21125 !important;
}

button.btn.order-now-button1 {
  background: #c21125;
  border-radius: 30px;
  min-width: 100px;
}

.ticket__avail {
  display: none !important;
}

.table-row div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

.table-row div span {
  min-width: 211px;
  display: inline-block;
  margin-bottom: 10px;
}

.navbar .container,
.navbar .container-fluid,
.navbar .container-lg,
.navbar .container-md,
.navbar .container-sm,
.navbar .container-xl {
  display: block !important;
}

#agenda .agenda-design11-speaker .nav-tabs > li > a:hover {
  color: #fff;
}

.agenda-design11-speaker .agenda-row .agenda-col:first-child span {
  width: 82px;
}

.session-detail .table-responsive {
  width: 95%;
}

#agenda .agenda-design11-speaker .agenda-row .agenda-col:last-child {
  border: none;
  padding: 10px 0 0 30px;
  background: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1721651548blk-png1721651548.png)
      no-repeat left top 24px / 10px,
    url(http://vepimg.b8cdn.com/uploads/vjf/173-ccw/timeline-strip.png) repeat-y
      left 3px top;
}

#agenda .agenda-design11-speaker .agenda-row {
  margin: 0px;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}

#agenda .agenda-design11-speaker .nav-tabs > li > a {
  border-radius: 0px;
  border: none;
  padding: 10px 12px;
  z-index: 1;
}

#agenda .agenda-design11-speaker .agenda-row h3 {
  background: #c21125 !important;
}

#LoginModal .grp-password-field label[for="message-text"] {
  display: block;
}

table.table.table-bordered tr td:nth-of-type(2) {
  width: 55% !important;
}

#agenda .agenda-design4 .nav-tabs li:first-of-type a {
  /* background: #C65911 !important;
    color: #fff !important;*/
}

.session-loc {
  font-size: 18px;
  margin-bottom: 10px;
}

.session-track {
  margin: 20px 0px;
}

.session-track span {
  display: inline-block;
  background: #c21125;
  padding: 8px 14px;
  color: #fff;
  border-radius: 8px;
}

table.table.table-bordered tr td:nth-of-type(3) {
  width: 30% !important;
}

table.table.table-bordered tr td:first-of-type {
  width: 16% !important;
}

.agenda-design4 .agenda-row .agenda-col:last-child {
  padding: 0 0 0 30px;
  background: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1692874317dot-balck-png1692874317.png)
      no-repeat left top 24px / 10px,
    url(http://vepimg.b8cdn.com/uploads/vjf/173-ccw/timeline-strip.png) repeat-y
      left 3px top !important;
}

.webinarsdescription table {
  max-width: 1000px;
}

.banner-text p {
  position: absolute;
  right: 9%;
  top: 2.5%;
  z-index: 99;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
}

.agenda-design4 .nav-tabs li.active a,
.agenda-design4 .nav-tabs li.active:hover,
.agenda-design4 .nav-tabs li.active:focus,
.agenda-design4 .agenda-row h3 {
  background-color: #c21125 !important;
}

.container.full-page-container {
  width: 100%;
  max-width: 100%;
}

#infoModal .modal-header {
  padding: 10px 15px 25px;
}

label.required::after {
  content: " *";
  color: red;
}

.section.reg-payment-section {
  background-color: #f6f6f6;
}

#login-footer .col-sm-8 a,
#login-footer .col-sm-8 button {
  display: none !important;
}

.section.reg-section {
  background-color: #f5f5f5 !important;
}

/*agenda*/

.agenda .time-display {
  text-align: center;
}

.agenda .nav-tabs {
  margin-bottom: 20px;
  border-bottom: 0px solid #ddd;
}

.agenda .nav-tabs > li > a {
  margin-right: 10px;
  line-height: 1.42857143;
  border: 0px solid transparent;
  border-radius: 6px;
  padding: 15px 20px;
  background-color: #333;
  color: #fff;
  margin-bottom: 20px;
}

.agenda .nav > li > a:hover,
.agenda .nav > li > a:focus {
  text-decoration: none;
  background-color: #c21125;
}

.agenda .nav-tabs > li.active > a,
.agenda .nav-tabs > li.active > a:hover,
.agenda .nav-tabs > li.active > a:focus {
  color: #fff;
  cursor: default;
  background-color: #c21125;
  border: 0px solid #ddd;
  border-bottom-color: transparent;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.2);
}

.agenda .nav-tabs > li.active > a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 17px solid #c21125;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
}

.agenda h4.speakers {
  display: inline-block;
  padding-bottom: 0;
  background: #c21125;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  margin-left: 85px;
}

.agenda .agenda-row.bor-bottom {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.agenda .agenda-col {
  display: table-cell;
  vertical-align: middle;
}

.agenda .agenda-row .agenda-col:first-child {
  vertical-align: top;
  padding-top: 15px;
  width: 180px;
  padding-bottom: 18px;
}

.agenda .agenda-row .agenda-col:last-child {
  padding: 5px 0 5px 30px;
  background: url("https://vepimg.b8cdn.com/uploads/vjfnew/5770/uploads/vjf/content/misc/1632141327prple-circle.png")
      no-repeat left top 50% / 10px,
    url(//vepimg.b8cdn.com/uploads/vjf/173-ccw/timeline-strip.png) repeat-y left
      3px top;
}

.agenda .agenda-row h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  display: block;
  text-align: left;
  color: #c21125;
  margin: 20px 0 16px;
}

.agenda .agenda-row .speaker {
  padding-left: 0px;
  position: relative;
  padding-bottom: 15px;
}

.agenda .agenda-row .speaker img {
  height: 50px;
  border-radius: 25px;
  border: 1px solid #ddd;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  margin: 0;
}

.agenda .agenda-row .speaker-name {
  font-size: 14px;
  font-weight: 700;
  padding-top: 3px;
  color: #333;
}

.agenda .agenda-row .speaker-name span {
  color: #003fa9;
}

.agenda .agenda-row span.designation {
  display: block;
  font-size: 14px;
}

.agenda .bor-bottom {
  border-bottom: #d8d8d8 solid 1px;
}

.event-speakers .speaker {
  text-align: center;
  border: solid 1px #d3d3d3;
  margin: 20px 0;
  padding: 0 0 7px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  display: inline-block;
  max-width: 300px;
  background-color: #ffffff;
}

.event-speakers .speaker img {
  width: 100%;
  max-width: 300px;
}

/*end*/

body {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  background-color: #333;
  overflow-x: hidden;
}

.reg-form-data .col-12 input[type="submit"] {
  background-color: #c21125 !important;
  border-color: #c21125 !important;
}

/*speaker*/
.leadbio .modal-dialog .modal-body p {
  font-size: 15px !important;
  text-align: justify;
}

.leadalign {
  display: flex;
  justify-content: center;
}

.leadbio .modal-header {
  background-color: #c21125 !important;
}

.leadbio button.close {
  margin-top: -24px;
  opacity: 1;
}

section#reghead1 a.btn.btn-yellow:hover {
  color: #c21125 !important;
}

.sp-box {
  background-color: #c21125;
  padding: 20px;
  cursor: pointer;
  min-height: 455px;
  margin-bottom: 15px;
  text-align: center;
}

.sp-box img {
  border-radius: 20px;
}

.sp-box h3 {
  padding: 10px 0;
  font-size: 20px !important;
  color: #fff !important;
  margin-bottom: 0 !important;
  text-align: center !important;
}

.sp-box p {
  color: #fff;
  font-size: 13px !important;
  text-align: center !important;
}

/*end*/

section#welcome {
  background-color: #f5f5f5;
}

section#welcome img {
  border-radius: 10px;
}

section#welcome .section-title {
  text-align: left;
  font-size: 24px;
}

section#welcome p {
  margin-bottom: 10px !important;
}

.page-container{
  background-color: #fff;
}

.page-container .container {
  background-color: #fff;
  padding: 0;
}

.simple-section {
  background: #fff;
}

.logo-left-en {
  text-align: left !important;
  padding-top: 11px;
}

.logo-left-en img {
  max-width: 190px;
}

.banner {
  background: rgb(229, 241, 254);
  background: linear-gradient(
    105deg,
    rgba(229, 241, 254, 1) 0%,
    rgba(251, 215, 246, 1) 100%
  );
}

.navbar-default .navbar-toggle {
  position: absolute;
  top: -76px;
  right: 0px;
}

.header-content {
  background-color: #fff;
  padding: 16px 0;
  position: relative;
  z-index: 1;
}

/*.header-content .container {
    max-width: 100%;
    width: 100%;
}
*/

nav.navbar.navbar-default {
  margin-bottom: 0;
  margin-top: 10px;
}
.header-content .row {
    align-items: center;
}
/* 
.navbar-header {
  position: absolute;
  top: -59px;
  right: 6px;
  z-index: 5;
} */

.navbar-header i {
  font-size: 40px;
}

.video-sec {
  position: relative;
  text-align: center;
}

.video-sec video {
  width: 100%;
}

.top-right-section .navbar-collapse .navbar-nav {
  float: right;
}

.navbar-default .navbar-nav > li > a {
  font-weight: 500;
  font-size: 15px;
  padding: 10px 12px;
  color: #24306f;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #1d5691;
}

.navbar-default .navbar-nav > li.active a {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: underline;
}

.navbar-default .navbar-nav > li > a.btn-yellow {
  color: #fff;
  min-width: 117px;
  border-radius: 30px;
  padding: 12px 22px;
}

.navbar-default .navbar-nav > li > a.btn-yellow:hover,
.navbar-default .navbar-nav > li > a.btn-yellow:focus {
  background-color: #c21125;
  color: #fff;
  text-decoration: none;
}

.hero {
  background-image: url(https://vepimg.b8cdn.com/uploads/vjfnew/7136/content/files/164508257706-white-jpg1645082577.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 0 70px 0;
}

.hero .hero-content > img {
  max-width: 500px;
}

.hero .hero-content .event-info {
  margin-top: 50px;
}

.hero .hero-content .event-info span {
  display: inline-block;
  padding: 5px 13px 0 13px;
  color: #06009d;
  border-right: 3px solid #188be8;
  font-size: 20px;
  font-weight: 500;
  line-height: 16px;
}

.hero .hero-content .event-info span:last-child {
  border-right: none;
}

.banner-content {
  background-image: -webkit-linear-gradient(top, #c21125 0%, #c21125 100%);
  background-image: linear-gradient(to bottom, #c21125 0%, #c21125 100%);
  padding: 20px 50px;
  color: #fff;
}

/*
.event-title {
    display: flex;
    align-items: center;

}

.event-title .title-logo {
    width: 200px;
    padding-right: 20px;
}*/

.title-logo img {
  width: 100%;
}

.event-title .dates {
  text-align: center;
  margin-top: 33px;
}

.event-title .dates h2 {
  font-size: 26px;
  margin: 0;
  color: #fff;
}

.event-title .dates h4 {
  font-size: 26px;
  line-height: 32px;
  margin: 18px 0 0 0;
  display: flex;
  align-items: center;
  font-weight: bold;
  justify-content: center;
}

.event-title .dates h4 span {
  color: #24306f;
  font-weight: normal;
  padding-left: 10px;
}

.banner-content p {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 30px;
}

.button {
  margin-top: 30px;
  text-align: center;
}

.button .btn-yellow {
  padding: 16px 35px;
  font-size: 18px;
  font-weight: 600;
  margin: 0 10px;
  background-color: #8d8c88;
  background-image: none;
}

.button .btn-yellow:hover {
  background-color: transparent;
  border: 1px solid #8d8c88;
  color: #8d8c88;
}

.counter-div {
  margin-top: 50px;
  display: flex;
  align-items: center;
}

.counter-div > p {
  flex-basis: 20%;
  margin: 0;
}

.counter-div #clockdiv {
  flex-basis: 80%;
}

#clockdiv {
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: center;
}

#clockdiv .smalltext {
  font-weight: 400;
}

#clockdiv > div {
  background: transparent;
  color: #fff;
  flex: 1;
  margin-right: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
}

#clockdiv > div:last-child {
  border-right: none;
}

#clockdiv div > span {
  font-weight: bold;
  font-size: 60px;
}

.simple-section {
  padding: 50px;
}

.simple-section p {
  font-size: 16px;
  font-weight: normal;
}

.about-section {
  background-color: #f5f5f5;
}

.list-check {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.list-check li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.list-check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #00b2ba;
}

.btn-yellow {
  background-image: -webkit-linear-gradient(top, #c21125 0%, #c21125 100%);
  background-image: linear-gradient(to bottom, #c21125 0%, #c21125 100%);
  background-repeat: repeat-x;
  color: #fff;
  border-radius: 30px;
  margin-left: 5px;
}

.btn-yellow:hover {
  background-color: #c21125;
  color: #fff;
}

.bg-gray {
  background-color: #f1f1f1;
}

.btn-gradient {
  background: linear-gradient(41.01deg, #f2662e 13.44%, #ef4177 86.54%);
  border-radius: 30px;
  color: #fff;
  padding: 12px 40px;
  font-size: 16px;
}

.icon-box img {
  width: 100%;
}

.icon-box .icon {
  width: 80px;
}

/*.icon-box span {
    width: 60px;
    height: 60px;
    background-color: #069EDB;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-weight: bold;
    font-size: 25px;
}
*/

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.02);
  padding: 10px;
  border-radius: 6px;
}

.icon-box .info {
  width: 137px;
  padding-left: 10px;
}

.icon-box .info h4 {
  font-weight: bold;
  font-size: 18px;
  margin: 0 0 5px 0;
}

.icon-box .info p {
  font-size: 15px;
  margin: 0;
}

.reg-info-box {
  padding: 20px 0;
}

.sp-section {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

.sp-section img {
  display: inline-block;
  max-width: 250px;
  margin: 10px;
}

.sp-section .sp-title {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.02);
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
}

.d-block {
  display: block;
}

.event-item {
  background-color: rgba(0, 0, 0, 0.02);
  padding: 20px;
  text-align: center;
  margin-top: 30px;
  border-radius: 6px;
}

.event-item .date h5 {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}

.event-item .title {
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  background-color: #c21125;
  color: #fff;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 6px;
}

.event-item p {
  font-size: 14px;
}

.section-title {
  color: #c21125;
  font-weight: bold;
  font-size: 30px;
  margin: 30px 0;
  text-align: center;
  text-transform: uppercase;
}

.section-title.white {
  color: #fff;
}

.section-title.mb-0 {
  margin-bottom: 0;
}

.section-title-2 {
  font-size: 60px;
  color: #5c3e98;
  text-align: center;
  font-weight: 600;
}

.section-title-2 span {
  color: #fdaf17;
}

.section-title-2 small {
  display: block;
  color: #2a2a2a;
  font-size: 24px;
  margin-top: 20px;
}

.logos-wrap .col-md-3 {
  margin-bottom: 60px;
}

.logos-row {
  text-align: center;
}

.logos-row .logo-item {
  display: inline-block;
  margin: 10px;
  max-width: 280px;
  cursor: pointer;
}

.logo-item .bio {
  display: none;
}

.logos-row img {
  max-width: 100%;
}

.contact-box {
  background-color: #00b2ba;
  padding: 16px;
  border-radius: 6px;
  color: #fff;
}

.contact-box h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.buttons {
  text-align: center;
}

.buttons .btn {
  padding: 16px 26px;
  font-size: 18px;
}

.faq {
  background-color: #fff;
  position: relative;
}

.faq .panel {
  background: rgba(0, 0, 0, 0.04);
  padding: 15px 25px;
  margin: 0 0 27px;
  border: none;
  border-radius: 8px;
}

.faq .panel-heading {
  padding: 0 !important;
  background: 0 0 !important;
}

.faq h4.panel-title a {
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
  line-height: 24px;
  color: #333;
  font-weight: 700;
}

.faq .panel-collapse {
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.faq .panel-collapse .panel-body {
  width: 100% !important;
  padding-bottom: 0;
  border: none !important;
  padding-top: 9px;
  font-size: 14px !important;
  line-height: 24px !important;
  color: #666 !important;
}

.faq h3 {
  margin-bottom: 25px;
}

.links-list {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
  flex-wrap: wrap;
}

.links-list li {
  flex-basis: 20%;
  text-align: center;
}

.links-list li span {
  display: flex;
  width: 50px;
  height: 50px;
  font-size: 30px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #1d5691;
  color: #fff;
  margin: 0 auto 20px auto;
}

.links-list li:hover span {
  background-color: #c21125;
  color: #fff;
}

.links-list li a {
  color: #c21125;
  font-size: 16px;
  display: block;
  max-width: 235px;
  margin: auto;
}

footer {
  border-top-color: #c21125;
  background: #fff;
  padding: 24px 0 12px 0;
}

footer h3 {
  color: #fdaf17;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 24px;
}

footer .footer-logo {
  width: 200px;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #fff;
}

footer .footer-social {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
}

footer .footer-social li {
  color: #000;
  text-align: center;
}

footer .footer-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: auto;
  border-radius: 50%;
  color: #fff;
  background-color: #1da2dc;
  margin-right: 10px;
}

footer .footer-social li a:hover {
  text-decoration: none;
  background-color: #383278;
  color: #fff;
}

footer .footer-form .form-group {
  margin-bottom: 20px;
}

footer .footer-form .form-group label {
  font-weight: normal;
}

footer .footer-form .form-control {
  background-color: transparent;
  border-radius: 0;
  min-height: 50px;
  color: #fff;
}

footer .footer-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

footer .footer-form .form-control option {
  color: #000;
}

.abstractinfowrapper {
  position: relative;
}

.abstact-logohead {
  position: absolute;
  bottom: 40%;
  text-align: center;
}

.abstact-logohead h3 {
  color: #fff;
  background-color: #c21125ba;
  padding: 10px;
}

.abstact-logohead img {
  max-width: 200px;
}

.abstractaction a {
  background-color: #c21125;
  color: #fff;
  padding: 20px 40px;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}

.abstractaction {
  margin: 30px 0;
  text-align: center;
}

.abstractinfor {
  background-color: #fff;
}

.abstact-detailshead {
  padding: 0 30px 50px;
}

.abstact-detailshead h3 {
  color: #000;
  font-weight: 600;
}

.abstact-detailshead h4 {
  color: #c21125;
  font-weight: 600;
}

.abstact-detailshead p {
  color: #555;
}

.abstact-detailshead h5 {
  color: #8d8c88;
  font-weight: 600;
}

.v-logo {
  text-align: right;
}

.copyright {
  text-align: center;
  margin-top: 80px;
}

.modal-header {
  background-color: #c21125;
}

.btn-darkgrey {
  background-image: -webkit-linear-gradient(top, #c21125 0%, #c21125 100%);
  background-image: linear-gradient(to bottom, #c21125 0%, #c21125 100%);
  background-repeat: repeat-x;
  color: #fff;
  border-radius: 30px;
}

.btn-darkgrey:hover,
.btn-darkgrey:focus {
  background-color: #c21125;
  color: #fff;
}

#login-footer .btn {
  border-radius: 30px !important;
  padding: 10px 17px !important;
}

.flex-row {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  section#reghead1 .button .btn-yellow {
    width: 100%;
    margin-bottom: 10px;
    word-break: break-all;
    font-size: 13px !important;
  }

  .agenda-design4 .nav-tabs li {
    width: 50%;
    margin: 15px 0px;
  }

  .agenda-design4 .agenda-row p {
    margin-bottom: 10px !important;
  }

  .agenda-design4 .nav-tabs li a {
    min-width: auto;
    padding: 8px 10px;
  }

  .agenda-design4 .nav-tabs {
    flex-wrap: wrap;
  }

  .abstact-logohead h3 {
    font-size: 15px;
  }

  .abstact-logohead img {
    display: none;
  }

  .abstact-logohead {
    bottom: 0;
  }

  .button .btn-yellow {
    padding: 16px 16px;
    font-size: 14px;
    margin: 0;
    display: block;
    white-space: pre-wrap;
  }

  .section-title {
    font-size: 24px;
  }

  .event-title .dates h2 {
    font-size: 32px;
  }

  #clockdiv div > span {
    font-size: 38px;
  }

  .flex-row {
    display: block;
  }

  .hide-on-mobile {
    display: none;
  }

  .hero .hero-content .event-info span {
    border-right: none;
  }

  .event-title {
    flex-direction: column;
  }

  .event-title .dates {
    padding-left: 0;
    border-left: 0;
  }

  .event-title .dates h4 {
    font-size: 20px;
  }

  .counter-div {
    display: block;
    text-align: center;
    margin-top: 0;
  }

  .list-check {
    display: block;
  }

  .links-list {
    display: block;
  }

  .links-list li {
    margin-bottom: 20px;
  }

  .xs-center {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .icon-box {
    margin-bottom: 20px;
  }

  /* nav responsive */
  .navbar-collapse {
    padding: 0;
  }

  .navbar-default .container-fluid {
    padding: 0;
  }

  .navbar-default .navbar-nav {
    float: none !important;
    width: 100%;
    text-align: center;
    margin: 0;
  }

  /* nav responsive */

  nav.navbar.navbar-default {
    background-color: #fff;
  }

  .logo-left-en img {
    width: 200px;
  }

  .banner-content .button .btn-yellow {
    margin-bottom: 12px;
    min-width: 228px;
  }

  .simple-section {
    padding: 24px;
  }

  .banner-content p {
    font-size: 19px;
  }

  .navbar-toggle i {
    color: #383278;
  }

  .banner-content .logo img {
    width: 200px;
  }

  .banner-content .venue span {
    display: block;
  }

  .banner-content h2 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 0;
  }

  .banner-content h4 {
    font-size: 18px;
    text-align: center;
    margin-top: 0;
  }

  .banner-content .button {
    margin: 30px 0;
  }

  .banner-content .power-by {
    display: block;
  }

  .icon-boxes {
    top: -12px;
  }

  .header-content {
    padding-bottom: 10px;
  }

  .main_top_area {
    min-height: auto;
    padding-bottom: 60px;
    padding-top: 100px;
  }

  .navbar-default .navbar-nav > li > a {
    color: rgba(0, 0, 0, 0.8);
    font-size: 20px;
    padding: 20px;
  }

  .icon-boxes-wrap {
    display: block;
  }

  .icon-boxes-wrap .icon-boxes {
    top: -10px;
  }

  .navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
  }

  .p-by {
    display: block;
    text-align: center;
  }

  .footer-social {
    margin-bottom: 50px;
  }

  .agenda-section .agenda-rows .agenda-row {
    flex-wrap: wrap;
  }

  .agenda-section .agenda-rows .agenda-row .time {
    border-right: none;
    flex-basis: 100%;
    text-align: left;
    padding: 20px 41px;
  }

  .agenda-section .agenda-rows .agenda-row .description {
    flex-basis: 100%;
    padding: 14px 20px;
  }

  .faqs-dd .icon {
    font-size: 10rem;
  }
}

.navbar-nav {
  display: inline-block !important;
  flex-direction: none !important;
}

/*# sourceMappingURL=main.css.map */

.speaker-item {
  text-align: center;
  min-height: 324px;
}

.speaker-item .photo img {
  max-width: 220px;
  border-radius: 50%;
}

.speaker-item .info h4 {
  font-weight: bold;
}

.speaker-item .info p {
  font-size: 14px;
}

/* start of sap style agenda */

/* start of sap style agenda */

.sap-style-agenda {
  padding: 50px;
  background-color: #f4f6f8;
}

.sap-style-agenda .agenda-date {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  background-color: rgba(0, 0, 0, 0.03);
  padding: 12px;
}

.sap-style-agenda .agenda-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
}

.sap-style-agenda .agenda-item .time {
  flex-basis: 15%;
  font-size: 16px;
  /*background-color: #005BAC;*/
  background: linear-gradient(
    105deg,
    rgba(33, 131, 255, 1) 0%,
    rgba(105, 84, 252, 1) 50%,
    rgba(195, 26, 249, 1) 100%
  );
  color: #fff;
  border-radius: 10px 0 0 10px;
  padding: 20px;
  text-align: center;
}

.sap-style-agenda .agenda-item .agenda-body {
  flex-basis: 85%;
  padding: 10px 22px;
}

.agenda-body ol {
  margin: 0;
  padding: 16px;
  font-size: 18px;
  color: #0001a0;
}

.sap-style-agenda .agenda-item .agenda-body > h4 {
  margin: 0 0 4px 0;
}

.sap-style-agenda .agenda-item .agenda-body .title {
  font-size: 22px;
  font-weight: bold;
  color: #005bac;
}

.sap-style-agenda .agenda-item .agenda-body .title .session-detail {
  display: none;
}

.sap-style-agenda .agenda-item .agenda-body .speaker {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.sap-style-agenda .agenda-item .agenda-body .speaker .photo img {
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.sap-style-agenda .agenda-item .agenda-body .speaker .info {
  padding-left: 8px;
}

.sap-style-agenda .agenda-item .agenda-body .speaker .info h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.sap-style-agenda .agenda-item .agenda-body .speaker .info p {
  margin: 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}

.sap-style-agenda .agenda-item .agenda-body .speaker .bio {
  display: none;
}

.custom-modal .modal-body {
  font-size: 18px;
  line-height: 28px;
  padding: 20px 40px;
}

.custom-modal .modal-header {
  background: transparent;
  border: none;
  padding: 0px 0px;
}

.custom-modal .modal-header button {
  color: #2cb8dd;
  width: 35px;
  height: 35px;
  background: #eee;
  margin: 10px;
  border-radius: 50px;
  line-height: 26px;
  z-index: 999;
  position: relative;
  opacity: 1;
  font-size: 30px;
  transition: all 0.2s ease;
}

.agenda-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  border-bottom: none;
}

.agenda-tabs li.active::after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #000;
  border: 1px solid;
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  border-top-color: #000;
  border-bottom-color: #000;
  border-left-color: #000;
  border-right-color: #000;
  z-index: 0;
}

.agenda-tabs li.active a,
.agenda-tabs li.active:hover,
.agenda-tabs li.active:focus {
  background-color: #c21125 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px 4px 0 0;
}

.agenda-tabs li a {
  font-size: 17px;
  padding: 15px 34px;
  min-width: 152px;
  text-align: center;
  border-radius: 4px 4px 0 0;
  color: #0001a0;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #0001a0;
}

.agenda-tabs li a:hover {
  background-color: #c21125 !important;
  color: #fff;
}

.agenda-tabs li:hover::after {
  background-color: #24306f;
  border-color: #24306f;
}

@media screen and (max-width: 767px) {
  .sap-style-agenda .agenda-item {
    display: block;
  }

  .sap-style-agenda .agenda-item .agenda-body {
    padding: 10px;
  }

  .sap-style-agenda .agenda-date {
    font-size: 16px;
  }
}

/* end of sap style agenda */

.page-heading {
  display: none;
}

.inner-banner img {
  width: 100%;
}

.social-box img {
  max-width: 500px;
  margin: 0 20px;
}

.social-box {
  display: flex;
  align-items: flex-start;
  margin: 40px 0;
}

.social-box p {
  line-height: 1.5;
}

.socials-page h4 {
  color: #24306f;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 18px;
  text-align: left;
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .agenda-tabs {
    flex-wrap: wrap;
  }

  .social-box {
    display: block;
  }

  .social-box img {
    margin: 20px 0 !important;
    max-width: none;
    width: 100%;
  }

  .leadalign {
    display: block;
  }

  .sp-box {
    min-height: unset;
  }
}



@media(max-width:575px){
    div#speakers .row .col-md-3{
        width: 100% !important;
    }
}



@media (max-width: 480px) {
  .banner-content {
    padding: 20px !important;
  }

  .agenda-row {
    display: grid;
  }
}

.modal-backdrop {
  z-index: 0 !important;
}

.abs-banner-logo {
  position: absolute;
  top: 1%;
  right: 3%;
  width: 209px;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .abs-banner-logo {
    display: none;
  }
}

#speakers .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#speakers .col-md-3,
#speakers .col-sm-6,
#speakers .col-xs-12 {
  display: flex;
}

#speakers .speaker_container {
  flex: 1;
}

div#speakers .container {
  width: 100%;
}

div#speakers .row .col-md-3 {
  width: 33%;
}

div#speakers .speaker_container {
  background: #c21125;
  padding: 30px;
  margin-bottom: 20px;
  overflow: hidden;
  /* display: flex;
  justify-content: center; */
}

/* div#speakers .speaker_img-src img {
    border-radius: 20px;
    height: 200px;
    margin-bottom: 20px;
}
.speaker_container {
    padding: 30px 0px;
}

.speaker_img-src {
    text-align: center;
    cursor: pointer;
}

.speaker_img-src img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    background: url(https://vepimg.b8cdn.com/uploads/vjfnew//content/files/1662021371placeholder-png1662021371.png) no-repeat;
    background-size: 100% 100%;
}

 */
div#speakers .speaker_img-src h4 {
  color: #ffffff !important;
  font-size: 24px;
}
div#speakers .speaker_img-src p {
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

div#speakers .speaker_img-src {
  margin: auto;
  position: relative;
  border-radius: 25px;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
div#speakers .speaker_img-src img {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  margin: 30px auto 0px;
  display: block;
  border: 1px solid #ccc;
}

div#speakers .speaker_img-src .speaker_desc {
  opacity: 0;
  width: 100%;
  height: 0;
  background: #fff;
  border-radius: 0;
  margin: auto;
  transition: all 0.3s ease;
  top: 0;
  position: relative;
}

div#speakers .speaker_img-src:hover .speaker_desc {
  opacity: 1;
  width: 100%;
  height: auto;
  padding: 20px;
  border-radius: 8px;
}
div#speakers .speaker_img-src .speaker_desc .modal-title {
  color: #c21125 !important;
  font-weight: 600;
}
div#speakers .speaker_img-src .speaker_desc p {
  color: #000000 !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

section#regFees {
    background: #c21125;
}

section#regFees .section-title {
    color: #fff;
}

section#regFees .table-responsive {
    color: #fff;
    /* border-radius: 6px; */
}
section#regFees .table-responsive .table {
    border-top: 2px solid #fff;
}
section#regFees .table-responsive p{
    max-width: 400px;
        white-space: pre-line;
}

section#regFees .table-responsive tr th {
    vertical-align: top;
}

section#regFees .tablcard {
    color: #fff;
}
section#regFees .btn {
    background: #fff;
    color: #000;
}

section#regFees .btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

