@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


html{
	scroll-behavior: smooth;
}
body{
	font-family: 'Jost', sans-serif;
	font-size: 16px;
}
a{
	color: #5e548e;
	font-weight: 600;
	transition: 0.3s;
}
a:hover{
	text-decoration: none;
	color: #333;
}
.content{
	margin-bottom: 100px;
}
.justify{
	text-align: justify;
}

.listStyleOne li{
	list-style: none;
	margin-left: 15px;
	margin-bottom: 5px;
}
.listStyleOne li:before {    
	font-family: 'FontAwesome';
	content: '\f101';
	margin:0 5px 0 -15px;
	color: #5e548e;
}		

.spkrImg{
	border: 5px solid #555;
}
.regBtn{
	background: #5e548e;
	color: #fff;
	border: 2px solid #5e548e;
	transition: 0.5s;
	padding: 10px 20px;
}
.regBtn:hover{
	background: transparent;
	color: #5e548e;
	text-decoration: none;
}

.color1{
	color: #219ebc;
	font-weight: bold;
}

.navBarOuter{
	background: #5e548e;
}
.navBarOuter .navbar-nav{
	margin-top: 15px;
}
.navBarOuter .navbar .navbar-nav li a{
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	transition: 0.5s;
}
.navBarOuter .navbar .navbar-nav li a:hover{
	background: transparent;
	color: #aaa;
}

.heroContainer .heroContent{
	text-align: center;
	margin-top: 10%;
	margin-bottom: 10%;
	position: relative;
}
.heroContent .heroTitle{
	font-size: 3.0em;
	font-weight: 600;
	margin-bottom: 30px;
}
.heroContent .heroSubTitle{
	color: #219ebc;
}

.registration h3{
	font-weight: bold;
	color: #666;
}

.blink{
	animation: animate 1s linear infinite;
}

@keyframes animate{
	0%, 100%{
		color: #000;
	}
	50%{
		color: #e63946;
	}
}


.carousel{
	border: 15px solid #caf0f8;
}

.footer{
	margin-top: 50px;
	margin-bottom: 50px;
}
.footer a{
	color: #aaa;
	letter-spacing: 2px;
	transition: 0.3s;
}
.footer a:hover{
	text-decoration: none;
	color: #fff;
}

/*SCHEDULE*/
.schedule .speaker{
	color: #000;
	font-size: 13px;
	font-weight: 600;
}



/*MOBILE*/
@media(max-width: 600px){
	.heroContent .heroTitle{
		font-size: 2.5em;
		font-weight: 700;
	}
	.overview .row .col-sm-5{
		margin-top: 20px;
	}


}


.right-img-decor {
	  background-image: url(img/right-bg-decor1.png);
	  background-repeat: no-repeat;
	  background-position: right center;
	  position: absolute;
	  width: 100%;
	  display: inline-block;
	  height: 110%;
	  margin-top: -200px;
}
.left-img-decor {
	  background-image: url(img/left-bg-decor1.png);
	  background-repeat: no-repeat;
	  background-position: left center;
	  position: absolute;
	  width: 100%;
	  display: inline-block;
	  height: 110%;
	  margin-top: -200px;
}




		.tutors .imgBx{
			margin: auto;
			text-align: center;
			box-shadow: 0 0 1px #ddd;
			border-radius: 10px;
			padding: 20px;
			margin-top: 50px;
			transition: all 0.5s;
			height: 280px;
		}
		.tutors .imgBx:hover{
			box-shadow: 0 0 25px #efefef;
		}
		.tutors .image img, .organizers .image img{
			margin: auto;
			border-radius: 5px;
			box-shadow: 0 0 5px #efefef;
		}
		.tutors .details .name{
			margin-top: 15px;
			color: #000;
		}

		.organizers .imgBx{
			margin: auto;
			text-align: center;
			border-radius: 10px;
			padding: 20px;
			transition: all 0.5s;
		}
