.navbar {
    margin: 0 auto;
    background-color: #118a54;
    position: absolute;
    top: 0;
    width: 100%;
    width: 100vw;
    width: 100dvw;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-right: 50px;
    justify-content: end;
}

.nav-links li {
    margin: 0 30px;
    margin-left: 2rem;
    padding: 0px 10px;
    width: 50px;
    text-align: center;
    border-radius: 6px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;;
}
.active{
    background-color: blue;
    padding: 10px 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-links .show{
    padding: 20px;
    background-color: blue;
}

.menu-toggle .bar {
    height: 2px;
    width: 25px;
    background-color: #fff;
    margin: 4px 0;
}
.navbar a{
    color: #fff !important;
}
.brand{
    margin-left: 8px;
    margin-top: -20px;
}

#brand-name{
    color: #fff;
    margin-left: -65px;
    margin-top: -20px;
    font-size: 20px;
}
@media (max-width: 768px) {
    .navbar{
        width: 100%;
        height: 50px;
        max-height: 60px;
        position: fixed;
        top: 0px;
        left: 0;
        right: 0;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 101px;
        right: 0;
        background-color: #118a54;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .brand img{
        height: 78px;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .menu-toggle {
        margin-top: -7px;
        display: flex;
        height: 30px;
        margin-right: 8px;
    }

    .nav-links.show {
        display: flex;
        position: absolute;
        left: 0;
        top: 40px;
    }
}