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

body{
	margin: 0px;
	padding: 0px;
}
/* Header Section Start */
header{
	width: 100%;
	height: 50px;
	box-sizing: border-box;
	box-shadow: 0px 3px 5px #1b10103d;
	position: sticky;
	top: 0px;
	background: #fff;
	z-index: 99999;
}
nav{
	width: 85%;
	height: 100px;
	margin: 0px auto;
}
.logo{
	width: 30%;
	height: 100%;
	float: left;
	clear: right;
	padding-top: 15px;
	box-sizing: border-box;
}
.logo a{
	text-decoration: none;
	color: #1d2124;
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 20px;
}
.navbar{
	width: 70%;
	height: 100%;
	float: left;
	clear: right;
	box-sizing: border-box;
	padding-top: 15px;
	
}
.navbar ul{
	margin: 0px;
	padding: 0px;
	text-align: right;
}
.navbar ul li{
	list-style: none;
	display: inline-block;
}
.navbar ul li a{
	text-decoration: none;
	color: #1d2124;
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 15px;
	margin-left: 20px;
	text-transform: uppercase;
}
/* Header Section End */
/* Main Section Start */
main{
	width: 100%;
	height: 900px;
	background: #f9f9f9;
	padding-top: 90px;
	margin-top: 1px;
}
.main_inner{
	width: 85%;
	height: auto;
	margin: 0px auto;
	/* overflow: hidden; */
}
.main_inner h1{
	color: #02007e;
	font-family: Lato, sans-serif;
	font-weight: 700;
	font-size: 32px;
	margin: 0px;
}
.main_inner a{
	width: 96%;
	background: #fff;
	color: #1d2124;
	font-family: Lato, sans-serif;
	font-weight: 500;
	font-size: 20px;
	display: block;
	margin: 32px 0px;
	padding: 20px;
	box-shadow: 3px 5px 10px #d9d9d9d1, -2px -3px 15px #d9d9d9d1;
	text-decoration: none;
	position: relative;
}

.main_inner a span i{
	color: #1d2124;
	font-size: 14px;
	text-align: center;
	position: absolute;
	right: 35px;
	top: 25px;
}
/* Main Section End */
/* Footer Section Start */
footer{
	width: 100%;
	height: 50px;
	background: #f9f9f9;
}
.footer_inner{
	width: 85%;
	height: 100%;
	margin: 0px auto;
}
.finfo{
	width: 50%;
	height: 100%;
	float: left;
	clear: right;
}
.finfo p{
	color: #636363;
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 15px;
	margin: 0px;
}
.finfo p span{
	color: #02007e;
}
.footer_icon{
	width: 50%;
	height: 100%;
	float: left;
	clear: right;
}
.footer_icon ul{
	margin: 0px; 
	padding: 0px;
	text-align: right;
}
.footer_icon ul li{
	list-style: none;
	display: inline-block;
	color: #636363;
	padding: 0px 15px 0px 0px;
	cursor: pointer;
}
.footer_icon ul li:last-child{
	padding-right: 0px;
}
/* Footer Section End */