/*---- root ----*/

:root {
	--container: 1200px;
	--distance-1: 100px;
	--distance-2: 50px;
	--distance-3: 30px;
	--distance-4: 20px;
	--bg-color-0: #ffffff;
	--bg-color-1: #F9FAFD;
	--bg-color-2: linear-gradient(90deg, #76C5FF 0%, #1F83CB 100%);
	--bg-color-3: #DDEFFD;
	--bg-color-4: #F0F6FD;
	--bg-color-5: linear-gradient(90deg, #203864 0%, #203864 100%);
	--text-color-0: #ffffff;
	--text-color-1: #203864;
	--text-color-2: #BFBFBF;
	--text-color-3: #868E94;
	--border-color-1: #1F83CA;
	--border-radius-1: 4px;
	--inner-distance-1: 100px 0;
	--inner-distance-3: 30px 40px;
	--inner-distance-5: 60px 0;
	--transition: all ease-in-out .3s;
	--line-height-1: 100%;
	--line-height-2: 130%;
	--line-height-3: 150%;
	--box-shadow-1: 0px 12px 24px -12px rgba(31, 131, 202, 0.35);
	--box-shadow-2: 0px 22px 50px rgba(31, 131, 202, 0.13);
	--font-size-1: 16px;
	--font-size-2: 20px;
	--font-size-3: 24px;
	--font-size-4: 38px;
	--font-size-5: 60px;
	--font-size-6: 21px;
	--svg-color-1: #76C5FF;
	--svg-color-2: #1F83CB;
}

/* item */

@media screen and (max-width: 1023px) {
	:root {
		--distance-1: 80px;
		--inner-distance-1: 80px 0;
	}
}

@media screen and (max-width: 767px) {
	:root {
		--distance-1: 50px;
		--distance-2: 30px;
		--distance-2: 20px;
		--font-size-4: 24px;
		--font-size-5: 33px;
		--font-size-6: 20px;
		--inner-distance-1: 50px 0;
		--inner-distance-3: 20px;
		--inner-distance-5: 20px 0;
	}
}

/*---- Reset styles ----*/

html {
	height: 100%;
	min-height: -moz-available;
	min-height: -webkit-fill-available;
	min-height: fill-available;
}

body {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	margin: 0;
	padding: 0;
	background-color: var(--bg-color-0);
	font-size: var(--font-size-2);
	color: var(--text-color-1);
	line-height: var(--line-height-3);
}

body * {
	margin: 0;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: var(--font-size-2);
	line-height: var(--line-height-3);
}

img {
	border-style: none;
	width: 100%;
}

:focus {
	outline: 0;
}

:hover,
:active {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-touch-callout: none;
}

::-ms-clear {
	display: none;
}

ul,
ol {
	padding: 0;
	list-style: none;
}

a {
	text-decoration: none;
	/* transition: var(--transition); */
	color: var(--text-color-2);
	cursor: pointer;
}

button {
	background: none;
	border: none;
	outline: 0;
	padding: 0;
	transition: var(--transition);
	cursor: pointer;
	appearance: none !important;
	-webkit-appearance: none !important;
	outline-offset: 0 !important;
	box-shadow: none !important;
}

main {
	width: 100%;
	overflow: hidden;
	position: relative;
}

main>* {
	position: relative;
	z-index: 1;
}

main::before {
	content: url(./img/bg_img_1.svg);
	position: absolute;
	bottom: -210px;
	left: 0;
	z-index: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: var(--line-height-3);
}

h1 {
	font-size: var(--font-size-5);
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: var(--line-height-2);
}

h2 {
	font-size: var(--font-size-4);
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: var(--line-height-2);
}

h3 {
	font-size: var(--font-size-3);
}

h4 {
	font-size: var(--font-size-6);
	line-height: var(--line-height-3);
	font-weight: 700;
}

@media screen and (max-width: 1023px) {
	main::before {
		left: -580px;
		bottom: -330px;
		transform: scale(.8);
	}
}

@media screen and (max-width: 767px) {
	main::before {
		left: -600px;
	}
}

/*---- Reset class ----*/

.container {
	max-width: var(--container);
	width: 100%;
	margin: auto;
	padding: 0 15px;
}

.section+.section {
	margin-top: var(--distance-2);
}

.line+.line {
	margin-top: var(--distance-2);
}

.text_block>* {
	margin: 0;
}

.text_block>*+* {
	margin-top: var(--distance-4);
}

.center {
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.hide {
	display: none;
}

.btn {
	display: inline-block;
	padding: 15px 20px;
	background: var(--bg-color-2);
	color: var(--text-color-0);
	font-size: var(--font-size-1);
	font-weight: 500;
	border-radius: var(--border-radius-1);
	line-height: var(--line-height-1);
	text-align: center;
}

.btn:not(.white) {
	box-shadow: var(--box-shadow-1);
}

.btn.white {
	padding: 14px 19px;
	border: 1px solid var(--border-color-1);
	color: var(--border-color-1);
	background: none;
	box-shadow: 0 0 0;
}

.btn:hover {
	background: var(--bg-color-5);
	border-color: var(--text-color-1);
	color: var(--text-color-0);
}

.box {
	padding: var(--inner-distance-3);
	box-shadow: var(--box-shadow-2);
	background-color: var(--bg-color-0);
}

.box.border {
	background-color: transparent;
	border: 4px solid;
	border-image: var(--bg-color-2) 1;
	box-shadow: 0 0 0;
}

.box.color {
	background-color: var(--bg-color-4);
	box-shadow: 0 0 0;
}

.grey_bg {
	background-color: var(--bg-color-1);
}

.color_bg {
	background-color: var(--bg-color-3);
}

.title_style {
	position: relative;
}

.title_style::before {
	content: '';
	display: block;
	position: absolute;
	width: 36px;
	height: 2px;
	background: var(--bg-color-2);
	left: -86px;
}

h1.title_style::before {
	top: 58px;
}

h2.title_style::before {
	top: 35px;
}

.bg_style {
	position: relative;
}

.bg_style>* {
	position: relative;
	z-index: 1;
}

.bg_style::before {
	content: '';
	display: block;
	--width-1: calc((100vw - 100%) / 2);
	--width-2: calc(((100vw - 100%) / 2) / 2);
	width: calc(100% + var(--width-1) + var(--width-2));
	height: 100%;
	position: absolute;
	top: 0;
	background-color: var(--bg-color-1);
	z-index: 0;
}

.bg_style.left_side::before {
	left: calc(var(--width-2) - var(--width-1));
}

.bg_style.right_side::before {
	right: calc(var(--width-2) - var(--width-1));
}

.title_block+* {
	margin-top: var(--distance-2);
}

section .container>.wrapper {
	padding: var(--inner-distance-1);
}

.text_color {
	background: var(--bg-color-2);
	overflow: hidden;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.social_block a {
	position: relative;
}

.social_block a:hover {
	--svg-color-1: #ffffff;
	--svg-color-2: #ffffff;
	background-color: var(--text-color-1);
}

.social_block a:hover span {
	background: transparent;
	background-clip: inherit;
	-webkit-background-clip: inherit;
	-webkit-text-fill-color: inherit;
	color: var(--text-color-0);
}

.social_block a img {
	width: 20px;
}

.social_block a:has(span) img {
	width: 17px;
}

.social_block a img.hover {
	display: none;
}

.social_block a:hover img.hover {
	display: block;
}

.social_block a:hover img:not(.hover) {
	display: none;
}

.logo_block div {
	font-weight: 700;
	color: var(--text-color-2);
	white-space: nowrap;
	line-height: var(--font-size-1);
	font-size: 18px;
	margin-left: 20px;
	padding-left: 20px;
	border-left: 1px solid #B4B9C720;
}

@media screen and (max-width: 1199px) {

	.bg_style.left_side::before {
		left: -15px;
		width: 100vw;
	}

	.bg_style.right_side::before {
		right: -15px;
		width: 100vw;
	}
}

@media screen and (max-width: 767px) {
	.bg_style.left_side::before {
		left: -20px;
		width: 100vw;
	}

	.bg_style.right_side::before {
		right: -20px;
		width: 100vw;
	}

	.logo_block div {
		padding: 0;
		margin: 0;
		border: none;
	}
}

/**** swiper ****/

.swiper .swiper-wrapper {
	height: auto;
}

.swiper .swiper-slide:hover {
	z-index: 2;
}

/**** list ****/

ul.ul_style li,
.wysiwyg ul li {
	position: relative;
	padding-left: 36px;
}

ul.ul_style li+li,
.wysiwyg ul li+li {
	margin-top: var(--distance-4);
}

ul.ul_style li::before,
.wysiwyg ul li::before {
	content: '';
	position: absolute;
	top: 6px;
	left: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiIHN0cm9rZT0idXJsKCNwYWludDBfbGluZWFyXzQwNDNfNDIpIiBzdHJva2Utd2lkdGg9IjIiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl80MDQzXzQyIiB4MT0iMi43NTc2NWUtMDYiIHkxPSIxOCIgeDI9IjE4IiB5Mj0iMTgiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzc2QzVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxRjgzQ0IiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 1;
}

/**** style ****/

@media screen and (max-width:767px) {
	.container {
		padding: 0 20px;
	}
}

/*header*/

header {
	padding: var(--inner-distance-5);
	position: relative;
	z-index: 2;
}

.logo_block {
	display: flex;
	align-items: flex-end;
}

header .social_block a {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--bg-color-0);
	border-radius: var(--border-radius-1);
}

@media screen and (max-width: 767px) {

	.logo_block img {
		width: 128px;
	}

	.logo_block {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

}

/*first_banner_block*/

#first_banner_block .first_info_block h2+p {
	margin-top: 30px;
}

#first_banner_block .first_info_block .btn_block {
	margin-top: var(--distance-2);
	display: flex;
	gap: 20px;
}

#first_banner_block .first_info_block {
	padding: var(--distance-2) 0 var(--distance-1) 0;
}

#first_banner_block .title_block {
	margin-bottom: var(--distance-2);
}

#first_banner_block .first_info_block::after {
	content: url(./img/bg_img_1.svg);
	position: absolute;
	bottom: 0;
	right: -52%;
	z-index: 0;
}

#first_banner_block {
	padding: 0;
}

#first_banner_block .wrapper {
	padding: 0;
	position: relative;
}

#first_banner_block .first_info_block .wrapper {
	max-width: 65%;
}

#first_banner_block .wrapper img {
	position: absolute;
	left: 68%;
	max-width: 570px;
	bottom: -85px;
	z-index: 1;
}

@media screen and (max-width: 1023px) {
	#first_banner_block .wrapper img {
		max-width: 400px;
		bottom: -51px;
	}

	#first_banner_block .first_info_block::after {
		left: 30%;
		right: auto;
	}

}

@media screen and (max-width: 767px) {

	#first_banner_block .wrapper img {
		position: relative;
		max-width: 460px;
		width: 100%;
		margin: auto;
		bottom: auto;
		left: auto;
		margin-top: 50px;
	}

	#first_banner_block .first_info_block .wrapper .btn_block {
		flex-direction: column;
	}

	#first_banner_block .first_info_block {
		padding-bottom: 0;
	}

	#first_banner_block .first_info_block .wrapper {
		max-width: 100%;
	}

	#first_banner_block .first_info_block::after {
		left: 0;
		bottom: 0;
		top: auto;
	}

	#first_banner_block .first_info_block h2+p {
		font-size: 15px;
	}

	#first_banner_block .first_info_block h2 br {
		display: none;
	}
}

/*why_we_block*/

#why_we_block {
	position: relative;
	z-index: 2;
}

#why_we_block .icon_block img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	object-position: center;
}

#why_we_block .wrapper {
	position: relative;
}

#why_we_block .wrapper>* {
	position: relative;
	z-index: 1;
}

#why_we_block .icon_block+.text_block {
	margin-top: 20px;
}

#why_we_block .wrapper .list+img {
	position: absolute;
	max-width: 570px;
	top: 120px;
	left: 68%;
	z-index: 0;
}

@media screen and (max-width: 1023px) {
	#why_we_block .wrapper .list+img {
		max-width: 400px;
		top: 75px;
	}
}

@media screen and (max-width:767px) {
	#why_we_block .flex {
		padding-bottom: var(--distance-1) !important;
		margin-bottom: calc(var(--distance-1) - var(--distance-1) * 2);
		padding-top: var(--distance-2) !important;
		margin-top: calc(var(--distance-2) - var(--distance-2) * 2);
		gap: 10px;
	}

	#why_we_block .flex>* {
		--flex-carousel-item: 280px;
	}

	#why_we_block .item.box {
		padding: 30px 40px;
	}

}

@supports (-webkit-touch-callout: none) {

	.flex.stretch>*>* {
		min-height: 100%;
	}
}

/*possibilities_block*/

#possibilities_block {
	position: relative;
}

#possibilities_block h3 {
	display: inline-block;
}

#possibilities_block .list {
	position: relative;
}

#possibilities_block .list::before {
	content: '';
	height: 100%;
	width: 2px;
	background-color: var(--bg-color-3);
	position: absolute;
	top: 66px;
	right: calc(100% + 60px);
}

#possibilities_block .list .item {
	padding: 50px;
	position: relative;
}

#possibilities_block .list .item::before {
	content: '';
	position: absolute;
	top: 57px;
	left: -9px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiIHN0cm9rZT0idXJsKCNwYWludDBfbGluZWFyXzQwNDNfNDIpIiBzdHJva2Utd2lkdGg9IjIiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl80MDQzXzQyIiB4MT0iMi43NTc2NWUtMDYiIHkxPSIxOCIgeDI9IjE4IiB5Mj0iMTgiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzc2QzVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxRjgzQ0IiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 1;
}

#possibilities_block .list .item::after {
	content: '';
	background-color: var(--bg-color-3);
	width: 51px;
	height: 2px;
	position: absolute;
	top: 66px;
	right: calc(100% + 9px);
	z-index: 0;
}

#possibilities_block .title_block {
	position: relative;
}

#possibilities_block .title_block::after {
	content: url(./img/img_2.svg);
	position: absolute;
	right: 30px;
	bottom: 0;
	z-index: 0;
}

#possibilities_block .list .item+.item {
	margin-top: var(--distance-3);
}

@media screen and (max-width: 1023px) {
	#possibilities_block .title_block {
		margin-bottom: var(--distance-2);
	}

	#possibilities_block .title_block::after {
		display: none;
	}
}

@media screen and (max-width:767px) {
	#possibilities_block .list .item {
		padding: 20px;
	}

	#possibilities_block .list .item::before {
		top: 30px;
	}

	#possibilities_block .list .item::after {
		top: 38px;
	}
}

/*for_who_block*/

#for_who_block .img_block {
	position: relative;
}

#for_who_block .img_block img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: contain;
	left: 50%;
	transform: translateX(-50%);
}

@media screen and (max-width: 1023px) {
	#for_who_block .img_block img {
		left: 0;
		width: auto;
		transform: none;
		object-position: bottom right;
	}

	#for_who_block br {
		display: none;
	}
}

@media screen and (max-width: 767px) {

	#for_who_block .img_block {
		text-align: center;
		height: auto !important;
		min-width: 0;
	}

	#for_who_block .img_block img {
		position: relative;
		right: auto;
		width: 100%;
		object-position: center;
		max-width: 460px;
		height: auto;
	}

	#for_who_block .flex {
		align-items: flex-start !important;
	}

}

/*checklist_block*/

#checklist_block .wrapper {
	padding-top: 0;
}

#checklist_block .item {
	display: flex;
	gap: 20px 30px;
	align-items: flex-start;
}

#checklist_block .item .img_block {
	max-width: 50px;
	flex: 50px;
}

#checklist_block .item .img_block+.text_block {
	flex: calc(100% - 80px);
	max-width: calc(100% - 80px);
	width: 100%;
}

#checklist_block .item img {
	width: 50px;
}

@media screen and (max-width: 1023px) {
	#checklist_block .item {
		flex-direction: column;
	}

	#checklist_block .item>* {
		max-width: 100%;
		flex: 100%;
	}
}

/*carousel_block*/

#carousel_block .img_block {
	position: relative;
	height: 0;
	display: block;
	line-height: 0;
	padding-bottom: 60%;
	background: var(--bg-color-2);
	object-fit: cover;
	overflow: hidden;
	border: 1px solid var(--bg-color-3);
}

#carousel_block .img_block::before {
	content: '';
	opacity: 0;
	width: 50px;
	height: 50px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIHZpZXdCb3g9IjAgMCA1MCA1MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjAwNjggMC4wMDAxNDMwMzRDOC45NzM3NiAwLjAwMDE0MzAzNCAwIDguOTY5NzkgMCAxOS45OTc4QzAgMzEuMDI1OCA4Ljk3Mzc2IDM5Ljk5NTQgMjAuMDA2OCAzOS45OTU0QzIzLjcxNjIgMzkuOTk1NCAyNy4xODU2IDM4Ljk5MzkgMzAuMTY2NyAzNy4yMjc5TDQxLjQ2NDggNDguNTQzN0M0My40MDc0IDUwLjQ4NTQgNDYuNjAwNCA1MC40ODU0IDQ4LjU0MyA0OC41NDM3QzUwLjQ4NTYgNDYuNjAxOSA1MC40ODU3IDQzLjQxMDQgNDguNTQzIDQxLjQ2ODdMMzcuMjQ0OSAzMC4xNTI5QzM5LjAwMzMgMjcuMTc4OSA0MC4wMTM3IDIzLjY5NzEgNDAuMDEzNyAxOS45OTc2QzQwLjAxMzcgOC45Njk2NSAzMS4wMzk4IDAuMDAwMTQzMDM0IDIwLjAwNjggMC4wMDAxNDMwMzRaTTIwLjAwNjggMi44NTY5NUMyOS40OTM2IDIuODU2OTUgMzcuMTU1NSAxMC41MTUzIDM3LjE1NTUgMTkuOTk3OEMzNy4xNTU1IDI5LjQ4MDIgMjkuNDkzNiAzNy4xMzg2IDIwLjAwNjggMzcuMTM4NkMxMC41MiAzNy4xMzg2IDIuODU4MTEgMjkuNDgwMiAyLjg1ODExIDE5Ljk5NzhDMi44NTgxMSAxMC41MTUzIDEwLjUyIDIuODU2OTUgMjAuMDA2OCAyLjg1Njk1Wk0zNS41Njk5IDMyLjU0MDZMNDYuNTMzNiA0My40NzY0QzQ3LjM5MDUgNDQuMzMyOSA0Ny4zOTA1IDQ1LjY1NTMgNDYuNTMzNiA0Ni41MTE4QzQ1LjY3NjggNDcuMzY4MiA0NC4zNTM4IDQ3LjM2ODIgNDMuNDk2OSA0Ni41MTE4TDMyLjU1NiAzNS41NzU5QzMzLjY2OTcgMzQuNjc3NiAzNC42NzExIDMzLjY1MzcgMzUuNTY5OSAzMi41NDA2WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: var(--transition);
	pointer-events: none;
	z-index: 2;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#carousel_block .img_block:hover::before {
	opacity: 1;
}

#carousel_block .img_block img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top left;
	transition: var(--transition);
}

#carousel_block .img_block:hover img {
	transform: scale(1.2);
	opacity: .5;
}

#carousel_block .swiper .swiper-pagination {
	position: relative;
	top: auto;
	bottom: auto;
	margin-top: 30px;
}

#carousel_block .swiper .swiper-pagination>div {
	transition: var(--transition);
	background-color: var(--text-color-3);
}

#carousel_block .swiper .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--bg-color-2);
}

#carousel_block .swiper .swiper-pagination>div:not(.swiper-pagination-bullet-active):hover {
	background-color: var(--text-color-1);
}

@media screen and (max-width: 767px) {
	#carousel_block .container {
		padding: 0;
	}

	#carousel_block .wrapper .title_block {
		padding: 0 20px;
	}

	#carousel_block .swiper {
		margin: -50px 0px;
		padding: 50px 20px;
	}

	#carousel_block .img_block {
		box-shadow: var(--box-shadow-2);
	}

}

/*steps_block*/

#steps_block .num_block {
	font-size: 60px;
	line-height: 60px;
	font-weight: 700;
}

#steps_block .num_block+.text_block {
	position: relative;
	padding-top: 61px;
}

#steps_block .num_block+.text_block::before {
	content: '';
	background: var(--bg-color-2);
	width: 100%;
	height: 1px;
	position: absolute;
	top: 30px;
	left: 0;
}

@media screen and (min-width: 768px) {
	#steps_block .flex {
		gap: 50px 0;
	}
}

@media screen and (max-width:767px) {
	#steps_block .item {
		display: flex;
		align-items: flex-start;
	}

	#steps_block .num_block {
		flex: 65px;
		max-width: 65px;
		width: 100%;
	}

	#steps_block .num_block+.text_block {
		flex: calc(100% - 65px);
		max-width: calc(100% - 65px);
		width: 100%;
		padding-left: 30px;
		padding-top: 0;
	}

	#steps_block .num_block+.text_block::before {
		height: 100%;
		width: 1px;
		top: 0;
		left: 0px;
	}
}

/*security_block*/

#security_block {
	overflow: hidden;
}

#security_block .img_block {
	position: relative;
}

#security_block .img_block img {
	position: absolute;
	--add-height: 60px;
	top: calc(var(--distance-1) - var(--distance-1) * 2 - var(--add-height));
	height: calc(100% + var(--distance-1) + var(--add-height));
	width: 425px;
	object-fit: contain;
	bottom: 0;
	left: calc(50% - 15px);
	transform: translateX(-50%);
}

@media screen and (max-width:767px) {
	#security_block .img_block {
		position: inherit;
	}

	#security_block .img_block img {
		height: calc(100% - var(--add-height));
		width: 425px;
		min-height: 300px;
		top: -50px;
		left: auto;
		transform: none;
		right: -180px;
	}

	#security_block .wrapper::before {
		content: '';
		position: absolute;
		z-index: 0;
		width: 300px;
		height: 300px;
		top: 50%;
		left: -50%;
		transform: translateY(-50%);
		box-shadow: 0 0 100px 150px #ffffff;
		background-color: var(--bg-color-0);
		border-radius: 50%;
	}
}

/*advantages_block*/

#advantages_block .wrapper {
	padding-top: 0;
}

#advantages_block .icon_name_block img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	object-position: center;
}

#advantages_block .item+.item {
	margin-top: 30px;
}

#advantages_block .right_block .item {
	height: 100%;
}

#advantages_block .item .text_block {
	margin-top: 20px;
}

#advantages_block .right_block .item .text_block {
	margin-top: 30px;
}

#advantages_block .icon_name_block {
	display: flex;
	align-items: center;
	gap: 30px;
}

#advantages_block svg {
	max-width: 50px;
	flex: 50px;
	width: 100%;
}

#advantages_block svg+h4 {
	flex: calc(100% - 80px);
	max-width: calc(100% - 80px);
	width: 100%;
}

@media (max-width:1023px) and (min-width:768px) {
	#advantages_block .left_block {
		display: flex;
		align-items: stretch;
		gap: 30px;
	}

	#advantages_block .left_block .item {
		height: 100%;
		margin-top: 0;
		flex: calc(50% - 15px);
		max-width: calc(50% - 15px);
	}
}

@media screen and (max-width:767px) {
	#advantages_block .right_block .item .text_block {
		margin-top: 20px;
	}
}

/*footer*/

footer {
	padding-bottom: var(--distance-1);
}

footer * {
	font-size: 15px;
	color: var(--text-color-2);
}

footer .line+.line {
	margin-top: 40px;
}

footer .social_block a {
	height: 42px;
	padding-left: 24px;
	padding-right: 24px;
	background-color: var(--bg-color-4);
	border: var(--border-radius-1);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--border-radius-1);
}

footer .social_block a span {
	font-size: 15px;
	line-height: 15px;
	position: relative;
	top: 2px;
	margin-left: 10px;
}


footer .social_block {
	display: flex;
	gap: 10px;
}

footer .social_block a:not(:has(span)) {
	width: 42px;
	flex: 42px;
	max-width: 42px;
	padding: 0;
}

footer .link_block a:hover {
	color: var(--text-color-1);
}

@media screen and (max-width: 767px) {
	footer .social_block a {
		background-color: var(--bg-color-0);
	}
}