/* .navbar_burger {
    display: none;
    justify-content: space-evenly;
    flex-direction: column;
    width: 20px;
    height: 25px;
    cursor: pointer;
}

.burger_line {
    width: 100%;
    height: 2px;
    background-color: #155144;
}

.burger_title {
    display: none;
    margin: 0 auto 0 10px;
    color: #155144;
}


@media all and (max-width: 1350px) {
    .navbar {
        justify-content: space-between;
    }
}

@media all and (max-width: 800px) {
    .navbar {
        height: 50px;
        padding: 12px 22px;
        margin-bottom: 0;
    }
    
    .navbar_items {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        padding: 0;
        flex-direction: column;
        justify-content: flex-start;
        width: 90vw;
        max-width: 0;
        max-height: 100%;
        transition: max-width 0.7s ease-in-out;
        overflow-y: auto;
        background-color: #FFFFFF;
        z-index: 10020;
    }
    
    .navbar_items.active {
        max-width: 90vh;
    }
    
    .navbar_items.active .navbar_item {
        opacity: 1;
    }
    
    .navbar_item {
        margin: 20px 0;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        border: none;
        white-space: nowrap;
    }
    
    .navbar_item a, .navbar_item a:visited {
        color: #155144;
    }

    .navbar_item:hover a, .navbar_item a:hover, .navbar_item a.active {
        background-color: transparent;
        color: #D86018;
    }
    
    .navbar_icons {
        padding: 0 20px;
        border-left: none;
        margin-right: 80px;
    }
    
    .navbar_icon + .navbar_icon {
        margin-left: 10px;
    }
    
    .navbar_icon img {
        height: 25px;
        width: 25px;
    }
    
    .navbar_burger {
        display: flex;
    }
    
    .burger_title {
        display: block;
    }
}

@media all and (max-width: 440px) {
    .navbar {
        padding: 12px 10px;
    }
    
    .navbar img {
        max-height: 30px;
    }
} */