@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;
}

.headingStyle1{
	color: #613f75; 
	font-weight: bold; 
	text-transform: uppercase;
}
.content{
	margin-bottom: 100px;
	margin-top: 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 -25px;
	color: #613f75;
}		

.spkrImg{
	border: 5px solid #555;
}

.color1{
	color: #613f75;
	font-weight: bold;
}
.color2{
	color: #613f75;
}

.navBarOuter{
	background: #613f75;
}
.navBarOuter .navbar-nav{
	margin-top: 11px;
}
.navBarOuter .navbar .navbar-nav li a{
	color: #fff;
	font-size: 16px;
	transition: 0.5s;
}
.navBarOuter .navbar .navbar-nav li a:hover{
	background: transparent;
	color: #e5c3d1;
}


.heroContainer{
	background: url(img/header.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.heroContainer .heroContent{
	text-align: center;
	margin-top: 10%;
	margin-bottom: 15%;
	position: relative;
}
.heroContent .heroTitle{
	font-size: 3.5em;
	font-weight: 700;
	color: #e5c3d1;
}
.heroContent .heroSubTitle{
	color: #219ebc;
}
.heroContent .heroDate{
	color: #eee;
}
.regBtn{
	background: #e5c3d1;
	color: #000;
	border: 2px solid #e5c3d1;
	transition: 0.5s;
	text-transform: uppercase;
}
.regBtn:hover{
	background: transparent;
	color: #e5c3d1;
	text-decoration: none;
}


/*ORGANIZERS IMG*/
.organizers .headingStyle1{
	color: #fff;
	margin-bottom: 100px;
}
.orgImg{
	widows: 200px;
	height: 200px;
	border-radius: 50%;
	border: 2px solid #613f75;
	margin: auto;
}
.organizers{
	color: #eee;
}
.organizers a{
	color: #e5c3d1;
}
.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 #e5c3d1;
}

.footer{
	margin-top: 50px;
	margin-bottom: 50px;
}
.footer a{
	color: #666;
	letter-spacing: 3px;
}

/*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;
	}


}