/* ------------------------------------------------------------------------ */

* {
	padding: 0;
	margin: 0;
	border: 0;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
	background-color: transparent;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a {
	color: inherit;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: 400;
}

svg {
	display: block;
}

/* ---------------------------------------------------------------------------- */

:root {
	--font-family: "TT Travels Next Trl", sans-serif;
	--second-family: "Segoe UI", sans-serif;
}

body {
	background: #fff;
	line-height: normal;
	font-family: var(--font-family);
}

.wrapper {
	overflow: hidden;
}

.container {
	max-width: 1822px;
	margin: 0 auto;
	padding: 0 20px;
}

/* -------------------------header------------------------- */

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 0 0px 0;
	z-index: 20;
}

.header__container {}

.header__inner {
	box-shadow: 0 4px 59px 10px #fff;
	background: #fff;
	padding: 5px 31px 5px 35px;
	border-radius: 100px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.header__left {}

.header__logo {}

.header__logo-img {}

.header__right {
	max-width: 1307px;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.header__list {
	max-width: 824px;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.header__item {}

.header__item-link {
	font-weight: 700;
	font-size: 32px;
	color: #000;

	font-family: var(--second-family);
}

.header__right-button {
	height: 77px;
	max-width: 405px;
	width: 100%;
	position: relative;
	z-index: 2;
	overflow: hidden;
	padding: 0px 7px 0px 0px;
}

.header__right-button::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -60%;
	width: 20%;
	height: 200%;
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(30deg);
}

.header__right-button::after {
	animation: shine 3s linear 5s infinite;
}

@keyframes shine {
	0% {
		left: -40%;
		top: -30%;
	}

	20% {
		left: 120%;
		top: -30%;
	}

	100% {
		left: 120%;
		top: -30%;
	}
}

.header__btn {
	max-width: 405px;
	width: 100%;
	height: 66px;
	background: #f93448;
	box-shadow: 6px 10px 0px #000;
	border-radius: 100px;
	white-space: nowrap;

	padding: 0 20px;

	font-weight: 700;
	font-size: 28px;
	text-transform: uppercase;
	text-align: center;
	color: #fff;

	display: flex;
	align-items: center;
	justify-content: center;

	transition: all .2s ease;

	position: relative;
}

.header__btn:active {
	transform: translate(6px, 10px);
	box-shadow: 0px 0px 0px #000;
}

@media(hover:hover) {
	.header__btn:hover {
		transform: translate(6px, 10px);
		box-shadow: 0px 0px 0px #000;
	}
}

/* -------------------------preview------------------------- */

.page__preview {
	padding: 207px 0px 0px 0px;
	background: #3b5aff;
	position: relative;
}

.preview__container {}

.preview__inner {
	position: absolute;
	bottom: 60px;
	left: 0;
	width: 100%;
}

.preview__img {}

.preview__image {
	width: 100%;
	object-fit: cover;
	border-radius: 80px 80px 0 0;
}

.preview__content {
	display: flex;
	align-items: center;
	justify-content: space-between;

	background: linear-gradient(90deg, #ff9e18 0%, rgba(255, 255, 255, 0.2) 100%);
	border-radius: 200px;
	padding: 42px 60px 42px 92px;
}

.preview__title {
	max-width: 1200px;

	font-weight: 700;
	font-size: 96px;
	color: #fff;
	line-height: 100%;
	font-family: var(--second-family);

	transform: translateX(-50%);
	opacity: 0;
	transition: all .6s ease-in-out;
}

.scroll--active.preview__title {
	transform: translateX(0%);
	opacity: 1;
}

.preview__title-value {
	font-family: var(--font-family);
	font-weight: 800;
	font-size: 96px;
	color: #fff;
}

.preview__title-sp {
	font-family: var(--second-family);
	font-weight: 700;
}

.preview__right {
	position: relative;
	cursor: pointer;
}

.preview__img-icon {
	animation: pulse 1s linear infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(.9);
	}

	100% {
		transform: scale(1);
	}
}

.preview__word {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	animation: animRotate 10s linear infinite;
}

@keyframes animRotate {
	0% {
		transform: translate(-50%, -50%);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* -------------------------advantages------------------------- */

.page__advantages {
	margin: 0px 0px 220px 0px;
}

.advantages__head-container {
	max-width: 1635px;

	display: flex;
	align-items: center;
	gap: 25px;
	flex-wrap: wrap;
}

.advantages__head {
	padding: 34px 0;
	background: #3b5aff;
	border-radius: 0 0 80px 80px;
}

.advantages__container {
	max-width: 1600px;
}

.advantages__head-text {
	font-weight: 800;
	font-size: 65px;
	color: #fff;
}

.advantages__head-img {
	margin: 14px 0px 0px 0px;
}

.advantages__inner {
	padding: 205px 0px 0px 0px;
}

.advantages__row-1 {
	display: flex;
	gap: 164px;
	margin: 0px 0px 130px 0px;
}

.advantages__card {
	display: flex;
	flex-direction: column;
	gap: 20px;

	max-width: 490px;
	width: 100%;

	position: relative;
}

.advantages__card.scroll--active .advantages__card-name,
.advantages__card.scroll--active .advantages__card-desc {
	opacity: 1;
}

.advantages__card-icon {
	position: absolute;
	top: -234px;
	left: 102px;
	z-index: -1;

	transform: translateY(-100%);
	transition: all .6s ease-in-out;
}

.scroll--active .advantages__card-icon {
	transform: translateY(0%);
}

.advantages__row-2 .advantages__card:nth-child(1) .advantages__card-icon {
	top: -552px;
	left: 185px;
}

.advantages__row-2 .advantages__card:nth-child(2) .advantages__card-icon {
	top: -552px;
	left: 293px;
}

.advantages__card-name {
	font-weight: 800;
	font-size: 40px;
	line-height: 90%;
	color: #f93549;

	opacity: 0;
	transition: all .6s 1s ease-in-out;
}

.advantages__row-2 .advantages__card-name {
	color: #ff9d1a;
}

.advantages__card-desc {
	font-weight: 700;
	font-size: 26px;
	color: #000;
	font-family: var(--second-family);

	opacity: 0;
	transition: all .6s 1s ease-in-out;
}

.advantages__row-2 {
	display: flex;
	justify-content: end;
	gap: 220px;
	padding: 0px 20px 0px 0px;
}

/* -------------------------marketing------------------------- */

.page__marketing {
	background: #3b5aff;
	border-radius: 80px;
	padding: 70px 0 200px 0;
	margin: 0px 0px 60px 0px;
	position: relative;
}

.marketing-elem {
	position: absolute;
}

.marketing-elem-1 {
	top: 67px;
	left: 96px;
}

.marketing-elem-2 {
	right: 95px;
	bottom: 58px;
}

.marketing__container {}

.marketing__inner {
	padding: 0 329px;
}

.marketing__head {
	margin: 0px 0px 140px 0px;

	transform: translateX(-50%);
	opacity: 0;
	transition: all .6s ease-in-out;
}

.scroll--active.marketing__head {
	opacity: 1;
	transform: translateX(0%);
}

.marketing__title {
	font-weight: 800;
	font-size: 60px;
	color: #fff;
	letter-spacing: -0.01em;
	line-height: 100%;
	margin: 0px 0px 10px 0px;
}

.marketing__subtitle {
	font-weight: 700;
	font-size: 50px;
	color: #000;
	line-height: 100%;
	font-family: var(--second-family);
}

.marketing__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 100px;
}

.marketing__card {}

.marketing__card-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.marketing__card-name {
	font-weight: 700;
	font-size: 40px;
	color: #fff;
	line-height: 100%;
	font-family: var(--second-family);
}

.marketing__card-name-sp {
	font-size: 80px;
}

.marketing__card-desc {
	font-weight: 600;
	font-size: 26px;
	color: #000;
	font-family: var(--second-family);

	max-width: 430px;
}

/* -------------------------better------------------------- */

.page__better {
	margin: 0px 0px 100px 0px;
}

.better__container {
	max-width: 1300px;
}

.better__inner {}

.better__title {
	font-weight: 800;
	font-size: 60px;
	color: #000;

	margin: 0px 0px 100px 0px;

	transform: translateX(60%);
	opacity: 0;
	transition: all .6s ease-in-out;
}

.scroll--active.better__title {
	transform: translateX(0%);
	opacity: 1;
}

.better__title-sp {
	color: #f93549;
}

.better__list {
	display: flex;
	flex-direction: column;
	gap: 70px;
}

.better__item {
	font-weight: 700;
	font-size: 40px;
	color: #1b1819;

	display: flex;
	align-items: start;
	gap: 24px;
}

.better__item::before {
	content: '';

	min-width: 46px;
	width: 46px;
	height: 51px;
	background-image: url("../img/better/icon.svg");
}

/* -------------------------calc-agit------------------------- */

.page__calc-agit {
	background: #f5f6ff;
	padding: 69px 0 100px 0;
}

.calc-agit__container {}

.calc-agit__inner {
	max-width: 1070px;
	margin: 0 auto;
}

.calc-agit__title {
	font-weight: 900;
	font-size: 50px;
	text-align: center;
	color: #000;

	margin: 0px 0px 48px 0px;
}

.calc-agit__button {
	display: flex;
	align-items: center;
	justify-content: center;

	position: relative;
	z-index: 2;
	overflow: hidden;
	padding: 0px 0px 12px 0px;
}

.btn-main {
	font-weight: 800;
	font-size: 48px;
	text-align: center;
	color: #fff;

	padding: 6px 46px;
	background: #f93549;
	box-shadow: 0 12px 0 #3b5aff;
	border-radius: 80px;

	position: relative;
	transition: all .2s ease;
}

.btn-main::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -60%;
	width: 20%;
	height: 200%;
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(30deg);
	pointer-events: none;
}

.btn-main::before {
	animation: shine 3s linear 5s infinite;
}

.calc-agit__btn {}


.btn-main:active {
	transform: translateY(8px);
	box-shadow: 0 0px 0 transparent;
}

@media(hover:hover) {
	.btn-main:hover {
		transform: translateY(8px);
		box-shadow: 0 0px 0 transparent;
	}
}

/* -------------------------indicators------------------------- */

.page__indicators {
	margin: 0px 0px 218px 0px;
}

.indicators__head {
	padding: 40px 0;
	background: #3b5aff;
	border-radius: 80px 80px 0 0;
	position: relative;
	margin: 0px 0px 150px 0px;
}

.indicators__head-elem {
	position: absolute;
}

.indicators__head-elem-1 {
	left: 129px;
	bottom: -114px;

	transform: translateY(100%);
	opacity: 0;
	transition: all .6s ease-in-out;
}

.scroll--active .indicators__head-elem-1 {
	transform: translateY(0%);
	opacity: 1;
}

.indicators__head-elem-2 {
	right: 125px;
	top: -114px;

	transform: translateY(-100%);
	opacity: 0;
	transition: all .6s ease-in-out;
}

.scroll--active .indicators__head-elem-2 {
	transform: translateY(0%);
	opacity: 1;
}

.indicators__head::after {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: #f5f6ff;
	z-index: -1;
}

.indicators__head-container {}

.indicators__head-inner {
	position: relative;
	z-index: 2;
}

.indicators__head-title {
	font-weight: 800;
	font-size: 65px;
	text-align: center;
	line-height: 110%;
	color: #fff;
}

.indicators__head-subtitle {
	font-weight: 700;
	font-size: 32px;
	text-align: center;
	color: #000;
	font-family: var(--second-family);
}

.indicators__container {
	max-width: 1370px;
}

.indicators__inner {
	display: flex;
	align-items: start;
	gap: 40px;
}

.indicators__img {
	max-width: 443px;
}

.indicators__image {
	width: 100%;
	border-radius: 60px;
}

.indicators__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 70px 40px;
}

.indicators__card {
	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: space-between;
}

.indicators__card-name {
	font-weight: 700;
	font-size: 36px;
	line-height: 107%;
	color: #000;
	font-family: var(--second-family);
}

.indicators__card-desc {
	font-weight: 800;
	font-size: 40px;
	color: #3b5aff;
}

.indicators__card-desc-profit {
	color: #f93549;
}

/* -------------------------income-2------------------------- */

.page__income-2 {
	padding: 86px 0 200px 0;
	background: rgba(59, 90, 255, 0.05);
}

.income-2__container {
	max-width: 1210px;
}

.income-2__inner {}

.income-2__title {
	font-weight: 800;
	font-size: 60px;
	line-height: 100%;
	text-align: center;
	color: #f93549;

	max-width: 830px;
	margin: 0px auto 83px auto;
}

.income-2__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 140px 114px;
}

.income-2__card {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.income-2__card-name {}

.income-2__card-text {
	font-weight: 700;
	font-size: 36px;
	color: #000;
	font-family: var(--second-family);
}

.income-2__card-text-red {
	font-weight: 900;
	color: #f93549;
}

.income-2__card-name-value {
	font-weight: 800;
	font-size: 40px;
	color: #000;
}

.income-2__card-desc {
	font-weight: 600;
	font-size: 30px;
	color: #808080;
	font-family: var(--second-family);
}

/* -------------------------info------------------------- */

.page__info {
	padding: 40px 0 146px 0;
	border-radius: 80px;
	background: #f93549;
	position: relative;
}

.page__info::after {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;

	background: #f5f6ff;
}

.info__container {
	max-width: 1178px;
}

.info__inner {
	position: relative;
	z-index: 2;
}

.info__head {
	display: flex;
	flex-direction: column;
	gap: 9px;
	align-items: center;

	margin: 0px 0px 50px 0px;
}

.info__title {
	font-weight: 900;
	font-size: 65px;
	text-align: center;
	color: #fff;
}

.info__subtitle {
	font-weight: 700;
	font-size: 32px;
	text-align: center;
	color: #000;
	font-family: var(--second-family);
}

.info__cards {
	border-radius: 80px;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px 12px;
	position: relative;
}

.info__cards::after {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background: #ff9e18;
	z-index: -1;
	border-radius: 80px;
}

.info__card {
	padding: 20px 74px;
	background: #fff;
	min-height: 313px;
}

.info__card-1 .info__card-name {
	margin: 0px 0px 55px 0px;
}

.info__card-2 .info__card-name {
	margin: 0px 0px 40px 0px;
}

.info__card-3 .info__card-name {
	margin: 0px 0px 55px 0px;
}

.info__card-4 .info__card-name {
	margin: 0px 0px 40px 0px;
}

.info__card-name {
	font-weight: 700;
	font-size: 36px;
	color: #000;
	font-family: var(--second-family);
}

.info__card-desc {
	font-weight: 800;
	font-size: 40px;
	color: #000;
}

.info__card-desc-red {
	color: #f93549;
}

.info__card-1 {
	border-radius: 80px 0 80px 0;
}

.info__card-2 {
	border-radius: 0 80px 0 80px;
}

.info__card-3 {
	border-radius: 0 80px 0 80px;
}

.info__card-4 {
	border-radius: 80px 0 80px 0;
}

/* -------------------------discount------------------------- */

.page__discount {
	padding: 26px 0 92px 0;
	margin: 0px 0px 88px 0px;
	background: #f5f6ff;
	position: relative;
	z-index: 1;
}

.discount-img {
	position: absolute;
	z-index: -1;
	animation: levitate-rotate 5s ease-in-out infinite;
}

@keyframes levitate-rotate {

	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-12px) rotate(5deg);
	}
}

.discount-img-1 {
	top: 0px;
	left: 0;
}

.discount-img-2 {
	bottom: 9px;
	left: 163px;
}

.discount__container {
	max-width: 1243px;
}

.discount__inner {
	padding: 0px 0px 0px 143px;
}

.discount__subtitle {
	font-weight: 700;
	font-size: 32px;
	color: #000;
	font-family: var(--second-family);

	margin: 0px 0px 30px 0px;
}

.discount__title {
	font-weight: 800;
	font-size: 45px;
	color: #000;
	text-transform: uppercase;

	margin: 0px 0px 30px 0px;
}

.discount__title-img {
	margin: 15px 0px 0px 0px;
}

.discount__title-sp {
	color: #3b5aff;
}

.discount__btn-body {
	display: inline-block;
	overflow: hidden;
	padding: 0px 0px 12px 0px;
}

.discount__btn {
	font-weight: 800;
	font-size: 40px;
	color: #fff;

	padding: 18px 53px;
}

/* -------------------------product------------------------- */

.page__product {}

.product__container {
	max-width: 1228px;
}

.product__inner {}

.product__title {
	margin: 0px 0px 124px 0px;

	font-weight: 900;
	font-size: 65px;
	line-height: 100%;
	text-align: center;
	color: #f93549;
}

.product__cards {
	display: grid;
	align-items: end;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 30px;

	margin: 0px 0px 50px 0px;
}

.product__card {
	display: flex;
	flex-direction: column;
	gap: 14px;

	position: relative;
}

.product__card:nth-child(4) {
	overflow: hidden;
}

.product__card-arrow {
	position: absolute;
	top: 100px;
	left: -150px;
}

.product__card-name {
	font-weight: 900;
	font-size: 26px;
	text-align: center;
	color: #000;
	font-style: italic;
}

.product__card-box {
	min-height: 166px;
	height: 100%;
	border-radius: 60px;
	background: #fff;
	transition: all .3s ease;
	padding: 17px 20px 17px 30px;

	font-weight: 800;
	font-size: 20px;
	line-height: 130%;
}

.product__card-box-red {
	border: 6px solid #f93549;
	color: #f93549;

	transition: all .3s ease;
}

.product__card-box-text {}

.product__card-box-blue {
	border: 6px solid #3b5aff;
	color: #4764ff;

	transition: all .3s ease;
}

.product__card-box-yellow {
	border: 6px solid #ff9e18;
	color: #ff9e18;

	transition: all .3s ease;
}

.product__card-box-yellow:active {
	box-shadow: 0 4px 33px 1px #ff9e18;
}

.product__card-box-blue:active {
	box-shadow: 0 4px 33px 1px #3b5aff;
}

.product__card-box-red:active {
	box-shadow: 0 4px 33px 1px #f93549;
}

@media(hover:hover) {
	.product__card-box-yellow:hover {
		box-shadow: 0 4px 33px 1px #ff9e18;
	}

	.product__card-box-blue:hover {
		box-shadow: 0 4px 33px 1px #3b5aff;
	}

	.product__card-box-red:hover {
		box-shadow: 0 4px 33px 1px #f93549;
	}
}

.product__card-btn {
	font-weight: 900;
	font-size: 26px;
	text-align: center;
	color: #fff;

	padding: 19px;
	border-radius: 60px;
	margin: 0px 0px 14px 0px;
}

.product__card-btn::after {
	border-radius: 60px;
}

.product__row {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 30px;
}

.product__row-pos {
	position: absolute;
	top: 45px;
	left: -114px;

	max-width: 490px;
	width: 100%;

	display: flex;
	flex-direction: column;
	gap: 62px;
}

.product__row-pos-box {
	max-width: 354px;
	width: 100%;
	min-height: 154px;

	display: flex;
	flex-direction: column;
	gap: 8px;
}

.product__row-pos-box-1 {
	border-radius: 60px 60px 60px 0;
	margin: 0px 0px 0px auto;
	padding: 13px 35px 21px 35px;
	background: #ffced3;

	transform: translateX(50%);
	opacity: 0;
	transition: all .6s ease-in-out;
}

.scroll--active .product__row-pos-box-1 {
	transform: translateX(0%);
	opacity: 1;
}

.product__row-pos-box-name {
	font-weight: 900;
	font-size: 26px;
	color: #f93549;
}

.product__row-pos-box-desc {
	font-weight: 700;
	font-size: 26px;
	color: #000;
}

.product__row-pos-box-2 {
	padding: 22px 6px 22px 41px;
	background: rgba(59, 90, 255, 0.2);
	border-radius: 60px 60px 0 60px;

	transform: translateX(-50%);
	opacity: 0;
	transition: all .6s ease-in-out;
}

.scroll--active .product__row-pos-box-2 {
	transform: translateX(0%);
	opacity: 1;
}

.product__row-img {
	grid-column: 2/3;
}

.product__row-image {}

.product__card-row {
	grid-column: 3/4;
}

.product__card-row .product__card-box {
	height: unset;
}

.product__card-row-arrow {
	position: absolute;
	bottom: 20px;
	right: 42px;
}

.svg-container {
	width: 118px;
	height: 289px;
}

.product__card-row-arrow.svg-container {
	width: 285px;
	height: 202px;
}

.draw-path {
	stroke: #F93549;
	/* Цвет обводки */
	stroke-width: 2;
	/* Толщина линии */
	stroke-dasharray: 1000;
	/* Длина штрихов (должна быть больше длины пути) */
	stroke-dashoffset: 1000;
	/* Смещение штрихов (исходно скрыто) */
	fill: transparent;
	/* Изначально заливка прозрачна */
}

.scroll--active .draw-path {
	animation: draw 4s forwards, fillIn 0.5s 1s forwards;
}

@keyframes draw {
	to {
		stroke-dashoffset: 0;
		/* Полностью отрисованная линия */
	}
}

@keyframes fillIn {
	to {
		fill: #F93549;
		/* Появление заливки после анимации */
	}
}

/* -------------------------subsidy------------------------- */

.page__subsidy {
	padding: 108px 0 140px 0;
	background: #3b5aff;
	border-radius: 80px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.subsidy-elem {
	position: absolute;
	right: 30px;
	bottom: -40px;
	z-index: -1;
	pointer-events: none;
	animation: levitate-rotate 5s ease-in-out infinite;
}

.subsidy__container {
	max-width: 1278px;
}

.subsidy__inner {
	position: relative;
	z-index: 2;
}

.subsidy__title {
	font-weight: 800;
	font-size: 65px;
	line-height: 100%;
	color: #f93549;

	margin: 0px 0px 34px 0px;
}

.subsidy__subtitle {
	font-weight: 900;
	font-size: 60px;
	line-height: 116%;
	color: #fff;

	margin: 0px 0px 74px 0px;
}

.subsidy__btn-body {
	display: inline-block;
	overflow: hidden;
	padding: 0px 0px 12px 0px;
	border-radius: 60px;
	position: relative;
}

.subsidy__btn {
	font-weight: 800;
	font-size: 40px;
	line-height: 116%;
	color: #fff;

	padding: 25px 38px;
	border-radius: 100px;
	box-shadow: 0 12px 0 #ff9e18;
}


/* -------------------------calc------------------------- */

.page__calc {
	padding: 118px 0 324px 0;
	background: rgba(59, 90, 255, 0.05);
}

.calc__container {
	max-width: 1363px;
}

.calc__inner {}

.calc__title {
	font-weight: 800;
	font-size: 60px;
	line-height: 116%;
	text-align: center;
	color: #000;

	margin: 0px 0px 140px 0px;
}

.calc__title-sp {
	color: #f93549;
}

.calc__rows {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.calc__row {}

.calc__row:not(:last-child) {
	padding: 0px 0px 50px 0px;
	border-bottom: 3px solid rgba(59, 90, 255, 0.8);
}

.calc__row-1 {
	display: flex;
	align-items: start;
	justify-content: center;
	gap: 40px;
}

.calc__box {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	white-space: nowrap;
}

.calc__box-name {
	font-weight: 800;
	font-size: 40px;
	color: #000;
}

.calc__box-sp {
	font-weight: 800;
	font-size: 40px;
	text-align: center;
	color: #000;
}

.calc__box-desc {
	font-weight: 600;
	font-size: 28px;
	text-align: center;
	color: #808080;
	font-family: var(--second-family);
}

.calc__row-2 {
	display: flex;
	align-items: start;
	justify-content: center;
	gap: 40px;
}

.calc__row-2-text {
	font-weight: 600;
	font-size: 32px;
	text-align: center;
	color: #000;
	font-family: var(--second-family);

	max-width: 490px;
	margin: 0px 0px 0px 178px;
}

.calc__row-3 {
	display: flex;
	align-items: start;
	justify-content: center;
	gap: 40px;
}

.calc__box-name-red {
	color: #f93549;
}

/* -------------------------plan------------------------- */

.page__plan {
	margin: -168px 0px 175px 0px;
}

.plan__container {}

.plan__inner {
	max-width: 1323px;
	margin: 0 auto;
	background: linear-gradient(322deg, #f93549 0, #f93549 26.38%, #3b5aff 100%);
	border-radius: 80px;
	overflow: hidden;
	padding: 53px 60px 60px 60px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

	position: relative;
	z-index: 2;
}

.plan__title {
	font-weight: 800;
	font-size: 40px;
	color: #fff;

	max-width: 772px;
	width: 100%;

	position: relative;
}

.plan-arrow {
	position: absolute !important;
	right: -80px;
	bottom: -30px;
}

.plan__btn {
	font-weight: 800;
	font-size: 36px;
	line-height: 116%;
	text-align: center;
	color: #fff;

	padding: 8px 62px;
}

.plan__btn-body {
	display: inline-block;
	overflow: hidden;
	border-radius: 60px;
	padding: 0px 0px 12px 0px;
}

.custom-svg-wrapper {
	width: 195px;
	height: 77px;
	position: relative;
}

.animated-logo {
	width: 100%;
	height: 100%;
}

.logo-path {
	stroke: #ffffff;
	stroke-width: 1.5;
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	fill: transparent;
}

.scroll--active .logo-path {
	animation:
		trace-path 2s cubic-bezier(0.65, 0, 0.35, 1) forwards,
		reveal-fill 0.5s .6s ease-out forwards;
}

@keyframes trace-path {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes reveal-fill {
	to {
		fill: white;
		stroke: transparent;
	}
}

/* -------------------------delivery------------------------- */

.page__delivery {
	margin: 0px 0px 140px 0px;
}

.delivery__container {
	max-width: 1212px;
}

.delivery__inner {}

.delivery__title {
	margin: 0px 0px 200px 0px;

	font-weight: 900;
	font-size: 60px;
	line-height: 116%;
	text-align: center;
	color: #000;
}

.delivery__title-red {
	color: #f93549;
}

.delivery__rows {
	display: flex;
	flex-direction: column;
	gap: 140px;

	position: relative;
	margin: 0px 0px 120px 0px;
}

.delivery__row {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 40px;
}

.delivery__row-name {
	width: 335px;

	font-weight: 900;
	font-size: 36px;
	line-height: 116%;
	color: #f93549;
}

.delivery__row-list {
	max-width: 690px;
	width: 100%;

	display: flex;
	flex-direction: column;
	gap: 14px;
}

.delivery__row-item {
	font-weight: 700;
	font-size: 30px;
	color: #000;
	font-family: var(--second-family);

	display: flex;
	align-items: start;
	gap: 14px;
}

.delivery__row-item::before {
	content: '';

	margin: 9px 0px 0px 0px;
	min-width: 22px;
	height: 24px;
	background-image: url("../img/delivery/icon.svg");
}

.delivery__bottom {
	display: flex;
	align-items: center;
	justify-content: center;
}

.delivery__btn {
	font-weight: 800;
	font-size: 36px;
	line-height: 116%;
	color: #fff;

	padding: 18px 52px;
	box-shadow: 0 12px 0 #ff9e18;
}

.scroll-progress-container {
	position: absolute;
	top: 11px;
	left: 397px;
	width: 37px;
	margin: 0 auto;
}

.progress-line {
	display: block;
}

.line-progress {
	transition: height 0.2s linear;
}

.progress-dot {
	transition: fill 0.3s ease;
}

/* -------------------------reviews------------------------- */

.page__reviews {
	background: rgba(249, 53, 73, 0.05);
	border-radius: 60px;
	padding: 100px 0 135px 0;
	margin: 0px 0px 100px 0px;
}

.reviews__container {
	max-width: 1587px;
}

.reviews__inner {}

.reviews__title {
	font-weight: 800;
	font-size: 60px;
	line-height: 116%;
	color: #000;

	max-width: 1080px;
	margin: 0px auto 100px auto;
}

.reviews__title-sp-1 {
	transition: all .6s ease-in-out;
	opacity: 0;
	transform: translateX(-50%);
	display: block;
}

.scroll--active .reviews__title-sp-1 {
	opacity: 1;
	transform: translateX(0%);
}

.reviews__title-sp {
	color: #f93549;

	transition: all .6s ease-in-out;
	opacity: 0;
	transform: translateX(50%);
	display: block;
}

.scroll--active .reviews__title-sp {
	opacity: 1;
	transform: translateX(0%);
}

.reviews__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 31px;
	margin: 0px 0px 50px 0px;
}

.reviews__card {
	padding: 24px 19px;
	background: #fff;
	border-radius: 60px;
}

.reviews__card-img {
	width: 100%;
}

.reviews__cards-row {
	display: flex;
	justify-content: center;
	gap: 31px;

	margin: 0px 0px 50px 0px;
}

/* -------------------------request------------------------- */

.page__request {
	margin: 0px 0px 220px 0px;
}

.request__container {
	max-width: 1510px;
}

.request__inner {}

.request__title {
	max-width: 1080px;
	margin: 0px auto 150px auto;

	font-weight: 800;
	font-size: 60px;
	line-height: 116%;
	color: #3b5aff;
}

.request__title-img {
	margin: 12px 0px 0px 0px;
}

.request__body {
	position: relative;
}

.request__content {
	background: #3b5aff;
	border-radius: 80px;
	overflow: hidden;

	display: flex;
	gap: 42px;
}

.request-img {
	position: absolute;
}

.request-img-mob {
	display: none;
}

.request-img-1 {
	bottom: -80px;
	left: 70px;
	transition: all .6s ease-in-out;
	transform: translateY(-40px);
	opacity: 0;
}

.scroll--active .request-img-1 {
	transform: translateY(0px);
	opacity: 1;
}

.request-img-2 {
	top: -86px;
	right: 68px;
	transition: all .6s ease-in-out;
	transform: translateY(40px);
	opacity: 0;
}

.scroll--active .request-img-2 {
	transform: translateY(0px);
	opacity: 1;
}

.request__img {
	max-width: 767px;
	width: 100%;
}

.request__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 80px;
}

.request__form {
	max-width: 478px;
	width: 100%;
	position: relative;
	z-index: 2;
	padding: 25px 25px 45px 0;
}

.request__form-title {
	font-weight: 900;
	font-size: 40px;
	line-height: 116%;
	color: #fff;

	margin: 0px 0px 30px 0px;
}

.request__form-inputs {
	display: flex;
	flex-direction: column;
	gap: 15px;

	margin: 0px 0px 36px 0px;
}

.request__form-label {}

.request__form-input {
	border-radius: 60px;
	padding: 17px 33px;
	display: block;
	width: 100%;
	background: #fff;

	font-weight: 600;
	font-size: 25px;
	line-height: 116%;
	color: #000;
	font-family: var(--second-family);
}

.request__form-input::placeholder {
	color: #808080;
}

.request__form-submit-body {
	display: inline-block;
	overflow: hidden;
	border-radius: 26px;
	padding: 0px 0px 12px 0px;
}

.request__form-submit {
	font-weight: 900;
	font-size: 30px;
	line-height: 116%;
	color: #fff;

	padding: 12px 66px;
	box-shadow: 0 12px 0 #ff9e18;
}


/* -------------------------footer------------------------- */

.footer {
	background: #3b5aff;
	padding: 48px 0;
	border-radius: 60px 60px 0 0;
}

.footer__container {
	max-width: 1510px;
}

.footer__inner {
	display: flex;
	align-items: center;
	gap: 104px;
}

.footer__logo {}

.footer__logo-img {
	max-width: 100%;
}

.footer__list {
	display: flex;
	align-items: center;
	gap: 54px;
}

.footer__item {}

.footer__item-link {
	font-weight: 700;
	font-size: 25px;
	line-height: 116%;
	color: #fff;
	font-family: var(--second-family);
}

/* -------------------------modal------------------------- */

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0, .5);
	z-index: 40;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 20px;

	opacity: 0;
	pointer-events: none;
	transition: all .3s ease;
}

.modal--visible {
	opacity: 1;
	pointer-events: all;
}

.modal-request {}

.modal__window {
	max-width: 1076px;
	width: 100%;
	max-height: 100%;

	background: #3b5aff;
	border-radius: 80px;
	padding: 38px 20px 50px 20px;

	position: relative;
}

.modal .request__form {
	margin: 0 auto;
	padding: 0;
}

.modal .request__form-submit-body {
	width: 100%;
	overflow: hidden;
	padding: 0px 0px 12px 0px;
}

.modal .request__form-submit {
	width: 100%;
}

.modal .request__form-title {
	margin: 0px 0px 50px 0px;
	text-align: center;
}

.modal-calc-agit .request__form-title {
	font-size: 36px;
}

.modal__close {
	position: absolute;
	top: 30px;
	right: 60px;
	font-size: 30px;
	color: #fff;
}

.modal-elem {
	position: absolute;
}

.modal-elem-1 {
	left: 134px;
	bottom: -80px;
}

.modal-elem-2 {
	right: 123px;
	top: -86px;
}





.modal-gallery {}

.modal-gallery__window {
	position: relative;
	width: 100%;
	max-width: 1309px;
}

.modal-gallery .modal__close {
	top: -80px;
	right: 0;
}

.modal__close {}

.modal-gallery__slider {
	max-width: 1309px;
	width: 100%;
	overflow: visible;
}

.modal-gallery__slider-line {}

.modal-gallery__slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: unset;
}

.modal-gallery__slide-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-height: 630px;
}

/* -------------------------media------------------------- */

@media(max-width:1880px) {
	.marketing-elem-1 {
		max-width: 140px;
		height: auto;
		top: 68px;
		left: 60px;
	}

	.marketing-elem-2 {
		max-width: 140px;
		height: auto;
		right: 60px;
	}

	.marketing__inner {
		padding: 0 210px;
	}
}

@media(max-width:1620px) {
	.header__item-link {
		font-size: 24px;
	}

	.header__btn {
		font-size: 20px;
		max-width: 330px;
	}

	.header__right-button {
		max-width: 330px;
	}

	.header__logo-img {
		max-width: 240px;
	}





	.preview__title {
		font-size: 70px;
	}

	.preview__title-value {
		font-size: 78px;
	}

	.preview__img-icon {
		max-width: 140px;
	}

	.preview__word {
		max-width: 230px;
	}





	.page__discount {
		padding: 155px 0 240px 0;
	}

	.discount-img-1 {
		max-width: 220px;
	}

	.discount-img-2 {
		max-width: 260px;
	}

	.discount-img-2 {
		left: auto;
		right: 14px;
	}
}

@media(max-width:1340px) {
	.header__item-link {
		font-size: 20px;
	}

	.header__right-button {
		max-width: 280px;
	}

	.header__btn {
		font-size: 18px;
	}
}

@media(max-width:1220px) {
	.header__list {
		display: none;
	}

	.header__right {
		width: unset;
	}




	.page__preview {
		padding: 175px 0px 0px 0px;
	}

	.preview__img-icon {
		max-width: 100px;
	}

	.preview__word {
		max-width: 160px;
	}

	.preview__title {
		font-size: 54px;
	}

	.preview__title-value {
		font-size: 58px;
	}

	.preview__content {
		padding: 24px 48px;
	}




	.advantages__head-text {
		font-size: 50px;
		text-align: center;
	}

	.advantages__head-img {
		margin: 0;
	}

	.advantages__head {
		padding: 24px 0;
	}






	.advantages__inner {
		padding: 100px 0px 0px 0px;
	}

	.advantages__card-icon {
		display: none;
	}

	.advantages__row-1 {
		gap: 60px;
		margin: 0px 0px 60px 0px;
		justify-content: center;
	}

	.advantages__row-2 {
		gap: 60px;
		justify-content: center;
	}

	.page__advantages {
		margin: 0px 0px 150px 0px;
	}

	.advantages__card-name {
		font-size: 34px;
	}

	.advantages__card-desc {
		font-size: 24px;
	}





	.marketing-elem-1 {
		max-width: 100px;
		left: 40px;
	}

	.marketing-elem-2 {
		max-width: 100px;
		right: 40px;
	}

	.marketing__inner {
		padding: 0 150px;
	}

	.marketing__title {
		font-size: 40px;
	}

	.marketing__subtitle {
		font-size: 30px;
	}

	.marketing__card-name-sp {
		font-size: 50px;
	}

	.marketing__card-name {
		font-size: 30px;
	}

	.marketing__card-desc {
		font-size: 20px;
	}

	.marketing__head {
		margin: 0px 0px 80px 0px;
	}

	.marketing__cards {
		gap: 50px;
	}





	.better__title {
		font-size: 40px;
		margin: 0px 0px 60px 0px;
	}

	.better__container {
		padding: 0 44px;
	}

	.better__item {
		font-size: 30px;
	}

	.better__list {
		gap: 40px;
	}






	.calc-agit__title {
		font-size: 40px;
	}






	.indicators__head-elem-2 {
		max-width: 60px;
		right: 77px;
		top: -66px;
	}

	.indicators__head-elem-1 {
		max-width: 60px;
		left: 60px;
		bottom: -60px;
	}

	.indicators__head-title {
		font-size: 40px;
	}

	.indicators__head-subtitle {
		font-size: 24px;
	}

	.indicators__inner {
		flex-direction: column;
		align-items: center;
	}

	.indicators__card {
		text-align: center;
	}





	.income-2__title {
		font-size: 40px;
	}

	.page__income-2 {
		padding: 60px 0 80px 0;
	}

	.income-2__cards {
		gap: 40px;
	}






	.info__title {
		font-size: 40px;
	}

	.info__subtitle {
		font-size: 24px;
	}

	.info__card-name {
		font-size: 28px;
	}

	.info__card-desc {
		font-size: 32px;
	}





	.discount__title {
		font-size: 40px;
	}

	.discount__subtitle {
		font-size: 26px;
	}

	.discount__btn {
		font-size: 30px;
	}





	.product__title {
		font-size: 40px;
		margin: 0px 0px 80px 0px;
	}

	.product__row-pos {
		display: none;
	}






	.page__subsidy {
		padding: 50px 0 420px 0;
	}

	.subsidy__container {
		padding: 0 46px !important;
	}

	.subsidy__title {
		font-size: 40px;
		width: 100%;
	}

	.subsidy__subtitle {
		font-size: 40px;
	}

	.subsidy__inner {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.subsidy-elem {
		max-width: 350px;
		right: auto;
		left: 50%;
		translate: -50%;
	}

	.subsidy__btn {
		font-size: 30px;
	}





	.calc__title {
		font-size: 40px;
		margin: 0px 0px 80px 0px;
	}

	.calc__box-name {
		font-size: 30px;
	}

	.calc__box-sp {
		font-size: 30px;
	}

	.calc__box-desc {
		font-size: 20px;
	}

	.calc__row-2-text {
		font-size: 24px;
		margin: 0;
	}

	.calc__row-1,
	.calc__row-2,
	.calc__row-3 {
		gap: 20px;
	}






	.plan__title {
		font-size: 34px;
	}






	.delivery__title {
		font-size: 40px;
		margin: 0px 0px 100px 0px;
	}

	.delivery__row-name {
		font-size: 28px;
	}

	.delivery__row-item {
		font-size: 24px;
	}

	.delivery__row {
		flex-direction: column;
		gap: 20px;
	}

	.progress-line {
		height: 1130px;
	}

	.delivery__row-list {
		gap: 10px;
	}

	.delivery__rows {
		gap: 60px;
		padding: 0px 0px 0px 37px;
	}

	.scroll-progress-container {
		left: -16px;
	}





	.reviews__cards {
		gap: 26px;
		margin: 0px 0px 26px 0px;
	}

	.reviews__card {
		border-radius: 40px;
	}

	.reviews__cards-row {
		gap: 26px;
		margin: 0px 0px 26px 0px;
	}

	.reviews__title {
		font-size: 40px;
	}





	.request__title {
		font-size: 40px;
	}

	.request__title {
		margin: 0px auto 80px auto;
	}

	.request-img {
		width: 50px;
	}

	.request-img-2 {
		top: -64px;
	}

	.request-img-1 {
		bottom: -56px;
	}

	.request__form-title,
	.modal-calc-agit .request__form-title {
		font-size: 30px;
	}

	.page__request {
		margin: 0px 0px 100px 0px;
	}







	.footer__item-link {
		font-size: 20px;
	}

	.footer__list {
		gap: 40px;
	}

	.footer__inner {
		gap: 60px;
	}
}

@media(max-width:1020px) {

	.reviews__cards,
	.reviews__cards-row {
		display: flex;
		flex-direction: column;

		max-width: 500px;
		margin: 0 auto 26px auto;
	}


	.request__content {
		flex-direction: column;
		max-width: 767px;
		align-items: center;
		margin: 0 auto;
	}

	.request__title {
		margin: 0px auto 40px auto;
	}

	.request-img-2 {
		right: 180px;
	}

	.request-img-1 {
		bottom: 558px;
		left: 187px;
	}

	.request__form {
		max-width: unset;
		padding: 25px 25px 45px 25px;
	}

	.request__form-submit {
		width: 100%;
	}






	.footer__inner {
		flex-direction: column;
		gap: 40px;
	}

	.footer__list {
		flex-direction: column;
	}

	.footer__logo-img {
		max-width: 264px;
		width: 100%;
	}
}

@media(max-width:960px) {
	.preview__right {
		display: none;
	}

	.preview__title {
		font-size: 42px;
	}

	.preview__title-value {
		font-size: 46px;
	}

	.preview__inner {
		bottom: 12px;
	}






	.advantages__row-1 {
		gap: 40px;
		margin: 0px 0px 40px 0px;
	}

	.advantages__row-2 {
		gap: 40px;
	}

	.advantages__card-name {
		font-size: 28px;
	}

	.advantages__card-desc {
		font-size: 20px;
	}






	.marketing__cards {
		display: flex;
		flex-direction: column;
	}

	.marketing-elem-1 {
		max-width: 70px;
		left: 38px;
	}

	.page__marketing {
		border-radius: 60px;
		padding: 60px 0;
	}

	.marketing-elem-2 {
		max-width: 70px;
		right: 27px;
	}





	.income-2__cards {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.income-2__card-name {
		display: flex;
		flex-direction: column;
	}





	.info__cards {
		display: flex;
		flex-direction: column;
	}

	.info__cards::after {
		display: none;
	}

	.info__card {
		padding: 35px 40px;
		min-height: 260px;
	}

	.info__card-1 {
		border-radius: 60px 0 60px 0
	}

	.info__cards {
		border-radius: 0;
	}

	.info__card-2 {
		border-radius: 0px 60px 0px 60px;
	}

	.info__card-3 {
		border-radius: 60px 0 60px 0
	}

	.info__card-4 {
		border-radius: 0px 60px 0px 60px;
	}




	.product__cards {
		display: flex;
		flex-direction: column;
		gap: 30px;
		max-width: 600px;
		margin: 0 auto 40px auto;
	}

	.product__container {
		padding: 0 50px !important;
	}

	.product__row {
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		max-width: 600px;
		margin: 0 auto;
		gap: 30px;
	}

	.product__card-row-arrow.svg-container {
		transform: rotate(-70deg);
		width: 110px;
		height: auto;
	}

	.product__card-row-arrow.svg-container svg {
		width: 120px;
		height: auto;
	}

	.product__card-arrow svg {
		width: 60px;
		height: auto;
	}

	.product__card-arrow {
		position: absolute;
		top: 150px;
		left: -79px;
	}

	.product__card-row-arrow {
		position: absolute;
		bottom: -70px;
		right: -86px;
	}

	.product__row-image {
		max-width: 320px;
	}

	.product__card:nth-child(2) {
		order: 1;
	}

	.product__card:nth-child(1) {
		order: 2;
	}

	.product__card:nth-child(4) {
		order: 3;
	}

	.product__card:nth-child(3) {
		order: 4;
	}

	.product__card:nth-child(6) {
		order: 5;
	}

	.product__card:nth-child(5) {
		display: none;
	}

	.product__card {
		width: 100%;
	}






	.calc__row-2-text {
		font-size: 18px;
	}

	.calc__box-name,
	.calc__box-sp {
		font-size: 20px;
	}

	.calc__box-desc {
		font-size: 14px;
	}

	.page__calc {
		padding: 40px 0 200px 0;
	}






	.plan__inner {
		flex-direction: column;
	}

	.custom-svg-wrapper {
		display: none;
	}

	.plan__title {
		font-size: 28px;
		text-align: center;
	}

	.plan__btn {
		font-size: 24px;
	}

	.btn-main::after {
		bottom: -5px;
	}

	.plan__container {
		padding: 0 30px;
	}

	.plan__inner {
		border-radius: 60px;
		padding: 25px 30px 40px 30px;
	}


}

@media(max-width:768px) {
	.header__inner {
		gap: 11px;
		padding: 8.5px 19px 8.5px 15px;
	}

	.header__logo-img {
		max-width: 138px;
	}

	.header__right-button {
		max-width: 212px;
		height: 45px;
	}

	.header__btn {
		font-size: 14px;
		height: 39px;
		box-shadow: 5px 6px 0px #000;
	}

	.header__btn:active {
		transform: translate(5px, 6px);
		box-shadow: 0px 0px 0px #000;
	}

	@media(hover:hover) {
		.header__btn:hover {
			transform: translate(5px, 6px);
			box-shadow: 0px 0px 0px #000;
		}
	}

	.header {
		padding: 17px 0px 0px 0px;
	}

	.container {
		padding: 0 18px;
	}






	.advantages__head-text {
		font-size: 32px;
	}

	.advantages__head-img {
		max-width: 300px;
	}

	.advantages__head {
		border-radius: 0 0 60px 60px;
	}






	.advantages__row-1 {
		flex-direction: column;
		align-items: center;
		gap: 30px;
		margin: 0px 0px 30px 0px;
	}

	.advantages__row-2 {
		flex-direction: column;
		align-items: center;
		padding: 0;
		gap: 30px;
	}

	.advantages__inner {
		padding: 24px 0px 0px 0px;
	}

	.page__advantages {
		margin: 0px 0px 60px 0px;
	}

	.advantages__card-desc {
		font-size: 14px;
	}

	.advantages__card {
		gap: 10px;
	}






	.marketing__inner {
		padding: 0;
	}

	.marketing__head {
		padding: 0px 0px 0px 100px;
	}

	.marketing__title {
		font-size: 25px;
	}

	.marketing__subtitle {
		font-size: 20px;
	}

	.page__marketing {
		padding: 25px 0px 40px 0px;
	}

	.marketing-elem-1 {
		top: 20px;
	}

	.marketing__card {
		max-width: 210px;
	}

	.marketing__card:nth-child(even) {
		margin: 0px 0px 0px auto;
	}

	.marketing__card-name-sp {
		font-size: 40px;
	}

	.marketing__card-name {
		font-size: 20px;
	}

	.marketing__card-desc {
		font-size: 14px;
	}

	.marketing__head {
		margin: 0px 0px 60px 0px;
	}

	.marketing__cards {
		gap: 30px;
	}

	.marketing__card:nth-child(4) {
		max-width: 240px;
		padding: 0px 30px 0px 0px;
	}

	.marketing-elem-2 {
		bottom: 44px;
	}

	.page__marketing {
		margin: 0px 0px 40px 0px;
	}






	.better__title {
		font-size: 24px;
	}

	.better__container {
		padding: 0 44px;
	}

	.better__item::before {
		width: 18px;
		height: 20px;
		min-width: 18px;
		background-size: cover;
		margin: 3px 0px 0px 0px;
	}

	.better__item {
		gap: 10px;
		font-size: 20px;
	}

	.page__better {
		margin: 0px 0px 60px 0px;
	}






	.calc-agit__title {
		font-size: 28px;
		margin: 0px 0px 20px 0px;
	}

	.page__calc-agit {
		padding: 30px 0 48px 0;
	}

	.calc-agit__btn {
		font-size: 25px;
	}

	.btn-main {
		box-shadow: 0 8px 0 #3b5aff;
	}

	.subsidy__btn {
		box-shadow: 0 8px 0 #ff9e18;
	}

	.subsidy__btn-body {
		padding: 0px 0px 8px 0px;
	}

	.plan__btn-body {
		padding: 0px 0px 8px 0px;
	}

	.delivery__btn {
		box-shadow: 0 8px 0 #ff9e18;
	}

	.request__form-submit {
		box-shadow: 0 8px 0 #ff9e18;
	}

	.request__form-submit-body {
		padding: 0px 0px 8px 0px;
	}







	.indicators__head {
		margin: 0px 0px 48px 0px;
		border-radius: 60px 60px 0 0;
		padding: 26px 0;
	}

	.indicators__cards {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	.indicators__card-name {
		font-size: 28px;
	}

	.indicators__card-desc {
		font-size: 30px;
	}

	.page__indicators {
		margin: 0px 0px 100px 0px;
	}

	.indicators__card {
		gap: 10px;
	}

	.indicators__head-title {
		font-size: 32px;
	}

	.indicators__head-subtitle {
		font-size: 16px;
	}

	.indicators__head-elem-1 {
		max-width: 32px;
		left: 40px;
		bottom: -40px;
	}

	.indicators__head-elem-2 {
		max-width: 30px;
		right: 40px;
		top: -40px;
	}





	.income-2__title {
		font-size: 32px;
		margin: 0px 0px 40px 0px;
	}

	.income-2__card-text {
		font-size: 24px;
	}

	.income-2__card-name-value {
		font-size: 30px;
	}

	.income-2__card-desc {
		font-size: 20px;
	}

	.income-2__card {
		gap: 10px;
	}

	.page__income-2 {
		padding: 34px 0 40px 0;
	}





	.info__card-name {
		font-size: 20px;
	}

	.info__card-desc {
		font-size: 25px;
	}

	.info__card {
		min-height: 164px;
		padding: 20px 40px;
	}

	.page__info {
		border-radius: 60px;
		padding: 33px 0 60px 0;
	}

	.info__title {
		font-size: 25px;
	}

	.info__subtitle {
		font-size: 14px;
	}

	.info__head {
		margin: 0px 0px 35px 0px;
	}

	.info__card-1 .info__card-name,
	.info__card-2 .info__card-name,
	.info__card-3 .info__card-name {
		margin: 0px 0px 30px 0px;
	}





	.discount__inner {
		padding: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.discount__container {
		padding: 0 30px;
	}

	.discount__title {
		font-size: 20px;
		width: 100%;
	}

	.discount__title-img {
		margin: 8px 0px 0px 0px;
		max-width: 160px;
	}

	.discount__btn {
		padding: 12px 33px;
		font-size: 25px;
	}

	.discount__subtitle {
		width: 100%;
		font-size: 20px;
	}

	.discount-img-1 {
		max-width: 160px;
		top: 14px;
	}

	.discount-img-2 {
		max-width: 200px;
	}

	.page__discount {
		margin: 0px 0px 60px 0px;
	}




	.product__title {
		font-size: 25px;
		margin: 0px 0px 40px 0px;
	}

	.product__card-name {
		font-size: 20px;
	}

	.product__card-box {
		border-radius: 50px;
		min-height: 124px;
		padding: 20px 30px;
		font-size: 16px;
	}

	.product__inner {
		max-width: 500px;
		margin: 0 auto;
	}

	.product__card-btn {
		font-size: 20px;
	}

	.product__row-image {
		max-width: 350px;
		padding: 0 25px;
	}

	.product__card-arrow {
		position: absolute;
		top: 110px;
		left: -70px;
	}






	.subsidy__title {
		font-size: 25px;
	}

	.subsidy__subtitle {
		width: 100%;
		font-size: 20px;
		margin: 0px 0px 50px 0px;
	}

	.subsidy__btn {
		font-size: 20px;
		padding: 13px 30px;
	}

	.page__subsidy {
		border-radius: 60px;
	}





	.calc__row:not(:last-child) {
		padding: 0px 0px 20px 0px;
	}

	.calc__title {
		font-size: 25px;
		margin: 0px 0px 60px 0px;
	}

	.calc__rows {
		gap: 20px;
	}




	.plan__title {
		font-size: 18px;
	}

	.plan__btn {
		font-size: 20px;
	}

	.page__plan {
		margin: -87px 0px 60px 0px;
	}

	.page__calc {
		padding: 40px 0 140px 0;
	}





	.delivery__title {
		font-size: 25px;
		margin: 0px 0px 60px 0px;
	}

	.delivery__row-name {
		font-size: 20px;
	}

	.delivery__row-item {
		font-size: 14px;
	}

	.delivery__row-item::before {
		width: 14px;
		height: 16px;
		min-width: 14px;
		background-size: cover;
		margin: 3px 0px 0px 0px;
	}

	.progress-line {
		height: 886px;
	}

	.scroll-progress-container {
		left: -12px;
		top: 5px;
	}

	.delivery__rows {
		padding: 0px 0px 0px 26px;
	}

	.delivery__rows {
		margin: 0px 0px 60px 0px;
	}

	.delivery__btn {
		font-size: 20px;
		padding: 12px 30px;
	}

	.page__delivery {
		margin: 0px 0px 60px 0px;
	}





	.reviews__title {
		font-size: 20px;
		max-width: 500px;
		margin: 0 auto 24px auto;
	}

	.page__reviews {
		padding: 40px 0 58px 0;
		border-radius: 60px;
	}

	.reviews__card {
		padding: 18px 14px;
	}

	.page__reviews {
		margin: 0px 0px 40px 0px;
	}







	.request__image,
	.request__content {
		border-radius: 80px;
	}

	.request__content {
		overflow: unset;
	}

	.request__title {
		font-size: 20px;
		margin: 0px 0px 40px 0px;
	}

	.request__title-img {
		max-width: 134px;
		margin: 4px 0px 0px 0px;
	}

	.request__container {
		padding: 0 33px !important;
	}

	.request-img {
		width: 36px;
	}

	.request-img-2 {
		top: -30px;
		right: 38px;
	}

	.request-img-1 {
		bottom: -32px;
		left: 46px;
	}

	.request-img {
		display: none;
	}

	.request__img {
		position: relative;
	}

	.request-img-mob {
		display: block;
	}

	.request__form {
		padding: 20px 40px 45px 40px;
	}

	.request__form-input {
		font-size: 14px;
		padding: 11px 20px;
	}

	.request__form-inputs {
		gap: 10px;
	}

	.request__form-inputs {
		margin: 0px 0px 20px 0px;
	}

	.request__form-submit {
		font-size: 20px;
	}

	.request__form-title,
	.modal-calc-agit .request__form-title {
		font-size: 20px;
	}

	.page__request {
		margin: 0px 0px 60px 0px;
	}







	.footer {
		padding: 33px 0px 48px 0px;
	}






	.modal-elem {
		display: none;
	}

	.modal__window {
		border-radius: 40px;
	}

	.modal__close {
		top: 10px;
		right: 30px;
		font-size: 24px;
	}

	.modal .request__form-title {
		margin: 0px 0px 30px 0px;
	}






	.calc-agit__button {
		padding: 0px 0px 8px 0px;
	}

}

@media(max-width:690px) {

	.preview__title,
	.preview__title-value {
		font-size: 28px;
	}

	.preview__content {
		padding: 10px 28px;
	}

	.preview__image {
		border-radius: 40px 40px 0 0;
	}

	.page__preview {
		padding: 114px 0px 0px 0px;
	}
}

@media(max-width:620px) {
	.advantages__head-text {
		font-size: 20px;
		text-align: start;
	}

	.advantages__head-img {
		max-width: 138px;
		margin: 5px 0px 0px 0px;
	}

	.advantages__head {
		padding: 15px 44px;
	}

	.advantages__head-container {
		padding: 0;
	}





	.better__item::before {
		width: 18px;
		height: 20px;
		min-width: 18px;
		background-size: cover;
		margin: 3px 0px 0px 0px;
	}

	.better__item {
		gap: 10px;
		font-size: 14px;
	}

	.better__list {
		gap: 24px;
	}

	.better__title {
		margin: 0px 0px 30px 0px;
		font-size: 20px;
	}





	.calc-agit__title {
		font-size: 20px;
		max-width: 338px;
		margin: 0 auto 20px auto;
	}





	.indicators__card-name {
		font-size: 20px;
	}

	.indicators__card-desc {
		font-size: 25px;
	}

	.indicators__img {
		max-width: 260px;
	}

	.page__indicators {
		margin: 0px 0px 38px 0px;
	}

	.indicators__head-title {
		font-size: 25px;
	}

	.indicators__head-subtitle {
		font-size: 14px;
	}





	.income-2__title {
		font-size: 25px;
		max-width: 340px;
		margin: 0 auto 40px auto;
	}

	.income-2__container {
		padding: 0 40px;
	}

	.income-2__card-text {
		font-size: 20px;
	}

	.income-2__card-name-value {
		font-size: 25px;
	}

	.income-2__card-desc {
		font-size: 14px;
	}





	.product__card-arrow svg {
		width: 40px;
	}

	.product__card-arrow {
		left: -44px;
		top: 130px;
	}

	.product__card-btn {
		border-radius: 50px;
	}

	.product__card-row-arrow.svg-container svg {
		width: 90px;
	}

	.product__card-row-arrow.svg-container {
		transform: rotate(-55deg);
	}

	.product__card-row-arrow {
		bottom: -46px;
		right: -70px;
	}

	.product__row-image {
		max-width: 300px;
		width: 100%;
	}





	.calc__box-name,
	.calc__box-sp {
		font-size: 14px;
	}

	.calc__row-1,
	.calc__row-2,
	.calc__row-3 {
		gap: 10px;
	}

	.calc__box-desc {
		font-size: 11px;
		white-space: wrap;
	}

	.calc__row-2-text {
		font-size: 11px;
	}

	.calc__box {
		gap: 0;
	}

	.calc__row-3 {
		flex-wrap: wrap;
	}

	.calc__row-1 {
		flex-wrap: wrap;
	}





	.request__image,
	.request__content {
		border-radius: 60px;
	}






	.footer__item-link {
		font-size: 18px;
	}







	.advantages__card-name {
		font-size: 20px;
	}

	.marketing__container {
		padding: 0 44px;
	}

	.marketing__card:nth-child(4) {
		max-width: 208px;
	}

	.marketing__head {
		padding: 0px 0px 0px 74px;
	}





	.calc-agit__btn {
		padding: 6px 24px;
	}

	.indicators__head-title {
		max-width: 320px;
		margin: 0 auto 4px auto;
	}

	.indicators__head-elem-2 {
		top: -26px;
	}
}

@media(max-width:430px) {
	.income-2__card-name-value .count-up {
		display: inline-block;
		min-width: 42px;
	}

	.income-2__card:nth-child(3) .count-up {
		min-width: 51px;
	}

	.info__card-desc-red .count-up,
	.info__card-2 .count-up {
		min-width: 48px;
		display: inline-block;
	}

	.calc__row-3 .calc__box:last-child {
		width: 100%;
	}
}

@media(max-width:420px) {

	.preview__title,
	.preview__title-value {
		font-size: 24px;
	}

	.header__logo-img {
		max-width: 90px;
	}

	.header__right-button {
		max-width: 180px;
	}

	.header__btn {
		font-size: 12px;
	}

	.page__preview {
		padding: 100px 0px 0px 0px;
	}



	.request__container {
		padding: 0 20px !important;
	}





	.product__container {
		padding: 0 30px !important;
	}





	.product__card-arrow svg {
		width: 30px;
	}

	.product__card-arrow {
		left: -26px;
		top: 152px;
	}

	.product__card-row-arrow.svg-container svg {
		width: 74px;
	}

	.product__card-row-arrow {
		right: -58px;
	}
}

@media(max-width:390px) {

	.preview__title,
	.preview__title-value {
		font-size: 20px;
	}





	.advantages__head {
		padding: 14px 24px;
		border-radius: 0 0 40px 40px;
	}





	.marketing-elem-1 {
		max-width: 60px;
		left: 20px;
	}

	.page__marketing {
		border-radius: 40px;
	}

	.marketing__head {
		padding: 0px 0px 0px 48px;
	}

	.marketing__title {
		word-break: break-word;
		font-size: 22px;
	}





	.better__container {
		padding: 0 20px;
	}





	.subsidy__container {
		padding: 0 24px !important;
	}




	.request__form {
		padding: 24px 24px 45px 24px;
	}





	.calc-agit__title {
		font-size: 18px;
	}
}