div#header-wrapper {
    display: flex;
    background: var(--white);
    padding: 16px 24px;
    justify-content: space-between;
}

div#header-menu {
    display: flex;
    gap: 42px;
    align-items: center;
}

header.desktop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.header-menu-item a {
    color: var(--navy);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    text-decoration: none;
    transition: ease 0.4s;
}

.header-menu-item a:hover {
    opacity: 0.4;
}

.header-menu-item a.button.mint {
    opacity: 1 !important;
}

.header-menu-item a.button {
    padding: 14px 24px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

div#header-logo {
    width: 97px;
    height: 42px;
}

div#header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header.mobile {
    display: none;
}

@media (max-width: 800px) {
    header.desktop {
        display: none;
    }

    header.mobile {
        display: block;
    }
}

/* Cookie */

button[data-cc="show-preferencesModal"] {
    background: #F0F4F7;
    border: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
    border-radius: 100%;
    aspect-ratio: 1 / 1;
    padding: 10px;
    display: flex;
    pointer-events: all;
    cursor: pointer;
    transition: ease 0.5s;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 1);
}

button[data-cc="show-preferencesModal"]:hover {
    opacity: 0.7;
}

button[data-cc="show-preferencesModal"] svg {
    width: 25px;
    height: 25px;
}

/* Mobile Menu */

div#mobile-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

div#mobile-header-logo img {
    width: 97px;
    height: 42px;
}

.mobile button {
    background: none;
    border: none;
}

.mobile button svg {
    width: 20px;
}

header.mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--white);
    padding: 10px 0;
}

nav.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.mobile-menu-item a {
    color: var(--navu);
    text-decoration: none;
}