.header__wrapper {
    background-color: var(--ultraDark20);
}
header > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 48px 0;
}

header > div > nav > a {
    display: none !important;
}
header > div > nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 39px;
}
header > div > nav > ul a {
    width: max-content;
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
header > div > nav > ul a::after {
    content: none;
}
header > div > nav > ul a:hover {
    color: var(--green) !important;
}
header > div > a {
    max-width: 186px;
    z-index: 80;
}
@media (max-width: 1024px) {
    header > div {
        padding: 16px 0;
    }
    header > div > a:last-child {
        display: none;
    }
    header > div > nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(21, 21, 22, 0.9);
        backdrop-filter: blur(8px);
        z-index: 50;
        transform: translateX(-120%) translateY(-0%);
        transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
        display: flex;
        flex-direction: column;
    }
    header > div > nav > ul {
        margin-top: 124px;
        margin-left: 24px;
        flex-direction: column;
        align-items: start;
        gap: 40px;
        height: 80vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    header > div > nav > ul a {
        /* text-transform: uppercase; */
        color: var(--textMain) !important;
        font-size: 16px !important;
    }
    header > div > nav > a {
        display: inline-block !important;
        margin-top: auto;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 52px;
        z-index: 90;
        max-width: 90%;
        /* background-color: var(--orange) !important; */
        color: var(--textBtn) !important;
    }
    .navOpen {
        transform: translateX(-5.9%) translateY(-0%);
    }
}
