:root {
  --vel-menu-height: 88px;
}
.headerWrapper
{
    position: fixed;
    top: 0px;
    transform: initial;
    width: 100%;
    height: calc(var(--vel-menu-height) +1px);
    z-index: 1;
    transition: transform 0.2s ease-in-out 0s;
    background-color: var(--vel-color-neutral-white);
    border-bottom: 1px solid var(--vel-color-neutral-300);
}
header
{
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    max-width: 1638px;
    margin: 0px auto;
    height: var(--vel-menu-height);
    width: 100%;
    background-color: var(--vel-color-neutral-white);
    position: relative;
}
header>.logoCell
{
    background-color: var(--vel-color-neutral-white);
    flex: 0 0 240px;
    height: var(--vel-menu-height);
    z-index: 1;
}
header>.logoCell>.logolink
{
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 100%;
}
header>.logoCell>.logolink>svg
{
    width: auto;
    height:40px;
    color: #103645;
}
header>.logoCell>.logolink:hover
{
    background:transparent;
}
header>nav
{
    height: var(--vel-menu-height);
    overflow: hidden;
    padding-right: var(--vel-fixed-spacing-09);
    margin-left: var(--vel-fixed-spacing-05);
    background-color: var(--vel-color-neutral-white);
    flex: 1 1 auto;
    z-index: 1;
    display:flex;
}
header>nav.profile
{
    flex:0 0 auto;
    margin-right: var(--vel-fixed-spacing-07);
    padding-right:0;
    align-items:center;
}
    
header>nav>ul>li>.linkWrapper ul,
header>nav>ul
{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    background-color: var(--vel-color-neutral-white);
    flex-direction: row;
    gap:var(--vel-fixed-spacing-03);
    padding:0;
}
header>nav>ul>li
{
    height: var(--vel-menu-height);
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    padding: 0 var(--vel-fixed-spacing-03);
}
header>nav>ul>li .linkWrapper
{
    margin: 0px;
    color: var(--vel-color-text-headlines);
    font-weight: var(--vel-typography-headline-200-font_weight);
    font-size: var(--vel-typography-headline-200-font_size);
    line-height: var(--vel-typography-headline-200-line_height);
    font-family: var(--vel-typography-headline-200-font_family);
    letter-spacing: var(--vel-typography-headline-200-letter_spacing);
    display: flex;
    flex-direction:row;
    position:relative;
    line-height:var(--vel-menu-height);
    gap: var(--vel-layout-spacing-02);
    border-bottom: 2px solid transparent;
}
header>nav>ul>li.submenu>.linkWrapper:hover::before {
    content: '';
    position: fixed;
    display: block;
    width: 200px;
    height: 38px;
    background-color: transparent;
    margin-left: -200px;
    margin-top:50px;
    z-index:2;
}
header>nav>ul>li.submenu>.linkWrapper:hover::after {
    content: '';
    position: absolute;
    display: block;
    width: 200px;
    height: 38px;
    background-color: transparent;
    margin-top: 50px;
    margin-left: 100%;
    z-index:2
}
header>nav>ul>li .linkWrapper>a,
header>nav>ul>li .linkWrapper>.menunode,
header>nav>ul>li .linkWrapper>a:hover
{
    all:inherit;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    color: var(--app-primary-nav-item_color, var(--vel-color-neutral-800));
    line-height: var(--vel-menu-height);
    font-weight: 700;
    transition: border-bottom 0.3s ease-out 0s;
    background:transparent;
    border:none;
}
header>nav>ul>li .linkWrapper.active>a,
header>nav>ul>li .linkWrapper.active>.menunode,
header>nav>ul>li .linkWrapper.active>a:hover
{
    color: var(--app-primary-nav-item-current_color, var(--vel-color-primary-400));
}



header>nav>ul>li>.linkWrapper:hover {
    border-bottom: 2px solid var(--app-primary-nav-item-hover_color, var(--vel-color-primary-400));
}
header>nav>ul>li>.linkWrapper>ul
{
    /*display:none;*/
    position:fixed;
    width:100%;
    top:var(--vel-menu-height);
    left:0px;
    flex-direction: column;
    flex-wrap:wrap;
    gap:.5rem;
    max-height:50vh;
    background-color: var(--vel-color-neutral-white);
    border-top: 1px solid var(--vel-color-neutral-300);
    border-bottom-left-radius:1rem;
    border-bottom-right-radius:1rem;
    padding: 1rem;
    z-index:1;
    clip: rect(auto, auto, 0, auto);
    /*transform: scaleY(0);    
    transform-origin: top;*/
    display: list-item;
    column-count: 3;
    column-gap: 1rem;
}
header>nav>ul>li>.linkWrapper>ul.submenu-cols
{
    flex-direction:row;
    line-height: var(--vel-typography-text-50-line_height);
}

header>nav>ul>li>.linkWrapper>ul.submenu-cols.profile-ul
{
    display:flex;
}
header>nav>ul>li>.linkWrapper:hover>ul
{
    /*display:block;
    transform: scaleY(1);    */
    clip: rect(auto, auto, 50vh, auto);
    transition: clip .8s ease;
}
header>nav>ul>li>.linkWrapper>ul.submenu-cols>li>ul>li>.linkWrapper>a,
header>nav>ul>li>.linkWrapper>ul>li>.linkWrapper>a
{
    height:unset;
    margin: 0px;
    color: var(--vel-color-text-headlines);
    font-weight: var(--vel-typography-headline-200-font_weight);
    font-size: var(--vel-typography-headline-200-font_size);
    line-height: var(--vel-typography-headline-200-line_height);
    font-family: var(--vel-typography-headline-200-font_family);
    letter-spacing: var(--vel-typography-headline-200-letter_spacing);
    
}
header>nav>ul>li>.linkWrapper>ul.submenu-cols>li>ul>li>.linkWrapper.active>a,
header>nav>ul>li>.linkWrapper>ul>li>.linkWrapper.active>a
{
    color: var(--app-primary-nav-item-current_color, var(--vel-color-primary-400));
}
header>nav>ul>li>.linkWrapper>ul.submenu-cols>li>ul>li>.linkWrapper>a:hover,
header>nav>ul>li>.linkWrapper>ul>li>.linkWrapper>a:hover
{
    color:var(--vel-color-primary-400);
}

header>nav>ul>li.subMenuOverlay
{
    display:none;
    position:fixed;
    width:100%;
    top:calc(var(--vel-menu-height) + 3px);
    left:0px;
    height: calc(100vh - (var(--vel-menu-height) + 3px));
    background-color: rgba(0,0,0,.5);
}
header>nav>ul>li.submenu:hover ~ li.subMenuOverlay
{
    display:block;
}


header>nav>ul>li>.linkWrapper>ul>li>.linkWrapper.promo>a
{
    background-color: var(--vel-color-secondary-400);
    color: var(--vel-color-text-on_primary);
    padding-inline:4px;
    border-radius:4px;
}
header>nav>ul>li>.linkWrapper>ul>li>.linkWrapper.promo>a:hover
{
    background-color: var(--vel-color-secondary-300);
}

    header > nav.scrollMenu {
        overflow-y: hidden;
        overflow-x: auto;
    }
        header > nav.scrollMenu > ul {
            flex-wrap: nowrap;
        }

            header > nav.scrollMenu > ul > li .linkWrapper > a,
            header > nav.scrollMenu > ul > li .linkWrapper > a:hover {
                white-space: nowrap;
            }