:root {
	--primary: #1870BD;
	--secondary: #C7DE63;
	--light: #FFF;
	--dark: #202340;
}
body{
	font-family: 'Lato', sans-serif;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
	font-family: "Oswald",sans-serif;
}
.no_padding{
	padding-left:0;
	padding-right:0;
}
.clearfix{
	clear: both;
}
.bg-primary{
	background: var(--primary) !important;
}
.bg-dark{
	background: var(--dark) !important;
}
.bg-gradient{
	background:#1870BD !important;
}
.left_logo_vector{
	margin: 3% 0;
	img{
		background-position: left top;
	}
}
.right_logo_vector{
	margin: 3% 0;
	img{
		background-position: right top;
	}
}
.text-body{
	color: var(--light) !important;
	padding: 5px 0;
}
@keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.9;
	}

	100% {
		opacity: 1;
	}
}
.blink_animation{
	animation: blink 1s infinite;
	font-weight: 700 !important;
}
.nav-bar::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 50%;
	top: 0;
	left: 0;
	background:#1870BD !important;
}
.navbar-dark .navbar-nav .nav-link{
	color: #fff;
	text-align: right;
	font-family: Lato;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
}
.active a{
	font-weight: 900 !important;
	font-family: Lato;
	border-radius: 8px;
	background: var(--secondary) !important;
	display: inline-block;
	color: var(--dark) !important;
}
.btn_reg{
	border-radius: 8px;
	background: var(--secondary);
	display: inline-block;
}
.btn_reg:after {
	display:block;
	content: '';
	width: inherit;
	border-bottom: solid 3px var(--dark); 
	transform-origin: left; 
	transform: scaleX(0);  
	transition: transform 250ms ease-in-out;
}
.btn_reg:hover:after { transform: scaleX(1); }

.btn_reg.from-left:after {
	transform-origin: left;
}

.btn_reg.from-right:after {
	transform-origin: right;
}
.masthead {
	height: 85vh;
	min-height: 200px;
	background: url('banner.png');
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.glitch{
	font-size: 3rem;
	font-weight: 600;
	text-transform: uppercase;
	text-shadow: 
	0.05em 0 0 rgba(255, 0, 0, 0.75),
	-0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
	0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
	animation: glitch 500ms infinite;
	position: relative;
}

.glitch span{
	position: absolute;
	top: 0;
	botton:0;
	left: 0;
	right: 0;
}

.glitch span:first-child{
	animation: glitch 650ms infinite;
	z-index: 1;
	clip-path: polygon(0 50%, 100% 20%, 100% 100%, 0 100%);
	transform: translate(0px, 3px) rotate(-1deg);
	opacity: 0.8;
}

.glitch span:last-child{
	animation: glitch 450ms infinite;
	z-index: 10;
	clip-path: polygon(70% 10%, 100% 90%, 0% 10%, 100% 0%);
	transform: translate(-3px, 0px) rotate(1deg);
}
/*Animation effect for glitch*/
@keyframes glitch {
	0% {
		text-shadow:
		0.05em 0 0 rgba(255, 0, 0, 0.75),
		-0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
		-0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
	}
	14% {
		text-shadow: 
		0.05em 0 0 rgba(255, 0, 0, 0.75),
		-0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
		-0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
	}
	15% {
		text-shadow: 
		-0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
		0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
		-0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
	}
	49% {
		text-shadow: 
		-0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
		0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
		-0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
	}
	50% {
		text-shadow: 
		0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
		0.05em 0 0 rgba(0, 255, 0, 0.75),
		0 -0.05em 0 rgba(0, 0, 255, 0.75);
	}
	99% {
		text-shadow: 
		0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
		0.05em 0 0 rgba(0, 255, 0, 0.75), 
		0 -0.05em 0 rgba(0, 0, 255, 0.75);
	}
	100% {
		text-shadow: 
		-0.025em 0 0 rgba(255, 0, 0, 0.75),
		-0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
		-0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
	}
}

@keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}
.video-background-holder {
	position: relative;
	background-color: black;
	height: calc(100vh - 72px);
	min-height: 25rem;
	width: 100%;
	overflow: hidden;
}

.video-background-holder video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.video-background-content {
	position: relative;
	z-index: 2;
}

.video-background-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: url(../img/pattern.png) repeat center center rgba(0,0,0,0.4);
	z-index: 1;
}
.typewrite, .typewrite:hover{
	font-family: "Cutive", serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	text-decoration: none;
}

.cityline{
	width: 100%;
	height: 100px;
	position: relative;
	bottom: 58px;
}

.cityline_footer{
	width: 100%;
	height: 100%;
}

.fixed_register_now a{
	background:#C7DE63 !important;
	border-radius: 0 !important;
	color: #000 	!important;
	display:inline-block !important;
	font-size: 1rem !important;
	height: 50px !important;
	line-height: 50px !important;
	position: fixed !important;
	right: 0 !important;
	text-align: center !important;
	text-decoration: none !important;
	text-transform: uppercase !important;
	-moz-transform:rotate(-90deg) !important;
	-ms-transform:rotate(-90deg) !important;
	-o-transform:rotate(-90deg) !important;
	-webkit-transform:rotate(-90deg) !important;
	transform-origin: bottom right !important;
	width: 150px !important;
	text-shadow: 1px 1px #EFFFAA !important;
	z-index:9 !important;
	border-radius: 10px 10px 0 0 !important;
}

.registration_table{
	background:#E6E6E6;
	border-radius:0 0 20px 20px;
	.table_heading{
		background: -moz-linear-gradient(90deg, #1870BD 10%, #C7DE63 100%);
		background: -webkit-linear-gradient(90deg, #1870BD 10%, #C7DE63 100%);
		background: linear-gradient(90deg, #1870BD 10%, #C7DE63 100%);
	}
	th{
		border:none !important;
		background: none;
		text-align: center;
		color: #000;
		font-weight: 400;
	}
	td{
		border:none !important;
		text-align: center;
	}
}
.border_bottom{
	border-bottom: 1px dashed var(--dark);
}
.border-top {
	border-top: 2px solid var(--primary) !important;
	margin: 0;
}
.abstract_heading{
	background: var(--secondary);
	width: 75%;
	margin: 0 auto;
	text-align: center;
	padding: 10px;
	border-radius: 0 0 20px 20px;
	font-weight: 700;
	color: var(--primary);
}
.countdown{
	font-size: calc(0.1rem + 3.3vw);
	position: relative;
	top: -35px;
	background: var(--primary);
	color: var(--light);
	width: 75%;
	margin: 0 auto;
	padding: 10px;
	font-family: "Oswald",sans-serif;
	z-index: 9;
	border-radius: 20px;
}
.fixed-top {
	top: -40px;
	transform: translateY(40px);
	transition: transform .8s;
}
.navbar .nav-item .dropdown-menu{
	display: none;
}
.navbar .nav-item:hover .nav-link{

}
.navbar .nav-item:hover .dropdown-menu{
	display: block;

}
.navbar .nav-item .dropdown-menu{
	margin-top:0;
}
.dropdown-menu{
	border-radius:0 !important;
}
@media screen and (max-width: 600px) {
	.masthead {
		height: 50vh;
	}
	.carousel-inner{
		height: 33vh !important;
	}
	.carousel{
		top:47% !important;
	}
	.carousel-caption{
		top:0!important;
	}
	.small{
		max-width: 80% !important;
	}	
	.btn{
		padding:15px !important;
		font-size: 16px !important;
		line-height: 0 !important;
	}
	.heading{
		font-size:30px !important;
	}
	.heading_box_stroke{
		margin:-65px 0px 0px 0px !important;
	}
	.heading_stroke{
		font-size:55px !important;
	}
	.description{
		font-size:16px;
	}
	.carousel-caption h4 {
		font-size: 18px;
		font-weight: 500 !important;
	}
	.glitch{
		font-size: 30px;
		font-weight: 600 !important;
	}
	.countdown{
		width:100%;
		font-size:18px;
	}
	.reg_pack_btn{
		padding: 5px !important;
		font-size: 14px !important;
	}
}
.carousel-inner{
	height: 85vh;
	min-height: 200px;
}
.carousel-caption{
	color: #fff;
	top: 50%;
}
.blue{
	color:#022C6A;
}
.btn{
	background:#C7DE63;
	font-size:15px;
	text-align:center;
	font-weight:700;
	text-transform:uppercase;
	color:#000;
	padding:10px 20px;
	text-shadow: 1px 1px #EFFFAA;
}
.section{
	width:100%;
}
.text_box{
	width:100%;
	z-index:10;
	position:relative;
}
.page-header{
	height: 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(rgba(28, 30, 50, .9), rgba(28, 30, 50, .9)), url(banner.png);
}
.heading_box{
	text-align:center;
}
.sub_heading_box{
	text-align:center;
	margin-top:2%;
}
.index_heading{
	font-style:normal;
	font-weight:600;
	font-size:32px;
	text-transform:uppercase;
	color:var(--light);
	margin: 0;
	background: var(--primary);
}
.heading{
	font-style:normal;
	font-weight:600;
	font-size:35px;
	text-transform:uppercase;
	color:var(--light);
	margin: 0;
}
.grey{
	background: #E2E2E2;
	padding: 20px 10px;
}
.committee_head{
	font-family:'Lato';
	font-style:normal;
	font-weight:700;
	text-align: center;
	color:var(--dark);
	padding: 10% 0 0%;
	text-transform: uppercase;
}
.committee_heading{
	font-family:'Lato';
	font-style:normal;
	font-weight:400;
	text-align: center;
	color:var(--dark);
}
.divider{
	border-top:1px solid #3F486D;
	width:100%;
	margin:1% auto;
}
.description_box{
	text-align:center;
	width:100%;
}
.doc_pics{
	margin: 5% auto;
	p{
		text-align: center;
	}
}
.fancy {
	--b: 6px;   /* control the border thickness */
	--w: 80px;  /* control the width of the line*/
	--g: 15px;  /* control the gap */
	--c: #0B486B;

	width: fit-content;
	padding: 0 1em;
	line-height: 1.6em;
	color: #fff;
	background: var(--primary);
	background-size: 51% 100%;
	background-repeat: no-repeat;
	border-image: 
	linear-gradient(
		#0000      calc(50% - var(--b)/2),
		var(--secondary) 0 calc(50% + var(--b)/2),
		#0000    0) 
	1/0 var(--w)/calc(var(--w) + var(--g));
	margin-inline: auto;
	font-weight: 200;
	border-radius: 35px;
}
.carousel_img{
	width: 200px;
	height: 200px;
	border:2px solid rgba(164, 17, 43, 0.7);
	margin: 0 auto;
	display: block;
	border-radius: 15px;
}
.carousel_descri{
	font-family:'Lato';
	font-weight: 300;
	font-size: 16px;
	white-space: pre-line;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 180px;
	text-align:left;
	color:#000;
	padding:15px 0 0;
	margin:0;
}
.description{
	font-family:'Lato';
	font-style:normal;
	font-weight:400;
	font-size:20px;
	line-height:33px;
	text-align:left;
	color:#000;
	padding:30px 0 0;
	margin:0;
}
.about_description{
	font-family:'Lato';
	font-style:normal;
	font-weight:400;
	font-size:20px;
	line-height:33px;
	text-align:left;
	color:#000;
	padding:15px 30px;
	margin: 0;
}
.registration_description{
	font-family:'Lato';
	font-style:normal;
	font-weight:400;
	font-size:16px;
	text-align:left;
	color:#000;
	margin:0;
	text-align: center;
}

@keyframes ticker-kf {
	0% {
		transform: translateX(0);
	}

	100% {
		/* 10rem for each logo x 6 logos total = -60rem */
		transform: translateX(-60rem);
	}
}

.img-ticker {
	display: flex;
	margin-left: -1rem;
	margin-right: -1rem;
	animation: ticker-kf 10s linear infinite;
}

.tickerlogo {
	width: 8rem;
	flex: none;
	margin: 0 1rem 0 1rem;
	align-self: flex-start;
	max-width: 100%;
	height: auto;
}

.committee{
	padding:10px;
	width:100%;
	font-size:16px;
}
.committee_sub{
	width:100%;
	margin-top: 2%;
}
.owl-carousel .owl-item img {
	display: block;
	width: 40% !important;
	border-radius: 50%;
	border: 5px solid #ddd;
}
.no-js .owl-carousel, .owl-carousel.owl-loaded {
	display: block;
	background: #022C6A;
	padding: 5% 0;
}
.owl-nav, .owl-dots{
	display:none;
}
.conv_org_comm_box{
	width: 100%;
	border: 1px solid var(--dark);
	height: 410px;
}
.conv_org_comm_heading{
	font-style:normal;
	font-weight:600;
	font-size:28px;
	margin: 0;
	background: var(--secondary);
	text-align: center;
}
.committee_view_btn{
	padding: 10px 26px;
	border-radius: 4px;
	background: #ffffff !important;
	color: #084395 !important;
	text-decoration: none;
	transition: .8s;
	font-weight: 700;
	float:left;
	width:50%;
	text-align:center;
}
.committee_desp{
	font-family:'Lato';
	font-style:normal;
	font-weight:700;
	font-size:20px;
	line-height:33px;
	text-align:center;
	color:var(--dark);
	margin: 0;
}
.card-img-top{
	max-height:150px;
}
.card-body{
	height:230px;
}
.patron_committee{
	font-family:'Lato';
	font-style:normal;
	font-weight:300;
	font-size:20px;
	line-height:33px;
	text-align:center;
	color:#022C6A;
}
.reg_packages_box{
	background:var(--dark);
	padding: 34px 22px;
	margin: 20px 0px;
	float:left;
}
.reg_pack_text{
	font-size: 16px;
	margin: 0;
	color: #fff;
	text-align: center;
}
.reg_pack_divider{
	height: 2px;
	width: 100%;
	background-image: radial-gradient( farthest-side at 50% 50%, #ff7a45, hsla(0, 0%, 0%, 0));
	position: relative;
	float:left;
}
.reg_pack_amt_container{
	float:left;
	width:100%;
}
.reg_pack_amt_box{
	width:100%;
	float:left;
}
.reg_pack_heading{
	font-family:'Lato';
	font-style:uppercase;
	font-weight:700;
	font-size:20px;
	line-height:33px;
	text-align:center;
	color:#fff;
}
.reg_pack_title{
	width:50%;
	float:left;
	border-right: 1px solid #fff;
	color:#fff;
	text-align:right;
	padding:0 15px 0 0;
	margin:10px 0;
	font-family:'Lato';
	font-style:uppercase;
	font-weight:700;
}

.reg_pack_amt{
	width:50%;
	float:right;
	color:#fff;
	padding-left:5%;
	margin:10px 0;
	font-family:'Lato';
	font-style:uppercase;
	font-weight:400;
}
.line{
	line-height:47px;
}
.reg_pack_btn{
	padding: 10px 26px;
	border-radius: 4px;
	background: var(--primary); !important;
	color: var(--light); !important;
	text-decoration: none;
	transition: .8s;
	font-weight: 700;
	float:left;
	width:100%;
	text-align:center;
	margin: 3% 0 0;
}
.reg_pack_btn:hover{
	color: #000;
}
.pre_conven_text{
	font-size: 18px;
	margin: 0;
	color: #fff;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
	min-height: 60px;
}
.pre_conven_title{
	width:70%;
	float:left;
	border-right: 1px solid #fff;
	color:#fff;
	text-align:right;
	padding:0 15px 0 0;
	margin:10px 0;
	font-family:'Lato';
	text-transform:uppercase;
	font-weight:300;
	font-size: 14px;
}
.pre_conven_amt{
	width:30%;
	float:right;
	color:#fff;
	padding-left:5%;
	margin:10px 0;
	font-family:'Lato';
	text-transform:uppercase;
	font-weight:300;
}
.pre_conven_venue{
	float:left;
	color:#fff;
	text-align:center;
	padding:0 15px 0 0;
	margin:10px 0;
	font-family:'Lato';
	text-transform: uppercase;
	font-weight:500;
}
.flyer_box img{
	margin:5% auto 0;
	display: block;
}
.contact_detail{
	width: 100%;
	margin: 3% 0;
}
th{
	background: var(--secondary);
	border: 1px solid #000;
	padding: 1%;
	color: #000;
	font-family: "Oswald",sans-serif;
	font-weight: 300;
}
td{
	border: 1px solid #000;
	text-align: left;
	padding: 1%;
}
.workshop_date{
	text-align: center;
}
.abstract_description_box{
	font-family:'Lato';
	font-style:normal;
	line-height:33px;
	text-align:left;
	color:#000;
	padding:15px 30px;
	margin: 0;
}
.abstract_btn{
	padding: 10px 26px;
	border-radius: 4px;
	background: #084395 !important;
	color: #fff !important;
	text-decoration: none;
	transition: .8s;
	font-weight: 700;
	width:50%;
	text-align:center;
	margin:5% auto;
}
.doctor_pic{
	border-radius: 70%;
	width: 150px;
	height: 150px;
	display: block;
	margin: 0 auto;
	border: 3px solid var(--primary);
	background: -moz-linear-gradient(360deg, var(--secondary) 0%, rgba(0,0,0,0) 75%);
	background: -webkit-linear-gradient(360deg, var(--secondary) 0%, rgba(0,0,0,0) 75%);
	background: linear-gradient(360deg, var(--secondary) 0%, rgba(0,0,0,0) 75%);
}
.margin_top{
	margin-top: 2%;
}
.margin_bottom{
	margin-bottom:2.5rem !important;
}
.abstract_btn_program{
	padding: 10px 26px;
	border-radius: 4px;
	background: #084395 !important;
	color: #fff !important;
	text-decoration: none;
	transition: .8s;
	font-weight: 700;
	width:100%;
	text-align:center;
	margin:5% auto;
	display: block;
}
.venue_bg{
	height: 100%;
	background: #f7f7f7;
	padding-left: 8%;
}
.venue-features {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}
.footer{
	width:100%;
	padding: 1% 2%;
	background:var(--dark) !important;
}
.footer_logo{
	margin: 4% auto;
	display: block;
}
.footer_contact_detail{
	width: 100%;
	margin: 3% 0;
	color: #fff;
	font-size: 14px;
}
.copyright{
	margin: 0;
	font-size: 13px;
	color: #ffffff;
	font-weight: 300;
	width: 100%;
	text-align: center;
}

.photo-gallery {
	color:#313437;
	background-color:#fff;
}

.photo-gallery p {
	color:#7d8285;
}

.photo-gallery h2 {
	font-weight:bold;
	margin-bottom:40px;
	padding-top:40px;
	color:inherit;
}

@media (max-width:767px) {
	.photo-gallery h2 {
		margin-bottom:25px;
		padding-top:25px;
		font-size:24px;
	}
}

.photo-gallery .intro {
	font-size:16px;
	max-width:500px;
	margin:0 auto 40px;
}

.photo-gallery .intro p {
	margin-bottom:0;
}

.photo-gallery .photos {
	padding-bottom:20px;
}

.photo-gallery .item {
	padding-bottom:30px;
}

.nav-tabs a.nav-link {
	margin: 2px 0;
	width: 100%;
	background: #fff;
	color: #383a50;
	text-transform: uppercase;
	padding: 15px 0;
	position: relative;
	transition: all 0.3s ease;
	border: 1px solid #d3d3d3;
	border-bottom-left-radius: 35px;
	border-bottom-right-radius: 35px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	text-align: center;
	font-size: 14px;
}
.nav-tabs .nav-link.active{
	background: #3ea7de;
	color: #fff;
	padding: 15px 0;
	position: relative;
	border-bottom-left-radius: 35px;
	border-bottom-right-radius: 35px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	opacity: 1;
}
.nav-tabs {
	border-bottom: none;
	li.nav-item{
		margin: 0 3px;
	}
}
.nav-tabs .nav-link.active::after {
  background: #3ea7de;
  transform: translateX(-50%) rotate(45deg) scale(1);
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .nav-tabs .nav-link::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    background: transparent;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) scale(0);
    border-radius: 4px;
  }
}
.blue_highlight{
	font-style:normal;
	font-weight:600;
	color:var(--light);
	background: var(--primary);
}



