.navbar {
    position: fixed !important;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #078D14;
    width: 100%;
    z-index: 1;
    top: 0;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 4%;
    font-size: 0.9vw;
    z-index: 1;
}

.nav-item {
    margin-left: 5rem;
    background-color: #fff;
    padding: 5px;
    border-radius: 30px;
    width: 10em;
    text-align: center;
    font-size: 0.8vw;
    font-weight: bold;
}

.nav-link {
    font-size: 1.6rem;
    font-weight: 400;
    color: #475569 !important;
}

.nav-link:hover {
    color: #482ff7;
}

.nav-logo {
    margin-left: 5%;
}

@media (max-width: 1400px) {
    .nav-item {
        font-size: 1vw;
    }
}

@media only screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -105%;
        top: 5rem;
        flex-direction: column;
        background-color: #fff;
        width: 60%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
            font-size: 3vw;
    }

    .nav-menu.active {
        left: 0;
        background-color: #078D14;
    }

    .nav-item {
        margin: 2.5rem 0;
        outline: none;
        border: solid 1px #000;
        font-size: inherit;
        font-weight: bold;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        margin: 0 3rem;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}