nav {
    padding: 2.4rem 5rem;
    background: #FFFFFF;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    max-width: 100%;
    overflow: hidden !important;
}


.primary-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.logo {
    max-width: 4.8rem;
    /* max-width: fit-content; */
    max-height: 6rem;
    z-index: 10;

}

.close-btn {
    display: none;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    min-width: 25px;
    height: 20px;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: #0E1628;
}

.nav-lists {
    display: flex;
    gap: 2.4rem;
    align-items: center;
}

.nav-lists_list {
    color: #0E1628;
}

.nav-lists_list:hover {
    color: #4A7EFC;
}

.nav-lists_list .active {
    color: #4A7EFC;
}

.nav-lists_list .active:hover {
    color: #0E1628;
}

.nav-lists_list a {
    text-decoration: none;
}

.mobile-btn {
    display: none;
    max-width: fit-content !important;
}


@media (max-width: 992px) {
    nav {
        padding: 1.4rem 2rem;
        border-bottom: 0.7px solid #0E16284D !important;
    }

    .close-btn {
        display: block;
        z-index: 10;
        position: absolute;
        top: 3.6rem;
        right: 5%;
    }

    .desktop-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-btn {
        display: block;
        min-width: 90%;
        margin: 0 auto;
        margin-top: 2rem;
    }

    .nav-lists {
        position: fixed;
        top: -100%;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        /* justify-content: center; */
        /* padding: 4rem; */
        transition: top 0.4s ease-in-out;
        padding-top: 10rem;

        li {
            padding: 3rem 2rem;

            width: 100%;

            a {
                font-size: 1.8rem;
                min-width: 100%;
            }
        }

        li:hover {
            background: #0E162822;
        }

        /* li:first-of-type {
            z-index: 1;
            width: 100%;
        } */
    }

    .nav-lists.show {
        top: 0;
        /* display: block; */
    }

    .nav-lists {
        /* display: none; */
    }


}

@media (min-width: 768px) and (max-width: 992px) {
    nav {
        padding: 2.4rem 4rem;

    }
}