.mobile-nav__toggle  {
    display: none;
}
.mobile-header__messenger {
    display: none;
}
/* телефоны */
@media (max-width: 768px){

    /* ============================= */
    /*         TEMPLATE              */
    /* ============================= */
    body { font-size: 14px; }
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    .flex-row {
       flex-direction: column;
    }
    /* ============================= */
    /*         HEADER                */
    /* ============================= */


    .site-header__logo img {
        max-width: 129px;
    }
    .site-header__address {
        display: none;
    }
    .site-header__contacts {
        margin-left: unset;
    }
    .site-header__phone-numbers {
        display: none;
    }
    .site-header__email {
        display: none;
    }
    .site-header__bottom {
        display: none;
    }

    .site-header__contact-info {
        flex-direction: row;
        gap: 8px;
    }
    .site-header__phone {
        border-radius: 40px;
        width: 40px;
        height: 40px;
        background: var(--color-gray-100);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .site-header__messenger {
        display: none;
    }
    .mobile-header__messenger {
        border-radius: 40px;
        width: 40px;
        height: 40px;
        background: var(--color-gray-100);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-nav__toggle {
        display: flex;
        border-radius: 8px;
        width: 40px;
        height: 40px;
        background: var(--color-primary);
        align-items: center;
        justify-content: center;
        background-image: url('../images/icons/menu.svg');
        background-position: center;
        background-repeat: no-repeat;
    }
    /**
        ОТКРЫТОЕ МОБИЛЬНОЕ МЕНЮ
     */
    .site-header__nav {
        width: 100%;
        padding: 24px 20px;
    }
    .site-header__nav ul{
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .site-menu__item {
        border-bottom: 1px solid #f3f3f3;
        height: 48px;
        width: 100%;
        display: flex;
    }
    .site-menu__item a {
        font-size: 16px;
    }
    .site-menu__item a.btn.btn-primary {
        width: 100%;
        background: transparent;
        color: var(--color-text);
        padding: 0;
        justify-content: flex-start;
    }
    .site-header__bottom a.btn.btn-secondary {
        width: calc(100% - 20px);
        margin-bottom: 10px;
    }
    .site-menu__item svg {
        filter: brightness(0);
    }


    body.mobile-menu-open {
        height: 100vh;
        width: 100vw;
        overflow: hidden;
    }
    .mobile-menu-open .mobile-nav__toggle {
        background-image: url('../images/icons/close.svg');
    }
    .mobile-menu-open .site-header__bottom {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: 0;
        bottom: 0;
        right: 0;
        top: 86px;
        margin: 0;
        background-color: var(--color-white);
    }

    .site-header {

        position: fixed;
        width: 100%;
        z-index: 100;
    }
    .bx-breadcrumb {
        margin-top: 8px;
    }

    /* ============================= */
    /*         FOOTER                */
    /* ============================= */

    .site-footer__row {
        flex-direction: column;
    }



    /* ============================= */
    /*          CONTACTS             */
    /* ============================= */
    .page-contacts__content {
        width: 100%;
        border-radius: 20px;
        padding: 24px;
    }

    .site-main {
        padding-top: 86px;
    }

}