body {
	font-family: 'Oufit', sans-serif;
	text-align: center;
	background-color: #ffffff;
	 background-repeat: no-repeat;
	background-position: top center;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.contact a {
display: flex;
}

.header {
	padding-top: 30px;
	padding-bottom: 30px;
}
.main_container	{
	background-color: #E5E5E5;
	width: 100%;
	padding-top: 33px;
	padding-bottom: 33px;
}
.main {
	max-width: 1114px;
	margin: 0 auto;
	padding-bottom: 0px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	background-color: #ffffff;
}

.left {
	width: 50%;
	overflow: hidden;
	background-image: url('../img/hys-desktop.svg');
	background-position: top center;
	background-repeat: no-repeat;
	/* height:706px; */
	background-color: #01034d;
}
.left img {
	display: block;
}
.right {
	width: 50%;
	max-width: 378px;
	margin: 0 auto;
 	padding-top: 116px;
	 padding-bottom: 116px;
}
.right h1 {
	font-style: normal;
	font-weight: 600;
	font-size: 45px;
	line-height: 55px;
	letter-spacing: 0.7px;
	color: #2431B2;
	text-align: left;
	margin: auto;
}
.top-footer {
	width: 100%;
	height: 18px;
	background-color: #2330B2;
}
.contact {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 113px;
	max-width: 310.5px;
}
 
.contact h2 a {
	text-decoration: none;
	font-style: normal;
	font-weight: 300;
	font-size: 25px;
	line-height: 32px;
	letter-spacing: 2px;
	text-transform: capitalize;
	color: #2431B2;
}
.social {
	display: flex;
	width: 100%;
	justify-content: space-between;
	max-width: 316.5px;
	margin-top: 97px;
	align-items: center;
}
.email {
	margin-top: 100px;
	text-align: left;
}
.email a {
	font-style: normal;
	font-weight: 300;
	font-size: 26px;
	line-height: 33px;
	letter-spacing: 0.8px;
	text-transform: lowercase;
	color: #2431B2;
	text-decoration: none;
	text-align: left;
}
.pre-footer{
	height: 63px;
	background-color: #F7F8FF;
}
.footer {
	background-color: #E5E5E5;
	padding-top: 18px;
	padding-bottom: 18px;
}
.footer_content {
	max-width: 1144px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	padding-left: 15px;
	padding-right: 15px;
}
.footer_content a , .footer_content p {
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0.7px;
	color: #2330B2;
	text-decoration: none;
}
.pulsating-circle {

	background-image: url(../img/add_contact.svg);
	background-repeat: no-repeat;
	background-position: top 1px left 1px;
	border-radius: 50%;
	margin: 10px;
	height: 30px;
	width: 30px;
 
	transform: scale(1);
	animation: pulse 2s infinite;
  

}	
@keyframes pulse {
		0% {
			transform: scale(0.95);
			box-shadow: 0 0 0 0 #202060;
		}
	
		70% {
			transform: scale(1);
			box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
		}
	
		100% {
			transform: scale(0.95);
			box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
		}
	}
	