@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap');


body{
	font-family: 'Quicksand', sans-serif;
}
/*Start Header*/
/*Start Header Intro Section*/
.headerintros{
	height: 50px;
	background-color: darkblue;
	color: #fff;
	display: none;
}
.headerintros .infos{
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	font-weight: bolder;
}
@media(min-width:1200px){
	.visiblelgs{
		display: block;
	}
}
/*End Header Intro Section*/

/*Start banner section*/
.carousel-item{
	height: 60vh;
}
.banners1{
	background-image: url("../assets/img/banner/banner4.jpg");
}
.banners2{
	background-image: url("../assets/img/banner/banner5.jpg");
}
.banners3{
	background-image: url("../assets/img/banner/banner6.jpg");
}
.banners1,.banners2,.banners3{
	background-repeat: no-repeat;
	background-size: cover;
}
.btn-blues{
	background-color: darkblue;
	color: #fff;
}
/*End banner section*/

/*Start Features Section*/
.iconboxes{
	background-color: #fff;
	box-shadow: 0 2px 15px rgba(0,0,0,0.2);
	padding: 50px 20px;

	position: relative;
}
.icons{
	width: 70px;
	height: 70px;
	background-color: darkcyan;
	border-radius: 50%;
	color: #fff;

	display: flex;
	justify-content: center;
	align-items: center;

	position: absolute;
	top:-35px;
	left:calc(50% - 35px);
}
.iconboxes:hover .icons{
	background-color: #fff;
	color: darkcyan;
	border:2px solid darkcyan;
}
/*End Features Section*/

/*Start Info Section*/
.fromlefts{
	animation-name: myleft;
	animation-duration: 3s;
}
.fromrights{
	animation-name: myright;
	animation-duration: 3s;
}
@keyframes myleft{
	from{
		transform: translateX(-30px);
		opacity: 0;
	}
	to{
		transform: translateX(0px);
		opacity:1;
	}
}
@keyframes myright{
	from{
		transform: translateX(30px);
		opacity: 0;
	}
	to{
		transform: translateX(0px);
		opacity:1;
	}
}
/*End Info Section*/

/*Start Adv Section*/
.advs{
	height: 300px;
	background-image:linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url("../assets/img/banner/banner1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;

	color: #fff;
	text-shadow: -5px 0 10px #000;

	display: flex;
	align-items: center;
}
/*End  Adv Section*/

/*Start Department Section*/
.depboxes{
	box-shadow: 0 10px 10px rgba(0,0,0,0.5);
	border-radius: 20px;
	overflow: hidden;

	position: relative;
	

}
.depboxes img{
	width: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}
.depboxes .contents{
	width: 80%;
	height: 100%;
	background-color: #fff;
	text-align: center;

	position: absolute;
	bottom:-90%;
	left: 10%;

	transition: all 0.5s;
}
.depboxes .contents a{
	display: inline-block;
	background-color: steelblue;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	padding:10px 15px;
	margin-top: 10px;
	border-radius: 20px;
	opacity: 0;

	transition: all 0.5s;

}
.depboxes:hover .contents{
	width: 100%;
	height: 60%;

	left: 0;
	bottom: 0;
}
.depboxes:hover a{
	opacity: 1;
	transition-delay: 0.3s;
}
.depboxes:hover img{
	transform: scale(1.2);
}
.depboxes h3{
	color: steelblue;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 2px;
	padding-top: 6px;
}
.depboxes p{
	width: 80%;
	margin:10px auto;
	font-size: 13px;
}
/*End Department Section*/

/*Start Pricing Section*/
.pricingcards{
	background-color: #fff;
	text-align: center;
	padding-bottom: 40px;

	transition: all 0.5s;

}
.pricingcards .pricingheaders{
	padding:40px 20px;
	border-bottom: 2px solid #f3f3f3;
}
.pricingcards .prices{
	color: blue;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 20px;
} 
.pricingfeatures ul li{
	list-style-type: none;
	margin: 10px 0;
}
.btn-pricings{
	background: linear-gradient(-90deg,skyblue,blue);
	color: #fff;
	font-weight: bold;
	border: none;
	border-radius: 20px;
	padding:10px 30px;
}
.btn-pricings:hover{
	background: linear-gradient(90deg,skyblue,blue);
	color: #fff;
}
.pricingcards:hover .pricingheaders{
	background: linear-gradient(90deg,skyblue,blue);
	color: #fff;
}
.pricingcards:hover{
	box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
	transform: translateY(-20px);
}
.moveleft{
	animation-name: movefromleft;
	animation-duration: 2s;
}
.moveright{
	animation-name: movefromright;
	animation-duration: 2s;
}
.movebottom{
	animation-name: movefrombottom;
	animation-duration: 2s;
}
@keyframes movefromleft{
	from{
		transform: translateX(-100px);
		opacity: 0;
	}
	to{
		transform: translateX(0px);
		opacity: 1;
	}
}
@keyframes movefromright{
	from{
		transform: translateX(100px);
		opacity: 0;
	}
	to{
		transform: translateX(0px);
		opacity: 1;
	}
}
@keyframes movefrombottom{
	from{
		transform: translateY(100px);
		opacity: 0;
	}
	to{
		transform: translateY(0px);
		opacity: 1;
	}
}
/*End Pricing Section*/

/*Start Join Us Section*/
.customform{
	background-color: #ffff;
	border: 1px solid #dddd;
	padding:30px;
}
/*End Join Us Section*/

/*Start Footer*/
.socialicons a{
	color: #fff;
	padding: 5px;
	margin: 0 5px;
	border: 1px solid #f4f4f4;

}
.socialicons a:hover{
	background-color: blue; 
}
.footerlink{
	color: #eee;
	font-size:13px;
	text-decoration: none;

	transition: all 0.3s;
}
.footerlink:hover{
	color: orange;
	border-bottom: 1px solid orange;
	letter-spacing: 1px;
}
/*End Footer*/

/*Start progerss*/
#progress{
	width: 50px;
	height: 50px;
	/*background-color: steelblue;*/
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);

	position: fixed;
	right: 20px;
	bottom: 20px;

	display: flex;
	justify-content: center;
	align-items: center;

	z-index: 10;
}
#progressvalues{
	width:calc(100% - 10px);
	height:calc(100% - 10px);
	background-color: #fff;
	border-radius: 50%;
	font-weight: bold;

	display: flex;
	justify-content: center;
	align-items: center;

	/*display: grid;
	place-items:center;*/
}
/*End progress*/