.header {
    background-color: var(--color-dark-green);
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 200;
}

.header.active__toolbar {
    padding-top: 39px;
}

.header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    min-height: 68px;
}

.header__logo a {
    display: block;
}

.header__menu {
    display: none;
}

.header__menu ul.menu li {
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
}

.header__menu ul.menu li a:not(.button) {
    color: var(--color-light-grey);
    text-decoration: none;
}

.header__menu ul.menu li a:hover {
    text-decoration: underline;
}

.header__menu ul.menu li:last-child a:hover {
    text-decoration: none;
}

.header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    cursor: pointer;
}

.header__menu-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

@media (width >=768px) {
    .header.active__toolbar {
        padding-top: 79px;
    }

    .header__inner {
        gap: 48px;
    }

    .header__menu {
        display: flex;
        flex: 1;
    }

    .header__menu ul.menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 36px;
        flex: 1;
    }

    .header__menu ul.menu li:last-child {
        margin-left: auto;
    }

    .header__menu ul.menu li:last-child a {
        font-size: 15px;
        line-height: 20px;
    }

    .header__hamburger {
        display: none;
    }

    .header__menu-close {
        display: none;
    }
}

@media (width <=767px) {
    .header__inner {
        justify-content: space-between;
    }

    .header__logo svg {
        width: 165px;
    }

    body.user-logged-in .header__menu {
        top: 39px;
    }

    .header__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #080F17;
        background-image: radial-gradient(193.34% 155.87% at 50% -1.55%, rgba(8, 15, 23, 0.70) 31.17%, rgba(162, 210, 96, 0.04) 100%);
        position: fixed;
        height: 100svh;
        width: 100%;
        left: 0;
        top: 0;
        padding: 20px;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        opacity: 0;
        visibility: hidden;
        z-index: 20;
    }

    .header__menu.state-open {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        opacity: 1;
        visibility: visible;
    }

    .header__menu ul.menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
    }

    .header__menu ul.menu li {
        font-size: 20px;
        line-height: 150%;
        text-align: center;
    }

    .header__menu ul.menu li:last-child a {
        font-size: 20px;
        line-height: 150%;
        padding: 14px 30px;
    }
}