@media(max-width: 767px) {
    :root {
        --section-bottom-margin: 36px;
        --left-right-padding: 16px;
    }

    .section-header {
        margin-bottom: 16px;
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .smart-captcha {
        min-width: 250px !important;
    }

    /*----- Шапка сайта -----*/
    .header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .mobile-header__container {
        border-bottom: 1px solid #cbd5e1;
    }

    .mobile-header__top {
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: 48px;
        min-height: 1px;
        background-color: var(--white-color);
    }

    .mobile-header__left {
        display: flex;
        align-items: center;
        gap: 12px;
        height: 100%;
    }

    .mobile-header__burger {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
        padding: 0;
        margin: 0;
        background: none;
        border: none;
        cursor: pointer;
        transition: transform var(--transition);
    }

    .mobile-header__burger_active {
        transform: rotateZ(90deg);
    }

    .mobile-header__logo-link {
        display: inline-flex;
        height: 28px;
    }

    .mobile-header__logo {
        width: auto;
        height: 100%;
    }

    .mobile-header__top-phone {
        font-weight: 700;
    }
    /*----- Конец шапки сайта -----*/

    /*----- Верхний баннер на главной -----*/
    .main-banner-mobile {
        padding: 16px 0 0 0;
        margin-bottom: var(--section-bottom-margin);
    }

    .main-banner-mobile__inner {
        display: flex;
        flex-direction: column;
        min-height: 400px;
        padding: 24px;
        border-radius: var(--radius);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .main-banner-mobile__header {
        padding: 0;
        margin-bottom: 32px;
        font-weight: 700;
        font-size: 1.5rem;
        line-height: 2rem;
        color: var(--main-color);
    }

    .main-banner-mobile__desc {
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.25rem;
    }

    .main-banner-mobile__btn {
        margin-top: auto;
        align-self: flex-start;
    }
    /*----- Конец верхнего баннера на главной -----*/

    /*----- Преимущества -----*/

    .features__items {
        --items: 1;
        --gap: 16px;
    }

    .features__item {
        min-height: unset;
        padding: 32px 24px;
    }

    .features__item-text {
        font-weight: 700;
        font-size: 1.125rem;
        line-height: 100%;
    }

    .features__item-icon {
        flex-shrink: 0;
    }
    /*----- Конец преимуществ -----*/

    /*----- Какой транспорт принимаем -----*/
    .accept-transport-mobile__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px;
        background-color: var(--light-back-color);
        border-radius: var(--radius);
    }

    .accept-transport-mobile__img {
        max-width: 230px;
        margin-bottom: 24px;
        height: auto;
    }

    .accept-transport-mobile__header {
        margin-bottom: 16px;
        font-weight: 700;
        font-size: 1.5rem;
        line-height: 1;
    }

    .accept-transport-mobile__subheader {
        margin-bottom: 16px;
        font-size: 1.125rem;
        line-height: 100%;
    }

    .accept-transport-mobile__desc {
        margin-bottom: 16px;
    }

    .accept-transport-mobile__desc:last-child {
        margin-bottom: 0;
    }

    .accept-transport-mobile__dots {
        display: flex;
        align-items: center;
        gap: 8px;
        padding-top: 16px;
    }

    .accept-transport-mobile__dots .owl-dot {
        display: inline-flex;
        width: 100%;
        height: 4px;
        padding: 0;
        margin: 0;
        background-color: var(--light-back-color);
        border: none;
        border-radius: 8px;
    }

    .accept-transport-mobile__dots .owl-dot.active {
        background-color: var(--main-color);
    }
    /*----- Конец какой транспорт принимаем -----*/

    /*----- Шаги -----*/
    .steps__items {
        --items: 1;
    }
    /*----- Конец шагов -----*/

    /*----- Портфолио -----*/
    .portfolio__carousel-arrow-left {
        display: none;
    }

    .portfolio__carousel-arrow-right {
        display: none;
    }

    /* .portfolio__carousel-item {
        width: 320px;
    } */

    .portfolio__carousel-mobile-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding-top: 16px;
    }

    .portfolio__carousel-mobile-dots .owl-dot {
        display: inline-flex;
        width: 45px;
        height: 4px;
        padding: 0;
        background-color: #e2e8f0;
        border-radius: 8px;
        border: none;
        cursor: pointer;
    }
    
    .portfolio__carousel-mobile-dots .owl-dot:last-child {
        margin-right: 0;
    }
    
    .portfolio__carousel-mobile-dots .owl-dot.active {
        background-color: var(--main-color);
    }
    /*----- Конец портфолио -----*/

    /*----- Выездной офис -----*/
    .field-office__inner {
        flex-wrap: wrap;
        min-height: unset;
    }

    .field-office__left {
        width: 100%;
    }

    .field-office__right {
        width: 100%;
        padding: 16px;
    }

    .field-office__header {
        margin-bottom: 8px;
        text-align: center;
        font-size: 1.5rem;
    }

    .field-office__subheader {
        margin-bottom: 16px;
        text-align: center;
        font-size: 1.125rem;
    }

    .field-office__row {
        flex-wrap: wrap;
        margin-bottom: 16px;
    }

    .field-office__input {
        width: 100%;
        margin-bottom: 12px;
    }

    .field-office__submit {
        width: 100%;
    }

    .field-office__captcha-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }

    .field-office__max-text {
        justify-content: center;
        gap: 10px;
        margin-bottom: 0;
        font-size: 1.125rem;
    }
    /*----- Конец выездного офиса -----*/

    /*----- Ответы на вопросы -----*/
    .answers__row {
        flex-wrap: wrap;
    }

    .answers__left {
        width: 100%;
    }

    .answers__right {
        width: 100%;
    }

    .answers__video-block {
        height: 190px;
    }

    .answers__video-text {
        margin-bottom: 16px;
        font-size: 1.125rem;
        line-height: 100%;
    }

    .answers__question {
        padding: 0 19px 0 26px;
    }

    .answers__question.answers__question_active+.answers__answer {
        padding: 0 19px 24px 26px;
    }
    /*----- Конец ответов на вопросы -----*/

    /*----- Остались вопросы? -----*/
    .other-questions__subheader {
        margin-bottom: 16px;
        font-size: 1rem;
    }

    .other-questions__items {
        --items: 1;
        --gap: 16px;
    }

    .other-questions__item {
        padding: 16px;
    }
    /*----- Конец остались вопросы -----*/

    /*----- Отзывы -----*/
    .testims-carousel__dots {
        justify-content: center;
    }

    .testims__desc {
        max-width: 100%;
        margin: 0 auto 16px auto;
        font-size: 1rem;
    }
    /*----- Конец отзывов -----*/

    /*----- Блок контактов -----*/
    .contacts-block {
        display: none;
    }
    /*----- Конец блока контактов -----*/

    /*----- Калькулятор -----*/
    .calculator__inner {
        flex-wrap: wrap;
        padding: 16px;
        border-radius: var(--radius);
    }

    .calculator__left {
        width: 100%;
        margin-bottom: 20px;
    }

    .calculator-form {
        width: 100%;
        padding: 16px;
    }

    .calculator__slider-row {
        margin-bottom: 40px;
    }

    .calculator__left-bottom {
        padding: 16px;
    }

    .calculator__month {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    /*----- Конец калькулятора -----*/

    /*----- Информационный блок -----*/
    .info-block__text {
        padding: 16px;
    }
    /*----- Конец информационного блока -----*/

    /*----- Подвал сайта -----*/
    .footer-mobile__inner {
        padding: 24px;
        margin-bottom: 35px;
        background-color: var(--light-back-color);
        border-radius: var(--radius);
    }

    .footer-mobile__logo-link {
        display: inline-flex;
        width: 190px;
        margin-bottom: 28px;
    }

    .footer__bottom {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 8px;
    }
    /*----- Конец подвала сайта -----*/

    /*----- Блок куки -----*/
    .cookie {
        right: calc(50% - 163px);
    }
    /*----- Конец блока куки -----*/

    /*----- Контакты -----*/
    .contacts__top {
        --items: 1;
        --gap: 24px;
    }

    .contacts__map {
        height: 400px;
        border-radius: var(--radius);
    }

    .contacts__left {
        padding: 24px;
    }

    .contacts__center {
        padding: 24px;
    }

    .contacts__right {
        padding: 24px;
    }

    .about__img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center;
    }

    .about__first-block {
        padding: 24px;
    }

    .about__second-block {
        padding: 24px;
    }
    /*----- Конец контактов -----*/

    /*----- Документы -----*/
    .documents__item {
        flex-direction: column;
    }

    .documents__item-left {
        flex-direction: column;
    }
    /*----- Конец документов -----*/

    /*----- Мобильное меню -----*/
    .mobile-menu {
        display: none;
        width: 100%;
        padding: 0;
        margin: 0;
        background-color: var(--white-color);
        list-style: none;
    }

    .mobile-menu__top {
        display: flex;
        justify-content: flex-end;
        padding: 11px var(--small-gap);
        border-bottom: 1px solid var(--light-steel-color);
    }

    .mobile-menu__list {
        padding: 0 var(--small-gap);
        margin: 0;
    }

    .mobile-menu__item {
        position: relative;
        display: block;
        width: 100%;
        padding: 0;
        border-bottom: 1px solid var(--light-steel-color);
    }

    .mobile-menu__item:last-child {
        border-bottom: none;
    }

    .mobile-menu__link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 52px;
        padding: 0 var(--left-right-padding);
        font-weight: 600;
        font-size: 1.125rem;
        line-height: 1.25rem;
        border-bottom: 1px solid #e2e8f0;
    }

    .mobile-menu__link-expand {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 20px;
        height: 20px;
        background-image: url('/upload/icons/template/mobile-menu-arrow-down.svg');
        background-position: center;
        background-repeat: no-repeat;
        transition: transform var(--transition-delay);
    }

    .mobile-menu__item_active .mobile-menu__link-expand {
        transform: rotateX(180deg);
    }

    .mobile-menu__sublist {
        display: none;
        padding: 0 var(--left-right-padding);
        margin: 0 0 10px 0;
        overflow: hidden;
    }

    .mobile-menu__subitem {
        position: relative;
        display: block;
        padding-top: 20px;
        padding-left: 20px;
        width: 100%;
    }

    .mobile-menu__subitem:last-child .mobile-menu__sublink {
        padding-bottom: 0;
    }

    .mobile-menu__sublink {
        display: block;
        padding: 0;
        font-weight: 600;
        font-size: 1rem;
        line-height: 1;
    }
    /*----- Конец мобильного меню -----*/

    /*----- Верхний баннер на главной -----*/
    .partner-banner-mobile {
        padding: 16px 0 0 0;
        margin-bottom: var(--section-bottom-margin);
    }

    .partner-banner-mobile__inner {
        display: flex;
        flex-direction: column;
        min-height: 400px;
        padding: 24px;
        border-radius: var(--radius);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .partner-banner-mobile__header {
        padding: 0;
        margin-bottom: 32px;
        font-weight: 700;
        font-size: 1.5rem;
        line-height: 2.25rem;
    }

    .partner-banner-mobile__desc {
        display: none;
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.25rem;
    }

    .partner-banner-mobile__btn {
        margin-top: auto;
    }
    /*----- Конец верхнего баннера на главной -----*/

    /*----- Условия партнерской программы -----*/
    .terms__desc {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }

    .terms__items {
        --items: 1;
    }
    /*----- Конец условий партнерской программы -----*/

    /*----- Выплата за нового клиента -----*/
    .payout__inner {
        display: flex;
        flex-direction: column;
        padding: 0;
        background-color: transparent;
        border-radius: 0;
    }

    .payout__header{
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .payout__desc {
        max-width: 100%;
        margin: 0 auto 16px auto;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .payout__row {
        flex-wrap: wrap;
    }

    .payout__submit {
        width: 100%;
    }
    /*----- Конец выплаты за нового клиента -----*/

    /*----- Рабочие схемы -----*/
    .schemes-carousel__item {
        width: 100%;
    }
    /*----- Конец рабочих схем -----*/

    /*----- Приведи друга -----*/
    .invite-friend-mobile__inner {
        border-radius: var(--small-radius);
        overflow: hidden;
    }

    .invite-friend-mobile__img {
        display: block;
        width: 100%;
        height: auto;
    }

    .invite-friend-mobile__bottom {
        display: flex;
        flex-direction: column;
        padding: 16px;
        border: 1px solid var(--border-color);
        border-top: none;
        border-bottom-left-radius: var(--small-radius);
        border-bottom-right-radius: var(--small-radius);
    }

    .invite-friend-mobile__header {
        padding: 0;
        margin-bottom: 16px;
        font-weight: 700;
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .invite-friend-mobile__desc {
        margin-bottom: 16px;
        font-size: 1.125rem;
        line-height: 1.625rem;
    }
    /*----- Конец приведи друга -----*/

    /*----- Ответы на вопросы -----*/
    .answers__right {
        margin-bottom: 16px;
    }

    .answers__left {
        order: 2;
    }
    /*----- Конец ответов на вопросы -----*/

    /*----- Выплата за нового клиента -----*/
    .engage__inner {
        padding: 0;
        background: none;
        background-image: none !important;
    }

    .engage__mobile-img {
        display: block;
        width: 100%;
        height: auto;
        border-top-left-radius: var(--small-radius);
        border-top-right-radius: var(--small-radius);
    }

    .engage__form {
        display: flex;
        flex-direction: column;
        padding: 16px;
        border: 1px solid var(--border-color);
        border-top: none;
        border-bottom-left-radius: var(--small-radius);
        border-bottom-right-radius: var(--small-radius);
    }

    .engage__header {
        margin-bottom: 16px;
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .engage__desc {
        margin: 0 auto 16px auto;
        font-weight: 400;
        font-size: 1.125rem;
        line-height: 1.625rem;
    }

    .engage__row {
        display: flex;
        flex-direction: column;
        margin-bottom: 16px;
    }

    .engage__submit {
        width: 100%;
    }

    .engage__captcha-row {
        max-width: 100%;
    }
    /*----- Конец выплаты за нового клиента -----*/
}