/* Header Styles */
header {
    z-index: 81;
    position: fixed;
}

header, .container {
    width: 100%;
    padding: 20px 0;
    background-color: var(--white);
}

.cache {
    z-index: 95;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 125px;
    background-color: var(--white);
}

header > .container {
    width: calc(100% - 80px);
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header > .container > a {
    z-index: 98;
}

header > .container > a > img.top {
    height: 70px;
}

header > .container > a > img {
    height: 45px;
    transition: 0.3s;
}

.nav-content > span {
    z-index: 99 !important;
}

.nav-content > span:first-child {
    margin-right: 30px;
}

.items,
header > .container {
    width: calc(100% - 80px);
    max-width: 900px;
}

/* Submenu Styles */
.submenu {
    z-index: 90;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background-color: var(--white);
    transform: translateY(-100%);
    transition: 0.4s ease-in;
}

.submenu.open {
    transform: translateY(125px);
}

.submenu .items {
    margin: 20px auto 80px;
    display: flex;
}

/* Content Item Styles */
.content-item {
    height: 100%;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.content-item:nth-child(1) {
    max-width: 40%;
    padding-inline-end: 102px;
}

.content-item:nth-child(2) {
    max-width: 45%;
    padding-inline-end: 64px;
}

.content-item:nth-child(3) {
    max-width: 15%;
    padding-inline-end: 44px;
}

.content-item > ul {
    list-style: none;
}

.content-item > ul > li:not(:first-child) {
    padding: 10px 0 0;
}

.content-item:first-child > ul > li:not(:first-child) {
    padding: 15px 0 0!important;
}

.content-item > ul > li.main {
    font-size: 1.5rem;
    text-transform: uppercase;
}

.content-item > ul > li.secondary {
    font-size: 0.75rem;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.little {
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--grey-little-information);
}

.content-item a.little {
    color: black;
    width: fit-content;
    margin-top: 5px;
}

/*Blur effect*/

#blur-effect {
    z-index: 80;
    position: fixed;

    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    backdrop-filter: blur(8px);
    pointer-events: none;

    display: none;
    opacity: 0;
}

#blur-effect.open {
    display: block;
    animation: blurAnimation 0.4s ease-in forwards !important;
}

@keyframes blurAnimation {
    0% {
        opacity: 0;
        display: none !important;
    }
    5% {
        opacity: 0;
        display: block !important;
    }
    100% {
        opacity: 1;
        display: block !important;
    }
}

/* Mobile Styles */

.menuMobile {
    display: none;
}

.menuMobileAccount {
    transform: translateY(-100%);
}

@media (max-width: 920px) {
    .hideMobile {
        display: none;
    }

    .menuMobileMenu {
        transition: 0.5s;
        transform: translateY(-100%);
    }
    .menuMobileMenu.open {
        transform: translateY(0);
    }

    .menuMobile {
        z-index: 90;
        top: 0; left: 0;

        display: block;
        height: fit-content;
        padding-top: 125px;
        width: 100%;
        position: fixed;

        background-color: var(--white);
    }

    .menuMobile ul {
        width: fit-content;
        margin: 0 auto;
        height: fit-content;
        list-style: none;

        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
        padding: 50px 0;
    }

    .menuMobile ul li a {
        font-size: 16px;
    }

    #submenu-menu.open + #submenu-mobile {
       background-color: darkblue;
    }

    .menuMobileAccount.open {
        transition: 0.5s;
        transform: translateY(0);
    }
}

@media (max-width: 590px) {

    .menuMobile ul {
        height: fit-content;
        flex-direction: column;
        max-height: calc(100vh - 125px);
        padding: 80px 0;
    }

    .menuMobile ul li a {
        font-size: 20px;
    }

    #submenu-menu.open + #submenu-mobile {
        background-color: darkblue;
    }
}