:root {
    --c-font: #000;
    --c-grey: #bbbbbb;
    --c-blue: #01657b;
}
@font-face {
    font-family: HelveticaNeueCyr;
    src: url(../fonts/HelveticaNeueCyr-Light.ttf) format("truetype");
    font-weight: 300;
}
@font-face {
    font-family: Dopis;
    src: url(../fonts/Dopis-Regular.ttf) format("truetype");
    font-weight: 400;
}
@font-face {
    font-family: Dopis;
    src: url(../fonts/Dopis-Bold.ttf) format("truetype");
    font-weight: 700;
}
@font-face {
    font-family: PTSans;
    src: url(../fonts/PTSans-Regular.ttf) format("truetype");
    font-weight: 400;
}
@font-face {
    font-family: PTSans;
    src: url(../fonts/PTSans-Bold.ttf) format("truetype");
    font-weight: 700;
}
.section-title {
    padding-top: 80px;
    padding-bottom: 45px;
    color: #1f1f1f;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
}
@media (max-width: 800px) {
    .section-title {
        font-size: 22px;
        padding-top: 50px;
        padding-bottom: 30px;
    }
}
._locked {
    overflow: hidden;
}
.bolder {
    font-weight: bolder;
}
.hidden {
    display: none !important;
}
.red {
    color: red;
}
.yellow {
    color: #f9cc49;
}
.unvis {
    opacity: 0;
    visibility: hidden;
}
.calc__range-slider {
    height: 2px;
}
.noUi-marker {
    display: none;
}
.noUi-target {
    background: #d9d9d9;
    border-radius: 4px;
    border: none;
    box-shadow: none;
}
.noUi-connect {
    background: var(--c-blue);
}
.noUi-handle {
    width: 28px !important;
    height: 28px !important;
    top: -14px !important;
    border-radius: 14px;
    background: var(--c-blue);
    border: none;
    box-shadow: none;
}
@media (max-width: 1000px) {
    .noUi-handle {
        width: 18px !important;
        height: 18px !important;
        top: -9px !important;
    }
}
.noUi-handle:before {
    display: none !important;
}
.noUi-handle:after {
    display: none !important;
}
.noUi-tooltip {
    bottom: -125% !important;
    background: #ededed !important;
    border: none !important;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    width: 100px;
}
@media (max-width: 1000px) {
    .noUi-tooltip {
        bottom: -40px !important;
    }
}
.noUi-value {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}
.calc__range-slider .noUi-pips .noUi-value {
    padding-left: 40px;
}
.calc__range-slider .noUi-pips .noUi-value:last-child {
    padding-right: 40px !important;
    padding-left: 0 !important;
    transition: 0.3s;
}
.policy__checkbox {
    display: flex;
    margin-right: auto;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 57px;
}
.policy__checkbox-input {
    display: none;
}
.policy__checkbox-input:checked ~ .policy__checkbox-square .policy__checkbox-checkmark {
    display: block;
}
.policy__checkbox-checkmark {
    position: absolute;
    width: 10px;
    height: 20px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    display: none;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
}
@media (max-width: 800px) {
    .policy__checkbox-checkmark {
        width: 8px;
        height: 14px;
        border-top: 2px solid #fff;
        border-left: 2px solid #fff;
    }
}
.policy__checkbox-square {
    width: 27px;
    height: 27px;
    background: var(--c-blue);
    position: relative;
    flex-shrink: 0;
}
@media (max-width: 800px) {
    .policy__checkbox-square {
        width: 24px;
        height: 24px;
    }
}
.policy__checkbox-text {
    color: #000000b3;
    font-size: 12px;
    font-weight: 400;
    max-width: 300px;
}
.policy-err {
    position: absolute;
    top: 40px;
    width: 100%;
}
@media (max-width: 800px) {
    .policy-err span {
        font-size: 12px;
    }
}
.inp {
    border: 1px solid var(--c-blue);
    width: 100%;
    height: 40px;
    padding: 10px 15px;
    background: #ffffff;
}
@media (max-width: 800px) {
    .inp {
        padding: 10px 15px;
        height: 38px;
    }
}
.input-wrap {
    position: relative;
    margin-bottom: 20px;
    display: block;
}
@media (max-width: 800px) {
    .input-wrap {
        margin-bottom: 15px;
    }
}
input[type="text"]::placeholder {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}
input[type="text"] {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}
.noclick {
    pointer-events: none !important;
}
._error-txt {
    color: red;
    font-size: 14px;
    position: absolute;
    left: 5px;
    top: -20px;
}

@media (max-width: 800px) {
    ._error-txt {
        font-size: 10px;
        top: -12px;
    }
}

.policy-err ._error-txt {
    top: -5px;
}
._error-input {
    border-color: red;
}
.spoiler_hidden {
    display: none !important;
}
* {
    padding: 0;
    margin: 0;
    border: 0;
}
*,
*:before,
*:after {
    box-sizing: border-box;
}
*:focus,
*:active {
    outline: none;
}
body {
    font-family: Dopis, Helvetica, Arial, sans-serif;
    background: #ededed;
    position: relative;
    font-weight: 400;
}
._lock {
    overflow: hidden;
}
.container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    min-width: 360px;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}
img {
    max-width: 100%;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
    cursor: pointer;
}
a:hover {
    color: #6c7bad;
}
a:active {
    color: #3d5294;
}
.wrapper {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 100px;
    width: 100%;
}
@media (max-width: 1100px) {
    .wrapper {
        padding: 0 50px;
    }
}
@media (max-width: 850px) {
    .wrapper {
        padding: 0 20px;
    }
}
.logos-slider .swiper-free-mode > .swiper-wrapper {
    transition-timing-function: linear;
}
.btn {
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    text-align: center;
    position: relative;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    padding: 10px 30px;
    flex-shrink: 0;
    line-height: 100%;
    height: 38px;
    border: 1px solid transparent;
}
@media (max-width: 800px) {
    .btn {
        font-size: 12px;
    }
}
.btn.btn--white {
    background: #fff;
    color: var(--c-font);
    border: 1px solid var(--c-blue);
}
.btn.btn--white:hover {
    background: #d8d8d8;
}
.btn.btn--blue {
    background: var(--c-blue);
    color: #fff;
}
.btn.btn--blue:hover {
    background: #a4b7cc;
}
.btn.btn--link {
    font-weight: 700;
    text-decoration-line: underline;
}
.modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #00000080;
    z-index: 10000;
    transition: 0.2s;
    padding: 0 20px;
}
@media (max-width: 800px) {
    .modal {
        padding: 0;
    }
}
.modal__content {
    position: relative;
    border: 2px solid var(--c-blue);
    background: #fff;
    padding: 0;
    width: fit-content;
    min-width: 320px;
    min-height: 480px;
    max-width: 800px;
    margin: 20px auto;
    top: 10%;
    color: #1e2021;
    overflow: hidden;
}
@media (max-width: 800px) {
    .modal__content {
        min-height: auto;
        border-radius: 0;
        width: 100%;
        max-width: 350px;
        top: 20%;
    }
}
.modal.opened {
    opacity: 1;
    visibility: visible;
}
.modal__close {
    position: absolute;
    top: 35px;
    right: 35px;
    color: var(--c-gold);
    cursor: pointer;
}
@media (max-width: 800px) {
    .modal__close {
        top: 12px;
        right: 25px;
    }
    .modal__close svg {
        width: 28px;
        height: 28px;
    }
}
.modal__content-inner {
    padding: 80px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
@media (max-width: 1000px) {
    .modal__content-inner {
        padding: 50px 60px;
    }
}
@media (max-width: 1000px) {
    .modal__content-inner {
        padding: 50px 20px;
    }
}
.modal__header {
    color: #1f1f1f;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    padding-bottom: 45px;
    max-width: 370px;
    margin: 0 auto;
}
@media (max-width: 800px) {
    .modal__header {
        font-size: 22px;
        text-align: left;
        padding-bottom: 30px;
        margin: 0;
    }
}
.modal__submit {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    height: 40px;
    width: 100%;
}
.thanks__modal .section-subtitle {
    text-align: center;
}
.overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    background: #000;
    opacity: 0;
    visibility: hidden;
}
.overlay-active {
    opacity: 0.2 !important;
    visibility: visible !important;
}
.mob-menu {
    width: 100%;
    height: 100%;
    background: #272727;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 30px 20px;
    min-width: 375px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    color: #fff;
}
.mob-menu__inner {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}
.mob-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}
.mob-menu__close:hover {
    color: var(--c-blue);
}
.mob-menu__header {
    padding-bottom: 20px;
    border-bottom: 1px solid #4d4d4d;
    margin-bottom: 20px;
}
.mob-menu__logo {
    width: 100px;
}
.mob-menu__list ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mob-menu__list ul a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}
.mob-menu__list ul a:hover {
    color: var(--c-blue);
}
.mob-menu__bottom .footer__row {
    padding-bottom: 38px;
}
.mob-menu.active-menu {
    opacity: 1;
    visibility: visible;
}
.mob-menu .footer__text,
.mob-menu .footer__person-name,
.mob-menu .footer__person-text {
    color: #fff;
}
header {
    background: #000;
    display: flex;
    padding: 16px 0;
    width: 100%;
    color: #bfbfbf;
    font-size: 14px;
    line-height: 120%;
    position: fixed;
    z-index: 100;
    top: 0;
    min-width: 360px;
    transition: 0.1s;
}

@media (max-width: 1300px) {
    header {
        font-size: 13px;
    }
}

@media (max-width: 1150px) {
    header {
        font-size: 12px;
    }
}

@media (max-width: 800px) {
    header {
        height: 50px;
        padding: 0;
    }
}
header.fixedHeader {
    padding: 12px 0;
}
header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header nav {
    max-width: 650px;
    margin-right: auto;
    margin-left: 25px;
}
header nav ul {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
@media (max-width: 1000px) {
    header nav {
        display: none;
    }
}
header .header__logo {
    max-width: 132px;
}
header .header__contacts {
    display: flex;
    align-items: center;
    gap: 15px;
}
header .header__contacts a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

header .header__btn {
    height: 30px;
}

.link-wrap {
    transition: .2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.link-wrap:hover {
    color: #01657b;
}


@media (max-width: 1000px) {
    header .header__contacts {
        display: none;
    }
}
@media (max-width: 1450px) {
    header .header__name {
        display: none;
    }
}
header .mob-header {
    display: none;
    gap: 10px;
}
@media (max-width: 1000px) {
    header .mob-header {
        display: flex;
    }
}
header .mob-header .burger {
    cursor: pointer;
}
.mob-header__name {
    position: absolute;
    top: 80px;
    left: 100px;
    color: #d8d8d8;
    font-size: 10px;
    font-weight: 700;
    line-height: 120%;
    max-width: 170px;
    display: none;
    z-index: 10;
}
@media (max-width: 1450px) {
    .mob-header__name {
        /* display: block; */
    }
}
@media (max-width: 1100px) {
    .mob-header__name {
        left: 50px;
    }
}
@media (max-width: 850px) {
    .mob-header__name {
        left: 20px;
        top: 30px;
    }
}
/*.main-screen {*/
/*    display: flex;*/
/*    padding-top: 30px;*/
/*    justify-content: flex-start;*/
/*    background-image: url(../images/main/desk_banner-new.jpg);*/
/*    background-size: cover;*/
/*    background-position: center center;*/
/*    color: #fff;*/
/*    min-height: 800px;*/
/*    position: relative;*/
/*}*/

/*@media (max-width: 850px) {*/
/*    .main-screen {*/
/*        background-image: url(../images/main/mob_banner.jpg);*/
/*        !*background-position: center center;*!*/
/*        !*background-size: contain;*!*/
/*        background-repeat: no-repeat;*/
/*        background-color: #000;*/
/*    }*/
/*}*/

.main-screen::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.3); 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 1150px) {
    .main-screen {
        /* background-position: 70% center; */
    }

    .main-screen::before {
        /* background-color: rgba(0, 0, 0, 0.7);  */
    }
}

.main-screen__inner {
    position: relative;
    z-index: 10;
}

.main-screen__slogan {
    padding-top: 100px;
    position: relative;
    z-index: 10;
}

@media (max-width: 1450px) {
    .main-screen__slogan {
        padding-top: 10px;
    }
}
.main-screen__slogan h4 {
    color: #bfbfbf;
    font-size: 10px;
    font-weight: 700;
    line-height: 120%;
    padding-bottom: 10px;
}
@media (max-width: 1450px) {
    .main-screen__slogan h4 {
        /* opacity: 0; */
    }
}
.main-screen__slogan h1 {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    padding-bottom: 25px;
}
@media (max-width: 800px) {
    .main-screen__slogan h1 {
        font-size: 28px;
    }
}
.main-screen__btns {
    display: flex;
    margin-bottom: 150px;
}
@media (max-width: 800px) {
    .main-screen__btns {
        margin-bottom: 35px;
    }
}
.main-screen__adv {
    display: flex;
    gap: 20px;
    padding-bottom: 125px;
    position: relative;
}
@media (max-width: 800px) {
    .main-screen__adv {
        padding-bottom: 265px;
    }
}
.main-screen__adv .footnote {
    position: absolute;
    bottom: 55px;
    right: 0;
}
@media (max-width: 800px) {
    .main-screen__adv .footnote {
        right: auto;
        left: 0;
        font-size: 10px;
        top: 70px;
    }
}
.main-screen__adv-item-header {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 10px;
}
@media (max-width: 800px) {
    .main-screen__adv-item-header {
        font-size: 24px;
    }
}
.main-screen__adv-item-header .smaller {
    font-size: 24px;
}
@media (max-width: 800px) {
    .main-screen__adv-item-header .smaller {
        font-size: 12px;
    }
}
.main-screen__adv-item-text {
    color: #ffffffb3;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}
@media (max-width: 800px) {
    .main-screen__adv-item-text {
        font-size: 12px;
    }
}
.main-screen__dealer {
    text-align: center;
    border-top: 1px #8a8a8a solid;
	margin-top: 70px;
}

@media (min-width: 800px) and (max-width: 1450px) {
	.main-screen__dealer {
		margin-top: 190px !important;
	}
}

.main-screen__dealer h2 {
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0 15px;
}
@media (max-width: 800px) {
    .main-screen__dealer h2 {
        padding: 10px 0 10px;
        font-size: 22px;
    }
}
.main-screen__dealer-items {
    display: flex;
    gap: 70px;
    justify-content: center;
    padding-bottom: 30px;
}
@media (max-width: 800px) {
    .main-screen__dealer-items {
        flex-wrap: wrap;
        gap: 10px;
    }
}
.main-screen__dealer-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    transition: .2s;
    opacity: 1;
}

.main-screen__dealer-item:hover {
    opacity: 0.8;
}
@media (max-width: 800px) {
    .main-screen__dealer-item {
        width: 45%;
    }

    .main-screen__dealer-item {
        gap: 5px;
    }
}
.main-screen__dealer-item img {
    max-width: 62px;
    max-height: 62px;
}
@media (max-width: 800px) {
    .main-screen__dealer-item img {
        max-width: 52px;
        max-height: 52px;
    }
}
.main-screen__dealer-item span {
    max-width: 180px;
    text-align: center;
    font-size: 22px;
}
@media (max-width: 800px) {
    .main-screen__dealer-item span {
        font-size: 16px;
        max-width: 130px;
    }
}
.main-slider__info {
    max-width: 680px;
    margin: 0 auto 50px;
    padding: 30px 0 35px;
    height: 250px;
}
@media (max-width: 800px) {
    .main-slider__info {
        padding: 30px 20px 20px;
        margin-bottom: 60px;
        height: 200px;
    }
}
@media (max-width: 500px) {
    .main-slider__info {
        height: 230px;
    }
}
.main-slider__title {
    color: #1f1f1f;
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 30px;
}
@media (max-width: 800px) {
    .main-slider__title {
        font-size: 22px;
        padding-bottom: 15px;
    }
}
.main-slider__text {
    color: #1f1f1f;
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    padding-bottom: 100px;
}
@media (max-width: 800px) {
    .main-slider__text {
        font-size: 14px;
    }
}
.main-slider__nav {
    position: relative;
    height: 42px;
    top: 295px;
    z-index: 10;
}
@media (max-width: 800px) {
    .main-slider__nav {
        top: 240px;
    }
}
@media (max-width: 500px) {
    .main-slider__nav {
        top: 290px;
    }
}
.main-slider__line {
    width: 100%;
    background: #6f6f6f;
    height: 1px;
}
.main-slider__btns {
    position: absolute;
    right: 150px;
    transform: translateY(-45%);
    background: #ededed;
    padding: 0 10px;
}
@media (max-width: 800px) {
    .main-slider__btns {
        right: 100px;
        padding: 0 5px;
    }
}
@media (max-width: 600px) {
    .main-slider__btns {
        right: 50px;
    }
}
.main-slider__btn {
    cursor: pointer;
    transition: 0.2s;
}
.main-slider__btn:hover {
    opacity: 0.5;
}
@media (max-width: 800px) {
    .main-slider__btn {
        width: 32px;
        height: 32px;
    }
}
.main-slider__img {
    height: 520px;
}
@media (max-width: 800px) {
    .main-slider__img {
        height: 240px;
    }
}
.main-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.catalog {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.card {
    background: #fff;
    box-shadow: 0 4px 100px #00000014;
    padding: 30px;
    display: flex;
    gap: 65px;
}
.card__images {
    width: 40%;
    flex-shrink: 0;
}
@media (max-width: 1250px) {
    .card__images {
        width: 100%;
    }
}
.card__images-top {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
}

.card__sale {
    position: absolute;
    top: 10px;
    left: 20px;
    display: flex;
    width: 70px;
    height: 70px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0; 
    border-radius: 100px;
    background: #01657b; 
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; 
    z-index: 1;
}
@media (max-width: 800px) {
    .card__images-top {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-bottom: 10px;
    }

    .card__sale {
        top: -30px;
        right: 0px;
        left: unset;

    }
}
.card__main-img {
    position: relative;
    width: 373px;
    height: 250px;
    max-width: 100%;
}
.card__main-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}
.card__main-img img.activeImage {
    display: block !important;
}
.card__colors {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 25px;
}
@media (max-width: 800px) {
    .card__colors {
        flex-direction: row;
        width: auto;
        margin-bottom: 20px;
        height: 30px;
    }
}
.card__color {
    width: 15px;
    height: 15px;
    border-radius: 120px;
    display: block;
    cursor: pointer;
    transition: 0.2s;
    border: 0.5px solid var(--c-blue);
}
@media (max-width: 800px) {
    .card__color {
        width: 20px;
        height: 20px;
    }
}
.card__color.bordered {
    border: 0.24px solid #191b1d;
}
.card__color.activeColorSwitch {
    width: 20px;
    height: 20px;
}

@media (max-width: 800px) {
    .card__color.activeColorSwitch {
        width: 25px;
        height: 25px;
    }
}
.card__imaged-chars {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 16px;
    padding-left: 20px;
}
@media (max-width: 1250px) {
    .card__imaged-chars {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
.card__images-char {
    display: flex;
    align-items: center;
    gap: 5px;
}
.card__images-char-icon {
    width: 16px;
    height: 16px;
}
.card__images-char span {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
}

@media (max-width: 1500px) {
    .card__images-char span {
        font-size: 14px;
    }
}

@media (max-width: 1400px) {
    .card__images-char span {
        font-size: 13px;
    }
}

@media (max-width: 1300px) {
    .card__images-char span {
        font-size: 14px;
    }
}

.card__price {
    color: #1F1F1F;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}
.card__slider {
    position: relative;
}
.card__slider-inner {
    padding: 0 16px;
}
@media (max-width: 800px) {
    .card__slider-inner {
        padding: 0;
    }
}
.card__slider-item {
    height: 60px;
    border-radius: 2px;
    overflow: hidden;
}
@media (max-width: 800px) {
    .card__slider-item {
        height: 50px;
    }
}
.card__slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card .card-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-40%);
    cursor: pointer;
    z-index: 10;
}
@media (max-width: 800px) {
    .card .card-arr {
        display: none;
    }
}
.card .arr-l {
    left: 0;
}
.card .arr-r {
    right: 0;
}
.card .swiper-button-disabled {
    opacity: 0.2 !important;
}
.card__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
@media (max-width: 1250px) {
    .card__info {
        display: none;
    }
}
.card__title {
    color: #1f1f1f;
    font-size: 24px;
    font-weight: 700;
}
.card__badges {
    display: flex;
    gap: 10px;
}
.card__badge {
    background: #f1f1f1;
    padding: 10px 15px;
    width: 170px;
    color: var(--c-blue);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 800px) {
    .card__badge {
        padding: 10px 5px;
    }
}
.card__line {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #bfbfbf;
}
.card__line img {
    width: 24px;
    height: 24px;
}
@media (max-width: 800px) {
    .card__line img {
        width: 20px;
        height: 20px;
    }
}
.card__line span {
    color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}
@media (max-width: 800px) {
    .card__line span {
        font-size: 12px;
    }
}
.card__btns {
    display: flex;
    gap: 15px;
}
.card .btn {
    min-width: 200px;
}
.card .mob-card__info {
    display: none;
}
@media (max-width: 1250px) {
    .card .mob-card__info {
        display: block;
    }
}
.card .mob-card__info .card__title {
    font-size: 16px;
    padding-bottom: 20px;
}
.card .mob-card__info .card__badges {
    padding-bottom: 20px;
}
.card .mob-card__info .card__badge {
    font-size: 14px;
}
.card .mob-card__info .card__lines {
    padding: 20px 0;
}
.card .mob-card__info .card__btns {
    flex-direction: column;
}
.catalog__spoiler {
    color: var(--c-blue);
    font-family: Dopis;
    font-size: 20px;
    font-weight: 400;
    text-decoration-line: underline;
    cursor: pointer;
}
.advantages {
    margin-top: 80px;
    background-position: center bottom;
    background-size: cover;
    padding: 76px 0;
    color: #fff;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), url(../images/advantages/bg.jpg);
    background-repeat: no-repeat;
}
@media (max-width: 800px) {
    .advantages {
        background-position: bottom;
        padding: 20px 0 160px;
    }
}
.advantages__inner h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    padding-bottom: 10px;
}
@media (max-width: 800px) {
    .advantages__inner h2 {
        font-size: 22px;
    }
}
.advantages__inner p {
    color: #ffffffb3;
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    padding-bottom: 20px;
    max-width: 400px;
}
@media (max-width: 800px) {
    .advantages__inner p {
        font-size: 14px;
    }
}
.advantages__info {
    max-width: 50%;
}
@media (max-width: 800px) {
    .advantages__info {
        max-width: 100%;
    }
}
.advantages__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.advantages__col {
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%;
}
.advantages__item {
    padding: 10px 21px;
    background: rgba(60, 73, 91, 0.8);
    width: 100%;
    cursor: pointer;
    transition: .2s;
}

@media (max-width: 800px) {
    .advantages__item {
        padding: 10px 10px;

    }
}

.advantages__item:hover {
    background: rgba(60, 73, 91, 0.5);

}
.advantages__title {
    font-family: PTSans;
    font-size: 17px;
    font-weight: 700;
    line-height: 120%;
}
.advantages__text {
    font-family: PTSans;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 120%;
}
.filter {
    flex: 1;
}
@media (max-width: 1000px) {
    .filter {
        width: 100%;
    }
}
.filter.active-filter .filter__list {
    display: block;
}
.filter.active-filter .filter__arr {
    transform: rotate(180deg);
}
.filter__name {
    color: var(--c-blue);
    font-family: PTSans;
    font-size: 12px;
    font-weight: 400;
    padding-bottom: 5px;
}
.filter__wrap {
    position: relative;
}
.filter__main {
    border: 1px solid var(--c-blue);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.filter__choosen {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}
.filter__arr {
    display: inline-flex;
    align-items: center;
    transition: 0.1s;
}
.filter__list {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 100;
}
.filter__item {
    color: #000;
    font-family: PTSans;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid var(--c-blue);
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.2s;
    background: #fff;
}
.filter__item:hover {
    background: var(--c-blue);
    color: #fff;
}
.fin {
    padding-bottom: 80px;
}
.fin .section-title {
    padding-bottom: 35px;
}
.fin__inner {
    display: flex;
    justify-content: space-between;
    gap: 58px;
}
@media (max-width: 1000px) {
    .fin__inner {
        flex-direction: column;
        gap: 50px;
    }
}
.fin .filter {
    margin-bottom: 30px;
}
.fin .calc__range-title {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    padding-bottom: 30px;
}
.fin .calc__range-slider {
    margin-bottom: 80px;
}
.fin__calc,
.fin__form {
    flex: 1;
}
.fin .calc__total {
    display: flex;
    gap: 90px;
}
.fin .calc__total-title {
    color: #1f1f1f;
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    padding-bottom: 20px;
}
@media (max-width: 800px) {
    .fin .calc__total-title {
        font-size: 18px;
        padding-bottom: 10px;
    }
}
.fin .calc__total-price {
    color: var(--c-blue);
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
}
@media (max-width: 800px) {
    .fin .calc__total-price {
        font-size: 18px;
    }
}
.fin .calc__total-monthly {
    color: var(--c-blue);
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
}
@media (max-width: 800px) {
    .fin .calc__total-monthly {
        font-size: 18px;
    }
}
.fin__form {
    padding: 35px 30px;
    background: #fff;
    max-width: 460px;
    margin-top: -35px;
}
@media (max-width: 1000px) {
    .fin__form {
        max-width: none;
        background: #ededed;
        padding: 0;
        margin-top: 0;
    }
}
.footer {
    background: var(--c-bg);
    width: 100%;
}
.footer__main-wrap {
    height: 600px;
    position: relative;
}
@media (max-width: 1000px) {
    .footer__main-wrap {
        height: auto;
    }
}
.footer #map {
    position: absolute;
    width: 100%;
    height: 100%;
}
@media (max-width: 1000px) {
    .footer #map {
        position: relative;
        width: 100%;
        height: 300px;
    }
}
.footer #map img {
    width: 100%;
    height: 100%;
}
.footer__window-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    top: 40px;
    pointer-events: none;
}
@media (max-width: 1000px) {
    .footer__window-wrap {
        display: none;
    }
}
.footer__window {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 100px #00000040;
    padding: 35px;
    max-width: 457px;
    display: flex;
    flex-direction: column;
    gap: 65px;
    color: #000;
    pointer-events: all;
}
@media (max-width: 1000px) {
    .footer__window {
        gap: 50px;
    }
}
.footer__title {
    color: #1f1f1f;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    padding-bottom: 35px;
}
@media (max-width: 1000px) {
    .footer__title {
        font-size: 22px;
        text-align: left;
        max-width: 300px;
        padding-bottom: 20px;
    }
}
.footer__row {
    display: flex;
    justify-content: space-between;
    padding-top: 35px;
}
@media (max-width: 1000px) {
    .footer__row {
        padding-top: 20px;
    }
}
.footer__subtext {
    color: #6f6f6f;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    padding-bottom: 12px;
}
@media (max-width: 1000px) {
    .footer__subtext {
        font-size: 14px;
        padding-bottom: 5px;
    }
}
.footer__text {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}
@media (max-width: 1000px) {
    .footer__text {
        font-size: 14px;
    }
}
.footer__person {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 25px;
}
.footer__person-photo {
    width: 62px;
    height: 62px;
    border-radius: 100px;
    overflow: hidden;
    outline: 2px solid var(--c-gold);
}
.footer__person-name {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
}
@media (max-width: 1000px) {
    .footer__person-name {
        font-size: 14px;
    }
}
.footer__person-text {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}
.footer__btn {
    width: 100%;
}
.footer__info {
    padding: 50px 20px;
    font-size: 14px;
    color: #3d3d3d;
}
.footer__meta {
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
    color: #3d3d3d;
}
.footer__window-wrap-mob {
    display: none;
}
@media (max-width: 1000px) {
    .footer__window-wrap-mob {
        display: block;
    }
}
.footer__window-wrap-mob .footer__window {
    max-width: none;
    box-shadow: none;
}
.footer__spoiler {
    width: fit-content;
    padding-top: 10px;
    color: #4d4d4d;
    margin: 0 auto;
    text-decoration: underline;
    cursor: pointer;
}
.footer__hid-info {
    padding-top: 10px;
}
.ymaps-layers-pane {
    -webkit-filter: grayscale(100%);
}

.policy {
    padding-top: 70px;
    padding-bottom: 50px;
}

.policy p {
    padding-bottom: 5px;
    padding-top: 5px;
}

@media (max-width: 800px) {
    .policy p {
        font-size: 14px;
    }
}

.policy h1 {
    font-size: 26px;
    padding-bottom: 30px;
}

@media (max-width: 800px) {
    .policy h1 {
        font-size: 22px;
    }
}

.policy h2 {
    font-size: 22px;
}

@media (max-width: 800px) {
    .policy h2 {
        font-size: 20px;
    }
}

.policy h3 {
    font-size: 20px;
}

@media (max-width: 800px) {
    .policy h3 {
        font-size: 18px;
    }
}

.policy li {
    list-style-type: disc;
    margin-left: 20px;
}

.footer__meta-wrap {
    display: flex;
    gap: 10px;
}

