
body {
	background: linear-gradient(180deg, #808BEC 50%,  #ffffff 50%);
	caret-color: transparent;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	margin: 0 auto;
}
a {
	text-decoration: none;
}
 
.container {
	position: relative;
  min-height: 100vh;
}
.header {
	width: 100%;
	max-height: 89px;
	background-color: #ffffff;
	text-align: center;
	padding-top: 28px ;
	padding-bottom: 28px;
}
.section_content {
	width: 100%;
	background: linear-gradient(180deg, #808BEC 50%,  #ffffff 50%);
}
.content_wrap {
	display: flex;
	justify-content: center;
	gap: 122px;
	margin: auto;
	width: 100%;
	max-width: 1180px;
	padding: 156px 15px;
	height: auto;
}
.content_wrap .content_left {
	max-width: 520px;
	text-align: center;
	position:relative;
	height: 100%;
	margin: auto;
}
.content_wrap .content_right {
	margin: auto;
	text-align: center;
	height: 100%;
	position:relative;
}
.content_right h1, h2 {
	font-family: Rufina, sans-serif;
	font-size: 50px;
	font-weight: 700;
	line-height: 50px;
	letter-spacing: 0.6999999284744263px;
	text-align: center;
	color: #ffffff;
}

.socials {
	max-width: 240px;
	margin: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top: 39px;
}
.contact {
	margin-top: 106px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.contact h2 {
	font-family: Roboto, sans-serif;
	font-size: 28px;
	font-weight: 500;
	line-height: 28px;
	letter-spacing: 3px;
	text-align: center;
}
h2.phone {
	margin-left: 	15px;
}
.contact a {
	text-decoration: none;
	color: #666196;
}
.contact .email {
	margin-top: 20px;
}
.footer	{
width: 100%;
	margin: auto;
background-color: #848DD4;
	padding-top: 18px;
	padding-bottom: 18px;
	bottom: 0px;
}
.footer_wrap {
	max-width: 920px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}
.footer_wrap a, .footer_wrap span {
	font-family: Roboto, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	letter-spacing: 0.6999999284744263px;
	text-align: left;
	color: #ffffff;
	text-decoration: none;
}
.contact {
	display: flex;
	align-items: center;
}
.pulsating-circle {
	background-image: url(../img/add_user_icon.svg);
	background-repeat: no-repeat;
	background-position: top 0px left 0px;
	background-size: cover;
	border-radius: 50%;
	height: 48px;
	width: 48px;
	transform: scale(1);
	animation: pulse 2s infinite;
	margin-right: 17px;
}	
@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);
	}
}