/* КНОПКА СЛЕВА */
.logo {
    background-image: url(/assets/logo1.svg);
    background-repeat: no-repeat;
    background-position: center;
    -moz-background-size: contain;
    background-size: contain;
        z-index: 9999;
}
.menu-side {
    position: fixed;
    left: 0;
    top: 40%;
    z-index: 9997;
    cursor: pointer;
}

.menu-side_b {
    background: #2a6ea5;
    color: #fff;
    padding: 12px 10px;
    writing-mode: vertical-rl;
    text-align: center;
}

.menu-side_text {
    font-size: 12px;
    margin-bottom: 10px;
}

.menu-side_hamburger {
    margin-top: 10px;
}

.menu-side_line {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    margin: 4px auto;
}

/* ВЫЕЗЖАЮЩЕЕ МЕНЮ */
.menu-block {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: #2a6ea5;
    color: #fff;
    z-index: 9998;
    transition: 0.3s;
}

.menu-block.active {
    left: 0;
}

.menu-content {
    padding: 20px;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 20px;
}

.menu-close {
    cursor: pointer;
}

/* верхнее меню */
.menu-nav {
    margin-bottom: 20px;
}

.menu-link {
    display: block;
    color: #aaa;
    padding: 8px 0;
    text-decoration: none;
}

.menu-link.active,
.menu-link:hover {
    color: #fff;
}

/* список */
.menu-list a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    color: #fff;
    text-decoration: none;
}

.menu-list a:hover {
    color: #fff;
}

@media (max-width: 576px) {
    .menu-side {
        margin-top: 170px;
    }
}