.navbar{
    width: 100%;
    height: 131px;
    z-index: 999;
}
.navbar-brand{
    max-width: 357px;
}

.navbar .lang{
    position: relative;
    left: -20px;
    color: var(--font-color-based);
}

.navbar .lang .active{
    color:var(--orage-color);
}

.hamburger{
    background-color: var(--orage-color) !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    position: relative !important;
    padding: 12px !important;
}

.hamburger.is-active {
    background-color: #ffffff !important;
}

.hamburger-box{
    width: 100% !important;
    height: 0 !important;
    transition: all 0.2s;
}

.hamburger:hover,.hamburger.is-active:hover{
    opacity: 1 !important;
}

.hamburger-inner,.hamburger-inner::before,.hamburger-inner::after{
    background-color:#ffffff !important ;
    width: 22px !important;
    height: 2.8px !important;
    border-radius: 0 !important
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after{
    background-color: var(--orage-color) !important;
}

.hamburger-inner::before{
    top: -5px !important;
}

.hamburger-inner::after{
    top: -10px !important;
}
.hamburger--collapse.is-active .hamburger-inner::before{
    top: 0 !important;
}

.hamburger.is-active .hamburger-box{
    /* top: 4px !important; */
    height: 100% !important;
}

#navigation{
    transition: all 0.2s ease-in-out;
    height: 0;
    overflow: hidden;
    background: #292929;
    width: 100vw;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

#navigation .content{
    color: #ffffff;
    width: 50%;
    margin: 175px auto;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

#navigation .content .menu{
    font-size: 25px;
    font-family: 'Mitr-Bold';
    list-style: none;
    font-weight: bold;
}

#navigation .content .menu li:hover,#navigation .content .sub-menu li:hover{
    color: var(--orage-color);
}

#navigation .content .menu li.active,#navigation .content .sub-menu li.active{
    color: var(--orage-color);
}

#navigation .content .menu li,#navigation .content .sub-menu li{
    padding-bottom: 15px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease-in-out;
}

#navigation .content .sub-menu{
    font-family: 'Mitr-Light';
    list-style: none;
    /* overflow-y: scroll; */
    /* max-height: 440px; */
}

#navigation .content .sub-menu::-webkit-scrollbar-track {
    border: 1px solid #000;
    padding: 2px 0;
    background-color: #404040;
  }
  
  #navigation .content .sub-menu::-webkit-scrollbar {
    width: 10px;
  }
  
  #navigation .content .sub-menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: var(--orage-color);
    border: 1px solid #000;
  }

#navigation .content .bottom-menu{
    list-style: none;
    color: var(--orage-color);
}

#navigation .content .bottom-menu li{
    cursor: pointer;
}

#navigation .content .bottom-menu li::before{
    content: '> ';
}

/* footer */

.footer{
    background-color: #292929;
    color: #ffffff;
}

.footer .row{
    margin: 15px 0 0 0;
}

.footer .menu{
    padding: 15px 0;
    background-color: #333333;
}

.footer .menu span{
    color: var(--orage-color);
    font-size: 18px;
    cursor: pointer;
}

.footer .menu span:hover{
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}


.footer .contact{
    font-size: 'Mitr-Light';
    padding: 15px 0;
}

#sub-menu{
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
    cursor: default;
}

#sub-menu.on{
    pointer-events: all;
}




#navigation-mobile{
    transition: all 0.2s ease-in-out;
    height: 0;
    overflow: hidden;
    background: #292929;
    width: 100vw;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

#navigation-mobile .content{
    color: #ffffff;
    width: 100%;
    margin: 90px auto;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

#navigation-mobile .content .menu{
    font-size: 20px;
    font-family: 'Mitr-Bold';
    list-style: none;
    font-weight: bold;
}

/* #navigation-mobile .content .menu li:hover,#navigation-mobile .content .sub-menu li:hover{
    color: var(--orage-color);
} */

#navigation-mobile .content .menu li.active a,#navigation-mobile .content .sub-menu li.active{
    color: var(--orage-color);
}

#navigation-mobile .content .menu li,#navigation-mobile .content .sub-menu li{
    padding-bottom: 15px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease-in-out;
}

#navigation-mobile .content .sub-menu{
    font-family: 'Mitr-Light';
    list-style: none;
    margin-top: 15px;
}

#navigation-mobile .content .bottom-menu{
    list-style: none;
    color: var(--orage-color);
}

#navigation-mobile .content .bottom-menu li{
    cursor: pointer;
}

#navigation-mobile .content .bottom-menu li::before{
    content: '> ';
}




