.header {
    color: var(--font-color-menu);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px var(--spacing-left);
    background-color: var(--background-navbar);
    height: var(--header-height);
    width: 100%;
    top: 0;
    position: fixed;
    z-index: 2;
}

    .header .img-header {
        width: 130px;
        filter: var(--logo-filter);
        height: auto;
    }

.menu-right-wrapper {
    display: flex;
    align-items: center;
    gap: 2.5vw;
    position: relative;
}

.menu-left-wrapper {
    display: flex;
    gap: 2.5vw;
    align-items: center;
}

.nav-item {
    list-style: none;
}

    .nav-item a {
        color: var(--font-color-menu);
        font-size: var(--body-size);
        font-weight: 500;
        transition: color .5s ease;
        padding: 0 12px;
    }

        .nav-item a.nav-item-active {
            color: var(--font-color-menu-active);
            font-weight: 700;
            border-bottom: 2px solid var(--font-color-menu-active);
            padding: 0 12px 17px;
        }

.menu-left-wrapper .nav-list ul {
    display: flex;
    gap: 2.5vw;
    padding: 0;
}

.menu-right-wrapper span {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.menu-right-wrapper .menu-header {
    position: absolute;
    width: 180px;
    top: 60px;
    right: -17px;
    min-height: auto;
    padding: 20px;
    background-color: var(--background-navbar);
    z-index: 1;
    border-radius: 8px;
    font-size: var(--caption-1-size);
    animation-duration: 1s;
    display: none;
}

.menu-right-wrapper .menu-arrow {
    position: absolute;
    top: -13px;
    right: 137px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 17px 10px;
    border-color: transparent transparent #302442 transparent;
}

.buutton-login-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-right-wrapper .menu-header .menu-header-content ul {
    padding: 0;
}

    .menu-right-wrapper .menu-header .menu-header-content ul li {
        list-style: none;
    }

        .menu-right-wrapper .menu-header .menu-header-content ul li a {
            font-size: var(--caption-1-size);
            font-weight: 400;
            list-style: none;
            cursor: pointer;
            color: var(--font-color-menu);
        }

            .menu-right-wrapper .menu-header .menu-header-content ul li a:hover {
                color: var(--font-color-menu);
            }

img.menu-icon {
    width: 20px;
}

.menu-right-wrapper img {
    cursor: pointer;
    filter: var(--logo-filter)
}

.sidenav {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0;
    height: 100%;
    width: 300px;
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    font-size: 18px;
    overflow-y: scroll;
    overflow-x: hidden;
    box-shadow: -2px 2px 5px 0 rgba(0,0,0,.31);
    transition: transform 0.2s ease-in;
    transform: translate(300px);
}

    .sidenav .profile-info {
        padding: 25px 25px 20px;
        background: #ad2d78;
        background: var(--background-color-dark-gradient);
    }

        .sidenav .profile-info a span {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--neutral-100);
            font-size: var(--caption-1-size);
            font-weight: 400;
        }

        .sidenav .profile-info a img {
            width: 50px;
        }

ul.sidenav {
    background: var(--background-navbar);
}

    ul.sidenav li {
        padding: 10px 20px;
        font-weight: 500;
    }

.sidenav .sub-item a {
    padding-left: 30px;
    font-weight: 400;
    color: var(--font-color-menu);
    font-size: var(--caption-1-size);
}

.sidenav .nav-item a {
    color: var(--font-color-menu);
    font-size: var(--caption-1-size);
    font-weight: 500;
    white-space: nowrap;
}

.sidenav li a:hover {
    color: var(--primary-10);
}

ul.sidenav li.nav-item {
    border-bottom: 1px var(--border-textbox) solid;
}

.sidenav-content {
    background: var(--background-navbar);
}

.search-overlay {
    min-height: 100vh;
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--background-color);
    z-index: 3;
}

.input-group-search {
    position: relative;
    width: 95%;
    margin: 0 auto;
    max-width: 400px;
}

    .input-group-search .search-input {
        width: 100%;
        padding: 10px 25px 10px 52px;
        border-radius: 100px;
        background-color: var(--neutral-80);
        border: none;
        height: 50px;
        color: var(--neutral-40);
        font-family: 'Open Sans', Arial, sans-serif;
        font-weight: 400;
    }

        .input-group-search .search-input:focus {
            outline: none !important;
            border: 2px solid var(--primary-20);
        }

    .input-group-search .clear-icon {
        position: absolute;
        right: 16px;
        top: 2px;
        font-size: 32px;
        font-weight: 500;
        color: var(--neutral-70);
        cursor: pointer;
    }

    .input-group-search .img-icon {
        position: absolute;
        left: 18px;
        top: 15px;
    }

#searchsearchsearch #searchForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 25vh;
}


.nav-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    background: var(--background-navbar);
    width: 92%;
    border-radius: 60px;
    justify-content: space-around;
    padding: 12px 20px;
    margin: 0 auto 10px;
    text-align: center;
    z-index: 2;
}

.nav-item-mobile p {
    margin: 0;
}

.nav-item-mobile img {
    filter: var(--logo-filter);
}


@media (max-width: 769px) {
    .header {
        padding: 5px var(--spacing-left-mobile);
    }

    .nav-list-links {
        display: none;
    }

    .nav-mobile {
        display: flex;
    }
}
