@font-face {
    src:
        url(/assets/fonts/HelveticaNeueCyr-Bold.woff2) format("woff2"),
        url(/assets/fonts/HelveticaNeueCyr-Bold.woff) format("woff");
    font-family: HelveticaNeueCyr;
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    src:
        url(/assets/fonts/HelveticaNeueCyr-Medium.woff2) format("woff2"),
        url(/assets/fonts/HelveticaNeueCyr-Medium.woff) format("woff");
    font-family: HelveticaNeueCyr;
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    src:
        url(/assets/fonts/HelveticaNeueCyr-Roman.woff2) format("woff2"),
        url(/assets/fonts/HelveticaNeueCyr-Roman.woff) format("woff");
    font-family: HelveticaNeueCyr;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
* {
    margin: 0;
    border: 0;
    padding: 0;
}
*,
::after,
::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}
aside,
footer,
header,
nav,
section {
    display: block;
}
ul {
    list-style: none;
}
img {
    display: block;
    max-width: 100%;
}
input {
    outline: 0;
}
button,
input,
select,
textarea {
    font: inherit;
}
button {
    border: none;
}
a,
a:hover,
a:visited {
    text-decoration: none;
}
body,
html {
    height: 100%;
    min-width: 375px;
    font-family: HelveticaNeueCyr, sans-serif;
}
body {
    background-color: #f6f7f8;
}
body._lock {
    overflow: hidden;
}
.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    min-height: 100%;
}
.container {
    margin: 0 auto;
    padding: 0 calc(30px / 2);
    max-width: 1450px;
}
.main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.promo-title {
    font-weight: 700;
    font-style: normal;
    font-size: 25px;
    line-height: 115%;
    color: #31333e;
}
.promo-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    color: #0085ff;
    cursor: pointer;
}
.promo-btn::after {
    right: -15px;
    top: 4px;
    background-image: url("/assets/images/arrow_right_blue.svg");
    -webkit-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}
.promo-btn:hover::after {
    right: -20px;
}
.arrow-right {
    position: relative;
}
.arrow-right::after {
    content: "";
    position: absolute;
    width: 6.79px;
    height: 11px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.show_anim {
    -webkit-animation-name: show_anim;
    animation-name: show_anim;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@-webkit-keyframes show_anim {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(300px) scale(0.9);
        transform: translateY(300px) scale(0.9);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
}
@keyframes show_anim {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(300px) scale(0.9);
        transform: translateY(300px) scale(0.9);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
}
@-webkit-keyframes show_modal {
    0% {
        -webkit-transform: translateY(300px) scale(0.9);
        transform: translateY(300px) scale(0.9);
    }
    100% {
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
}
@keyframes show_modal {
    0% {
        -webkit-transform: translateY(300px) scale(0.9);
        transform: translateY(300px) scale(0.9);
    }
    100% {
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
}
.modal {
    z-index: -100;
    display: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    inset: 0;
}
.modal__inner {
    width: 100%;
    max-width: 612px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 50px;
    -webkit-box-shadow:
        0 6px 22px rgba(255, 255, 255, 0.37),
        0 -5px 0 #0084ff;
    box-shadow:
        0 6px 22px rgba(255, 255, 255, 0.37),
        0 -5px 0 #0084ff;
    background-color: #fff;
    padding: 45px 30px 50px;
}
.modal__close {
    position: absolute;
    right: -52px;
    top: 5px;
    cursor: pointer;
    width: 40px;
    height: 40px;
}
.modal__title {
    font-weight: 500;
    font-size: 43px;
    line-height: 105%;
    text-align: center;
    color: #31333e;
}
.modal__subtitle {
    margin-top: 12px;
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 400;
    line-height: 135%;
    text-align: center;
    color: #90929a;
}
.modal-payment .modal__inner {
    position: relative;
}
.modal-payment .modal__inner::after,
.modal-payment .modal__inner::before {
    content: "";
    position: absolute;
    top: 70%;
    display: block;
    width: 380px;
    height: 243px;
    background-image: url("/assets/images/car.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.modal-payment .modal__inner::before {
    left: -380px;
    -webkit-transform: translate(0, -70%);
    -ms-transform: translate(0, -70%);
    transform: translate(0, -70%);
}
.modal-payment .modal__inner::after {
    right: -380px;
    -webkit-transform: translate(0, -70%) scale(-1, 1);
    -ms-transform: translate(0, -70%) scale(-1, 1);
    transform: translate(0, -70%) scale(-1, 1);
}
.modal-tradIn .modal__inner {
    position: relative;
}
.modal-tradIn .modal__inner::before {
    content: "";
    position: absolute;
    left: -95px;
    bottom: -82px;
    z-index: 2;
    display: block;
    width: 250px;
    height: 152px;
    background-image: url(/assets/images/arrow_around_left.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.modal.active {
    position: fixed;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow-y: scroll;
    background-color: rgba(0, 0, 0, 0.3);
}
.modal.active .modal__inner {
    -webkit-animation-name: show_modal;
    animation-name: show_modal;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.modal-sendForm .modal__inner {
    padding: 45px;
}
.modal-sendForm .modal__subtitle {
    margin: 12px 80px 0;
}
.form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}
.form__item {
    position: relative;
}
.form__item .just-validate-error-label {
    position: absolute;
    left: 235px;
    top: 50%;
    font-size: 18px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.form .input__tel {
    position: relative;
}
.form .input__tel ~ .input__tel-text {
    position: absolute;
    left: 26px;
    top: -9px;
    padding: 0 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    color: #838383;
    background-color: #fff;
}
.form__input {
    border: 2px solid #efefef;
    border-radius: 15px;
    padding: 20px 0 20px 45px;
    width: 100%;
    font-weight: 400;
    font-size: 20px;
    line-height: 135%;
    color: #31333e;
}
.form__input:focus {
    border-color: #31333e;
}
.form__input.just-validate-error-field {
    border-color: #b81111;
}
.form__input.just-validate-error-field::-webkit-input-placeholder {
    color: #b81111;
}
.form__input.just-validate-error-field::-moz-placeholder {
    color: #b81111;
}
.form__input.just-validate-error-field:-ms-input-placeholder {
    color: #b81111;
}
.form__input.just-validate-error-field::-ms-input-placeholder {
    color: #b81111;
}
.form__input.just-validate-error-field::placeholder {
    color: #b81111;
}
.form__input.just-validate-error-field ~ .input__tel-text {
    color: #b81111;
}
.form__input.just-validate-success-field {
    border-color: #2ccd59;
}
.form__input.just-validate-success-field ~ .input__tel-text {
    color: #2ccd59;
}
.form__item-btn {
    border-radius: 15px;
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
    color: #fff;
    background-color: #0084ff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}
.form__item-btn::after {
    background-image: url(/assets/images/arrow_right_white.svg);
    -webkit-transform: translate(200%, 50%);
    -ms-transform: translate(200%, 50%);
    transform: translate(200%, 50%);
}
.form__item-btn:hover {
    background-color: #309bff;
}
.header {
    border-bottom-left-radius: 99px;
    border-bottom-right-radius: 99px;
    background-color: #fff;
}
.header__inner {
    padding-top: 20px;
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-right: 15px;
    margin-left: 15px;
}
.header__logo-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 450px;
}
.header__logo {
    margin-right: 30px;
    width: 116px;
    height: 71px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.header__text {
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 150%;
    color: #31333e;
}
.header__tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 20px;
    max-width: 264px;
    width: 100%;
    height: 53px;
    background-color: #f6f7f8;
    cursor: pointer;
}
.header__tel-link {
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    line-height: 125%;
    color: #309cff;
}
.consultant_sticky {
    position: absolute;
    left: 0;
    right: 0;
    -webkit-box-shadow: 0 4px 13px rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 13px rgba(0, 0, 0, 0.07);
    background-color: #fff;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
    border-bottom-left-radius: 99px;
    border-bottom-right-radius: 99px;
}
.consultant_sticky.show {
    position: fixed;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.consultant_container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 25px;
    max-width: 940px;
    padding-right: 0;
}
.consultant_sticky-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 15px;
}
.consultant_sticky-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.consultant_sticky-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    margin-right: 25px;
}
.consultant_sticky-name {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
    line-height: 125%;
    color: #31333e;
}
.consultant_sticky-position {
    font-weight: 400;
    font-size: 15px;
    line-height: 135%;
    color: #8d8d8d;
}
.consultant_sticky-position.mobil {
    display: none;
}
.consultant_sticky__tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 20px;
    padding: 10px 30px;
    background-color: #f6f7f8;
    cursor: pointer;
}
.consultant_sticky__tel-link {
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 125%;
    color: #0085ff;
}
.consultant_sticky__tel-link .tel-link-mob {
    display: none;
}
.title-main {
    font-size: 60px;
    margin-top: 55px;
    margin-bottom: 44px;
    font-weight: 500;
    line-height: 110%;
    text-align: center;
    color: #31333e;
}
.promo__header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px 30px;
}
.promo__header-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 20px;
    width: 100%;
    max-width: 695px;
    background-color: #fff;
    cursor: pointer;
    gap: 20px;
}
.promo__header-block:nth-child(1) {
    overflow: hidden;
}
.promo__header-discr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 32px;
    margin-bottom: 37px;
    margin-left: 40px;
}
.promo__header-title {
    width: 100%;
    max-width: 280px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.promo__header-title.arrow-right::after {
    display: none;
    width: 7.1px;
    height: 11.5px;
}
.promo__header-block:hover .promo__header-title {
    color: #0084ff;
}
.promo__header-text {
    margin-top: 10px;
    margin-bottom: 46px;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #90929a;
}
.promo__header-img {
    position: relative;
    border-radius: 0 15px 15px 0;
    width: 296px;
    min-height: 100%;
    background: -o-linear-gradient(
        316.96deg,
        #98b5ff 9.59%,
        rgba(153, 182, 255, 0.76) 94.37%
    );
    background: linear-gradient(
        133.04deg,
        #98b5ff 9.59%,
        rgba(153, 182, 255, 0.76) 94.37%
    );
}
.promo-car::after,
.promo-car::before {
    content: "";
    position: absolute;
    bottom: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.promo-car::before {
    right: -1px;
    z-index: 2;
    width: 380px;
    height: 243px;
    background-image: url(/assets/images/car.png);
}
.promo-car::after {
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(/assets/images/percent-car.png);
}
.promo-percent::after,
.promo-percent::before {
    content: "";
    position: absolute;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.promo-percent::before {
    left: -75px;
    top: -35px;
    z-index: 2;
    width: 435.47px;
    height: 356.73px;
    background-image: url(/assets/images/arrow_around.svg);
}
.promo-percent::after {
    width: 100%;
    height: 100%;
    background-image: url(/assets/images/200k.png);
}
.promo-percent-text {
    position: absolute;
    left: 50%;
    top: 50%;
    font-weight: 700;
    font-size: 90px;
    line-height: 130%;
    color: #fff;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.chat {
    opacity: 0;
}
.chat__container {
    padding-left: 120px;
    padding-right: 120px;
    margin-top: 90px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 100px;
    width: 100%;
    max-width: 940px;
    -webkit-box-shadow: 0 -5px 0 #0084ff;
    box-shadow: 0 -5px 0 #0084ff;
    background-color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.chat__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 55px;
    padding-bottom: 70px;
    width: 100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.chat.show_anim {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.total-price {
    font-weight: 700;
    font-size: 20px;
    line-height: 135%;
    color: #0084ff;
}
.chat__consultant-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 35px;
}
.chat__consultant-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-right: 25px;
}
.chat__consultant-name {
    margin-bottom: 5px;
    font-size: 23px;
    font-weight: 700;
    line-height: 125%;
    color: #31333e;
}
.chat__consultant-position {
    font-size: 17px;
    font-weight: 400;
    line-height: 135%;
    color: #8d8d8d;
}
.msg-blocks-choice {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.chat__message {
    padding: 25px 40px;
}
.chat-messages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.chat__message-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}
.chat__message-consultant {
    position: absolute;
    -ms-flex-item-align: start;
    align-self: flex-start;
    border-radius: 0 50px 50px;
    -webkit-box-shadow: 0 4px 13px rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 13px rgba(0, 0, 0, 0.07);
    font-weight: 400;
    font-size: 20px;
    line-height: 135%;
    color: #31333e;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    margin-bottom: 20px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.chat__message-client {
    position: absolute;
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-top: 30px;
    margin-bottom: 20px;
    border-radius: 50px 0 50px 50px;
    font-size: 20px;
    font-weight: 400;
    line-height: 135%;
    color: #fff;
    background-color: #343434;
    opacity: 0;
    visibility: hidden;
}
.chat__message-print {
    position: absolute;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 20px;
    font-style: italic;
    font-size: 18px;
    color: #7c7c7c;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.chat__message-print .message-print {
    -webkit-clip-path: inset(0 18px 0 0);
    clip-path: inset(0 18px 0 0);
    -webkit-animation-name: anim_print;
    animation-name: anim_print;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.chat__message-print.msg-print-show {
    position: static;
    opacity: 1;
    visibility: visible;
    -webkit-animation: 0.2s forwards anim_show_message;
    animation: 0.2s forwards anim_show_message;
}
.msg-show {
    position: static;
    opacity: 1;
    visibility: visible;
    -webkit-animation-name: anim_show_message;
    animation-name: anim_show_message;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.msg-show-client {
    position: static;
    opacity: 1;
    visibility: visible;
    -webkit-animation-name: anim_show_message-client;
    animation-name: anim_show_message-client;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@-webkit-keyframes anim_print {
    to {
        -webkit-clip-path: inset(0 -10px 0 0);
        clip-path: inset(0 -10px 0 0);
    }
}
@keyframes anim_print {
    to {
        -webkit-clip-path: inset(0 -10px 0 0);
        clip-path: inset(0 -10px 0 0);
    }
}
@-webkit-keyframes anim_show_message {
    from {
        opacity: 0;
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes anim_show_message {
    from {
        opacity: 0;
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes anim_show_message-client {
    from {
        opacity: 0;
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes anim_show_message-client {
    from {
        opacity: 0;
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.car__card-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 15px;
    row-gap: 30px;
}
.car__card-block {
    cursor: pointer;
}
.car__card-img {
    border-radius: 15px;
    padding: 6px 15px;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
    width: 339px;
}
.car__card-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 7px;
}
.car__card-title {
    margin-right: 12px;
    font-weight: 700;
    font-size: 28px;
    line-height: 140%;
    color: #31333e;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}
.car__card-inStock {
    border-radius: 36px;
    padding: 3px 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    color: #8d8d8d;
    background: #f4f6f7;
}
.car__card-price {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    color: #8d8d8d;
}
.car__card-block:hover .car__card-img {
    background-color: #f6f7f8;
}
.car__card-block:hover .car__card-title {
    color: #0084ff;
}
.car__card-block.active .car__card-img {
    background-color: #e2f1ff;
}
.car__card-block.active .car__card-title {
    color: #0084ff;
}
.equipment__blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 5px;
    row-gap: 30px;
}
.equipment__block {
    border-radius: 30px;
    -webkit-box-shadow: 0 4px 13px rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 13px rgba(0, 0, 0, 0.07);
    background-color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    padding: 30px 45px 35px 35px;
}
.equipment__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 140%;
    color: #31333e;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.equipment__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 15px;
    margin-bottom: 25px;
    row-gap: 12px;
}
.equipment__item {
    font-size: 18px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 32px;
    font-weight: 400;
    line-height: 135%;
    color: #31333e;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.equipment__item::before {
    content: "";
    position: absolute;
    top: 2px;
    margin-left: -32px;
    width: 18.33px;
    height: 18.33px;
    background-image: url(/assets/images/checked.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.equipment__btn {
    font-size: 18px;
    border-radius: 20px;
    padding: 19px 10px;
    width: 100%;
    font-weight: 500;
    line-height: 125%;
    text-align: center;
    color: #0084ff;
    background-color: #e2f1ff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}
.equipment__block:hover {
    background-color: #e2f1ff;
}
.equipment__block:hover .equipment__btn {
    color: #fff;
    background-color: #0084ff;
}
.equipment__block:hover .equipment__item,
.equipment__block:hover .equipment__title {
    color: #0084ff;
}
.equipment__block.active {
    background-color: #e2f1ff;
}
.equipment__block.active .equipment__btn {
    color: #fff;
    background-color: #0084ff;
}
.equipment__block.active .equipment__item,
.equipment__block.active .equipment__title {
    color: #0084ff;
}
.color__blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -5px;
    gap: 10px;
}
.color__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 15px;
    padding: 20px 25px;
    -webkit-box-shadow: 0 4px 13px rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 13px rgba(0, 0, 0, 0.07);
    background-color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}
.color__block.active {
    background-color: #e2f1ff;
}
.color__block-sqr {
    margin-right: 15px;
    border-radius: 5px;
    width: 30px;
    height: 30px;
}
.color__block-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 135%;
    color: #31333e;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.color__block:hover {
    background-color: #e2f1ff;
}
.color__block:hover .color__block-text {
    color: #0084ff;
}
.chat__form-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 35px;
    border-top: 1px solid #f4f6f7;
    padding-top: 50px;
}
.chat__form-block {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
}
.chat__form-block .just-validate-error-label {
    left: 26px;
    top: -30px;
    font-size: 18px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.chat__form-block .form__item:nth-child(2) .just-validate-error-label {
    top: -20px;
}
.discount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 15px;
    background-color: rgba(246, 247, 248, 0.5);
}
.discount__price {
    border-radius: 15px 15px 0 0;
    padding: 16px 0 12px;
    font-weight: 700;
    font-size: 31px;
    line-height: 125%;
    color: #0084ff;
    background-color: #edf8ff;
}
.discount__promocode {
    padding: 17px 0 12px;
    font-weight: 700;
    font-size: 20px;
    line-height: 135%;
    color: #31333e;
}
.discount__promocode span {
    color: #0084ff;
}
.discount__text {
    border-top: 1px solid rgba(228, 228, 228, 0.7);
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    color: #838383;
    padding: 12px 54px 30px;
}
.discount__price,
.discount__promocode,
.discount__text {
    text-align: center;
}
.promo__footer-inner {
    height: 0;
    opacity: 0;
    visibility: hidden;
}
.promo__footer-inner.active {
    margin-top: 60px;
    margin-bottom: 70px;
    height: auto;
    opacity: 1;
    visibility: visible;
    -webkit-animation-name: anim_show_promo_actual;
    animation-name: anim_show_promo_actual;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@-webkit-keyframes anim_show_promo_actual {
    from {
        height: 0;
        opacity: 0;
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    to {
        height: auto;
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes anim_show_promo_actual {
    from {
        height: 0;
        opacity: 0;
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    to {
        height: auto;
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.promo__footer-title {
    margin-bottom: 45px;
    font-size: 50px;
    font-weight: 500;
    line-height: 110%;
    text-align: center;
    color: #31333e;
}
.promo__footer-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}
.promo__footer-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    border-radius: 20px;
    padding-right: 10px;
    padding-left: 40px;
    padding-bottom: 47px;
    width: 100%;
    background-color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    max-width: 453px;
}
.promo__footer-block-title {
    margin-bottom: 40px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.promo__footer-block:hover .promo__footer-block-title {
    color: #0084ff;
}
.promo__footer-block:nth-child(1) {
    padding-top: 32px;
}
.promo__footer-block:nth-child(1) .promo__footer-img {
    width: 110px;
    height: 85px;
}
.promo__footer-block:nth-child(1) .promo__footer-block-title {
    margin-top: 25px;
}
.promo__footer-block:nth-child(2) {
    padding-top: 18px;
}
.promo__footer-block:nth-child(2) .promo__footer-img {
    width: 65px;
    height: 97px;
}
.promo__footer-block:nth-child(2) .promo__footer-block-title {
    margin-top: 27px;
}
.promo__footer-block:nth-child(3) {
    padding-top: 44px;
}
.promo__footer-block:nth-child(3) .promo__footer-img {
    width: 80px;
    height: 61px;
}
.promo__footer-block:nth-child(3) .promo__footer-block-title {
    margin-top: 37px;
}
.footer {
    display: none;
    background-color: #fff;
}
.footer__inner {
    margin-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 25px;
}
.footer__requisites {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 47px;
    -moz-column-gap: 47px;
    column-gap: 47px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer__requisites-item {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #a9a9a9;
}
.footer__agreement {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #0085ff;
    cursor: pointer;
}
.footer.active {
    display: block;
}
@media (max-width: 1420px) {
    .modal__inner {
        padding-top: calc(25px + 20 * ((100vw - 320px) / 1100));
        padding-bottom: calc(14px + 36 * ((100vw - 320px) / 1100));
        padding-left: calc(15px + 15 * ((100vw - 320px) / 1100));
        padding-right: calc(15px + 15 * ((100vw - 320px) / 1100));
        border-radius: calc(20px + 30 * ((100vw - 320px) / 1100));
    }
    .modal__close {
        width: calc(35px + 5 * ((100vw - 320px) / 1100));
        height: calc(35px + 5 * ((100vw - 320px) / 1100));
    }
    .modal__title {
        font-size: calc(28px + 15 * ((100vw - 320px) / 1100));
    }
    .modal__subtitle {
        font-size: calc(17px + 3 * ((100vw - 320px) / 1100));
    }
    .modal-tradIn .modal__inner::before {
        left: calc(0px + -95 * ((100vw - 320px) / 1100));
        bottom: calc(-130px + 48 * ((100vw - 320px) / 1100));
    }
    .modal-sendForm .modal__inner {
        padding-top: calc(25px + 20 * ((100vw - 320px) / 1100));
        padding-bottom: calc(25px + 20 * ((100vw - 320px) / 1100));
        padding-left: calc(25px + 20 * ((100vw - 320px) / 1100));
        padding-right: calc(25px + 20 * ((100vw - 320px) / 1100));
    }
    .modal-sendForm .modal__subtitle {
        margin-top: calc(8px + 4 * ((100vw - 320px) / 1100));
    }
    .form__item-btn {
        font-size: calc(18px + 2 * ((100vw - 320px) / 1100));
    }
    .header {
        border-bottom-left-radius: calc(40px + 59 * ((100vw - 320px) / 1100));
        border-bottom-right-radius: calc(40px + 59 * ((100vw - 320px) / 1100));
    }
    .header__inner {
        padding-top: calc(15px + 5 * ((100vw - 320px) / 1100));
        padding-bottom: calc(15px + 5 * ((100vw - 320px) / 1100));
        margin-right: calc(0px + 15 * ((100vw - 320px) / 1100));
        margin-left: calc(0px + 15 * ((100vw - 320px) / 1100));
    }
    .header__logo {
        margin-right: calc(15px + 15 * ((100vw - 320px) / 1100));
        width: calc(83px + 33 * ((100vw - 320px) / 1100));
        height: calc(51px + 20 * ((100vw - 320px) / 1100));
    }
    .header__text {
        font-size: calc(14px + 2 * ((100vw - 320px) / 1100));
    }
    .header__tel {
        max-width: calc(345px + -81 * ((100vw - 320px) / 1100));
        height: calc(35px + 18 * ((100vw - 320px) / 1100));
    }
    .header__tel-link {
        font-size: calc(20px + 4 * ((100vw - 320px) / 1100));
    }
    .consultant_sticky {
        border-bottom-left-radius: calc(40px + 59 * ((100vw - 320px) / 1100));
        border-bottom-right-radius: calc(40px + 59 * ((100vw - 320px) / 1100));
    }
    .consultant_container {
        padding-right: calc(25px + -25 * ((100vw - 320px) / 1100));
    }
    .consultant_sticky-img {
        width: calc(38px + 37 * ((100vw - 320px) / 1100));
        height: calc(38px + 37 * ((100vw - 320px) / 1100));
        margin-right: calc(10px + 15 * ((100vw - 320px) / 1100));
    }
    .consultant_sticky-name {
        margin-bottom: calc(0px + 5 * ((100vw - 320px) / 1100));
        font-size: calc(16px + 4 * ((100vw - 320px) / 1100));
    }
    .consultant_sticky-position {
        font-size: calc(14px + 1 * ((100vw - 320px) / 1100));
    }
    .title-main {
        font-size: calc(30px + 30 * ((100vw - 320px) / 1100));
        margin-top: calc(34px + 21 * ((100vw - 320px) / 1100));
        margin-bottom: calc(36px + 8 * ((100vw - 320px) / 1100));
    }
    .promo__header-text {
        margin-bottom: calc(30px + 16 * ((100vw - 320px) / 1100));
    }
    .promo-percent-text {
        font-size: calc(75px + 15 * ((100vw - 320px) / 1100));
    }
    .chat__container {
        border-radius: calc(40px + 60 * ((100vw - 320px) / 1100));
    }
    .chat__inner {
        padding-top: calc(25px + 30 * ((100vw - 320px) / 1100));
        padding-bottom: calc(15px + 55 * ((100vw - 320px) / 1100));
    }
    .chat__consultant-inner {
        margin-bottom: calc(20px + 15 * ((100vw - 320px) / 1100));
    }
    .chat__consultant-img {
        width: calc(80px + 20 * ((100vw - 320px) / 1100));
        height: calc(80px + 20 * ((100vw - 320px) / 1100));
        margin-right: calc(15px + 10 * ((100vw - 320px) / 1100));
    }
    .chat__consultant-name {
        margin-bottom: calc(3px + 2 * ((100vw - 320px) / 1100));
        font-size: calc(20px + 3 * ((100vw - 320px) / 1100));
    }
    .chat__consultant-position {
        font-size: calc(14px + 3 * ((100vw - 320px) / 1100));
    }
    .chat__message {
        padding-top: calc(20px + 5 * ((100vw - 320px) / 1100));
        padding-bottom: calc(20px + 5 * ((100vw - 320px) / 1100));
        padding-left: calc(20px + 20 * ((100vw - 320px) / 1100));
        padding-right: calc(20px + 20 * ((100vw - 320px) / 1100));
    }
    .chat__message-consultant {
        margin-bottom: calc(15px + 5 * ((100vw - 320px) / 1100));
    }
    .chat__message-client {
        margin-top: calc(20px + 10 * ((100vw - 320px) / 1100));
        margin-bottom: calc(15px + 5 * ((100vw - 320px) / 1100));
        font-size: calc(18px + 2 * ((100vw - 320px) / 1100));
    }
    .car__card-title {
        font-size: calc(26px + 2 * ((100vw - 320px) / 1100));
    }
    .equipment__blocks {
        margin-top: calc(15px + -10 * ((100vw - 320px) / 1100));
        row-gap: calc(25px + 5 * ((100vw - 320px) / 1100));
    }
    .equipment__block {
        padding-top: calc(25px + 5 * ((100vw - 320px) / 1100));
        padding-bottom: calc(25px + 10 * ((100vw - 320px) / 1100));
        padding-left: calc(15px + 20 * ((100vw - 320px) / 1100));
        padding-right: calc(15px + 30 * ((100vw - 320px) / 1100));
    }
    .equipment__title {
        font-size: calc(26px + 2 * ((100vw - 320px) / 1100));
    }
    .equipment__btn,
    .equipment__item {
        font-size: calc(17px + 1 * ((100vw - 320px) / 1100));
    }
    .color__block-text {
        font-size: calc(18px + 2 * ((100vw - 320px) / 1100));
    }
    .chat__form-inner {
        margin-top: calc(15px + 20 * ((100vw - 320px) / 1100));
        padding-top: calc(38px + 12 * ((100vw - 320px) / 1100));
    }
    .discount__text {
        padding-bottom: calc(15px + 15 * ((100vw - 320px) / 1100));
    }
    .promo__footer-inner.active {
        margin-top: calc(40px + 20 * ((100vw - 320px) / 1100));
        margin-bottom: calc(20px + 50 * ((100vw - 320px) / 1100));
    }
    .promo__footer-title {
        font-size: calc(32px + 18 * ((100vw - 320px) / 1100));
    }
    .promo__footer-block {
        padding-bottom: calc(42px + 5 * ((100vw - 320px) / 1100));
        max-width: calc(345px + 108 * ((100vw - 320px) / 1100));
    }
    .promo__footer-block-title {
        margin-bottom: calc(30px + 10 * ((100vw - 320px) / 1100));
    }
    .promo__footer-block:nth-child(1) {
        padding-top: calc(20px + 12 * ((100vw - 320px) / 1100));
    }
    .promo__footer-block:nth-child(1) .promo__footer-block-title {
        margin-top: calc(20px + 5 * ((100vw - 320px) / 1100));
    }
    .promo__footer-block:nth-child(2) {
        padding-top: calc(11px + 7 * ((100vw - 320px) / 1100));
    }
    .promo__footer-block:nth-child(2) .promo__footer-block-title {
        margin-top: calc(17px + 10 * ((100vw - 320px) / 1100));
    }
    .promo__footer-block:nth-child(3) {
        padding-top: calc(35px + 9 * ((100vw - 320px) / 1100));
    }
    .promo__footer-block:nth-child(3) .promo__footer-block-title {
        margin-top: calc(29px + 8 * ((100vw - 320px) / 1100));
    }
    .footer__inner {
        margin-bottom: calc(12px + 13 * ((100vw - 320px) / 1100));
    }
    .footer__requisites {
        -webkit-column-gap: calc(12px + 35 * ((100vw - 950px) / 470));
        -moz-column-gap: calc(12px + 35 * ((100vw - 950px) / 470));
        column-gap: calc(12px + 35 * ((100vw - 950px) / 470));
    }
}
@media screen and (max-width: 1200px) {
    .promo-car::before {
        width: 310px;
        height: 180px;
    }
}
@media screen and (max-width: 1115px) {
    .modal-sendForm .modal__subtitle {
        margin-right: 100px;
        margin-left: 100px;
    }
}
@media screen and (max-width: 1050px) {
    .promo__header-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .promo-car::before {
        width: 380px;
        height: 243px;
    }
}
@media (max-width: 940px) {
    .chat__container {
        padding-left: calc(15px + 105 * ((100vw - 375px) / 565));
        padding-right: calc(15px + 105 * ((100vw - 375px) / 565));
    }
    .car__card-img {
        width: calc(230px + 109 * ((100vw - 620px) / 320));
    }
}
@media screen and (max-width: 900px) {
    .modal-payment .modal__inner::after,
    .modal-payment .modal__inner::before {
        display: none;
    }
}
@media screen and (max-width: 780px) {
    .header__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .header__logo-text {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 10px;
    }
    .header__tel {
        background-color: #e2f1ff;
    }
    .header__tel-link {
        color: #309cff;
    }
}
@media screen and (max-width: 750px) {
    .modal__title {
        font-weight: 700;
    }
    .form {
        min-width: 345px;
    }
    .form__item-btn {
        font-weight: 500;
    }
    .consultant_sticky-position.deskt {
        display: none;
    }
    .consultant_sticky-position.mobil {
        display: block;
    }
    .color__block {
        padding: 15px 20px;
    }
    .chat__form-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        row-gap: 25px;
    }
    .chat__form-block {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
    .chat__form-block:nth-child(1) {
        max-width: 375px;
    }
    .discount__text {
        padding-right: 25px;
        padding-left: 25px;
    }
    .promo__footer-blocks {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .footer__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer__requisites {
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
        margin-bottom: 20px;
        row-gap: 12px;
    }
    .footer__agreement {
        text-align: center;
    }
}
@media screen and (max-width: 730px) {
    .modal__close {
        right: 15px;
        top: -53px;
    }
}
@media screen and (max-width: 665px) {
    .modal-sendForm .modal__subtitle {
        margin-right: 110px;
        margin-left: 110px;
    }
}
@media screen and (max-width: 660px) {
    .promo-car::before {
        width: 305px;
        height: 220px;
    }
}
@media screen and (max-width: 650px) {
    .chat__consultant-inner {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media screen and (max-width: 620px) {
    .car__card-img {
        width: 339px;
    }
}
@media screen and (max-width: 600px) {
    .promo__header-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
    }
    .promo__header-discr {
        margin-bottom: 0;
    }
    .promo__header-title:nth-child(1)::after {
        right: 0;
        top: 40px;
        display: block;
        background-image: url(/assets/images/arrow_right_blue.svg);
    }
    .promo__header-block:nth-child(2) .promo__header-title::after {
        right: -20px;
    }
    .promo__header-img {
        border-radius: 0 0 15px 15px;
        width: 100%;
        height: 145px;
    }
    .promo__header-btn {
        display: none;
    }
    .promo-car::before {
        width: 430px;
        height: 260px;
    }
    .promo-car::after {
        background-image: none;
    }
    .promo-percent::before {
        left: 50%;
        top: 50%;
        width: 345px;
        height: 236.67px;
        background-image: url(/assets/images/arrow_around_m.svg);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}
@media screen and (max-width: 600px) and (max-width: 600px) {
    .promo-car::before {
        width: calc(330px + 100 * ((100vw - 375px) / 225));
        height: calc(215px + 45 * ((100vw - 375px) / 225));
    }
}
@media screen and (max-width: 510px) {
    .modal-sendForm .modal__subtitle {
        margin-right: 60px;
        margin-left: 60px;
    }
}
@media screen and (max-width: 500px) {
    .consultant_sticky__tel {
        width: 63px;
        height: 43px;
        background-color: #e2f1ff;
    }
    .consultant_sticky__tel-link .tel-link-desk {
        display: none;
    }
    .consultant_sticky__tel-link .tel-link-mob {
        display: block;
        width: 24.75px;
        height: 24.75px;
    }
}
@media screen and (max-width: 450px) {
    .promo__footer-block {
        padding: 20px 10px 40px 25px;
    }
    .footer__requisites {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .footer__requisites-item {
        line-height: 150%;
    }
}
@media screen and (max-width: 420px) {
    .promo-title {
        font-size: 22px;
    }
    .header__text {
        max-width: 220px;
        line-height: 135%;
        color: #90929a;
    }
    .title-main {
        font-weight: 700;
    }
    .promo__header-title:nth-child(1)::after {
        right: 40px;
        top: 33px;
    }
    .promo__header-block:nth-child(2) .promo__header-title::after {
        right: 15px;
    }
    .equipment__blocks {
        margin-right: -15px;
        margin-left: -15px;
    }
    .equipment__title {
        margin-right: 36px;
        margin-left: 10px;
        line-height: 125%;
    }
    .color__block-text {
        line-height: 125%;
    }
    .promo__footer-title {
        font-weight: 700;
    }
}
@media screen and (max-width: 400px) {
    .modal-sendForm .modal__subtitle {
        margin-right: 30px;
        margin-left: 30px;
    }
}
@media screen and (max-width: 355px) {
    .form {
        min-width: 290px;
    }
}
