:root {
	--white: #fff;
	--black: #000;
	--blue: #0077ff;
	--blue-2: #b0d4ff;
	--grey: #7c8a9a;
}

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

body {
	font-size: 18px;
	line-height: 110%;
	font-weight: 500;
	font-family: "VK Sans Display";
	color: var(--black);
}

.body-wrapper {
	overflow: hidden;
}

.text-52 {
	font-size: 52px;
	line-height: 110%;
}

.text-26 {
	font-size: 26px;
	line-height: 110%;
}

.text-22 {
	font-size: 22px;
	line-height: 110%;
}

.text-20 {
	font-size: 20px;
	line-height: 110%;
}

.text-17 {
	font-size: 17px;
	line-height: 110%;
}

.text-16 {
	font-size: 16px;
	line-height: 110%;
}

.text-15 {
	font-size: 15px;
	line-height: 110%;
}

.text-14 {
	font-size: 14px;
	line-height: 110%;
}

.text-11 {
	font-size: 11px;
	line-height: 110%;
}

.text-8 {
	font-size: 8px;
	line-height: 110%;
}

@media screen and (max-width: 1024px) {
	.text-52 {
		font-size: 32px;
		line-height: 100%;
	}

	.text-22 {
		font-size: 20px;
		line-height: 140%;
	}
}

@media screen and (max-width: 768px) {
	.text-52 {
		font-size: 28px;
		line-height: 100%;
	}

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

@media screen and (max-width: 570px) {
	.text-20 {
		font-size: 18px;
		line-height: 110%;
	}

	.text-26 {
		font-size: 20px;
		line-height: 110%;
	}
}

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

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

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

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

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

.btn:hover .btn__icon::after {
	background-position: left -73px top 9px;
}

.btn__icon {
	display: block;
	content: "";
	width: 44px;
	height: 44px;
	background-color: var(--blue);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 8px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	overflow: hidden;
}

.btn__icon::after {
	display: block;
	content: "";
	width: 44px;
	height: 44px;
	background-image: url(../img/icons/btn-icon.svg);
	background-repeat: no-repeat;
	background-size: auto 30px;
	background-position: left -26px top 9px;
	position: absolute;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	top: 0;
	left: 0;
}

.btn_with-icon {
	padding: 8px;
	padding-left: 24px;
	padding-right: 68px;
	gap: 16px;
	color: var(--white);
	background-color: var(--black);
	position: relative;
	border-radius: 100px;
}

.btn_wide {
	width: 100%;
	padding-left: 68px;
}

.btn_blue {
	padding: 16px 53px;
	border-radius: 12px;
	background-color: var(--blue);
	color: var(--white);
}

.dropdown {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

.dropdown__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	padding: 12px 16px;
	border: 1px solid #e8ecf5;
	border-radius: 8px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.dropdown__btn:hover {
	border-color: #7c8a9a66;
}

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

.dropdown__btn-text {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.dropdown__panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	width: 337px;
	height: auto;
	padding: 12px;
	border-radius: 16px;
	background-color: var(--white);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
	-webkit-box-shadow: 0 12px 12px #6b8fb81f;
	box-shadow: 0 12px 12px #6b8fb81f;
	pointer-events: none;
	opacity: 0;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	z-index: 9;
}

.dropdown__item {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	border-radius: 12px;
	cursor: pointer;
	padding: 12px 16px;
}

.dropdown__item:hover {
	background-color: #e2efff;
}

.dropdown_active .dropdown__btn-caret {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.dropdown_active .dropdown__panel {
	pointer-events: all;
	opacity: 1;
}

.filter-fund {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 8px;
}

.filter-fund__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-width: 28px;
	width: 28px;
	height: 28px;
}

.filter-fund__logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.filter-fund__info {
	margin-top: 4px;
}

.filter-fund__city {
	margin-top: 4px;
	color: var(--grey);
}

.header {
	padding: 15px 0;
	position: relative;
	z-index: 10;
}

.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 36px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header__menu-btn {
	display: none;
	margin-left: auto;
}

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

.header .nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 36px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

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

.header .nav__link:hover {
	opacity: 0.5;
}

.card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	height: auto;
}

.card:hover .card__img img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.card__img {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	border-radius: 28px;
	overflow: hidden;
	margin-bottom: 16px;
}

.card__img 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;
}

.card__name {
	margin-top: 8px;
}

.card__company {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	color: var(--grey);
}

.card__desc {
	display: none;
}

.card_border {
	padding: 12px;
	padding-bottom: 34px;
	border-radius: 28px;
	border: 1px solid var(--blue-2);
}

.card_border .card__price {
	padding: 0 12px;
}

.card_border .card__name {
	padding: 0 12px;
}

.entrance {
	background-image: url(../img/entrance/bg.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	position: relative;

}

.entrance__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: calc(100vh - 59px);
	min-height: 775px;
	overflow: hidden;
	padding: 60px;
}

.entrance::after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 1) -20%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 120%);
	z-index: 1;
}

.entrance__title {
	font-size: 72px;
	line-height: 75%;
}

.entrance__title span {
	font-feature-settings: "ss01" 1, "onum" 1;
}

.about__title span {
	font-feature-settings: "ss01" 1, "onum" 1;
}

.form__title span {
	font-feature-settings: "ss01" 1, "onum" 1;
}

.entrance__body {
	width: 100%;
	max-width: 375px;
	color: var(--white);
	position: relative;
	z-index: 2;
}

.entrance__tag {
	display: flex;
	width: fit-content;
	padding: 10px 12px;
	border-radius: 100px;
	border: 1px solid var(--white);
	backdrop-filter: blur(100px);
	margin-bottom: 35px;
}

.entrance__desc {
	margin-top: 20px;
	width: 100%;
	max-width: 375px;
}

.entrance__btn {
	margin-top: 48px;
}

.entrance__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	bottom: 0;
	left: 317px;
	width: 675px;
}

.entrance__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: bottom center;
	object-position: bottom center;
}

.entrance__cards {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 346px;
}

.entrance__card {
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	max-width: 165px;
	border-radius: 14px;
	background-color: var(--white);
	padding: 10px;
}

.entrance__card .card__img {
	margin-bottom: 7px;
	border-radius: 13px;
}

.entrance__card .card__name {
	margin-top: 5px;
}

.entrance__card .card__company {
	margin-top: 5px;
}

.entrance__card:nth-child(2) {
	grid-row: span 2;
	margin: auto 0;
}

.form {
	margin-top: 120px;
}

.form__wrapper {
	padding: 100px 115px;
	border-radius: 35px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 40px;
	background-image: url(../img/form/bg.svg), -webkit-gradient(linear, left bottom, left top, from(#cfe5ff00), to(#cfe5ff));
	background-image: url(../img/form/bg.svg), linear-gradient(0deg, #cfe5ff00 0%, #cfe5ff 100%);
	background-repeat: no-repeat;
	background-position: top center;
}

.form__desc {
	margin-top: 24px;
	width: 100%;
	max-width: 452px;
	line-height: 150%;
}

.form__text {
	width: 100%;
	max-width: 533px;
}

.form__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	max-width: 420px;
}

.form__label {
	color: var(--grey);
	line-height: 130%;
}

.form__label a {
	color: var(--blue);
}

.form__input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	padding: 16px 24px;
	border-radius: 100px;
	background-color: var(--white);
}

.catalog {
	padding-top: 40px;
}

.catalog__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[4];
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	row-gap: 56px;
}

.catalog__filter {
	margin-bottom: 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}

.footer {
	padding: 52px 0 32px;
}

.footer__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.footer__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	color: var(--grey);
}

.footer___socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
}

.footer__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	color: #7C8A9A;
}

.footer__social svg {
	transition: all ease 0.5s;
}

.footer__social:hover {
	color: #0077ff;
}

.footer__link {
	transition: all ease 0.5s;
}

.footer__link:hover {
	color: #0077ff;
}

.about {
	margin-top: 60px;
	background-image: url(../img/about/bg.svg), -webkit-gradient(linear, left top, left bottom, from(#cfe5ff00), to(#cfe5ff));
	background-image: url(../img/about/bg.svg), linear-gradient(180deg, #cfe5ff00 0%, #cfe5ff 100%);
	background-repeat: repeat-x;
	background-position: bottom center;
	padding: 50px 0 84px;
}

.about__slider {
	margin-top: 110px;
	width: 100%;
	overflow: visible;
}

.about__slide {
	background-color: var(--white);
	padding: 28px;
	padding-top: 20px;
	border-radius: 28px;
	width: 100%;
	max-width: 420px;
	height: auto;
}

.about__slide-desc {
	padding-top: 24px;
	margin-top: 16px;
	line-height: 150%;
	border-top: 1px solid #e8ecf5;
}

.about__slide-city {
	color: var(--grey);
	margin-top: 12px;
}

.about__slide-logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-width: 80px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 1px solid #e8ecf5;
}

.about__slide-logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.about__slide-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

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

.about__desc {
	line-height: 130%;
	margin-top: 16px;
	color: var(--grey);
}

.about__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 67px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.about__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 634px;
	gap: 30px;
	position: relative;
}

.about__list::before {
	display: block;
	content: "";
	width: 415px;
	height: 2px;
	position: absolute;
	top: 11px;
	left: 11px;
	background-image: url(../img/about/line.svg);
	background-repeat: repeat-x;
	background-size: auto 100%;
	background-position: center;
}

.about__list-item {
	padding-top: 44px;
	position: relative;
}

.about__list-item::before {
	display: block;
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../img/about/bullet.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.about__navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0px 40px;
	pointer-events: none;
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
}

.about__prev,
.about__next {
	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;
	pointer-events: all;
	border-radius: 50%;
	background-color: #cfe5ff;
	padding: 12px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.about__prev:hover,
.about__next:hover {
	background-color: #b0d4ff;
}

.popup {
	display: none;
	padding: 20px;
	border-radius: 28px;
	width: 100%;
	max-width: 520px;
	color: var(--black);
	min-height: 300px;
	justify-content: center;
}

.popup__wrapper {
	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;
	text-align: center;
}

.popup__link {
	margin-top: 36px;
	margin-bottom: 20px;
	height: auto;
}

.popup__desc {
	margin-top: 12px;
	width: 100%;
	max-width: 346px;
}

.popup__icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 16px;
}

.popup_payment {
	padding: 0 !important;
	max-width: 540px;
	background-color: transparent;
	justify-content: center;
	align-items: center;
}

.counter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
}

.counter__increment,
.counter__decrement,
.counter__num {
	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;
	min-width: 36px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	border: 1px solid #e8ecf5;
	border-radius: 8px;
	text-align: center;
}

.counter__increment svg,
.counter__decrement svg {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.counter__increment:hover svg,
.counter__decrement:hover svg {
	opacity: 0.5;
}

.counter__num::-webkit-outer-spin-button,
.counter__num::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.fancybox__backdrop {
	background-color: rgba(0, 0, 0, 0.3);
}

.fancybox__content>.f-button.is-close-btn {
	top: 16px;
	right: -68px;
	width: 44px;
	height: 44px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
}

.f-button svg {
	width: 16px;
	height: 16px;
	stroke-width: 3px;
}

.fancybox__slide {
	padding: 4px 72px;
}

.popup-card__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 32px;
	justify-content: space-between;
}

.popup-card__body {
	margin-top: 8px;
}

.popup-card__company {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 12px;
}

.popup-card__company-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.popup-card__company-icon img {
	min-width: 20px;
	width: 20px;
	height: 20px;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
	margin-right: 8px;
}

.popup-card__company-name {
	color: var(--grey);
}

.popup-card__desc {
	margin-top: 12px;
}

.popup-card__counter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
}

.popup-card__btn {
	margin-top: 24px;
	width: 100%;
	height: 44px;
}

.popup-card__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 168px;
	height: 100%;
	aspect-ratio: 1/1;
	border-radius: 12px;
	overflow: hidden;
}

.popup-card__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.popup-success {
	padding: 0;
	background-color: #e7f2ff;
	max-width: 694px;
	background-image: url(../img/popup-bg.svg);
	background-repeat: no-repeat;
	background-position: left bottom;
	border-radius: 28px;
}

.popup-success__wrapper {
	border-radius: 28px;
	min-height: 427px;
	overflow: hidden;
	padding: 60px;
	padding-right: 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 22px;
	position: relative;
}

.popup-success__wrapper::after {
	display: block;
	content: "";
	width: 120px;
	height: 115px;
	background-image: url(../img/popup-num.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	top: -10px;
	left: 50%;
}

.popup-success__wrapper::before {
	display: block;
	content: "";
	width: 320px;
	height: 100%;
	background-image: url(../img/entrance/bg-img.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: cover;
	position: absolute;
	bottom: 0;
	right: -10px;
	z-index: -1;
}

.popup-success__title {
	font-size: 26px;
}

.popup-success__desc {
	margin-top: 16px;
}

.popup-success__label {
	margin-top: 40px;
	color: var(--blue);
	font-style: italic;
	font-feature-settings: "ss01" 1, "onum" 1;
}

.popup-success__body {
	width: 100%;
	max-width: 250px;
}

.popup-success__card {
	width: 100%;
	max-width: 330px;
	padding: 8px;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	border-radius: 27px;
	background-color: var(--white);
}

.popup-success__btn {
	margin-top: 12px;
	width: 100%;
	white-space: nowrap;
}

.popup-success__card-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.popup-success__card-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-width: 100px;
	width: 100px;
	height: 100%;
	border-radius: 23px;
	overflow: hidden;
}

.popup-success__card-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.popup-success__card-price {
	margin-top: 8px;
}

.card_special {
	position: relative;
}

.card_special .card__price {
	display: none;
}

.card_special .card__img {
	margin: 0;
	aspect-ratio: unset;
	height: 100%;
	position: relative;
	z-index: 1;
}

.card_special .card__name {
	padding: 16px 20px;
	border-radius: 0 28px 28px 28px;
	background-color: #ECF5FF;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	margin: 0;
}

.card_special .card__discount {
	padding: 12px 16px;
	border-radius: 0 100px 100px 0;
	background-color: var(--blue);
	color: var(--white);
	position: absolute;
	bottom: 54px;
	left: 0;
	z-index: 2;
	pointer-events: none;
}

@media screen and (max-width: 1024px) {
	.form {
		margin-top: 60px;
	}

	.form__wrapper {
		padding: 68px 80px;
	}

	.form__body {
		max-width: 360px;
	}

	.form__text {
		max-width: 315px;
	}

	.form__submit {
		font-size: 18px;
	}

	.entrance__wrapper {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		gap: 25px;
	}

	.entrance__img {
		left: unset;
		right: -170px;
	}

	.entrance__title {
		font-size: 54px;
		line-height: 75%;
	}

	.entrance__cards {
		display: flex;
		max-width: none;
		margin-top: auto;
	}

	.entrance__card {
		height: auto;
		margin: 0 !important;
	}

	.entrance__body {
		max-width: 290px;
	}

	.catalog__wrapper {
		-ms-grid-columns: (1fr)[3];
		grid-template-columns: repeat(3, 1fr);
	}

	.about {
		padding-top: 32px;
		margin-top: 20px;
	}

	.about__heading {
		max-width: 320px;
	}

	.about__top {
		gap: 46px;
	}

	.about__slider {
		margin-top: 78px;
	}
}

@media screen and (max-width: 900px) {
	.footer {
		padding-top: 32px;
	}

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

	.footer__wrapper {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}

	.about__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		max-width: 266px;
	}

	.about__list::before {
		-webkit-transform-origin: left top;
		transform-origin: left top;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		width: 140px;
	}

	.about__list-item {
		padding: 0;
		padding-left: 32px;
	}

	.about__top {
		gap: 36px;
	}
}

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

	.header {
		width: 100%;
		top: 0;
		left: 0;
		padding: 24px 0;
		background-color: #C3DEFF;
		position: fixed;
		transition: all ease 0.5s;
	}


	.header_scroll {
		background-color: #fff;
	}

	.header__menu-btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

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

	.header .nav {
		position: fixed;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		z-index: -2;
		-webkit-transition: all ease 0.5s;
		transition: all ease 0.5s;
		pointer-events: none;
	}

	.header .nav__list {
		padding-top: 92px;
		background-color: var(--white);
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 0px;
		border-radius: 0 0 16px 16px;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		pointer-events: all;
		-webkit-transition: all ease 0.5s;
		transition: all ease 0.5s;
	}

	.header .nav__item {
		width: 100%;
	}

	.header .nav__link {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 18px 60px;
		width: 100%;
	}

	.header-open {
		overflow: hidden;
	}

	.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 .nav {
		background-color: rgba(0, 0, 0, 0.3);
	}

	.header-open .header .nav__list {
		-webkit-transform: none;
		transform: none;
	}

	.form__wrapper {
		margin: 0 -60px;
		width: auto;
		padding: 70px 60px 40px;
	}

	.form__text {
		max-width: 270px;
	}

	.form__body {
		max-width: 323px;
	}

	.form__desc {
		margin-top: 16px;
	}

	.entrance {
		margin-top: -1px;
	}

	.entrance__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		align-items: flex-start;
		border-radius: 0;
		width: auto;
		margin: 0 -60px;
		gap: 240px;
		height: auto;
		min-height: 0;
	}

	.entrance::after {
		background: linear-gradient(180deg, rgba(0, 0, 0, 1) -40%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 110%);
	}

	.entrance__cards {
		max-width: none;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		justify-content: flex-end;
	}


	.entrance__card {
		height: auto;
		margin: 0 !important;
		max-width: 140px;
	}

	.entrance__img {
		right: 50%;
		-webkit-transform: translate(50%, 50%);
		transform: translate(50%, 50%);
		width: 155%;
	}

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

		max-width: 437px;
	}

	.catalog__wrapper {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
	}

	.about {
		margin-top: 0;
		padding-top: 80px;
	}

	.popup-success {
		max-width: 540px;
	}

	.popup-success__wrapper {
		padding: 50px;
		gap: 40px;
		-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;
	}

	.popup-success__wrapper::after {
		top: 18px;
		left: 60%;
	}

	.popup-success__wrapper::before {
		height: 85%;
	}

	.card_special .card__name {
		width: 100%;
		max-width: 180px;
	}

	.card_special .card__discount {
		bottom: 76px;
	}
}

@media screen and (max-width: 640px) {
	.about__top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.about__heading {
		max-width: none;
	}

	.popup-success__wrapper::before {
		display: none;
	}

	.popup-success__wrapper::after {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		left: unset;
		right: -10px;
		top: 30px;
	}
}

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

	.header {
		padding: 8px 0;
	}

	.header_scroll {
		background-color: #fff;
	}

	.header .nav__link {
		padding: 18px 24px;
	}

	.form__wrapper {
		margin: 0 -24px;
		padding: 60px 24px 44px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 32px;
	}

	.form__body {
		max-width: none;
	}

	.form__text {
		max-width: none;
	}

	.footer__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;
	}

	.entrance {
		background-image: url(../img/entrance/bg_mob.png);
		background-size: 100% auto;
		background-position: top center;
		padding-top: 80vw;
		margin-top: 60px;
	}

	.entrance__tag {
		border-color: var(--black);
	}

	.entrance__title span {
		color: var(--blue) !important;
	}

	.entrance::after {
		display: none;
	}

	.entrance__body {
		color: var(--black);
	}

	.entrance__cards {
		display: none;
	}

	.entrance__wrapper {
		margin: 0 -24px;
		padding: 24px;
		background-color: #C3DEFF;
		background-image: url(../img/entrance/bg-heart.svg);
		border-radius: 16px 16px 0 0;
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: 100% auto;
	}

	.entrance__tag {
		font-size: 13px;
		line-height: normal;
		padding: 8px 10px;
	}

	.entrance__btn {
		margin-top: 36px;
	}

	.entrance__title {
		font-size: 45px;
		line-height: 75%;
	}

	.entrance__body {
		/* max-width: 298px; */
	}

	.entrance__img {
		width: 520px;
		-webkit-transform: translate(50%, 35%);
		transform: translate(50%, 35%);
	}

	.catalog__wrapper {
		gap: 12px;
		row-gap: 40px;
	}

	.card {
		cursor: pointer;
	}

	.card__img {
		margin-bottom: 12px;
		border-radius: 12px;
	}

	.card__name {
		margin-top: 6px;
		font-size: 16px;
		font-weight: 600;
	}

	.card__company {
		margin-top: 6px;
		gap: 6px;
	}

	.card__company-name {
		font-size: 12px;
	}

	.card_border {
		padding: 8px;
		border-radius: 12px;
	}

	.card_border .card__price {
		padding: 0;
	}

	.card_border .card__name {
		padding: 0;
	}

	.about {
		padding-bottom: 80px;
		padding-top: 36px;
	}

	.about__slider {
		padding: 0 18px;
		margin-top: 60px;
	}

	.about__slide {
		max-width: none;
		padding: 16px 24px 28px;
	}

	.about__slide-logo {
		min-width: 73px;
		width: 73px;
		height: 73px;
	}

	.about__slide-desc {
		padding-top: 20px;
	}

	.about__slide-city {
		margin-top: 8px;
	}

	.about__navigation {
		display: none;
	}

	.popup {
		padding: 20px;
		padding-top: 36px;
	}

	.popup__icon {
		margin-bottom: 20px;
	}

	.popup__desc {
		margin-top: 7px;
		max-width: 272px;
	}

	.popup__link {
		margin-top: 24px;
		width: 100%;
	}

	.fancybox__slide {
		padding: 12px;
	}

	.is-compact .fancybox__content>.f-button.is-close-btn {
		top: 0;
		right: 0;
		background: none;
		opacity: 1;
	}

	.f-button svg {
		stroke: var(--grey);
		width: 20px;
		height: 20px;
		stroke-width: 1px;
	}

	.popup-card__top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		gap: 16px;
	}

	.popup-card__img {
		max-width: none;
		height: auto;
	}

	.popup-success {
		padding: 0;
		background-position: left 60% bottom 0px;
	}

	.popup-success__wrapper {
		padding: 76px 24px 30px;
	}

	.popup-success__label {
		margin-top: 20px;
	}

	.popup-success__title {
		width: 100%;
		max-width: 190px;
	}

	.popup-success__card-img {
		min-width: 80px;
		width: 80px;
		height: 80px;
	}

	.popup-success__card {
		max-width: none;
	}

	.catalog__filter {
		flex-direction: column;
	}

	.card_special .card__name {
		border-bottom-left-radius: 12px;
		padding: 8px 12px;
		max-width: 140px;
	}

	.card_special .card__discount {
		bottom: 51px;
		padding: 8px 12px;
	}

	.popup_payment iframe {
		max-width: calc(100vw - 48px) !important;
	}
}