@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');

html{
	scroll-behavior: smooth;
}
body{
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
}

.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: #219ebc;
}		

.spkrImg{
	border: 5px solid #555;
}
.regBtn{
	background: #219ebc;
	color: #fff;
	border: 2px solid #219ebc;
	transition: 0.5s;
}
.regBtn:hover{
	background: transparent;
	color: #219ebc;
	text-decoration: none;
}

.color1{
	color: #219ebc;
	font-weight: bold;
}

.navBarOuter{
	background: #8ecae6;
}
.navBarOuter .navbar-nav{
	margin-top: 11px;
}
.navBarOuter .navbar .navbar-nav li a{
	color: #000;
	font-weight: 600;
	font-size: 16px;
	transition: 0.5s;
}
.navBarOuter .navbar .navbar-nav li a:hover{
	background: transparent;
	color: #fff;
}

.heroContainer .heroContent{
	text-align: center;
	margin-top: 10%;
	margin-bottom: 15%;
	position: relative;
}
.heroContent .heroTitle{
	font-size: 3.5em;
	font-weight: 900;
}
.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: #666;
	letter-spacing: 2px;
}

/*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;
	}


}