

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

    width: 90%;
    margin: 0 auto;
}



.nav-container .nav {
    display: flex;
    flex-grow: 1;
}

.nav-container .nav--ul__one {
    margin: 0 auto;
}

.nav-container, .nav--ul__one,
.nav-container .nav--ul__two {
    display: flex;
    gap: 25px;
    font-size: 18px
}

.nav-container .hamburger-menu {
    display: none; /* Hidden by default for larger screens */
    cursor: pointer;
}

@media (max-width: 991.99px) {
    .nav-container .logo {

        z-index: 4;
    }

    .nav-container .nav {
        flex-direction: column;
        justify-content: space-around;
    }

    .nav-container  .nav--ul__one,
    .nav-container  .nav--ul__two {
        flex-direction: column;
        gap: 12px;
    }

    .nav-container  .hamburger-menu {
        display: block;

        z-index: 6;
    }

    .nav-container  .nav {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 100%;

      /*  padding-top:30vh;*/

        align-items: center;
        text-align: center;
        background-color: #fff;
        color: white;

        transition: 0.15s ease-in-out;
        z-index: 4;
    }

    .nav-container   .nav.active {
        right: 0;
    }

    .nav-container .nav .nav-link a {
        font-weight: 500;
        font-size: 16px;
        color: #243756;
    }
    .nav-container .nav .nav-link a.active {
        font-weight: 500;
        font-size: 16px;
        color: var(--var-theme);
    }
}