.skip-link{
    position: absolute;
    top: -100px;
    left: 0;
    background: #000000;
    color: #ffffff;
    padding: 15px 25px;
    z-index: 999999;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #fff;
    transition: top 0.2s ease;
    font-size: 1.6rem;
}
.skip-link:focus{
    top: 0;
    outline: 3px solid #1780C1;
}

.noveo_header{
    position: -webkit-sticky;
    position: sticky;
    left: 0px;
    top: 0px;
    width: 100%;
    background-color: #FCFCFC;
    padding: 24px 0px;
    z-index: 50;
}
html.page-contrast .noveo_header{
    background-color: #000;
}
.noveo_header .cols_box{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
    align-items: center;
}
html.page-contrast .noveo_header .left img{
    filter: brightness(0) invert(1);
}
.noveo_header .center{
    grid-column: span 3;
}
.noveo_header ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.noveo_header li{
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 4px;
}
.noveo_header li a{
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 100%;
    color: #232323;
    transition-duration: 0.4s;
}
html.page-contrast li a{
    color: #FFF;
}
.noveo_header li a:hover{
    color: #1780C1;
}
.noveo_header li.menu-item-has-children::after{
    content: '';
    display: block;
    width: 8px;
    min-width: 8px;
    height: 8px;
    background-image: url('content/CaretRight.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition-duration: 0.4s;
}
html.page-contrast li.menu-item-has-children::after{
    filter: brightness(0) invert(1);
}
.noveo_header li.menu-item-has-children:hover::after{
    transform: rotate(180deg);
}
.noveo_header li .sub-menu{
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    flex-direction: column;
    padding: 24px;
    padding-top: 64px;
    background-color: #FCFCFC;
    width: 120px;
}
html.page-contrast .noveo_header li .sub-menu{
    background-color: #000;
}
/*.noveo_header li:not(:hover) .sub-menu{
    display: none;
}*/
.noveo_header .sub-menu{
    display: none;
}
.noveo_header li:hover .sub-menu,
.noveo_header li:focus-within .sub-menu{
    display: flex;
}
.noveo_header li.current-menu-item>a{
    color: #C43040;
}
.noveo_header li.current-menu-parent>a{
    color: #C43040;
}
.noveo_header .right form{
    display: flex;
    align-items: center;
    gap: 8px;
}
.noveo_header .right form input[type='text']{
    max-width: calc(186px - 48px);
}
.noveo_header .right form button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 0px;
    padding: 0px;
    border-radius: 64px;
    background-color: #C43040;
    cursor: pointer;
    transition-duration: 0.4s;
}
.noveo_header .right form button:hover{
    background-color: #1780C1;
}

.noveo_header .mobile{
    display: none;
}
.noveo_header .mobile .burger{
    display: block;
    width: 32px;
    height: 24px;
    position: relative;
}
.noveo_header .mobile .burger::after,
.noveo_header .mobile .burger::before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0px;
    top: 0px;
    background-color: #C43040;
    transition-duration: 0.4s;
}
.noveo_header .mobile .burger::before{
    top: auto;
    bottom: 0px;
}
.noveo_header .mobile .burger span{
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0px;
    top: calc(50% - 1px);
    background-color: #C43040;
    transition-duration: 0.4s;
}
.noveo_header .mobile .burger.active::after{
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
}
.noveo_header .mobile .burger.active::before{
    transform: translateY(50%) rotate(-45deg);
    bottom: 50%;
}
.noveo_header .mobile .burger.active span{
    opacity: 0;
}

.noveo_mobile_menu{
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100dvh;
    z-index: 40;
    overflow: hidden;
    transition-duration: 0.4s;
}
.noveo_mobile_menu:not(.show){
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.noveo_mobile_menu .overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.noveo_mobile_menu .panel{
    position: absolute;
    right: 0px;
    top: 0px;
    width: 450px;
    height: 100%;
    background-color: #FCFCFC;
    z-index: 2;
    transition-duration: 0.4s;
}
.noveo_mobile_menu:not(.show) .panel{
    transform: translateX(100%);
}
.noveo_mobile_menu .panel .inner{
    padding: 48px;
    padding-top: 144px;
    max-height: calc(100% - 48px - 144px);
    overflow: auto;
}
.noveo_mobile_menu .panel .inner ul{
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.noveo_mobile_menu .panel .inner ul .sub-menu{
    padding-left: 12px;
    padding-top: 24px;
}
.noveo_mobile_menu .panel .inner ul li{
    padding-left: 16px;
    position: relative;
    display: block;
}
.noveo_mobile_menu .panel .inner ul li::before{
    content: '';
    display: block;
    position: absolute;
    width: 12px;
    height: 2px;
    left: 0px;
    top: 6px;
    background-color: #1780C1;
}
.noveo_mobile_menu .panel .inner ul a{
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 100%;
    color: #232323;
    transition-duration: 0.4s;
}
.noveo_mobile_menu .panel .inner ul li.current-menu-item>a{
    color: #C43040;
}
.noveo_mobile_menu .panel .inner ul li.current-menu-parent>a{
    color: #C43040;
}
.noveo_mobile_menu .panel .inner form{
    margin-bottom: 48px;
}
.noveo_mobile_menu .panel .inner form{
    display: flex;
    align-items: center;
    gap: 8px;
}
.noveo_mobile_menu .panel .inner form input[type='text']{
    width: 100%;
}
.noveo_mobile_menu .panel .inner form button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    min-width: 50px;
    height: 50px;
    border: 0px;
    padding: 0px;
    border-radius: 64px;
    background-color: #C43040;
    cursor: pointer;
    transition-duration: 0.4s;
}