.head__info {
    margin-right: 34px;
    font-size: 18px;
    line-height: 110%;
    display: flex;
    align-items: center;
}
.head__info::before {
    content: '';
    background-repeat: no-repeat;
    width: 30px;
    height: 20px;
    display: inline-block;
    margin-right: 7px;
}
.head__info--address::before {
    background-image: url("/images/icons/map_pin.svg");
}
.head__info--time::before {
    background-image: url("/images/icons/clock.svg");
}
.head__info--menu {
    margin: 8px 0;
    white-space: normal;
}
.head__info--address.head__info--menu {
    border-top: 1px solid #DFE0E1;
    margin-top: 20px;
    padding-top: 24px;
}

.menu {
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 0;
    color: #232C32;
    padding: 90px 40px 30px;
    align-items: stretch;
    justify-content: start;
    overflow-y: auto;

    transition: opacity .2s;
    opacity: 0;
    pointer-events: none;
}
html.is-menu-open .menu {
    opacity: 1;
    pointer-events: auto;
}
.menu__nav {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.menu__nav-item {
    display: flex;
    font-size: 18px;
    line-height: 160%;
    margin: 8px 0;
    align-items: center;
    color: #808080;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: color .15s;
}
.menu__nav-item.is-active, .menu__nav-item:hover {
    color: #232C32;
}
.menu__nav-item:hover img, .menu__nav-item.is-active img {
    filter: brightness(0);
}
.menu__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}
.menu__btn {
    padding: 0;
    margin: 0;
    height: 58px;
    line-height: 58px;
    font-size: 16px;
    font-weight: normal;
}
.menu__btn:not(.btn--primary) {
    color: #232C32;
    border-color: #232C32;
}
.menu__phone {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    margin-top: 35px;
    color: #333;
    text-decoration: none;
}

.menu__btn {
    margin-left: 20px;
}

.menu__nav-item img {
    margin-left: 5px;
}
.menu__nav-item:hover img, .menu__nav-item.is-active img {
    filter: brightness(0) invert(1);
}


/** Menu trains */
.menu-trains {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.2);

    opacity: 0;
    pointer-events: none;

    transition: opacity 0s;
}
.menu-trains__content {
    width: 100%;
    display: inline-grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 220px;
    padding: 40px;
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 8px 8px 28px rgba(48, 29, 6, 0.1);
    border-radius: 24px;

    transform: translateY(-20px);
    transition: transform .25s;
}
.menu-train__item {
    height: 140px;
    display: flex;
    align-items: center;
    border-radius: 24px;
    background-color: #323C42;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-decoration: none;
    transition: all .15s;
}
.menu-train__item:hover {
    box-shadow: 5px 5px 10px rgba(48, 29, 6, 0.3);
    transform: translateY(-2px);
}
.menu-train__item-name {
    margin: 0 15% 0 24px;
    color: #fff;
}

/* Sub menu */
.menu__nav-sub-items {
    display: none;
    padding-left: 20px;
}

@media (max-width: 780px) {
    .menu {
        padding: 70px 20px 20px;
    }
}