.navbar {
    max-width: 1440px;
    margin: auto;
    padding: 10px 100px;
}

.container {
    display: flex;
    align-items: center;
    gap: 100px;
}

.navbar-brand img {
    width: 160px;
    height: auto;
}

.navbar-toggler {
    display: none;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-collapse {
    display: flex;
}

.navbar-nav {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-color-grey, #8A8A8A);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-decoration: none;
    /* padding: 8px 15px; */
}

.nav-link:hover {
    color: var(--Blue, #3AB54A);
}

.nav-link.active {
    color: var(--Blue, #3AB54A);
}

.menu-active {
    display: block !important;
}


/* @media (max-width:940px) {

.navbar-collapse {
    display: none;
    flex-direction: column;
    width: 50%;
    height: 100vh;
    background-color: #f8f9fa;
    position: fixed;
    top: 0;
    right: 0;
    height: 100svh;
    z-index: 10;
    padding: 2rem;
}
} */


@media (max-width:940px) {

    .navbar {
        padding: 20px  50px;
    }

    .navbar-collapse {
        display: none;
        flex-direction: column;
        width: 50%;
        height: 100vh;
        background-color: #f8f9fa;
        position: fixed;
        top: 0;
        right: 0;
        height: 100svh;
        z-index: 10;
        padding: 2rem;
    }

    .navbar-collapse.show {
        display: flex;
    }


    .container {
        justify-content: space-between;
        gap: 0;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 10px;
    }

}


@media (max-width: 767px) {
    .navbar {
        padding: 20px  20px;
    }

}