header {
    background-color: var(--vinous10);
}
header > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 27px 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);
    color: var(--neutralGray90) !important;
}
header > div > nav > ul a::after {
    content: none;
}
header > div > nav > ul a:hover {
    color: var(--orange) !important;
}
header > div > a {
    max-width: 186px;
    z-index: 70;
}
@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: var(--innerBg);
        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: 84px;
        margin-left: 6%;
        flex-direction: column;
        align-items: start;
        gap: 12px;
    }
    header > div > nav > ul a {
        text-transform: uppercase;
        color: white !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(-6%) translateY(-0%);
    }
}
