/* USER VARIABLES SECTION */

:root {
	--primary: #0BADBF;
	--primary-hover: hsl(186, 89%, 45%);
	--secondary: #4AB01B;
	--secondary-hover: hsl(101, 73%, 45%);
	--text: #000;
	--red: #CD0505;
	--regular-text: 16px;
	--lineheight: 1.5;
	--userfont: Intro-Regular, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
/* .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; }
.row, .row > * { --bs-gutter-x: 1.25rem; } */

/* FONTS LOAD SECTION */

/* @font-face { src: url("../fonts/roboto-regular-webfont.woff2") format("woff2"); font-family: "roboto-st"; font-weight: 400; font-style: normal; }
@font-face { src: url("../fonts/roboto-italic-webfont.woff2") format("woff2"); font-family: "roboto-st"; font-weight: 400; font-style: italic; }
@font-face { src: url("../fonts/roboto-bold-webfont.woff2") format("woff2"); font-family: "roboto-st"; font-weight: 700; font-style: normal; }
@font-face { src: url("../fonts/roboto-bolditalic-webfont.woff2") format("woff2"); font-family: "roboto-st"; font-weight: 700; font-style: italic; } */

@font-face { src: url("../fonts/intro-regular.woff2") format("woff2"); font-family: "Intro-Regular"; font-weight: 400; font-style: normal; }
@font-face { src: url("../fonts/intro.woff2") format("woff2"); font-family: "Intro"; font-weight: 400; font-style: normal; }
@font-face { src: url("../fonts/intro-black.woff2") format("woff2"); font-family: "Intro-Black"; font-weight: 400; font-style: normal; }

/* GENERAL CSS SETTINGS */

::placeholder { color: #666; }
::selection { background-color: var(--primary); color: #fff; }
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;

	background-color: #F7F5F9;
}

/* utilities::begin */
/*
.img-fluid {
    max-width: 100%;
    height: auto;
}
.text-center {
	text-align: center !important;
}
.h-100 {
    height: 100% !important;
}
.position-relative {
    position: relative!important;
}
.text-nowrap {
    white-space: nowrap!important;
}
*/
/* utilities::end */

/* USER STYLES */
/* global::begin */
/* footer-bottom::begin */
html, body {
	height: 100%;
}
body {
    height: 100%;
    display: flex;
    flex-direction: column;
}
main {
	flex-grow: 1;
}
/* footer-bottom::end */

.title {
	font-family: "Intro";
	/* font-size: 44px; */
	font-size: clamp(32px, 3.7vw, 44px);
	line-height: 118%;
	/* margin-bottom: 40px; */
	margin-bottom: clamp(16px, 3.7vw, 40px);
}
.title2 {
	font-family: "Intro";
	/* font-size: 56px; */
	font-size: clamp(32px, 3.7vw, 56px);
	line-height: 114%;
	/* margin-bottom: 32px; */
	margin-bottom: clamp(16px, 3.7vw, 40px);
}
/* btn::begin */
.btn {
	display: inline-block;
	padding: 16px 32px;
	color: #fff;
	border: none;
	border-radius: 16px;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.btn.btn-primary {
	background: var(--primary);
	transition: background-color 0.2s ease-in-out;
}
.btn.btn-primary:hover {
	background: var(--primary-hover);
}
.btn.btn-secondary {
	background: var(--secondary);
	transition: background-color 0.2s ease-in-out;
}
.btn.btn-secondary:hover {
	background: var(--secondary-hover);
}
/* btn::end */
/* grecaptcha::begin */
.grecaptcha-badge {
	opacity: 0;
	pointer-events: none;
}
/* grecaptcha::end */
/* gutenberg-video::begin */
/* gutenberg-video::end */
figure.is-type-video {
	text-align: center;
}
/* global::end */

/* header::begin */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	/* padding: 0 40px; */
	z-index: 2;
	max-width: 1903px;
	margin: 0 auto;
}
.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	padding: 15px 16px;
	/* border-radius: 8px; */
	box-shadow: 0 14px 44px 0 rgba(0, 0, 0, 0.09);
}
.logo {
	max-width: clamp(106px, 10.5vw, 167px);
	height: auto;
}
/* header::end */

/* menu::begin */
.menu {
}
.menu__list {
	margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
	/* justify-content: center; */
	/* gap: 20px; */
	gap: clamp(16px, 1.4vw, 20px);
}
.menu__item:hover .menu__link{
	border-color: var(--red);
}
.menu__link {
	/* font-size: clamp(13.5px, 1.3vw, 16px); */
	font-size: clamp(12px, 1.2vw, 16px);
	text-decoration: none;
    color: var(--text);
	line-height: 140%;

	padding-bottom: 6px;
	border-bottom: 2px solid transparent;
	transition: border-color .2s ease-in-out;
}
/* menu::end */

/* contacts::begin */
.contacts {
	display: flex;
	/* justify-content: flex-end; */
	gap: 16px;
}
.contacts__item {
	/* font-size: clamp(13.5px, 1.3vw, 16px); */
	font-size: clamp(12px, 1.2vw, 16px);
	border: 1px solid rgba(0, 0, 0, 0.1);
	/* padding: 7px 16px; */
	padding: 7px clamp(12px, 1.2vw, 16px);
	border-radius: 8px;
	line-height: 140%;
	text-decoration: none;
}
.contacts__item--mail {
	color: var(--primary);
}
.contacts__item--phone {
	color: var(--text);
}
/* contacts::end */

/* hamburger::begin */
.hamburger {
	/* padding: 13px 12px; */
	padding: 6px 5px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	background-color: var(--accent);
	border-radius: 25px;
	line-height: 0;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: #CD0505;
}

.hamburger-box {
	width: 24px;
	height: 22px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: 1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	width: 24px;
	height: 2px;
	background-color: #CD0505;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
	content: "";
	display: block;
}
.hamburger-inner::before {
	top: -8px;
}
.hamburger-inner::after {
	bottom: -8px;
}

/*
* Slider
*/
.hamburger--slider .hamburger-inner {
	top: 1px;
}
.hamburger--slider .hamburger-inner::before {
	top: 8px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
	top: 16px;
}
.hamburger--slider.is-active .hamburger-inner {
	transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
	transform: rotate(-45deg) translate3d(-3.4285714286px, -6px, 0);
	opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
	transform: translate3d(0, -16px, 0) rotate(-90deg);
}
/* hamburger::end */

/* mobile-menu::begin */
.mobile-menu {
	position: fixed;
	top: 64px;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	visibility: hidden;
    opacity: 0;
	transition: visibility .25s ease-in-out,opacity .25s ease-in-out;
}
.mobile-menu.is-active {
    visibility: visible;
    opacity: 1;
}
.mobile-menu__wrap {
	margin-top: 40px;
	margin-bottom: 40px;
}
.mobile-menu__list {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}
/* .mobile-menu__item {
} */
.mobile-menu__item:not(:last-child) {
	margin-bottom: 32px;
}
.mobile-menu__link {
	color: var(--text);
	text-decoration: none;
}

.mobile-menu__contacts-list {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}
/* .mobile-menu__contacts-item {
} */
.mobile-menu__contacts-item:not(:last-child) {
	margin-bottom: 8px;
}
.mobile-menu__phone {
	color: var(--text);
	text-decoration: none;
	font-family: "Intro-Black";
}
.mobile-menu__mail {
	color: var(--primary);
	text-decoration: none;
	font-family: "Intro-Black";
}
/* mobile-menu::end */

/* hero::begin */
.hero {
	height: 100vh;
	padding-top: 64px;
	position: relative;
	overflow-x: clip;
}
.hero__img {
	max-height: 260px;
}
.hero__text-before {
	font-size: 24px;
	line-height: 133%;
	margin-bottom: 80px;
}
.hero__title {
	font-family: "Intro";
	/* font-size: 56px; */
	/* font-size: clamp(32px, 3.7vw, 56px); */
	font-size: clamp(24px, 6.4vw, 56px);
	line-height: 114%;
	margin-bottom: clamp(16px, 3.7vw, 32px);
}
.hero__desc {
	margin: 0;
	/* font-size: clamp(14px, 3.7vw, 16px); */
	font-size: clamp(12px, 3.2vw, 16px);
	line-height: clamp(15px, 4vw, 24px);
}
.hero__pdf {
	color: var(--primary);
	font-size: 24px;
	text-decoration: none;
	display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}
.hero__bg {
    position: absolute;
    top: -850px;
    left: -10%;
    z-index: -1;
}
/* hero::end */

/* control::begin */
.control {
	padding-top: clamp(75px, 16vw, 150px);
	padding-bottom: clamp(75px, 16vw, 150px);
	position: relative;
	overflow-x: clip;
}
.control__img {
	display: block;
    margin: 0 auto;
	margin-bottom: 16px;
}
.control__item {
	/* display: flex; */
	gap: 25px;
	height: 100%;
	background: #d8fbff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 14px 44px 0 rgba(0, 0, 0, 0.09);
}
.control__item-circle {
	/* height: 195px; */
	/* aspect-ratio: 1; */
	width: 128px;
	height: 128px;
	background-color: #fff;
	border-radius: 50%;
	padding: 20px;
	flex-shrink: 0;
}
.control__item-img {
	width: 100%;
    height: 100%;
    object-fit: contain;
}
.control__item-wrap {
}
.control__item-title {
	font-family: "Intro-Black";
	font-size: 24px;
	line-height: 133%;

	margin-bottom: 14px;
}
.control__item-desc {
	font-size: 16px;
	line-height: 140%;
	margin-bottom: 0;
}
.control__bg {
	position: absolute;
	top: -3%;
    left: 50%;
    transform: translateX(-50%);
	z-index: -1;
	height: 115%;
}
/* control::end */

/* benefit::begin */
.benefit {
	/* padding-top: 150px; */
	padding-top: clamp(75px, 16vw, 150px);
	padding-bottom: 75px;
	overflow-x: clip;
}
.benefit__item {
	background: #fff;
	padding: 32px;
	border-radius: 20px;
	box-shadow: 0 14px 44px 0 rgba(0, 0, 0, 0.09);
	height: 100%;
}
.benefit__desc *:last-child {
	margin-bottom: 0;
}
.benefit__btn-wrap {
	margin-top: 32px;
	text-align: center;
}
/* benefit::end */

/* areas::begin */
.areas {
	padding-top: 75px;
	padding-bottom: 75px;
	overflow: clip;
}
@media (min-width: 1200px) {
	.areas .container{
		padding: 0 70px;
	}
}
@media (min-width: 1500px) {
	.areas .container {
		padding: 0 0.75rem;
	}
}
.areas__list {
	overflow: visible;
}
.areas__list .swiper-slide {
	height: auto;
}
.areas__list .swiper-button-prev::after, .areas__list .swiper-button-next::after {
	display: none;
}
.areas__list .swiper-button-prev img, .areas__list .swiper-button-next img {
	opacity: 0.6;
	transition: opacity .2s ease-in-out;
}
.areas__list .swiper-button-prev:hover img, .areas__list .swiper-button-next:hover img {
	opacity: 1;
}
.areas__list .swiper-button-prev {
	left: -65px;
}
.areas__list .swiper-button-next {
	right: -65px;
}
.areas__list .swiper-button-next img {
	transform: rotateZ(180deg);
}
.areas__item {
	background-color: #F7F5F9;
	height: 100%;
	display: flex;
}
.areas__list .swiper-slide:not(:last-child){
	margin-bottom: 48px;
}
/* swiper-pagination::begin */
.areas__list-pagination-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 13.5px;
}
.areas__list-pagination {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: auto !important;
}
.areas__list-bullet {
	border-radius: 0;
	width: 17.5px;
	height: 2px;
	background-color: var(--primary);
	margin: 0 !important;
}
.areas__list-bullet.swiper-pagination-bullet {
	opacity: 0.3;
}
.areas__list-bullet.swiper-pagination-bullet-active {
	opacity: 1;
}
.areas__list-first-num, .areas__list-last-num {
	font-family: "Intro";
	font-size: 24px;
	line-height: 100%;
	color: var(--primary);
	opacity: 0.3;
}
.areas__list-first-num.active, .areas__list-last-num.active {
	opacity: 1;
}
/* swiper-pagination::end */
.areas__title {
	font-family: "Intro";
	/* font-size: 36px; */
	/* font-size: 30px; */
	font-size: clamp(16px, 3.7vw, 30px);
	line-height: 122%;
	margin-bottom: 32px;
}
.areas__desc {
}
.areas__desc p{
	font-size: 14px;
	margin-bottom: 15px;
}
.areas__desc p b{
	font-family: "Intro-Black";
}
.areas__desc *:last-child {
	margin-bottom: 0;
}
/* .areas__img { */
	/* max-width: 536px; */
	/* max-width: 75%; */
/* } */
/* areas::end */

/* buy::begin */
.buy {
	padding-top: 75px;
	/* padding-bottom: 150px; */
	/* padding-bottom: clamp(75px, 16vw, 150px); */
	padding-bottom: 75px;
}
.buy__item {
	padding: 32px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 14px 44px 0 rgba(0, 0, 0, 0.09);
	height: 100%;
}
.buy__list {
	padding: 0;
	margin: 0;
	list-style: none;
}
.buy__list-item:not(:last-child) {
	margin-bottom: 16px;
}
.buy__city {
	font-family: "Intro-Black";
	font-size: 24px;
	line-height: 100%;
}
.buy__phone {
	color: var(--text);
	text-decoration: none;
}
.buy__mail {
	color: rgba(0, 0, 0, 0.7);
	text-decoration: none;
}
/* buy::end */

/* news::begin */
.news {
	padding-top: 75px;
	padding-bottom: 50px;
	overflow: clip;
}
.news__list {
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.06) 100%);
	box-shadow: 0px 14px 44px 0px rgba(0, 0, 0, 0.09);
}
.news__list .swiper-slide {
	height: auto;
}
.news__item {
	height: 100%;
	padding: 32px;
	background: #FFF;
	border-radius: 20px;
	display: flex;
    flex-direction: column;
	cursor: pointer;
}
.news__item:hover .news__title {
	text-decoration: underline;
}
.news__title {
	color: var(--red);
	font-size: 24px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 16px;
}
.news__date {
	color: rgba(0, 0, 0, 0.50);
	line-height: 24px;
	margin-top: auto;
}
.news__preloader {
	position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
	border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
	visibility: hidden;
	opacity: 0;
	transition: visibility .25s ease-in-out,opacity .25s ease-in-out;
}
.news__preloader.active {
	visibility: visible;
	opacity: 1;
}
.news__preloader .spinner-border {
	color: var(--red);
}

/* arrows::begin */
.news .swiper-button-prev::after, .news .swiper-button-next::after {
	display: none;
}
.news .swiper-button-prev, .news .swiper-button-next {
	width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    background: #F7F5F9;
    box-shadow: 0px 2px 9px 0px rgba(45, 54, 65, 0.05);
}
.news .swiper-button-next img {
    transform: rotateZ(180deg);
}
.news .swiper-button-prev {
	left: -24px;
}
.news .swiper-button-next {
	right: -24px;
}
/* arrows::end */

/* news-pagination::begin */
.news-pagination-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 13.5px;
}
.news-pagination {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: auto !important;
}
.news-bullet {
	border-radius: 0;
	width: 17.5px;
	height: 2px;
	background-color: var(--primary);
	margin: 0 !important;
}
.news-bullet.swiper-pagination-bullet {
	opacity: 0.3;
}
.news-bullet.swiper-pagination-bullet-active {
	opacity: 1;
}
.news-first-num, .news-last-num {
	font-family: "Intro";
	font-size: 24px;
	line-height: 100%;
	color: var(--primary);
	opacity: 0.3;
}
.news-first-num.active, .news-last-num.active {
	opacity: 1;
}
/* news-pagination::end */

/* news__item modal::begin */
.modal-title {
	margin-bottom: 8px;
}
.modal-date {
	color: rgba(0, 0, 0, 0.50);
}
.modal-img {
	display: block;
    margin: 0 auto 32px;
    /* object-fit: cover; */
    /* width: 100%; */
    /* height: 100%; */
    /* max-width: 500px; */
    /* max-height: 338px; */
    /* aspect-ratio: 16 / 9; */
	max-width: 100%;
	height: auto;
}
.modal-content a {
	color: var(--primary);
	text-decoration: none;
}
.modal-content a:hover {
	text-decoration: underline;
}
/* news__item modal::end */
/* news::end */

/* feedback::begin */
.feedback {
	/* padding-top: 300px; */
	/* padding-top: clamp(150px, 16vw, 300px); */
	padding-top: clamp(75px, 16vw, 150px);
	/* padding-bottom: 300px; */
	padding-bottom: clamp(150px, 16vw, 300px);
	/* background: url(../img/feedback-bg.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center 48px; */
    position: relative;
    overflow: clip;
}
.feedback__title {
	color: #fff;
}
.feedback__bg {
    position: absolute;
    left: 50%;
    transform: translateX(-48%);
    /* top: 0; */
    top: -13%;
    z-index: -1;
    /* height: 100%; */
    height: 120%;
}
/* feedback::end */

/* form::begin */
.form {
	background: #f7f5f9;
	/* padding: 32px 64px; */
	padding: 32px clamp(32px, 5vw, 64px);
	border-radius: 25px;
	box-shadow: 0 14px 44px 0 rgba(0, 0, 0, 0.09);
}
.form__title {
	font-family: "Intro-Black";
	font-size: 24px;
	line-height: 133%;
	color: var(--secondary);
	margin-bottom: 32px;
}
.form__info-list {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 32px;
}
.form__info-item {
    display: flex;
    align-items: baseline;
	margin-bottom: 16px;
}
.form__info-item:last-child {
	margin-bottom: 0;
}
.form__info-circle {
	background: #4ab01b;
	border-radius: 100%;
	width: 32px;
	height: 32px;
	color: #fff;
	display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
	margin-right: 8px;
}
.form__content {
	transition: opacity .2s ease,visibility .2s ease;
}
.form__input-wrap {
	--bs-gutter-x: 20px;
	--bs-gutter-y: 32px;
	margin-bottom: 32px;
}
.form__input {
	background: #fff;
	width: 100%;
	padding: 16px 20px;
	border-radius: 20px;
	border: 3px solid #f6f4f8;
	box-shadow: 0 14px 44px 0 rgba(0, 0, 0, 0.09);
	transition: border-color .2s ease-in-out;
}
.form__input:focus {
	border-color: var(--secondary);
}
.form__input::placeholder {
	color: rgba(0, 0, 0, 0.8);
}
.form__required-fields {
	color: rgba(0, 0, 0, 0.8);
	/* margin-left: 20px; */
	margin-bottom: 32px;
}
.form__btn-agree {
	/* display: flex;
	align-items: center; */
	gap: 15px;
}
.form__agree {
	color: rgba(0, 0, 0, 0.8);
	margin-bottom: 0;
}
.form__agree a {
	color: #8EE167;
	text-decoration: underline;
}


.form__sucsesful-submit {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease,visibility .2s ease;
}
.form__sucsesful-title {
	font-family: "Intro";
	font-size: 44px;
	line-height: 118%;
	text-align: center;
	color: var(--secondary);
	margin-bottom: 32px;
}
.form__sucsesful-desc {
	text-align: center;
	color: rgba(0, 0, 0, 0.8);
}


.wpcf7-form {
	position: relative;
}
.wpcf7-not-valid {
	border-color: #dc3232;
}
.wpcf7-not-valid-tip {
    position: absolute;
    top: calc(100% + 24px);
    left: 0;
    font-size: 12px;
}
.wpcf7-spinner {
	display: none;
}

.wpcf7-form.sent .form__content {
	opacity: 0;
	visibility: hidden;
}
.wpcf7-form.sent .form__sucsesful-submit{
	opacity: 1;
	visibility: visible;
}
/* form::end */

/* breadcrumb::begin */
.breadcrumb {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 16px;
}
.breadcrumb__item {
	/* font-size: 24px; */
	font-size: clamp(16px, 3.7vw, 24px);
	line-height: 133%;
	color: rgba(0, 0, 0, 0.4);
	display: flex;
	gap: 7px;
}
.breadcrumb__item+.breadcrumb__item:before {
	content: '|';
	color: rgba(0, 0, 0, 0.1);
}
.breadcrumb__link {
	color: var(--text);
	text-decoration: none;
}
/* breadcrumb::end */

/* sc-page::begin */
.sc-page {
	height: 100%;
	/* padding-top: calc(80px + 16px + 48px); */
	padding-top: calc(64px + 48px);
	padding-bottom: 48px;
	position: relative;
	overflow: clip;
}
.sc-page__title {
	font-family: "Intro";
	/* font-size: 56px; */
	font-size: clamp(24px, 3.7vw, 56px);
	line-height: 114%;
	margin-bottom: 32px;
}
.sc-page__date {
	margin-bottom: 32px;
}
.sc-page__content h2{
	font-family: "Intro";
	/* font-size: 44px; */
	font-size: clamp(20px, 3.7vw, 44px);
	line-height: 118%;
	margin-bottom: 16px;
}
.sc-page__content a{
	color: #40c1cf;
}
.sc-page__bg {
	position: absolute;
	top: -850px;
	left: -10%;
	z-index: -1;
}
/* sc-page::end */

/* footer::begin */
.footer {
	/* padding: 0 40px 45px; */
	padding: 0 clamp(15px, 3.7vw, 40px) clamp(20px, 3.7vw, 45px);;
	max-width: 1903px;
	width: 100%;
	margin: 0 auto;
}
.footer__main {
	border-top: 2px solid rgba(0, 0, 0, 0.1);
	padding-top: 20px;
}
.footer__info-list {
	gap: 16px;
}
.footer__info-item {
	display: flex;
	align-items: center;
}
.footer__info-item a {
	font-size: clamp(12px, 1.3vw, 16px);
	display: flex;
	align-items: center;
}
.footer__info-item a + a::before {
	content: '';
	height: 20px;
	width: 1px;
	background-color: #000;
	/* margin: 0 15px; */
	margin: 0 clamp(7px, 0.9vw, 15px);
}
.footer__policy {
	color: rgba(0, 0, 0, 0.8);
}
.footer__cookie {
	color: rgba(0, 0, 0, 0.8);
}
.footer__email {
	color: rgba(0, 0, 0, 0.8);
	text-decoration: none;
}
.footer__phone {
	color: rgba(0, 0, 0, 0.8);
	text-decoration: none;
}
.footer__developer {
	color: rgba(0, 0, 0, 0.7);
	text-decoration: none;
}

.footer__bottom {
	/* text-align: right; */
}
.footer__copy {
	font-size: clamp(12px, 1.3vw, 16px);
	color: var(--red);
	text-decoration: none;
}
/* footer::end */

/* scroll-to-top::begin */
#scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: -120px;
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	cursor: pointer;
	transition: right 0.25s ease-in-out;
}
#scroll-to-top.is-active {
	right: 30px;
}
/* scroll-to-top::end */