.noveo_header{
    background-color: transparent;
    z-index: 30;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    transition-duration: 0.4s;
}
.noveo_header.show_submenu{
    background-color: #253A44;
}
.noveo_header.scrolled{
    background-color: #253A44;
}
.noveo_header .header_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #FFFFFF26;
    padding: 16px 24px;
}
.noveo_header .header_top .left{
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: #FFF;
}
.noveo_header .header_top .right{
    display: flex;
    align-items: center;
    gap: 24px;
}
.noveo_header .header_top .right a{
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: #FFF;
    transition-duration: 0.4s;
}
.noveo_header .header_top .right a:hover{
    color: #ED406E;
}
.noveo_header .header_top .right a img{
    width: 16px;
}
.noveo_header .header_bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #FFFFFF26;
    padding: 16px 24px;
}
.noveo_header .header_bottom ul{
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.noveo_header .header_bottom ul a{
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #FFF;
    transition-duration: 0.4s;
}
.noveo_header .header_bottom ul a:hover{
    color: #ED406E;
}
.noveo_header .header_bottom ul .current-menu-item>a{
    color: #ED406E;
}
.noveo_header .header_bottom ul .current-menu-parent>a{
    color: #ED406E;
}
.noveo_header .header_bottom ul .current_page_parent>a{
    color: #ED406E;
}
.noveo_header .header_bottom ul .menu-item-has-children{
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}
.noveo_header .header_bottom ul .menu-item-has-children::after{
    content: '';
    display: block;
    width: 10px;
    height: 4px;
    background-image: url('content/ArrowWhite.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition-duration: 0.4s;
}
.noveo_header .header_bottom ul .sub-menu{
    position: absolute;
    left: 0px;
    top: 100%;
    padding: 48px 0px;
    padding-top: calc(48px + 28px);
    flex-direction: column;
    align-items: flex-start;
    width: 300px;
    z-index: 3;
    transition-duration: 0.4s;
}
.noveo_header .header_bottom ul .menu-item-has-children:not(:hover) .sub-menu{
    opacity: 0;
    pointer-events: none;
}
.noveo_header .header_bottom ul .menu-item-has-children:hover>a{
    color: #ED406E;
}
.noveo_header .header_bottom ul .menu-item-has-children:hover::after{
    transform: rotate(180deg);
    background-image: url('content/ArrowRed.svg');
}
.noveo_header .header_bottom ul .current-menu-item::after{
    background-image: url('content/ArrowRed.svg');
}
.noveo_header .header_bottom ul .current-menu-parent::after{
    background-image: url('content/ArrowRed.svg');
}
.noveo_header .header_bottom ul .current_page_parent::after{
    background-image: url('content/ArrowRed.svg');
}
.noveo_header .header_bottom .absolute_background{
    position: absolute;
    left: 0px;
    top: 100%;
    width: 100%;
    background-color: #253A44;
    border-bottom: 1px solid #FFFFFF26;
    z-index: 1;
    animation: fade-menu 0.4s;
}
.noveo_header .header_bottom .noveo_btn{
    padding: 12px 18px;
}

@keyframes fade-menu{
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}

.noveo_header .mobile_toggle{
    display: none;
    width: 28px;
    height: 20px;
    position: relative;
}
.noveo_header .mobile_toggle::after,
.noveo_header .mobile_toggle::before{
    content: '';
}
.noveo_header .mobile_toggle::after,
.noveo_header .mobile_toggle::before,
.noveo_header .mobile_toggle span{
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    transition-duration: 0.4s;
}
.noveo_header .mobile_toggle::before{
    top: calc(100% - 2px)
}
.noveo_header .mobile_toggle span{
    top: calc(50% - 1px);
}
.noveo_header .mobile_toggle.active span{
    opacity: 0;
}
.noveo_header .mobile_toggle.active::before{
    top: calc(50% - 1px);
    transform: rotate(45deg);
}
.noveo_header .mobile_toggle.active::after{
    top: calc(50% - 1px);
    transform: rotate(-45deg);
}

.noveo_mobile_menu{
    position: fixed;
    top: 125px;
    left: 0px;
    width: 100%;
    background-color: #253A44;
    z-index: 50;
}
.noveo_mobile_menu .memu_box{
    width: 100%;
    padding: 48px 0px;
    height: calc(100dvh - 125px - 96px);
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    transition-duration: 0.4s;
}
.noveo_mobile_menu:not(.show) .memu_box{
    height: 0px;
    padding: 0px;
    opacity: 0;
}
.noveo_mobile_menu .memu_box ul{
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.noveo_mobile_menu .memu_box li{
    padding-left: calc(12px + 8px);
    position: relative;
}
.noveo_mobile_menu .memu_box li::before{
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    top: 2px;
    width: 6px;
    height: 10px;
    background-image: url('content/ListRed.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.noveo_mobile_menu .memu_box a:not(.noveo_btn):not(.contact_link){
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #FFF;
    display: block;
}
.noveo_mobile_menu .memu_box .current-menu-item>a{
    color: #ED406E !important;
}
.noveo_mobile_menu .memu_box li:not(:last-child) a{
    margin-bottom: 24px;
}
.noveo_mobile_menu .memu_box .contact_link{
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #FFF;
}