/*Navigations*/

.main-menu-wrapper{
    width: 100%;
    -ms-flex: 0 0 calc(100% - 160px);
    flex: 0 0 calc(100% - 160px);
    max-width: calc(100% - 160px)
}
.logo-wrapper {
    width: 100%;
    -ms-flex: 0 0 160px;
    flex: 0 0 160px;
    max-width: 160px;
}

.header-nav-desktop{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.header-nav-desktop .nav-item .drop-menu{
    display: none;
}

/*Header Desktop*/
/*Deps 1*/

.header-nav-desktop li{
    display: inline-block;
    margin-right: 20px;
}
.header-nav-desktop li:last-child{
    margin-right: 0;
}
.header-nav-desktop li a{
    font-weight: normal;
    font-size: 13px;
    line-height: 21px;
    color: #202527;
}

.header-nav-desktop li a{
    background: #fff;
    position: relative;
    display: block;
}
.header-nav-desktop li a{
    padding: 27px 10px 26px;
}

.header-nav-desktop li.drop a{
    padding: 27px 25px 26px 10px;
}
.header-nav-desktop .drop > a:after{
    content: '';
    width: 10px;
    height: 5px;
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -2.5px;
    background: url('./../img/menu-down.svg') no-repeat 50% / 10px;
}
.header-nav-desktop li a:hover,
.header-nav-desktop li a:not([href]):hover{
    background: #E8F7FF;
    color: #0084CC;
}
.header-nav-desktop li.drop > a:hover:after{
    background: url('./../img/menu-up.svg') no-repeat 50% / 10px;
}

/*Header Desktop*/
/*Deps 2*/

.header-nav-desktop .nav-item:hover > .drop-menu{
    display: block;
    box-shadow: -5px 2px 8px rgba(147, 147, 147, 0.15);
}

.header-nav-desktop .drop-menu .drop .drop-menu {
    right: -292px;
    top: 0;
    background: #F7FCFF;
    box-shadow: 0px 2px 8px rgba(147, 147, 147, 0.15);
    z-index: -1;
    height: 100%;
    padding-left: 10px;
}

.header-nav-desktop .nav-item .drop-menu{
    position: absolute;
    max-width: 292px;
    width: 100%;
    background: #E8F7FF;
    box-shadow: 0px 2px 8px rgba(147, 147, 147, 0.15);
    padding: 10px 0 10px 20px;
}

.header-nav-desktop .nav-item .drop-menu li{
    display: block;
    margin-right: 0;
    padding-right: 15px;
}
.header-nav-desktop .nav-item .drop-menu li.drop{
    padding-right: 0;
}
.header-nav-desktop .nav-item .drop-menu a{
    display: block;
    padding: 10px 25px 10px 10px;
    margin: 0;
    background: transparent;
}
.header-nav-desktop .nav-item .drop-menu a:after{
    width: 7px;
    height: 14px;
    right: 15px;
    top: 50%;
    margin-top: -7px;
    background: url('./../img/menu-right.svg') no-repeat 50% / 7px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.header-nav-desktop .nav-item .drop-menu a:hover{
    background: #F7FCFF;
    border-radius: 5px 0px 0px 5px;
    color: inherit;
}

.header-nav-desktop .drop.opensub a{
    background: #F7FCFF;
}
.header-nav-desktop .nav-item .drop-menu a:hover:after,
.header-nav-desktop .nav-item .drop-menu .opensub a:hover:after,
.header-nav-desktop .drop.opensub a:after{
    opacity: 0;
}
.header-nav-desktop .nav-item .drop-menu a:nth-last-child(2){
    margin-bottom: 0;
}

.header-nav-desktop .drop.nav-item:nth-last-child(3) .drop-menu .opensub > .drop-menu,
.header-nav-desktop .drop.nav-item:nth-last-child(4) .drop-menu .opensub > .drop-menu{
    left: -292px;
    right: initial;
}
.header-nav-desktop .drop.nav-item:nth-last-child(3) .drop-menu,
.header-nav-desktop .drop.nav-item:nth-last-child(4) .drop-menu{
    padding: 10px 0 10px 0;
    box-shadow: 5px 2px 8px rgba(147, 147, 147, 0.15);
}
.header-nav-desktop .drop.nav-item:nth-last-child(3) .drop-menu li,
.header-nav-desktop .drop.nav-item:nth-last-child(4) .drop-menu li{
    padding-right: 0;
}
.header-nav-desktop .drop.nav-item:nth-last-child(3) .drop-menu a,
.header-nav-desktop .drop.nav-item:nth-last-child(4) .drop-menu a{
    padding: 10px 25px 10px 20px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
/*Header Mobile*/
/*Deps 1*/

.sidenav.mobile-layout.active {
    height: 100%;
    width: 320px;
    background: #fff;
}

.header-nav-mobile,
.header-nav-mobile ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.header-nav-mobile .drop-menu{
    display: none;
}
.header-nav-mobile li a{
    font-weight: normal;
    color: #202527;
    font-size: 13px;
    line-height: 21px;
    display: block;
    position: relative;
}
.sidenav.mobile-layout .header-nav-mobile li{
    margin: 0 20px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
    padding-bottom: 15px;
}
.sidenav.mobile-layout .header-nav-mobile li:last-child{
    margin-bottom: 0;
    border-bottom: none;
}
.header-nav-mobile > li > a{
    font-size: 18px;
    line-height: 26px;
}

.header-nav-mobile .drop > a:after{
    content: '';
    width: 5px;
    height: 10px;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -5px;
    background: url('./../img/menu-right.svg') no-repeat 50% / 5px;
}

.header-nav-mobile .show-drop .drop > a:after {
    content: '';
    width: 10px;
    height: 5px;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -2.5px;
    background: url('./../img/menu-down.svg') no-repeat 50% / 10px;
}

.header-nav-mobile .drop-menu.show-drop {
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background: #fff;
    z-index: 1;
    left: 0;
}
.header-nav-mobile .elem-back{
    cursor: pointer;
    position: relative;
    text-align: center;
    width: 100%;
    padding-top: 25px;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 26px;
    color: #0084CC;
    text-transform: capitalize;
    border-bottom: none;
}
.header-nav-mobile  .elem-back svg {
    position: absolute;
    left: 20px;
    display: block;
    max-height: 24px;
}
.header-nav-mobile .drop-menu.show-drop .menu-back {
    height: 24px;
    width: 12px;
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -12px;
    background: url('./../img/menu-mob-left.svg') no-repeat 50% 24px;
}
.sidenav .navbar-toggler{
    position: relative;
    width: 100%;
    text-align: center;
}
.sidenav .navbar-toggler img {
    position: absolute;
    top: 50%;
    max-width: 159px;
    left: 0;
    right: 0;
    margin: -19px auto 0;
    display: block;
}

.sidenav.mobile-layout .drop-menu.show-sub li{
    margin: 0 20px 15px;
    border-bottom: none;
    border-top: none;
    padding-bottom: 0;
}
.sidenav.mobile-layout .drop-menu.show-sub li:first-child{
    margin-top: 20px;
}
.sidenav.mobile-layout .drop-menu.show-sub li:last-child{
    padding-bottom: 25px;
}
.sidenav.mobile-layout .drop.nav-item.color-drop {
    background: #F7FCFF;
    border-radius: 5px;
    padding: 10px 10px 0;
    border-bottom: none;
}
.sidenav.mobile-layout .drop.nav-item.color-drop > a{
    color: #0084CC;
}
.sidenav.mobile-layout .drop.nav-item.color-drop a:after{
    background: url('./../img/menu-mob-color.svg') no-repeat 50% / 10px;
}

/*Media*/

@media (min-width: 992px){
    .navbar-expand-lg .navbar-toggler {
        display: block;
    }
}
@media (min-width: 1025px){
    .header .navbar.scrolling-navbar {
        padding-top: 0;
        padding-bottom:0;
    }
    .header .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

@media (max-width: 1024px) {
    .main-menu-wrapper{
        width: 100%;
        -ms-flex: 0 0 calc(100% - 230px);
        flex: 0 0 calc(100% - 230px);
        max-width: calc(100% - 230px);
    }
    .header-nav-desktop{
        display: none;
    }
}