*{
	margin: 0;
	font-family: 'Roboto';
}
.Navbar{
	position: fixed;
	z-index: 100;
	top: 0;
	width: 100%;
	height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo{
	width: 30%;
	padding-left: 5%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.logoImg{
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
.logoText{
	font-size: 22px;
	color: #182547;
	padding-left: 5px;
}
.menu{
	width: 24%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 5%;
}
.menu p a{
	color: #303030;
}
.landingPage{
	width: 100%;
	height: 100vh;
	background: linear-gradient(to bottom right, #EBF1F4, #C6BAE0);
}
.layout{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.introSection, .heroSection{
	width: 50%;
	height: 100vh;
	position: relative;
}
.introText{
	font-size: 54px;
	font-weight: 900;
    color: #182547;
    padding-top: 30%;
    padding-left: 10%;
}
.introPara{
	font-size: 20px;
	font-weight: 500;
    color: #182547;
    padding-top: 5%;
    padding-left: 10%;
}
.introList{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #277125;
	padding-top: 5px;
	padding-left: 10%;
	font-weight: 500;
}
.ListImg{
	width: 18px;
	height: 100%;
}
.ListPara{
	padding-left: 5px;
}
.heroImg{
	position: absolute;
	left: 5%;
	top: 35%;
	width: 90%;
	animation: mainOne 4s ease-in-out 0s infinite;
	animation-direction: alternate;
}
@keyframes mainOne{
	from{
		transform: translate(0);
	}
	to{
		transform: translateY(10px);
	}
}
.supImg1{
	position: absolute;
	width: 14%;
	top: 53%;
	left: 10%;
	animation: supOne 2s ease-in-out 0s infinite;
	animation-direction: alternate;
}
.supImg2{
	position: absolute;
	width: 12%;
	top: 38%;
	left: 70%;
	animation: supTwo 3s ease-in-out 0s infinite;
	animation-direction: alternate;
}
.supImg3{
	position: absolute;
	width: 10%;
	top: 60%;
	left: 74%;
	animation: supThree 2s ease-in-out 0s infinite;
	animation-direction: alternate;
}
.extImg1{
	position: absolute;
	width: 12%;
	top: 30%;
	left: 18%;
	animation: extOne 4s ease-in-out 0s infinite;
	animation-direction: alternate;
}
.extImg2{
	position: absolute;
	width: 12%;
	top: 78%;
	left: 65%;
	animation: supOne 4s ease-in-out 0s infinite;
	animation-direction: alternate;
}
.extImg3{
	position: absolute;
	width: 4%;
	top: 84%;
	left: 28%;
}
.extImg4{
	position: absolute;
	width: 2%;
	top: 26%;
	left: 58%;
}
@keyframes supOne{
	from{
		transform: translate(0px);
	}
	to{
		transform: translateY(13px);
	}
}
@keyframes supTwo{
	from{
		transform: translate(0px);
	}
	to{
		transform: translateY(-11px);
	}
}
@keyframes supThree{
	from{
		transform: translate(0px);
	}
	to{
		transform: translateY(6px);
	}
}
@keyframes extOne{
	from{
		transform: translate(0px);
	}
	to{
		transform: translateY(8px);
	}
}
.bg{
	height: 95vh;
}
.bg2{
	background-color: #e9f3fd;
	height: 94vh;
}
.about1{
	padding: 20% 10% 0% 5%;
    font-weight: 600;
    font-size: 34px;
    color: #303030;
}
.about2{
	padding: 5% 10% 0% 5%;
    font-weight: 400;
    font-size: 20px;
    color: #606060;
}
.aboutImg{
	width: 570px;
	height: 380px;
	padding: 18% 0% 0% 10%;
}
.featureText, .CtgText{
	font-size: 36px;
	color: #303030;
	font-weight: 600;
	text-align: center;
	padding-top: 5%; 
}
.content, .CtgContent{
	width: 80%;
	height: 400px;
	margin-top: 1%; 
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.featureList, .CtgList{
	width: 25%;
	height: 300px;
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0px 15px 30px #8a959e33;
}
.featureImg{
	padding: 15px 15px 5px;
	width: 80px;
}
.featureHead{
	color: #303030;
	font-size: 22px;
	font-weight: 600px;
	padding: 15px;
}
.featureDes{
	color: #606060;
	padding: 5px 15px;
}
.CtgContent{
	height: 200px;
}
.CtgList{
	box-shadow: none;
	border: 1px solid #182547;
	height: 150px;
}
.CtgList:hover{
	box-shadow: 0px 15px 30px #18254733;
}
.CtgImg{
	padding: 20px 20px 5px;
	height: 50px;
}
.footer{
	font-weight: 600;
	text-align: center;
	padding-bottom: 15px;
}