header{
    width: 100%;
    position: fixed;
    top:0;
    /*height:140px;*/
    z-index: 101;
    transition: all 0.5s ease;
}

header *{
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.header--solid{
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.header--solid *{
    color:#333;
}

.headerintranet--solid{
    background: #fff;
    margin-top:0;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.headerintranet--solid span{
    color:#000 !important;
}

header .searchopener{
    padding-right: 1rem;
    margin-right: 1rem;
}

header.header--solid .searchopener{
    border-color: #333;
}

.header__logo {
    transition: all 0.5s ease;
    max-width: 225px;
    height: auto;
    position: relative;
}

.header__menu {
    padding: .5rem 0;
}

.header__menu .menu__item {
    cursor: pointer;
    user-select: none;
}

.header__menu .menu__item i{
    transition: all ease .3s;
}

.header__menu .menu__item.active i{
    transform: rotate(180deg);
    transition-delay: .3s;
}

.subnav .menu__item {
    position: relative;
    display: block;
    padding-right: 1.5rem;
    transition: all ease .3s;
    font-size: 20px;
}

.subnav .menu__item:after {
    position: absolute;
    content: '\f178';
    font-family: "Font Awesome 5 Pro";
    display: inline-block;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all ease .3s;
}

.subnav .menu__item:hover {
    color: #0063A2;
}

.subnav .menu__item:hover:after {
    opacity: 1;
}

.nav__trigger {
    width: 20px;
    aspect-ratio: 1 / 1;
    position: relative;
    cursor: pointer;
}
.nav__trigger .hamburger {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    aspect-ratio: 1 / 1;
    transform: translate(-50%,-50%) scale(1.3);
}

.nav__trigger .hamburger .line {
    transition: all ease .3s;
    transform-origin: center;
    position: absolute;
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: #000;
}

.nav__trigger .hamburger .top{
    top: 25%;
}

.nav__trigger .hamburger .middle {
    top: 50%;
}

.nav__trigger .hamburger .bottom{
    top: 75%;
}

.nav__trigger .fa-times {
    font-size: 25px;
}

.navigation__container.canvas a span,
.navigation__container.canvas a{
    color: #000 !important;
    text-decoration: none !important;
}

.navigation__container.canvas .child__node .child{
    color: #8b8b8b !important;
}

.header__menu--holder{
    z-index: 200;
    position: relative;
    background-color: #fff;
}

#sub__navigation .subnav{
    border-top: 3px dashed #e8e8e8;
    transform: translateY(-100%);
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 100;
    transition: all .3s ease;

}

.sideNavAds,
.sideNavAd{
    min-height: 300px;
    height: 100%;
}

#sub__navigation .subnav.active{
    transform: translateY(0);
    transition-delay: .3s;
}

#sub__navigation .sideNavAds {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 600px;
}

#sub__navigation .sideNavAds .sideNavAd__content {
    min-height: 300px;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

#sub__navigation .sideNavAds .sideNavAd__content *{
    color: #fff;
}

#sub__navigation .sideNavAds .sideNavAd__content .button{
    width: fit-content;
    margin: 0 auto;
}

#subNav__backdrop {
    background-color: rgba(0,0,0,.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 90;
    transform: translateY(-100%);
    transition: all ease .3s;
}

#subNav__backdrop.active{
    transform: translateY(0);
    transition-delay: .3s;
}



@media screen and (min-width: 1800px){
    header{
        margin-left: -160px;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    #subNav__backdrop,
    .header__default {
        display: none;
    }

    header .searchopener{
        padding-right: 1.5rem;
        margin-right: 1.5rem;
        border-right: 1px solid #fff;
    }
}

@media screen and (max-width: 1800px){
    header {
        background: #fff;
        box-shadow: 0 0 15px rgba(0,0,0,0.2);
    }

    header *{
        color:#333;
    }

    .header__max--screen{
        display: none;
    }

    .header__top{
        border-bottom: 3px dashed #e8e8e8;
        padding: .5rem 0;
    }

    .header__top *{
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
}

@media (max-width: 767.98px) {
    .header__logo,
    .header--solid .header__logo{
        padding:10px;
        height: auto;
    }

    .nav__trigger .fa-times {
        font-size: 35px;
    }
}

@media (max-width: 991.98px) {

}