/* ==================================================
   ПЛАНШЕТЫ И МОБИЛЬНЫЕ
================================================== */

@media (max-width: 820px) {

    /* ==================================================
       ОБЩАЯ СТРУКТУРА
    ================================================== */

    .container {
        width: min(
            calc(100% - 28px),
            var(--container-width)
        );
    }


    /* ==================================================
       ШАПКА
    ================================================== */

    .header {
        position: relative;
    }

    .header .container {
        position: relative;

        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;

        min-height: 0;
        padding: 8px 0;

        gap: 0;
    }


    /* ==================================================
       ЛОГОТИП
    ================================================== */

    .logo {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        margin: 0 0 14px 0;

        order: 1;
    }

    .logo img {
        display: block;

        width: auto;
        height: 48px;
    }


    /* ==================================================
       ТЕЛЕФОН
    ================================================== */

    .header__actions {
        width: auto;

        display: flex;
        align-items: center;
        justify-content: flex-start;

        margin: 0;

        gap: 0;

        order: 2;
    }

    .header__phone {
        margin: 0 0 0 8px;

        font-size: 24px;
        line-height: 1;

        white-space: nowrap;
    }


    /* ==================================================
       НАВИГАЦИЯ / БУРГЕР
    ================================================== */

    .header__nav {
        width: auto;

        display: flex;
        align-items: center;
        justify-content: flex-end;

        margin-left: auto;

        order: 3;
    }

    .menu-mobile-toggle {
        display: flex;

        margin: 0;
    }


    /* ==================================================
       ГЛАВНОЕ МОБИЛЬНОЕ МЕНЮ
    ================================================== */

    .menu {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        z-index: 1200;

        display: none;

        width: 100%;

        padding: 12px 20px 18px;

        background: #ffffff;

        border-bottom: 1px solid var(--color-border);

        box-shadow:
            0 16px 30px rgba(20, 25, 38, 0.12);

        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }

    .menu.is-open {
        display: flex;
    }


    /* ==================================================
       ПУНКТЫ МОБИЛЬНОГО МЕНЮ
    ================================================== */

    .menu__item {
        width: 100%;
    }

    .menu > .menu__link,
    .menu__item > .menu__link {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 13px 4px;

        font-size: 16px;

        border-bottom: 1px solid #eef0f4;
    }

    .menu > .menu__link:last-child {
        border-bottom: 0;
    }

    button.menu__link {
        width: 100%;

        padding: 13px 4px;

        font-size: 16px;
    }


    /* ==================================================
       ВЫПАДАЮЩЕЕ МЕНЮ
    ================================================== */

    .menu__dropdown {
        position: static;

        width: 100%;
        max-height: 60vh;

        margin-top: 6px;
        padding: 8px;

        display: none;

        overflow-y: auto;
        overflow-x: hidden;

        visibility: visible;
        opacity: 1;
        pointer-events: auto;

        background: #f7f8fa;

        border: 0;
        border-radius: 12px;

        box-shadow: none;

        transform: none;

        transition: none;
    }

    .menu__item.is-open .menu__dropdown {
        display: block;

        visibility: visible;
        opacity: 1;

        transform: none;
    }

    .menu__dropdown::before {
        display: none;
    }

    .menu__dropdown a {
        padding: 10px 12px;

        font-size: 14px;
    }


    /* ==================================================
       ОСНОВНАЯ ЧАСТЬ
    ================================================== */

    .main {
        padding: 24px 0 44px;
    }

    .main > .container {
        padding: 30px 26px 36px;

        border-radius: 20px;
    }

    .main > .container::before {
        left: 26px;
    }


    /* ==================================================
       ХЛЕБНЫЕ КРОШКИ
    ================================================== */

    .breadcrumbs {
        margin-bottom: 24px;
    }


    /* ==================================================
       О КОМПАНИИ
    ================================================== */

    .about_us {
        display: flex;
        flex-direction: column;

        gap: 0;
    }

    .about_company_text {
        display: contents;
    }

    .about_company_text h1 {
        order: 1;

        width: 100%;
    }

    .about_company_photo {
        order: 2;

        width: min(100%, 320px);

        margin: 0 auto 28px;
    }

    .about_company_photo img {
        display: block;

        width: 100%;
        height: auto;

        border-radius: 6px;
    }

    .about_company_text .page_content {
        order: 3;

        width: 100%;
    }


    /* ==================================================
       ФОРМЫ
    ================================================== */

    .form-grid {
        grid-template-columns: 1fr;
    }


    /* ==================================================
       ПОДВАЛ
    ================================================== */

    .footer__grid {
        grid-template-columns: 1fr 1fr;

        gap: 32px 50px;
    }

    .footer__feedback {
        grid-column: 1 / -1;
    }


    /* ==================================================
       СЛАЙДЕР
    ================================================== */

    .slider_wrp .img-num {
        display: none;
    }
}


/* ==================================================
   ТЕЛЕФОНЫ
================================================== */

@media (max-width: 560px) {

    /* ==================================================
       ОБЩАЯ СТРУКТУРА
    ================================================== */

    body {
        font-size: 15px;
    }

    .container {
        width: min(
            calc(100% - 20px),
            var(--container-width)
        );
    }


    /* ==================================================
       ШАПКА
    ================================================== */

    .header {
        padding: 8px 0;
    }

    .header .container {
        padding: 0;

        gap: 0;
    }


    /* ==================================================
       ЛОГОТИП
    ================================================== */

    .logo {
        width: 100%;

        justify-content: center;

        margin: 0 0 14px 0;
    }

    .logo img {
        width: auto;
        height: 44px;
    }


    /* ==================================================
       ТЕЛЕФОН
    ================================================== */

    .header__actions {
        width: auto;

        justify-content: flex-start;

        margin: 0;
    }

    .header__phone {
        margin-left: 8px;

        font-size: 24px;

        white-space: nowrap;
    }


    /* ==================================================
       БУРГЕР
    ================================================== */

    .header__nav {
        width: auto;

        margin-left: auto;
    }

    .menu-mobile-toggle {
        display: flex;

        width: 44px;
        height: 44px;

        margin: 0;
    }


    /* ==================================================
       МОБИЛЬНОЕ МЕНЮ
    ================================================== */

    .menu {
        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        padding: 12px 16px 18px;

        gap: 0;
    }

    .menu__item {
        width: 100%;
    }

    .menu > .menu__link,
    .menu__item > .menu__link {
        width: 100%;

        justify-content: space-between;

        min-height: 40px;

        padding: 13px 4px;

        font-size: 14px;
    }

    button.menu__link {
        width: 100%;

        padding: 13px 4px;

        font-size: 14px;
    }


    /* ==================================================
       ВЫПАДАЮЩИЙ КАТАЛОГ
    ================================================== */

    .menu__dropdown {
        width: 100%;
        max-height: 55vh;

        padding: 7px;
    }

    .menu__dropdown a {
        padding: 11px 12px;

        font-size: 14px;
        line-height: 1.4;
    }


    /* ==================================================
       ОСНОВНАЯ ЧАСТЬ
    ================================================== */

    .main {
        padding: 12px 0 34px;
    }

    .main > .container {
        padding: 26px 20px 30px;

        border-radius: 18px;
    }

    .main > .container::before {
        left: 20px;

        width: 70px;
    }


    /* ==================================================
       ХЛЕБНЫЕ КРОШКИ
    ================================================== */

    .breadcrumbs {
        margin-bottom: 20px;

        font-size: 13px;
    }


    /* ==================================================
       ЗАГОЛОВКИ
    ================================================== */

    h1 {
        font-size: 34px;
    }

    h2 {
        margin-top: 38px;

        font-size: 27px;
    }

    h3 {
        font-size: 20px;
    }


    /* ==================================================
       КОНТЕНТ
    ================================================== */

    .content {
        font-size: 16px;
        line-height: 1.7;
    }

    .content blockquote {
        padding: 20px;
    }

    .content table {
        display: block;

        overflow-x: auto;

        white-space: nowrap;
    }


    /* ==================================================
       О КОМПАНИИ
    ================================================== */

    .about_company_photo {
        width: min(100%, 280px);

        margin: 0 auto 24px;
    }

    .about_company_text .page_content {
        margin-bottom: 20px;

        font-size: 16px;
        line-height: 1.7;
    }


    /* ==================================================
       ФОРМЫ
    ================================================== */

    .form-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .form-row {
        margin-bottom: 16px;
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .form-actions button,
    .form-actions .button {
        width: 100%;
    }


    /* ==================================================
       ПОДВАЛ
    ================================================== */

    .footer {
        padding: 28px 0 24px;
    }

    .footer .container {
        padding-top: 26px;
    }

    .footer__grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer__feedback {
        grid-column: auto;
    }

    .footer__logo {
        height: 28px;
    }

    .footer__company {
        gap: 14px;
    }

    .footer__phone {
        font-size: 18px;
    }

    .footer__button {
        width: 100%;
    }
}


/* ==================================================
   МАЛЕНЬКИЕ ТЕЛЕФОНЫ
================================================== */

@media (max-width: 380px) {

    /* ==================================================
       ОБЩАЯ СТРУКТУРА
    ================================================== */

    .container {
        width: min(
            calc(100% - 16px),
            var(--container-width)
        );
    }


    /* ==================================================
       ЛОГОТИП
    ================================================== */

    .logo img {
        height: 40px;
    }


    /* ==================================================
       ТЕЛЕФОН
    ================================================== */

    .header__phone {
        margin-left: 6px;

        font-size: 21px;
    }


    /* ==================================================
       БУРГЕР
    ================================================== */

    .menu-mobile-toggle {
        width: 42px;
        height: 42px;
    }


    /* ==================================================
       ОСНОВНАЯ ЧАСТЬ
    ================================================== */

    .main > .container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .main > .container::before {
        left: 16px;
    }


    /* ==================================================
       ЗАГОЛОВКИ
    ================================================== */

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }


    /* ==================================================
       О КОМПАНИИ
    ================================================== */

    .about_company_photo {
        width: min(100%, 260px);
    }


    /* ==================================================
       МЕНЮ
    ================================================== */

    .menu__link {
        padding-right: 11px;
        padding-left: 11px;
    }
}