

.burger {
    display: none;
    position: relative;
    width: 30px;
    height: 22px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #F1CDB3;
    position: absolute;
    transition: 0.3s all linear;
}

.burger-line-second {
    top: 50%;
    transform: translateY(-50%);
}

.burger-line-third {
    top: 100%;
    transform: translateY(-50%);
}

.sticky-container.burger--active::before {
    content: "";
    display: block;
    position: absolute;
    background: #292929;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 60%;
}

.header-logo--burger {
    display: none;
}

@media (max-width: 767.9px) {
    .burger {
        transition: 0.3s;
        z-index: 10;
    }

    .burger.burger--active {
        transform: rotate(90deg);
    }

    .header-logo--burger {
        display: block;
        margin: 30px 0 30px 10px;
    }

    .body-burger {
        overflow: hidden;
    }

    .body-burger::before {
        content: "";
        display: block;
        position: absolute;
        background: #292929;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 60%;
    }

    .menu {
        position: fixed;
        display: flex;
        flex-direction: column;
        height: 100vh;
        width: 320px;
        top: 0;
        right: -999px;
        z-index: 3;
        overflow: auto;
        background: #292929;
        transition: right 0.6s ease-in;
    }

    .burger {
        display: block;
        margin-right: 43px;
    }

    .menu.menu--burger{
        right: 0;
        transition: right 0.4s ease-out;
    }

    .menu__list--burger {
        height: 100%;
        overflow: auto;
    }

    .menu__list{
        height: 100%;
        min-height: 400px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 0 0 90px 0;        /*выравнивание по высоте экрана*/
        margin:0 38px 0 39px;
    }

    .menu__item + .menu__item{
        margin: 0;
    }

    .menu__link{
        font-size: 32px;
        line-height: 51px;
    }
}


