@media only screen and (max-width: 767px) {
    #mobile-menu-trigger{
    cursor:pointer;
    background: #01d6ba;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 12px;
    width: fit-content;
    border-radius:4px;
}
#menu-header{
    display:none;
    position:fixed;
    left:0;
    background-color:#ffffff;
    width: 100%;
    z-index: 9;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#menu-header.active{
    display:block;
}
#header{
    background-color:#ffffff;
    width: 100%;
    z-index: 9;
    
}
#header .row{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
}
#header .row:before,#header .row:after{
    display:none;
}
#header.fixed-mobile{
    position:fixed;
    top:0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

}
@media only screen and (min-width: 768px) {
    #mobile-menu-trigger{
    display:none;
}
.nav-bar.horizontal{
    display:flex;
}
#menu-header li{
    height:fit-content;
}

#header.fixed{
    position:fixed;
    top:0;
    width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    z-index:9;
    background-color:#ffffff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 0 0 10px 10px;
}
#header.fixed .header_logo,#header.fixed .header_nav{
    padding:10px;
}
    
}