/* .navbar {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #E0C8B5;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.navbar_items {
    width: 100%;
    height: 100%;
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
}

.navbar_item {
    border-left: 1px solid #FFFFFF;
    cursor: pointer;
}

.navbar_item a {
    height: 100%;
    width: 100%;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    color: #FFFFFF;
}

.navbar_item a:visited {
    color: #FFFFFF;
}

.navbar_item:hover a, .navbar_item a:hover, .navbar_item a.active {
    background-color: #D86018;
}

.navbar_icons {
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 15px;
    border-left: 2px #FFFFFF solid;
}

.navbar_icon {
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.navbar_icon a {
    height: 100%;
    display: block;
    margin-top: 3px;
}

.navbar_icon img {
    width: 20px;
    object-fit: contain;
}

.navbar_icon--facebook:hover img {
    content: url(/img/facebook-header-hover.png);
}

.navbar_icon--instagram:hover img {
    content: url(/img/instagram-header-hover.png);
}

.navbar_icon--linkedin:hover img {
    content: url(/img/linkedin-header-hover.png);
}

.navbar_icon + .navbar_icon {
    margin-left: 15px;
} */

.navbar {
    display: flex;
    width: 100%;
    padding: 25px 120px;
    background-color: #A4C537;
}

.navbar a {
    color: #FFFFFF !important;
}

.navbar_title {
    width: 20%;
    padding: 15px 0;
    font-size: 30px;
    font-weight: 600;
    text-align: start;
    color: #FFFFFF;
}

.navbar_items {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.navbar_item {
    width: 30%;
    padding: 15px;
}

@media all and (max-width: 800px) {
    .navbar {
        flex-wrap: wrap;
        padding: 20px;
    }

    .navbar_title {
        width: 100%;
    }

    .navbar_items {
        justify-content: center;
    }
}