@import url(https://fonts.googleapis.com/css?family=Golos+Text:regular,500,600);

@font-face {
	font-family: "Gilroy";
	src: url("../fonts/Gilroy-SemiBold.eot");
	src:
		local("../fonts/Gilroy SemiBold"),
		local("../fonts/Gilroy-SemiBold"),
		url("../fonts/Gilroy-SemiBold.eot?#iefix") format("embedded-opentype"),
		url("../fonts/Gilroy-SemiBold.woff") format("woff"),
		url("../fonts/Gilroy-SemiBold.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "Gilroy";
	src: url("../fonts/Gilroy-Light.eot");
	src:
		local("Gilroy Light"),
		local("../fonts/Gilroy-Light"),
		url("../fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"),
		url("../fonts/Gilroy-Light.woff") format("woff"),
		url("../fonts/Gilroy-Light.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "Gilroy";
	src: url("../fonts/Gilroy-Regular.eot");
	src:
		local("Gilroy Regular"),
		local("../fonts/Gilroy-Regular"),
		url("../fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"),
		url("../fonts/Gilroy-Regular.woff") format("woff"),
		url("../fonts/Gilroy-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Gilroy";
	src: url("../fonts/Gilroy-Medium.eot");
	src:
		local("../fonts/Gilroy Medium"),
		local("../fonts/Gilroy-Medium"),
		url("../fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"),
		url("../fonts/Gilroy-Medium.woff") format("woff"),
		url("../fonts/Gilroy-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: "Gilroy";
	src: url("../fonts/Gilroy-RegularItalic.eot");
	src:
		local("../fonts/Gilroy Regular Italic"),
		local("../fonts/Gilroy-RegularItalic"),
		url("../fonts/Gilroy-RegularItalic.eot?#iefix") format("embedded-opentype"),
		url("../fonts/Gilroy-RegularItalic.woff") format("woff"),
		url("../fonts/Gilroy-RegularItalic.ttf") format("truetype");
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: "Gilroy";
	src: url("../fonts/Gilroy-Bold.eot");
	src:
		local("../fonts/Gilroy Bold"),
		local("../fonts/Gilroy-Bold"),
		url("../fonts/Gilroy-Bold.eot?#iefix") format("embedded-opentype"),
		url("../fonts/Gilroy-Bold.woff") format("woff"),
		url("../fonts/Gilroy-Bold.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
}

:root {
	--text-color: black;
	accent-color: black;
}

html {
	height: 100%;
	scrollbar-gutter: stable;
	scroll-behavior: smooth;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	min-width: 320px;
	font-family: "Gilroy", sans-serif;
}

body::before {
	content: "";
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
	background-color: rgba(0, 0, 0, 0);
	transition: background-color 0.4s ease 0s;
}

body.fade::before {
	background-color: rgba(24, 24, 27, 0.88);
}

body.z-index::before {
	z-index: 150;
}

body.scroll-lock,
body.menu-open {
	overflow: hidden;
}

.main {
	flex-grow: 1;
}

.wrapper {
	width: min(1300px, calc(100% - 30px));
	margin-inline: auto;
}

.menu-burger {
	display: none;
}

[data-modal] {
	cursor: pointer;
}

.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: translate(0px, -100%);
	z-index: 151;
}

.modal.popup-active {
	transform: translate(0px, 0%);
}

.modal__fade {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	transition: background-color 0.3s ease 0s;
}

.modal .wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	height: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	overflow-y: auto;
}

.modal .wrapper::-webkit-scrollbar {
	width: 0px;
	height: 0px;
	background: #ffffff00;
}

.modal__body {
	width: 100%;
	position: relative;
	background: #fff;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: auto;
	margin-bottom: auto;
	opacity: 0;
	transition: 0.3s ease 0s;
	translate: 0px 20px;
}

.pp-animate .modal__body {
	opacity: 1;
	translate: 0px 0px;
}

.pp-animate .modal__fade {
	background-color: rgba(24, 24, 27, 0.88);
}

.modal-close::before {
	transform: rotate(-45deg);
	top: calc(50% - 3px);
}

.modal-close::after {
	transform: rotate(45deg);
	bottom: calc(50% - 1px);
}

.pp-unanimate .modal__body {
	opacity: 0;
	translate: 0px 20px;
}

.modal-close {
	padding: 0px 5px;
	display: flex;
	position: relative;
	align-self: center;
	background-color: #ffffff00;
	width: 28px;
	height: 28px;
	z-index: 12;
	cursor: pointer;
}

.modal-close {
	position: absolute;
	left: calc(100% + 20px);
	top: 0;
}

.modal-close::before,
.modal-close::after {
	content: "";
	transition: all 0.3s ease 0s;
	left: 0;
	position: absolute;
	width: 100%;
	height: 4px;
	background-color: #fff;
	border-radius: 2px;
}

.modal-two .modal__body {
	display: flex;
	border-radius: 7px;
	align-items: stretch;
	max-width: 960px;
	flex-direction: row;
}

.modal-two__text {
	padding: 60px;
}
.modal-two__title {
	font-weight: 700;
	font-size: 24px;
	line-height: 130%;
	margin-bottom: 32px;
}
.modal-two__list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.modal-two__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	font-size: 18px;
	line-height: 130%;
	color: #6e6e6e;
}

.modal-two__item span {
	font-weight: 700;
}

.modal-two__image {
	border-radius: inherit;
	width: 350px;
	object-fit: cover;
}

.modal-one__progress {
	height: 60px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 130%;
	text-align: center;
	position: relative;
	color: #fff;
	width: 100%;
	border-radius: 7px 7px 0px 0px;
	background: #2a87ff;
}

.modal-one__progress::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	animation: moveIt 3.5s infinite linear;
	background-image: url(../img/modal/lines.png);
}

@keyframes moveIt {
	0% {
		background-position: 0 center;
	}
	100% {
		background-position: 116px center;
	}
}

.modal-one .modal__body {
	border-radius: 7px;
	max-width: 960px;
	width: 100%;
	align-items: flex-start;
	position: relative;
	background-color: #efefef;
}

.modal-one .modal-one__left {
	padding: 60px 30px 60px 60px;
	width: 100%;
	min-height: 742px;
	max-width: 570px;
}

.modal-one__left h2 {
	text-align: left;
}

.modal-one .modal-one__sub-title {
	font-family: "Golos Text", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	color: #6e6e6e;
}

.modal-one__obj {
	position: absolute;
	left: 60px;
	bottom: 0;
}

.modal-one__obj-image {
	min-width: 634px;
}

.modal-one__info {
	font-size: 16px;
	position: absolute;
	left: 0;
	top: 30px;
	line-height: 150%;
	color: #6e6e6e;
	font-family: "TT Norms", sans-serif;
}

.modal-one__name span {
	font-weight: 700;
	font-size: 24px;
	line-height: 150%;
	color: #1f1f1f;
}

.modal-one__circle {
	width: 97px;
	height: 97px;
	margin-bottom: 20px;
}

.policy {
	display: flex;
	justify-content: center;
	margin-top: 15px;
}

.policy input {
	display: none;
}

.policy__body {
	gap: 7px;
	display: flex;
	align-items: flex-start;
}

.policy__custom-checkbox {
	flex-shrink: 0;
	width: 20px;
	border: 1px solid #d1d1d1;
	height: 20px;
	background-color: #fff;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.policy__custom-checkbox svg {
	margin-top: 2px;
	display: none;
}

.policy input:checked + .policy__body .policy__custom-checkbox svg {
	display: block;
}

.policy__text {
	font-family: "Golos Text", sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 150%;
	color: #6e6e6e;
}

.policy__text button {
	color: var(--сolor-decor);
	text-decoration: underline;
	text-decoration-skip-ink: none;
}

.modal__radio-input {
	display: none;
}

.modal__time-btn {
	height: 60px;
	background-color: #fff;
	font-weight: 400;
	font-size: 14px;
	padding: 10px 24px;
	line-height: 150%;
	border-radius: 6px;
	display: flex;
	align-items: center;
	color: #1f1f1f;
	border: 1px solid #dadada;
	width: calc((100% - 20px) / 2);
}

.modal__radio-input:checked + .modal__time-btn {
	background-color: #2a87ff;
	color: #fff;
}

.disabled {
	opacity: 0.6;
	pointer-events: none;
}

.modal-one__main {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.modal-one__form {
	position: relative;
	z-index: 2;
	padding: 60px 60px 60px 0px;
}
.modal-one__form-sub-title {
	display: flex;
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	gap: 8px;
	margin-bottom: 15px;
	color: #202020;
}

.modal-one__form-sub-title span {
	color: #dadada;
}

.modal__time-buttons {
	display: flex;
	margin-bottom: 10px;
	max-width: 320px;
}
.modal__radio-input {
	flex-grow: 1;
}
.modal__time-btn {
	flex-grow: 1;
	font-weight: 600;
	font-size: 12px;
	line-height: 150%;
	text-align: center;
	color: #424242;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1330px) {
	.modal-close {
		position: absolute;
		left: auto;
		right: 15px;
		top: 15px;
	}
}

@media (max-width: 992px) {
	.modal-two__text {
		padding: 30px;
	}

	.modal-one__obj {
		left: -20px;
	}

	.modal-one__info {
		left: 40px;
	}

	.modal-two__title {
		font-size: 22px;
		margin-bottom: 25px;
	}
}

@media (max-width: 768px) {
	.modal-two__image {
		width: 100%;
	}

	.modal-one .modal-close::before,
	.modal-one .modal-close::after {
		background-color: #fff;
	}

	.modal-one__main {
		flex-direction: column;
	}

	.modal-one .modal-one__left {
		padding: 30px 30px 30px 30px;
		min-height: auto;
		max-width: 100%;
	}

	.modal-one .modal-one__sub-title {
		font-size: 16px;
	}

	.modal-one__form {
		position: relative;
		z-index: 2;
		padding: 0px 30px 30px 30px;
	}

	.policy {
		margin-top: 25px;
	}

	.policy {
		justify-content: flex-start;
	}

	.modal-one__obj {
		display: none;
	}

	.modal-close::before,
	.modal-close::after {
		background-color: #202020;
	}

	.menu-burger {
		padding: 0px 15px;
		display: flex;
		position: relative;
		align-self: center;
		background-color: #ffffff00;
		width: 40px;
		height: 28px;
		z-index: 12;
	}

	.modal-two .modal__body {
		flex-direction: column;
	}

	.menu-burger span,
	.menu-burger::before,
	.menu-burger::after {
		content: "";
		transition: all 0.3s ease 0s;
		left: 0;
		position: absolute;
		width: 100%;
		height: 4px;
		background-color: #fc0000;
		border-radius: 2px;
	}

	.menu-burger::before {
		top: 0px;
	}

	.menu-burger::after {
		bottom: 0px;
	}

	.menu-burger span {
		top: calc(50% - 1px);
	}

	body.menu-open .menu-burger span {
		transform: scale(0);
	}

	body.menu-open .menu-burger::before {
		transform: rotate(-45deg);
		top: calc(50% - 3px);
	}

	body.menu-open .menu-burger::after {
		transform: rotate(45deg);
		bottom: calc(50% - 1px);
	}
}

@media (max-width: 480px) {
	.modal-two__text {
		padding: 40px 20px 30px 20px;
	}

	.modal-one__form {
		padding: 0px 20px 20px 20px;
	}

	.modal-two__item {
		gap: 12px;
		font-size: 16px;
	}

	.modal-two__list {
		gap: 15px;
	}

	.modal-one .modal-one__left {
		padding: 20px;
	}

	.policy__text {
		font-size: 11px;
	}
}

/* ==================================== */

.header {
}
.header-footer {
	padding: 25px 0px;
}
.header-footer .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 55px;
}
.header-footer__left,
.header-footer__right {
	display: flex;
	align-items: center;
	gap: 50px;
}

.logo {
	display: flex;
	gap: 23px;
	font-weight: 400;
	font-size: 14px;
	line-height: 154%;
	max-width: 282px;
	color: #484848;
}

.logo svg {
	flex-shrink: 0;
}

.header-footer__rating {
	display: flex;
	gap: 20px;
	flex-shrink: 0;
	align-items: center;
}

.header-footer__rating svg,
.header-footer__tel svg {
	flex-shrink: 0;
	width: 42px;
}

.header-footer__rating-body {
	font-weight: 400;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	line-height: 154%;
	color: #484848;
}

.header-footer__rating-body a {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	letter-spacing: 0.04em;
	color: #aaa;
	border-bottom: 1px solid #aaa;
}

.header-footer__rating-top {
	display: flex;
	margin-bottom: 7px;
	gap: 2px;
}
.header-footer__text {
	font-weight: 400;
	font-size: 14px;
	line-height: 154%;
	text-align: center;
	color: #484848;
	max-width: 220px;
}

.header-footer__tel {
	display: flex;
	gap: 20px;
	align-items: center;
}
.header-footer__tel-body a {
	font-weight: 700;
	font-size: 20px;
	line-height: 130%;
	text-align: right;
	color: #232323;
}

.header-footer__tel-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: flex-end;
}

.header-footer__online {
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	display: flex;
	align-items: center;
	gap: 15px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #96a6ba;
}

.header-footer__online::before {
	content: "";
	width: 5px;
	height: 5px;
	flex-shrink: 0;
	margin-top: -2px;
	background: #39b325;
	outline: 2px solid rgba(56, 179, 37, 0.4);
	border-radius: 50%;
}

.header-footer__button {
}
.button {
	font-weight: 700;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 130%;
	padding: 10px 17px;
	letter-spacing: 0.05em;
	min-height: 42px;
	background: #96a6ba;
	border-radius: 2px;
	color: #fff;
	transition: 0.3s ease 0s;
}

.button:hover {
	background-color: #004fb4;
}

/* ==================================== */

.intro {
	padding: 145px 0px;
	min-height: 1247px;
	overflow: hidden;
	position: relative;
}

.intro h1 {
	margin-bottom: 45px;
}

h1 {
	font-size: 52px;
	letter-spacing: -0.02em;
}

h1 span {
	color: #004fb4;
}

.intro__left {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	max-width: 674px;
	position: relative;
	z-index: 2;
}
.intro__die {
	width: 553px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	padding: 62px 76px;
}

.intro__die::before {
	content: "";
	position: absolute;
	left: -20px;
	top: 0;
	width: 100%;
	height: 376px;
	z-index: -1;
	object-fit: contain;
	background: url(../img/intro/bg-text.png) center / contain no-repeat;
}

.intro__die-title {
	font-family: "Golos Text", sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 150%;
	margin-bottom: 24px;
	color: #fff;
}
.list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.list__item {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #fff;
}

.list__item svg {
	margin-top: 4px;
	flex-shrink: 0;
}

.intro__button {
	margin-top: 34px;
}
.button-green {
	position: relative;
	z-index: 1;
	gap: 10px;
	text-align: center;
	display: flex;
	justify-content: center;
	font-weight: 700;
	font-size: 20px;
	color: #fff !important;
	width: 100%;
	max-width: 340px;
	padding: 27px 28px;
	text-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.15);
}

.button-green::before {
	border-radius: 11px;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	box-shadow:
		inset 7px 7px 29px 0 rgba(255, 255, 255, 0.3),
		inset -7px -7px 29px 0 rgba(255, 255, 255, 0.3),
		0 1px 0 0 rgba(155, 240, 179, 0.5),
		0 2px 0 0 rgba(155, 240, 179, 0.2),
		0 3px 0 0 rgba(127, 218, 153, 0.1);
	background: #6cde8c;
	transition: 0.2s ease 0s;
}

.button-green:hover::before {
	background: #62ca80;
}

.button-green__decor {
	position: absolute;
	left: 65.5%;
	top: 50%;
	translate: 0px -52px;
	z-index: -1;
}

.button-green::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	border-radius: 11px 11px 15px 15px;
	top: 5px;
	z-index: -2;
	box-shadow:
		0 10px 2px -10px rgba(0, 39, 88, 0.9),
		0 13px 7px -10px rgba(0, 39, 88, 0.25),
		0 19px 12px -12px rgba(0, 39, 88, 0.25),
		inset 0 -21px 3px -21px rgba(0, 0, 0, 0.5),
		inset -21px -11px 3px -21px #a8ddb7,
		inset 21px -11px 3px -21px #a8ddb7,
		0 2px 23px 0 #3d92ff;
	background: #5dbc78;
}

.intro__decor {
	position: absolute;
	top: 0;
	z-index: 3;
	left: 50%;
	translate: -160px 100px;
}
.intro__lines {
	position: absolute;
	left: 50%;
	z-index: -1;
	top: -40px;
	translate: -850px 0px;
	min-width: 2192px;
}

.guarantee {
	position: relative;
	z-index: 5;
	padding-bottom: 80px;
	margin-top: -250px;
}

.guarantee__top {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 60px;
	margin-inline: auto;
	max-width: 870px;
}

.guarantee__top img {
	margin-bottom: 40px;
}

h2 {
	font-weight: 600;
	font-size: 42px;
	text-align: center;
	color: #202020;
	margin-bottom: 25px;
}

h2 span {
	color: #004fb4;
}

.sub-title {
	font-size: 21px;
	line-height: 150%;
	text-align: center;
	color: #454545;
}
.guarantee__blocks {
	gap: 80px;
}
.blocks {
	display: flex;
	flex-wrap: wrap;
}
.guarantee .blocks__block {
	width: calc((100% - 160px) / 3);
}
.blocks__block-image {
	position: relative;
	padding-top: 58%;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 45px;
}

.blocks__block-image img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blocks__block-title {
	font-weight: 700;
	font-size: 24px;
	line-height: 130%;
	margin-bottom: 20px;
	color: #202020;
}
.blocks__block-text {
	font-family: "Golos Text", sans-serif;
	font-size: 18px;
	line-height: 150%;
	color: #6e6e6e;
}

.blocks__block ul {
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	color: #6e6e6e;
}

.blocks__block ul li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.blocks__block ul li::before {
	content: "";
	width: 4px;
	border-radius: 50%;
	background-color: #6e6e6e;
	height: 4px;
	flex-shrink: 0;
	margin-top: 10px;
}

/* ==================================== */

.speciality {
	padding: 60px 0px;
}

.speciality__top {
	margin-bottom: 60px;
}
.speciality__sub-title {
}

.speciality__sub-title img {
	margin-right: 10px;
	translate: 0px -2px;
}

.speciality__body {
	display: flex;
	gap: 20px;
}
.speciality__block {
	min-height: 534px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: calc((100% - 20px) / 3);
}

.speciality__block:first-child .speciality__mini-block:nth-child(2) .speciality__block-num {
	color: #fff;
}

.speciality__block:first-child .speciality__mini-block:nth-child(2) .speciality__block-title {
	color: #fff;
}
.speciality__block:first-child .speciality__mini-block:nth-child(2) .speciality__block-text {
	color: #fff;
}

.speciality__block:nth-child(2) {
	width: calc((100% - 60px) / 1.4);
}
.speciality__mini-block {
	position: relative;
	padding: 30px;
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
	flex-grow: 1;
	background: center / cover no-repeat;
}
.speciality__block-svg {
	position: absolute;
	top: 30px;
	right: 30px;
}
.speciality__block-num {
	font-weight: 700;
	font-size: 40px;
	line-height: 100%;
	color: #202020;
	margin-bottom: 18px;
}
.speciality__block-title {
	font-weight: 700;
	font-size: 24px;
	line-height: 120%;
	color: #202020;
}
.speciality__block-text {
	font-weight: 400;
	font-family: "Golos Text", sans-serif;
	font-size: 18px;
	line-height: 140%;
	color: #6e6e6e;
	margin-top: 12px;
}

/* ==================================== */

.institution {
	margin: 60px 0px 30px 0px;
}

.institution__body {
	border-radius: 8px;
	position: relative;
	padding: 80px;
	overflow: hidden;
}
.institution__background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: -1;
	height: 100%;
	object-fit: cover;
}

.institution__background img,
.institution__background source {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left;
}

.institution__left {
	max-width: 594px;
}

.institution__left ul li {
	color: #3e4f6c;
}

.institution__left h2 {
	font-weight: 500;
	text-align: left;
	margin-bottom: 40px;
}

.institution__button {
	margin-top: 50px;
}

/* ==================================== */

.request__body {
	border: 1px solid #d2d2d2;
	padding: 65px 52px;
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.request__left {
	width: 100%;
	max-width: 476px;
}

.request__left h2 {
	text-align: left;
	margin-bottom: 30px;
}

.request__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.request__item {
	display: flex;
	font-family: "Golos Text", sans-serif;
	font-weight: 400;
	font-size: 21px;
	align-items: flex-start;
	line-height: 150%;
	color: #454545;
	gap: 16px;
}

.request__item svg {
	flex-shrink: 0;
	width: 24px;
	margin-top: 5px;
}

.request__button {
	margin-top: 45px;
}

.request__right {
	width: 100%;
	max-width: 578px;
}

.request__nums {
	display: flex;
	flex-wrap: wrap;
	column-gap: 70px;
	row-gap: 90px;
	width: 100%;
}

.request__nums-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color: #202020;
	width: calc((100% - 70px) / 2);
}

.request__nums-block span {
	font-weight: 300;
	font-size: 24px;
	display: block;
	margin-bottom: 15px;
	line-height: 130%;
}
.request__nums-block p {
	font-size: 24px;
	line-height: 130%;
}
.request__nums-block button {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	letter-spacing: 0.04em;
	padding-bottom: 2px;
	border-bottom: 1px solid #426f9b;
	color: #426f9b;
	margin-top: 15px;
}

/* ==================================== */

.result {
	position: relative;
	z-index: 2;
}

.result__top {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	align-items: flex-start;
}

.result__top h2 {
	text-align: left;
	margin-bottom: 0px;
}

.result__main {
	border-radius: 0px 0px 6px 6px;
	border: 1px solid #d2d2d2;
	border-top: none;
	padding: 52px;
	background: #fff;
}

.result__top img {
	margin-top: 10px;
	width: 26px;
}

.result__body {
	display: flex;
	margin-top: 40px;
	flex-wrap: wrap;
	gap: 30px;
}
.result__block {
	width: calc((100% - 60px) / 3);
}
.result__block-image {
	padding-top: 58%;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 45px;
}

.result__block-image img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.result__block-title {
	font-weight: 700;
	font-size: 24px;
	line-height: 130%;
	color: #202020;
	margin-bottom: 20px;
}
.result__block-text {
	font-family: "Golos Text", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	color: #6e6e6e;
}

/* ==================================== */

.select {
	font-weight: 600;
	font-size: 12px;
	line-height: 150%;
	color: #424242;
	position: relative;
	max-width: 320px;
}

.select:not(:last-child) {
	margin-bottom: 24px;
}

.select input {
	display: none;
}

.select__selected {
	background: #fff;
	border: 1px solid #dadada;
	border-radius: 8px;
	padding: 14px 31px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	cursor: pointer;
	min-height: 60px;
}

.select__selected::before {
	content: "";
	width: 14px;
	height: 20px;
	flex-shrink: 0;
	transition: 0.2s ease 0s;
	background: url(../img/icons/arrow.svg) center / contain no-repeat;
}

.is-open.select .select__selected::before {
	rotate: 180deg;
}

.is-open.select {
	z-index: 10;
}

.select__body-dropdown {
	position: absolute;
	z-index: 10;
	display: none;
	left: 0;
	padding-bottom: 4px;
	border-radius: 0px 0px 5px 5px;
	max-height: 220px;
	overflow: auto;
	background: #fff;
	width: 100%;
	top: calc(100% - 5px);
	border: 1px solid #dadada;
}

.select__body-dropdown::-webkit-scrollbar {
	width: 4px;
}

.select__body-dropdown::-webkit-scrollbar-thumb {
	display: none;
}

.is-open .select__body-dropdown {
	display: block;
}

.select__label {
	cursor: pointer;
	padding: 8px 20px;
}

.select__label:hover {
	color: #2b87ff;
}

.big-form {
	position: relative;
	overflow: hidden;
	z-index: 0;
	margin: -64px 20px 120px 20px;
	border-radius: 12px;
	padding: 215px 0px 180px 0px;
}
.big-form__bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.big-form__left {
	display: flex;
	position: relative;
	z-index: 1;
	gap: 50px;
	align-items: flex-start;
}

.big-form__left h2 {
	text-align: left;
	margin-bottom: 15px;
}

.big-form form {
	margin-top: 55px;
}

.big-form__logo {
	width: 40px;
	margin-top: 10px;
}
.big-form__left-body {
	max-width: 510px;
}
.big-form__sub-title {
	text-align: left;
}

.big-form__form-sub-title {
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	margin-bottom: 12px;
	display: flex;
	gap: 6px;
	color: #202020;
}

.big-form__form-sub-title span {
	color: #dadada;
}

.radios {
	display: flex;
	gap: 12px;
	margin-bottom: 22px;
	max-width: 322px;
}
.radios__label {
	width: calc((100% - 24px) / 3);
}

.radios__label-body {
	width: 100%;
	padding: 26px 20px 16px 20px;
	background: #fff;
	border: 1px solid #dadada;
	border-radius: 8px;
	display: flex;
	gap: 15px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	line-height: 150%;
	transition: 0.2s ease 0s;
	text-align: center;
	color: #424242;
}

.radios__label input {
	display: none;
}

.radios__label input:checked + .radios__label-body {
	background-color: #2b87ff;
	color: #fff;
}

.input {
	display: flex;
	border: 1px solid #dadada;
	border-radius: 8px;
	background: #fff;
	height: 60px;
	width: 100%;
	gap: 15px;
	max-width: 320px;
	padding: 10px 25px;
	font-size: 12px;
	line-height: 150%;
	color: #424242;
	margin-bottom: 20px;
}

.input input {
	width: 100%;
}

.big-form__input {
}
.big-form__button {
}

.big-form__obj {
	position: absolute;
	left: 50%;
	translate: -450px 760px;
	bottom: 50%;
}

.big-form__obj img {
	min-width: 1561px;
}

.big-form__obj-text {
	position: absolute;
	color: #fff;
	top: 65px;
	left: 50%;
	translate: -85% 0%;
}

.big-form__obj-text p {
	color: #fff;
	text-align: left;
	margin-bottom: 20px;
}
.big-form__obj-nums {
	font-weight: 600;
	font-size: 24px;
	line-height: 150%;
	color: #fff;
}

.big-form__obj-nums span {
	color: #424242;
	border: 1px solid #dadada;
	border-radius: 8px;
	padding: 10px 20px;
	height: 60px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	margin-right: 5px;
}

/* ==================================== */

.reviews {
	padding: 100px 0px 60px 0px;
}
.wrapper {
}

.reviews h2 {
	max-width: 820px;
	margin-inline: auto;
	margin-bottom: 20px;
}

.reviews__sub-title {
	font-weight: 600;
}
.sub-title {
}
.reviews__body {
	display: flex;
	gap: 20px;
	margin-top: 60px;
	align-items: flex-start;
}
.reviews__buttons {
	width: 100%;
	border: 1px solid #dadada;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	max-width: 200px;
	border-radius: 8px;
	overflow: hidden;
}
.reviews__button {
	background: #f8f8f8;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.reviews__button.tab-active {
	background-color: #2b87ff;
}

.reviews__button:not(:last-child) {
	border-bottom: 1px solid #dadada;
}

.reviews__button img {
	max-width: 91px;
}

.reviews__swipers {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.reviews__swiper .swiper-slide {
	width: calc((100% - 20px) / 2);
	height: 364px;
	padding: 55px 0px 55px 55px;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	background: radial-gradient(80.76% 100% at 49.59% 100%, rgb(190, 219, 255) 0%, rgb(0, 79, 180) 89.8741364479065%);
}

.reviews__swiper .swiper-slide img {
	position: absolute;
	left: 55px;
	top: 55px;
	flex-shrink: 0;
	min-width: 892px;
	border-radius: 8px 0 0 8px;
}

.reviews-swiper__bottom {
	display: flex;
	margin-top: 25px;
	align-items: center;
	justify-content: center;
	gap: 32px;
}
.swiper-button-prev,
.swiper-button-next {
	position: static;
	margin-top: 0px;
	height: 34px;
	width: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.swiper-button-prev svg,
.swiper-button-next svg {
	width: 100%;
	height: 100%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	display: none;
}

.reviews-swiper__link {
	font-weight: 400;
	font-size: 14px;
	display: none;
	line-height: 130%;
	letter-spacing: 0.04em;
	color: #426f9b;
	margin-left: auto;
	border-bottom: 1px solid #426f9b;
}

/* ==================================== */

.videos {
	padding: 60px 0px;
}

.videos h2 {
	max-width: 900px;
	margin-inline: auto;
	margin-bottom: 60px;
}

.videos__body {
	display: flex;
	gap: 78px;
	flex-wrap: wrap;
}
.videos__block {
	display: flex;
	flex-direction: column;
	width: calc((100% - 156px) / 3);
}
.videos__video {
	border-radius: 5px;
	overflow: hidden;
	background-color: #232323;
	position: relative;
	height: 220px;
	margin-bottom: 45px;
}

.videos__video:hover img {
	opacity: 0.8;
}

.videos__video::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	background: linear-gradient(0deg, rgba(0, 78, 180, 0.6) 0%, rgba(0, 79, 180, 0) 30%);
}

.videos__video img {
	width: 100%;
	height: 100%;
	transition: 0.4s ease 0s;
	object-fit: cover;
}

.videos__video-svg {
	position: absolute;
	left: 30px;
	bottom: 30px;
}
.videos__text {
	font-family: "Golos Text", sans-serif;
	font-weight: 400;
	font-size: 17px;
	line-height: 150%;
	color: #6e6e6e;
	margin-bottom: 32px;
}
.videos__name span {
	font-weight: 700;
	font-size: 24px;
	line-height: 130%;
	color: #202020;
	display: block;
	margin-bottom: 10px;
}

.videos__name p {
	font-family: "Golos Text", sans-serif;
	font-size: 14px;
	line-height: 150%;
	color: #6e6e6e;
}

/* ==================================== */

.center {
	padding: 180px 0px 70px 0px;
}
.wrapper {
}
.center__top {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	justify-content: space-between;
	margin-bottom: 60px;
}
.center__top-left {
	max-width: 640px;
}

.center__top-left h2 {
	text-align: left;
}

.center__sub-title {
	text-align: left;
}
.sub-title {
}
.center__logo {
}
.center__body {
	display: flex;
	flex-wrap: wrap;
	gap: 82px;
}
.center__block {
	width: calc((100% - 164px) / 3);
}
.center__block-image {
	position: relative;
	padding-top: 58%;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 42px;
}

.center__block-image img {
	position: absolute;
	object-fit: cover;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.center__block-title {
	font-weight: 700;
	font-size: 24px;
	line-height: 130%;
	color: #202020;
	margin-bottom: 22px;
}
.center__block-text {
	font-family: "Golos Text", sans-serif;
	font-size: 18px;
	line-height: 150%;
	color: #6e6e6e;
	max-width: 315px;
}

/* ==================================== */

.hard {
	padding: 140px 20px 0px 20px;
}
.hard__big {
	background: #eeeeee;
	overflow: hidden;
	padding: 74px 0px 150px 0px;
	border-radius: 12px;
	position: relative;
}
.hard .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.hard__left {
	position: relative;
	z-index: 2;
	max-width: 367px;
}

.hard__left h2 {
	text-align: left;
}

.hard__sub-title {
	font-weight: 500;
	max-width: 357px;
	text-align: left;
	margin-bottom: 42px;
}
.sub-title {
}
.hard__form {
}
.hard__form-sub-title {
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	color: #202020;
	display: flex;
	gap: 5px;
	margin-bottom: 15px;
}

.hard__form-sub-title span {
	color: #dadada;
}

.input {
}
.hard__input {
}
.inputhard__input {
}
.hard__button {
}
.button-green {
}
.button-green__decor {
}
.hard__right {
	position: relative;
	font-weight: 500;
	font-size: 14px;
	line-height: 150%;
	color: #454545;
	margin-bottom: -30px;
}
.hard__right-body {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	gap: 22px;
}
.hard__obj {
	top: -70px;
	min-width: 1431px;
	left: 50%;
	translate: -475px 0%;
	position: absolute;
}

.big-form__button.button-green {
	max-width: 320px;
}
.hard__button.button-green {
	max-width: 320px;
}

/* ==================================== */

@media (max-width: 1330px) {
	.videos__body {
		gap: 40px;
	}

	.hard__obj {
		top: -50px;
		min-width: 1231px;
		left: 50%;
		translate: -365px 0%;
		position: absolute;
	}

	.center__block-title {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.center__body {
		gap: 50px;
	}

	.center__block {
		width: calc((100% - 100px) / 3);
	}

	.videos__block {
		width: calc((100% - 80px) / 3);
	}

	.videos__video {
		height: 200px;
		margin-bottom: 35px;
	}

	.videos__video-svg {
		left: 20px;
		bottom: 20px;
		width: 70px;
	}

	.wrapper {
		width: min(992px, calc(100% - 30px));
	}

	.big-form__left {
		gap: 20px;
	}

	.result__main {
		padding: 52px 22px;
	}

	.result__block-title {
		font-size: 22px;
		margin-bottom: 15px;
	}

	.result__block-image {
		margin-bottom: 35px;
	}

	.request__body {
		padding: 55px 22px;
	}

	.request__nums {
		column-gap: 30px;
		row-gap: 50px;
	}

	.request__nums-block p {
		font-size: 21px;
		line-height: 130%;
	}

	.request__nums-block {
		width: calc((100% - 30px) / 2);
	}

	.request__left {
		max-width: 411px;
	}

	.institution__left {
		max-width: 534px;
	}

	.institution__body {
		padding: 60px;
	}

	.speciality__block {
		min-height: 495px;
	}

	.guarantee__blocks {
		gap: 50px;
	}

	.guarantee .blocks__block {
		width: calc((100% - 100px) / 3);
	}

	h2 {
		font-size: 38px;
		margin-bottom: 20px;
	}

	.guarantee {
		padding-bottom: 80px;
		margin-top: -150px;
	}

	.guarantee__top img {
		margin-bottom: 30px;
	}

	h1 {
		font-size: 48px;
	}

	.intro__left {
		max-width: 624px;
	}

	.intro {
		padding: 125px 0px;
		min-height: 1047px;
	}

	.intro__decor {
		max-width: 707px;
		translate: -20px 180px;
	}

	.intro__lines {
		position: absolute;
		left: 50%;
		z-index: -1;
		top: -40px;
		translate: -800px 0px;
		min-width: 1992px;
	}

	.header-footer__text {
		display: none;
	}

	.header-footer .wrapper {
		gap: 30px;
	}

	.header-footer__left,
	.header-footer__right {
		gap: 30px;
	}

	.header-footer__rating {
		gap: 10px;
	}

	.header-footer__tel {
		gap: 10px;
	}

	.logo {
		gap: 15px;
		max-width: 262px;
	}
}

@media (max-width: 992px) {
	.header-footer__tel-body a {
		font-size: 18px;
	}

	.button-green {
		font-size: 16px;
		max-width: 290px;
	}

	.hard {
		padding: 90px 0px 0px 0px;
	}

	.hard__obj {
		top: 20px;
		min-width: 1031px;
		left: 50%;
		translate: -282px 0%;
		position: absolute;
	}

	.center__block-title {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.center__block-text {
		font-size: 16px;
	}

	.videos__body {
		gap: 20px;
	}

	.center__block-image {
		margin-bottom: 32px;
	}

	.videos__block {
		width: calc((100% - 40px) / 3);
	}

	.center__block {
		width: calc((100% - 40px) / 3);
	}

	.center__top {
		margin-bottom: 50px;
	}

	.center__body {
		gap: 20px;
	}

	.center {
		padding: 130px 0px 60px 0px;
	}

	.videos__video {
		height: 160px;
		margin-bottom: 25px;
	}

	.videos__text {
		font-size: 15px;
		margin-bottom: 22px;
	}

	.videos__name span {
		font-size: 20px;
		margin-bottom: 5px;
	}

	.videos h2 {
		margin-bottom: 50px;
	}

	.reviews__body {
		flex-direction: column;
		gap: 30px;
	}

	.reviews {
		padding: 70px 0px 50px 0px;
	}

	.reviews__swiper .swiper-slide {
		width: calc((100% - 20px) / 2);
		height: 324px;
		padding: 35px 0px 35px 35px;
	}

	.reviews__buttons {
		width: 100%;
		max-width: 100%;
		flex-direction: row;
	}

	.reviews__body {
		margin-top: 40px;
	}

	.reviews__button:not(:last-child) {
		border-bottom: none;
		border-right: 1px solid #dadada;
	}

	.reviews__button {
		flex-grow: 1;
	}

	.big-form {
		margin: -50px 0px 120px 0px;
		padding: 180px 0px 140px 0px;
	}

	.big-form__left-body {
		max-width: 410px;
	}

	.big-form form {
		margin-top: 35px;
	}

	.result__main {
		padding: 40px 22px;
	}

	.result__block-title {
		font-size: 20px;
	}

	.result__block-image {
		margin-bottom: 25px;
	}

	.result__block-text {
		font-size: 16px;
	}

	.request__body {
		flex-direction: column;
		gap: 50px;
	}

	.request__body {
		padding: 40px 20px;
	}

	.institution__left {
		max-width: 474px;
	}

	.request__button {
		margin-top: 35px;
	}

	.request__left {
		max-width: 100%;
	}

	.request__right {
		max-width: 100%;
	}

	.institution__left h2 {
		margin-bottom: 30px;
	}

	.institution__button {
		margin-top: 40px;
	}

	.institution__body {
		padding: 50px 40px;
	}

	.speciality__block:first-child {
		width: 100%;
		min-height: 400px;
		flex-direction: row;
	}

	.speciality__top {
		margin-bottom: 50px;
	}

	.speciality__block:nth-child(2) {
		width: calc((100% - 20px) / 1.5);
	}

	.speciality__body {
		flex-wrap: wrap;
	}

	h2 {
		font-size: 34px;
	}

	.intro {
		padding: 80px 0px;
		min-height: 907px;
	}

	.guarantee__blocks {
		gap: 20px;
	}

	.guarantee .blocks__block {
		width: calc((100% - 40px) / 3);
	}

	.blocks__block-image {
		padding-top: 58%;
		margin-bottom: 25px;
	}

	.blocks__block-title {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.blocks__block-text {
		font-size: 16px;
	}

	.blocks__block ul {
		font-size: 16px;
	}

	.blocks__block-title br {
		display: none;
	}

	.intro__lines {
		translate: -600px 0px;
		min-width: 1692px;
	}

	.intro__die {
		width: 553px;
		padding: 52px 56px;
	}

	.intro__die::before {
		left: -10px;
		width: 100%;
		height: 366px;
	}

	.intro__decor {
		max-width: 657px;
		translate: -30px 240px;
	}

	.intro h1 {
		margin-bottom: 35px;
	}

	.intro__left {
		max-width: 560px;
	}

	h1 {
		font-size: 44px;
	}

	.header-footer {
		padding: 20px 0px;
	}

	.header-footer__rating svg,
	.header-footer__tel svg {
		width: 36px;
	}

	.logo div {
		display: none;
	}
}

@media (max-width: 768px) {
	.hard__form {
		max-width: 320px;
		width: 100%;
	}

	.request__body {
		border: none;
	}

	.hard {
		padding: 70px 0px 0px;
	}

	.hard__big {
		padding: 60px 0px 60px 0px;
	}

	.center {
		padding: 100px 0px 50px 0px;
	}

	.hard .wrapper {
		align-items: flex-start;
		flex-direction: column;
		gap: 500px;
	}

	.hard__obj {
		top: auto;
		bottom: 140px;
		min-width: 831px;
		translate: -50% 0%;
	}

	.hard__sub-title {
		margin-bottom: 30px;
	}

	.hard__left {
		max-width: 400px;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-inline: auto;
	}

	.hard__left h2 {
		text-align: center;
	}

	.hard__sub-title {
		text-align: center;
	}

	.center__top {
		flex-direction: column-reverse;
		align-items: center;
		gap: 20px;
	}

	.center__top-left h2 {
		text-align: center;
	}

	.center__sub-title {
		text-align: center;
	}

	.center__block {
		width: 100%;
	}

	.center__body {
		gap: 30px;
	}

	.center__top {
		margin-bottom: 40px;
	}

	.center__block-image {
		margin-bottom: 25px;
	}

	.center__block-title {
		margin-bottom: 10px;
	}

	.videos {
		padding: 50px 0px;
	}

	.videos__block {
		width: 100%;
	}

	.reviews__swiper .swiper-slide {
		width: 100%;
		height: 284px;
		padding: 25px 0px 25px 25px;
	}

	.result__main {
		background: transparent;
	}

	.videos__video {
		height: 260px;
		margin-bottom: 25px;
	}

	.result__top img {
		margin-top: 6px;
	}

	.reviews {
		padding: 50px 0px 50px 0px;
	}

	.reviews__button {
		height: 70px;
	}

	.big-form {
		margin: 80px 0px 100px 0px;
		padding: 80px 0px 500px 0px;
	}

	.big-form__obj img {
		min-width: 1061px;
	}

	.big-form__obj {
		left: 50%;
		translate: -45% 35%;
		bottom: 0;
	}

	.big-form__left {
		align-items: center;
		flex-direction: column;
	}

	.big-form__left-body {
		max-width: 350px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.big-form__left h2 {
		text-align: center;
	}

	.big-form__sub-title {
		text-align: center;
	}

	.big-form__form-sub-title span {
		color: inherit;
	}

	.result__block {
		width: 100%;
	}

	.result__main {
		padding: 30px 0px;
	}

	.result__main {
		border: none;
	}

	.request__body {
		padding: 30px 0px;
	}

	.request__item {
		font-size: 19px;
		gap: 12px;
	}

	.request__item svg {
		width: 22px;
	}

	.request__list {
		gap: 15px;
	}

	.request__nums {
		column-gap: 20px;
		row-gap: 40px;
	}

	.request__nums-block {
		width: calc((100% - 20px) / 2);
	}

	.request__nums-block p {
		font-size: 19px;
	}

	.header-footer__left {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.request__nums-block span {
		font-size: 21px;
		margin-bottom: 10px;
	}

	.institution__background img,
	.institution__background source {
		object-position: center;
	}

	.institution {
		margin: 50px 0px 20px 0px;
	}

	.institution__body {
		padding: 40px 30px;
	}

	.institution__left {
		max-width: 390px;
	}

	.speciality__block:first-child {
		min-height: 240px;
	}

	.speciality__block-num {
		font-size: 34px;
		margin-bottom: 12px;
	}

	.speciality__mini-block {
		padding: 15px;
	}

	.institution__button {
		margin-top: 200px;
	}

	.speciality__block-svg {
		top: 15px;
		right: 15px;
	}

	.speciality__block {
		min-height: 360px;
	}

	.speciality__block:nth-child(2) {
		width: calc((100% - 20px) / 2);
	}

	.speciality__block {
		width: calc((100% - 20px) / 2);
	}

	.speciality__block-text {
		font-size: 16px;
		margin-top: 6px;
	}

	.speciality__top {
		margin-bottom: 40px;
	}

	.speciality {
		padding: 40px 0px;
	}

	.speciality__sub-title img {
		width: 100px;
		margin-right: 5px;
		translate: 0px 0px;
	}

	.speciality__block-title {
		font-size: 20px;
	}

	h2 {
		font-size: 28px;
	}

	.guarantee__top {
		margin-bottom: 30px;
	}

	.sub-title {
		font-size: 19px;
	}

	.guarantee__top img {
		margin-bottom: 20px;
	}

	.guarantee .blocks__block {
		width: 100%;
	}

	.blocks__block-image {
		margin-bottom: 20px;
	}

	.guarantee__blocks {
		gap: 30px;
	}

	.guarantee {
		padding-bottom: 60px;
		margin-top: -40px;
	}

	.reviews__swiper .swiper-slide img {
		left: 25px;
		top: 15px;
	}

	.wrapper {
		width: min(480px, calc(100% - 30px));
	}

	.logo div {
		display: block;
	}

	.intro {
		padding: 50px 0px 500px 0px;
		min-height: 0;
	}

	.intro__lines {
		top: auto;
		bottom: 0;
		translate: -50% 40px;
		min-width: 992px;
	}

	.intro__die {
		width: 100%;
		padding: 42px 20px;
	}

	.intro__die::before {
		width: 503px;
		left: 50%;
		translate: -50% -10px;
		height: 366px;
	}

	.intro__decor {
		top: auto;
		max-width: 557px;
		translate: -44% 0px;
	}

	.intro h1 {
		margin-bottom: 45px;
	}

	h1 {
		text-align: center;
		font-size: 36px;
	}

	.logo {
		gap: 15px;
		font-size: 12px;
	}

	.header-footer__right {
		flex-direction: column-reverse;
		align-items: flex-end;
		gap: 15px;
	}

	.header-footer__rating svg,
	.header-footer__tel svg {
		display: none;
	}

	.header-footer .wrapper {
		gap: 15px;
	}

	.logo {
		max-width: 236px;
	}
}

@media (max-width: 480px) {
	.hard {
		padding: 50px 0px 0px;
	}

	.reviews-swiper__bottom {
		margin-top: 15px;
		gap: 22px;
	}

	.swiper-button-prev,
	.swiper-button-next {
		height: 24px;
		width: 24px;
	}

	.center__top {
		margin-bottom: 30px;
	}

	.hard__obj {
		top: auto;
		bottom: 120px;
		min-width: 631px;
	}

	.hard .wrapper {
		gap: 360px;
	}

	.big-form {
		margin: 60px 0px 40px 0px;
		padding: 60px 0px 500px 0px;
	}

	.center {
		padding: 70px 0px 50px 0px;
	}

	.videos__video {
		height: 200px;
	}

	.reviews__swiper .swiper-slide {
		height: 224px;
		padding: 25px 0px 25px 25px;
	}

	.reviews__buttons {
		flex-wrap: wrap;
	}

	.videos__text {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.videos {
		padding: 40px 0px;
	}

	.videos h2 {
		margin-bottom: 30px;
	}

	.reviews__swiper .swiper-slide img {
		min-width: 692px;
	}

	.reviews__button:not(:last-child) {
		border: none;
	}

	.reviews__button {
		width: 50%;
		border: 1px solid #dadada !important;
	}

	.big-form__obj-nums span {
		padding: 8px 15px;
		height: 50px;
	}

	.reviews__button {
		padding: 10px 20px;
	}

	.reviews__body {
		margin-top: 30px;
	}

	.big-form__obj-nums {
		font-size: 22px;
	}

	.request__item {
		font-size: 17px;
	}

	.result__top img {
		margin-top: 1px;
	}

	.result__body {
		margin-top: 30px;
		gap: 20px;
	}

	.result__block-title {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.result__block-image {
		margin-bottom: 20px;
	}

	.result__block-text {
		font-size: 14px;
	}

	.request__item svg {
		margin-top: 3px;
	}

	.request__nums-block {
		width: 100%;
		align-items: center;
		text-align: center;
	}

	.request__nums {
		row-gap: 30px;
	}

	.institution__body {
		padding: 30px 20px;
	}

	.institution {
		margin: 30px 0px 20px 0px;
	}

	.guarantee {
		padding-bottom: 40px;
	}

	.header-footer__online {
		font-size: 10px;
		gap: 10px;
	}

	.speciality__sub-title img {
		width: 80px;
	}

	.sub-title {
		font-size: 17px;
	}

	.speciality__block:first-child {
		flex-direction: column;
		gap: 15px;
	}

	.speciality__block:first-child {
		min-height: 540px;
	}

	.speciality__block-title {
		font-size: 18px;
	}

	.speciality__body {
		gap: 15px;
		flex-direction: column;
	}

	.speciality__block:nth-child(2) {
		width: 100%;
	}

	.speciality__top {
		margin-bottom: 30px;
	}

	.speciality__block {
		width: 100%;
	}

	.speciality__block-num {
		font-size: 30px;
	}

	h2 {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.blocks__block-title {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.blocks__block-text {
		font-size: 14px;
	}

	h1 {
		font-size: 28px;
	}

	.wrapper {
		width: min(320px, calc(100% - 20px));
	}

	.intro__die-title {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.intro__die::before {
		width: 503px;
		left: 50%;
		translate: -50% -5px;
		height: 100%;
		background: url(../img/intro/bg-text.png) center / 100% 120% no-repeat;
	}

	.list__item {
		font-size: 14px;
	}

	.intro__button {
		margin-top: 20px;
	}

	.button-green {
		padding: 22px 20px;
	}

	.button-green__decor {
		left: 62%;
		max-width: 100px;
		translate: 0px -40px;
		display: none;
	}

	.intro__die {
		width: 100%;
		padding: 20px 10px 30px 10px;
	}

	.intro__decor {
		max-width: 500px;
	}

	.intro__lines {
		min-width: 892px;
	}

	.intro {
		padding: 50px 0px 500px 0px;
	}

	.header-footer__online::before {
		content: "";
		width: 4px;
		height: 4px;
		margin-top: -1px;
	}

	.header-footer__tel-body a {
		font-size: 16px;
	}

	.header-footer {
		padding: 10px 0px;
	}

	.logo div {
		display: none;
	}

	.header-footer__rating-body {
		font-size: 12px;
	}

	.header-footer .wrapper {
		gap: 10px;
	}

	.header-footer__button {
		padding: 10px 12px;
		min-height: 38px;
		font-size: 10px;
	}
}

/* ==================================== */

.tabs-content {
	display: none;
}

.d-block {
	display: block;
}

.none {
	display: none;
}

[class*="copyrights-pane"] {
	display: none !important;
}

.button-green .marquiz__button {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}
.thanks {
	overflow: hidden;
	width: 100%;
	padding-top: 100px;
	max-width: 1880px;
	background: #eeeeee;
	margin-inline: auto;
}
.thanks .wrapper {
	position: relative;
}
.thanks-info {
	display: flex;
	flex-direction: column;
}
.thanks-icon {
	margin-bottom: 40px;
}
.thanks-title {
	font-size: 52px;
	font-weight: 700;
	line-height: calc(64.38 / 52 * 100%);
	letter-spacing: -0.02em;
	text-align: left;
	color: #004fb4;
	margin-bottom: 30px;
}
.thanks-text {
	font-size: 24px;
	max-width: 770px;
	line-height: calc(31.2 / 24 * 100%);
	text-align: left;
	color: #202020;
	margin-bottom: 150px;
}
.thanks-woman {
	position: absolute;
	bottom: 0;
	right: -130px;
}
@media (max-width: 1330px) {
	.thanks {
		overflow: hidden;
	}
	.thanks-woman {
		right: -330px;
	}
}
@media (max-width: 991.98px) {
	.thanks-text {
		max-width: 65%;
	}
	.thanks {
		padding-top: 100px;
	}
	.thanks-text {
		margin-bottom: 100px;
	}
	.thanks-title {
		font-size: 46px;
	}
	.thanks-icon {
		margin-bottom: 40px;
	}
	.thanks-woman {
		max-width: 75%;
		right: -17%;
	}
}
@media (max-width: 768px) {
	.thanks-woman {
		max-width: 100%;
		position: static;
	}
	.thanks-text {
		margin-bottom: 10px;
		font-size: 20px;
		max-width: 100%;
	}
	.thanks-title {
		font-size: 40px;
		margin-bottom: 15px;
	}
	.thanks-icon {
		margin-bottom: 20px;
	}
	.thanks {
		padding-top: 30px;
	}
}
@media (max-width: 480px) {
	/*.thanks-text br {
		display: none;
	}*/
	.thanks-text {
		font-size: 18px;
	}
	.thanks-title {
		font-size: 31px;
	}
	.thanks-icon {
		max-width: 30px;
		margin-bottom: 10px;
	}
}
