:root {
	--blue: #006cfd;
	--dark-blue: #0d162e;
	--white: #fff;
}

body {
	background: var(--white);
	color: var(--dark-blue);
	font-family: "Grtsk Peta";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
}

.body-wrapper {
	overflow: hidden;
	position: relative;
}

.section {
	padding: 120px 0;
}

.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 60px;
}

.container_wide {
	max-width: 1440px;
}

.text-89 {
	font-size: 89px;
	line-height: 90%;
}

.text-65 {
	font-size: 65px;
	line-height: normal;
}

.text-49 {
	font-size: 49px;
	line-height: 112%;
}

.text-47 {
	font-size: 47px;
	line-height: 120%;
	letter-spacing: -0.94px;
}

.text-34 {
	font-size: 34px;
	line-height: 117%;
}

.text-27 {
	font-size: 27px;
	line-height: 120%;
	letter-spacing: -0.27px;
}

.text-16 {
	font-size: 16px;
	line-height: 150%;
	letter-spacing: -0.2px;
}

.fw-500 {
	font-weight: 500;
}

.fw-600 {
	font-weight: 600;
}

.fw-700 {
	font-weight: 700;
}

b {
	font-weight: 700;
}

.btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border-radius: 8px;
	background: #0468ff;
	color: #fff;
	padding: 16px 34px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	cursor: pointer;
}

.btn:hover {
	background-color: #0056c9;
}

.btn_white {
	background-color: #fff;
	color: #005ede;
}

.btn_white:hover {
	background-color: #e0edff;
}

.btn_light-blue {
	background-color: #e6f0ff;
	color: #005ede;
}

.btn_light-blue:hover {
	background-color: #d9e8ff;
}

.header {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	z-index: 10;
	padding: 11px 0;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header__menu-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	padding: 12px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.header__menu-btn svg:nth-child(2) {
	display: none;
}

.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header .nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100dvh;
	background-color: var(--white);
	z-index: -1;
	padding: 100px 140px;
	overflow-y: auto;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.header .nav::-webkit-scrollbar {
	display: none;
}

.header .nav__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[4];
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin: 0 auto;
	width: 100%;
	max-width: 1160px;
}

.header .nav__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header .nav__link_lvl1 {
	color: rgba(105, 119, 151, 0.5);
	padding-bottom: 24px;
	border-bottom: 1px solid #c0c9dd;
	margin-bottom: 24px;
	min-height: 90px;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.header .nav__link_lvl2 {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header .nav__link_lvl2:hover {
	color: #4f5c79;
}

.header .nav__submenu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
}

.header_open .nav {
	-webkit-transform: none;
	transform: none;
}

.header_open .header__menu-btn svg:nth-child(1) {
	display: none;
}

.header_open .header__menu-btn svg:nth-child(2) {
	display: block;
}

.header_open .header__logo {
	opacity: 0;
	pointer-events: none;
}

.header_scroll {
	background-color: var(--white);
}

.header_scroll .header__menu-btn svg:nth-child(1) path {
	fill: #7683a0;
}

.header:not(.header_scroll) .header__logo svg path {
	fill: var(--white);
}

.entrance {
	position: relative;
	z-index: 1;
}

.entrance__bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -1;
}

.entrance__bg video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top right;
	object-position: top right;
}

.entrance__wrapper {
	height: 655px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	gap: 40px;
	color: var(--white);
}

.advantages__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.advantages__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
	border-radius: 24px;
	background: #f3f5fa;
	padding: 24px 40px;
	position: relative;
	z-index: 1;
}

.advantages__name {
	color: var(--blue);
}

.advantages__desc {
	max-width: 400px;
}

.advantages__tooltip {
	position: absolute;
	top: 30px;
	right: 20px;
	z-index: 2;
}

.advantages__tooltip:hover .advantages__tooltip-panel,
.advantages__tooltip_open .advantages__tooltip-panel {
	opacity: 1;
	pointer-events: all;
}

.advantages__tooltip-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 4px;
	border-radius: 50%;
	background-color: #e1e6f4;
}

.advantages__tooltip-panel {
	position: absolute;
	top: calc(100% + 5px);
	right: 0%;
	width: 400px;
	max-width: calc(100vw - 65px);
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	padding: 12px;
	border-radius: 4px;
	background-color: #fff;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	opacity: 0;
	pointer-events: none;
}

.advantages__tooltip-panel::before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	z-index: -1;
	position: absolute;
	top: -30px;
	left: 0px;
}

.services__heading {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	z-index: 1;
	padding: 160px 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	height: 600px;
	color: var(--white);
}

.services__heading:hover .services__heading-bg img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.services__heading-bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
}

.services__heading-bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.services__subtitle {
	width: 100%;
	max-width: 585px;
}

.services__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 35px;
	row-gap: 70px;
	width: 100%;
	margin-top: 70px;
}

.services__item-title {
	margin-bottom: 40px;
}

.services__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.services__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	padding: 20px 16px;
	border-radius: 16px;
	position: relative;
}

.services__link:hover {
	background-color: #f3f5fa;
}

.services__link:hover .services__link-arrow {
	opacity: 1;
}

.services__link:not(:last-child)::after {
	display: block;
	content: "";
	width: calc(100% - 32px);
	height: 1px;
	position: absolute;
	left: 50%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #f3f5fa;
}

.services__link-arrow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	opacity: 0;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.progress__title {
	text-align: center;
	margin-bottom: 76px;
}

.progress__wrapper {
	border-radius: 28px;
	background: linear-gradient(129deg, var(--Brand-Lapis, #006cfd) -1.75%, var(--Solid-White, #fff) 106.1%);
	color: var(--white);
	min-height: 230px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
}

.progress__wrapper:hover .progress__img img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.progress__body {
	padding: 40px;
	padding-right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	gap: 30px;
}

.progress__btn {
	min-width: 208px;
}

.progress__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 556px;
	height: auto;
}

.progress__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top center;
	object-position: top center;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.slider-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
	pointer-events: none;
}

.slider-prev,
.slider-next {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	pointer-events: all;
}

.slider-prev.swiper-button-disabled,
.slider-next.swiper-button-disabled {
	opacity: 0.6;
	cursor: default;
}

.build {
	border-radius: 24px 24px 0 0;
	background: #cde1ff;
}

.build__slider {
	overflow: visible;
}

.build__slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 24px;
	background: var(--white);
	padding: 32px;
	width: 100%;
	max-width: 556px;
	height: auto;
}

.build__btn {
	margin-top: auto;
	padding: 10px 16px;
}

.build__desc {
	margin-bottom: 18px;
	color: #4f5c79;
	margin-top: 12px;
}

.build__icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 16px;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #e6f0ff;
}

.build__title {
	margin-bottom: 58px;
	text-align: center;
}

.build__navigation {
	margin-top: 58px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.quality {
	border-radius: 24px;
	background: var(--blue);
	color: var(--white);
	margin-top: -30px;
}

.quality__title {
	text-align: center;
	margin-bottom: 35px;
}

.quality__desc {
	text-align: center;
	width: 100%;
	max-width: 890px;
	margin: 0 auto;
	margin-bottom: 30px;
}

.quality__text {
	text-align: center;
	margin: 0 auto;
	margin-top: 30px;
	width: 100%;
	max-width: 914px;
}

.quality__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 130px;
}

.quality__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 26px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px 0;
	border: 1px solid var(--white);
	border-width: 1px 0;
}

.quality__item:nth-child(2) .quality__item-num {
	color: #c8ffcb;
}

.quality__item-num {
	color: #dfc7ff;
	font-size: 100px;
	font-weight: 500;
	line-height: 56px;
}

.quality__item-desc {
	width: 100%;
	max-width: 240px;
}

.news__heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 58px;
}

.news__title {
	width: 100%;
	max-width: 425px;
}

.news__subtitle {
	width: 100%;
	max-width: 400px;
}

.news__slider {
	overflow: visible;
}

.news__slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	z-index: 1;
	border-radius: 28px;
	overflow: hidden;
	padding: 30px;
	width: 100%;
	max-width: 372px;
	height: 438px;
	background-color: #E1E6F4;
}

.news__slide:hover .news__bg img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.news__bg {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.news__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.news__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 64px;
	gap: 36px;
}

.news__arrow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-top: auto;
	margin-left: auto;
}

.news__navigation {
	display: none;
}

.statistic {
	border-radius: 24px 24px 0 0;
	background: -webkit-gradient(linear, left bottom, left top, from(#cde1ff), to(#cde1ff)), #fff;
	background: linear-gradient(0deg, #cde1ff 0%, #cde1ff 100%), #fff;
}

.statistic__title {
	text-align: center;
	margin-bottom: 43px;
}

.statistic__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 22px;
}

.statistic__item {
	border-radius: 28px;
	background: var(--white);
	padding: 32px 30px 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 27px;
}

.statistic__item:nth-child(3) .statistic__img {
	margin-top: -20%;
}

.statistic__desc {
	width: 100%;
	max-width: 236px;
	margin-bottom: auto;
}

.statistic__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: auto;
}

.statistic__img img {
	width: 100%;
	height: auto;
}

.team {
	border-radius: 24px 24px 0 0;
	background: #032553;
	margin-top: -30px;
	color: var(--white);
}

.team__title {
	text-align: center;
	margin-bottom: 56px;
}

.team__slide {
	border-radius: 28px;
	overflow: hidden;
	padding: 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 372px;
	height: 500px;
	position: relative;
	z-index: 1;
}

.team__slide:nth-child(even) {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.team__slide:hover .team__slide-bg img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.team__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 56px;
}

.team__slide-desc {
	margin-top: 12px;
	width: 100%;
	max-width: 280px;
}

.team__slide-bg {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -1;
	width: 100%;
	height: 100%;
}

.team__slide-bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.team__slider-container {
	position: relative;
}

.team__navigation {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
	width: calc(100% + 204px);
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (min-width: 769px) {
	.br-mobile {
		display: none;
	}
}

@media screen and (max-width: 1400px) {
	.team__title {
		padding-right: 140px;
		text-align: left;
		margin-bottom: 40px;
	}

	.team__navigation {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		position: absolute;
		bottom: calc(100% + 40px);
		top: unset;
		left: unset;
		right: 0;
		-webkit-transform: none;
		transform: none;
		gap: 7px;
	}

	.team__slider {
		overflow: visible;
	}
}

@media screen and (max-width: 1200px) {
	.quality__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
	}

	.quality__item {
		width: 100%;
		padding: 20px 0;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.quality__item:last-child {
		border-top: 0px;
	}

	.quality__text {
		margin-top: 20px;
	}
}

@media screen and (max-width: 1024px) {
	.header .nav {
		padding: 60px 84px;
	}

	.header .nav__list {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}

	.advantages__wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 15px;
	}

	.advantages__tooltip {
		right: 18px;
		top: 18px;
	}

	.advantages__name {
		padding-right: 15px;
	}

	.news__heading {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 30px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		margin-bottom: 30px;
	}

	.news__title {
		max-width: none;
	}

	.news__navigation {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		position: absolute;
		bottom: calc(100% + 30px);
		right: 0px;
	}

	.news__bottom {
		margin-top: 30px;
	}

	.statistic__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
	}

	.statistic__img {
		max-width: 230px;
		margin-left: auto;
	}

	.statistic__item {
		gap: 0px;
	}

	.statistic__item:nth-child(3) .statistic__img {
		margin-top: -40px;
	}

	.statistic__desc {
		margin-top: 20px;
		max-width: 305px;
	}
}

@media screen and (max-width: 768px) {
	.section {
		padding: 80px 0;
	}

	.text-89 {
		font-size: 65px;
		line-height: 120%;
	}

	.text-65 {
		font-size: 47px;
		line-height: 120%;
	}

	.text-47 {
		font-size: 34px;
		line-height: 117%;
	}

	.text-34 {
		font-size: 27px;
		line-height: normal;
	}

	.services__heading {
		padding: 90px 80px;
	}

	.services__wrapper {
		margin-top: 50px;
		gap: 44px;
		row-gap: 35px;
	}

	.services__link {
		padding: 4px 0;
		gap: 12px;
		border-radius: 9px;
	}

	.services__item-title {
		margin-bottom: 13px;
	}

	.progress__title {
		margin-bottom: 40px;
	}

	.progress__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		/* height: 495px; */
	}

	.progress__body {
		padding: 40px;
		padding-bottom: 0;
		gap: 38px;
		position: relative;
		z-index: 2;
	}

	.progress__img {
		margin-left: auto;
		max-width: 475px;
		margin-right: -115px;
		margin-top: -42px;
		position: relative;
		z-index: 1;
	}

	.progress__img img {
		-o-object-position: top left;
		object-position: top left;
	}

	.build__title {
		margin-bottom: 40px;
		padding-right: 140px;
	}

	.build__slide {
		max-width: 327px;
		padding: 40px 18px 30px;
	}

	.build__name {
		font-size: 24px;
	}

	.build__desc {
		font-size: 16px;
	}

	.build__navigation {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		margin: 0;
		position: absolute;
		bottom: calc(100% + 40px);
		right: 0px;
	}

	.statistic__title {
		margin-bottom: 40px;
	}

	.statistic__desc {
		font-size: 16px;
		max-width: 350px;
	}

	.statistic__img {
		margin-top: 15px;
	}

	.team__bottom {
		margin-top: 40px;
		gap: 22px;
	}

	.team__btn {
		width: 100%;
	}

	.team__slide {
		max-width: 320px;
		height: 426px;
		padding: 27px;
	}
}

@media screen and (max-width: 650px) {
	.news__navigation {
		display: none;
	}

	.news__subtitle {
		max-width: none;
	}
}

@media screen and (max-width: 570px) {
	.container {
		padding: 0 16px;
	}

	.section {
		padding: 40px 0;
	}

	body {
		font-size: 16px;
		line-height: 150%;
	}

	.text-89 {
		font-size: 47px;
		line-height: 105%;
	}

	.text-65 {
		font-size: 34px;
		line-height: 120%;
	}

	.text-47 {
		font-size: 27px;
		line-height: 148%;
	}

	.text-27 {
		font-size: 18px;
		line-height: 140%;
	}

	.btn {
		padding: 10px 15px;
	}

	.header__wrapper {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.header .nav {
		padding: 28px 16px;
	}

	.header .nav__list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 20px;
	}

	.header .nav__link_lvl1 {
		font-size: 24px;
		min-height: 0;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	.header .nav__submenu {
		gap: 5px;
	}

	.entrance__wrapper {
		gap: 15px;
		height: 575px;
	}

	.advantages__item {
		padding: 24px 18px;
	}

	.services__heading {
		padding: 40px 5px;
		height: 450px;
		gap: 20px;
		margin: 0 -16px;
		width: auto;
	}

	.services__subtitle {
		padding: 0 30px;
	}

	.services__wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 30px;
		margin-top: 30px;
	}

	.services__link {
		font-size: 18px;
	}

	.progress__title {
		text-align: left;
		margin-bottom: 30px;
		font-size: 27px;
	}

	.progress__subtitle {
		text-align: center;
		font-size: 24px;
	}

	.progress__body {
		padding: 40px 16px 22px;
		width: 100%;
	}

	.progress__btn {
		width: 100%;
	}

	.progress__wrapper {
		margin: 0 -16px;
	}

	.progress__img {
		width: 383px;
		margin: 0 auto;
		max-width: none;
	}

	.progress__img img {
		-o-object-position: top center;
		object-position: top center;
		margin-right: -40px;
	}

	.build {
		padding-bottom: 70px;
	}

	.build__navigation {
		display: none;
	}

	.build__title {
		padding: 0;
		margin-bottom: 30px;
		font-size: 27px;
	}

	.build__slide {
		max-width: none;
	}

	.quality__title {
		font-size: 27px;
		text-align: left;
		margin-bottom: 24px;
	}

	.quality__desc {
		text-align: left;
	}

	.quality__item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 10px;
		padding: 20px 0px;
	}

	.quality__list {
		gap: 0px;
	}

	.quality__item-num {
		font-size: 66px;
		line-height: 56px;
	}

	.quality__text {
		text-align: left;
	}

	.news__title {
		font-size: 27px;
	}

	.news__heading {
		gap: 20px;
		margin-bottom: 24px;
	}

	.news__slide {
		height: 350px;
		max-width: 285px;
		padding: 20px;
	}

	.news__arrow {
		margin-bottom: -10px;
		margin-right: -10px;
	}

	.news__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 10px;
	}

	.news__btn {
		width: 100%;
	}

	.statistic {
		padding-bottom: 70px;
	}

	.statistic__img {
		margin-right: auto;
		position: relative;
		z-index: 1;
	}

	.statistic__desc {
		position: relative;
		z-index: 2;
		max-width: 210px;
	}

	.statistic__item {
		padding: 30px 18px 0;
	}

	.statistic__title {
		font-size: 27px;
		margin-bottom: 30px;
	}

	.statistic__name {
		font-size: 24px;
	}

	.team {
		padding-bottom: 70px;
	}

	.team__navigation {
		display: none;
	}

	.team__title {
		padding: 0;
		margin-bottom: 30px;
		text-align: center;
	}

	.team__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 10px;
		margin-top: 30px;
	}

	.team__slide {
		height: 350px;
		max-width: 288px;
	}

	.team__slide-title {
		font-size: 47px;
	}
}