@media (max-width: 800px) {
    .menu__line {
        height: 2px;
        width: 18px;
        background: #000000;
        border-radius: 3px;
        margin: 4px auto;
        position: relative;
    }

    .menu__line_white {
        background: #FFFFFF;
    }

    .menu__item-hamburger_active .menu__line:nth-child(1) {
        transform: rotate(45deg);
        top: 6px;
    }

    .menu__item-hamburger_active .menu__line:nth-child(2) {
        visibility: hidden;
    }

    .menu__item-hamburger_active .menu__line:nth-child(3) {
        transform: rotate(-45deg);
        top: -6px;
    }

    .menu__wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.hamburger-menu {
    display: none;
    list-style-type: none;
    position: absolute;
    background-color: #FFFFFF;
    border-radius: 10px;
    z-index: 10;
    top: 65px;
    right: 25px;
    box-shadow: 0 10px 20px 0 #0F376533;
    padding: 5px;
}

.hamburger-menu__wrapper_active {
    display: block;
}

.hamburger-menu li {
    font-family: Avenir Next;
    font-size: 16px;
    font-weight: 500;
    padding: 12px;
    display: flex;
    align-items: center;
}

.hamburger-menu li img {
    margin-right: 10px;
    filter: brightness(0%);
    vertical-align: middle;
}
