header {
    width: 100%;
    padding: 28px 8%;
}

#navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#navbar img {
    width: 120px;
    height: auto;
}

#nav_list {
    display: flex;
    list-style: none;
    gap: 2em;
}
.nav-item a {
    text-decoration: none;
    color: #4CAF50;
    font-weight: 800;
    font-size: 1.2em;
}

.nav-item.active {
    color: #23ab2a;
    border-bottom: 3px solid #4CAF50;
}

#mobile_btn {
    display: none;
}

#mobile_menu {
    display: none;;
}

@media screen and (max-width: 1170px) {
    #nav_list, #navbar .btn-default {
        display: none;
    }

    #mobile_btn {
        display: block;
        border: none;
        background-color: transparent;
        font-size: 1.5rem;
        cursor: pointer;
    }

    #mobile_menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    #mobile_nav_list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 12px 0px;
    }

    #mobile_nav_list .nav-item {
        list-style: none;
        text-align: center;
    }
}
