#noveo_header{
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    z-index: 10;
    background-color: #FFF;
}
#noveo_header .top_row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
}
#noveo_header .logo{
    transition-duration: 0.4s;
}
#noveo_header .logo:hover{
    opacity: 0.7;
}
#noveo_header .top_row .center{
    display: flex;
    align-items: center;
}
#noveo_header .top_row .contact_btn{
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 100%;
    color: #383838;
}
#noveo_header .top_row .contact_btn a{
    transition-duration: 0.4s;
}
#noveo_header .top_row .contact_btn a:hover{
    color: #0194DE;
}
#noveo_header .top_row .contact_btn:not(:last-child){
    margin-right: 24px;
}
#noveo_header .top_row .contact_btn .icon{
    position: relative;
    border-radius: 100%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0194DE;
    margin-right: 12px;
}
#noveo_header .top_row .contact_btn .icon::after{
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    background-color: #0194DE;
    transform: translate(-50%, -50%);
    opacity: 0.25;
    z-index: -1;
    animation: contactPulse forwards 2s infinite;
    animation-timing-function: linear;
}
@keyframes contactPulse{
    0%{
        width: 42px;
        height: 42px;
    }
    50%{
        width: 52px;
        height: 52px;
    }
    100%{
        width: 42px;
        height: 42px;
    }
}
#noveo_header .top_row .right{
    display: flex;
    align-items: center;
}
#noveo_header .top_row .flex_btn{
    display: flex;
    align-items: center;
    color: #383838;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 100%;
    transition-duration: 0.4s;
}
#noveo_header .top_row .flex_btn:hover{
    color: #0194DE;
}
#noveo_header .top_row .flex_btn:not(:last-child){
    margin-right: 24px;
}
#noveo_header .top_row .flex_btn img{
    margin-left: 12px;
}
#noveo_header .bottom_row{
    background-color: #F3F3F3;
}
#noveo_header .bottom_row ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#noveo_header .bottom_row ul a{
    color: #383838;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 100%;
    transition-duration: 0.4s;
}
#noveo_header .bottom_row ul a:hover{
    color: #0194DE;
}
#noveo_header .bottom_row ul li.menu-item>a{
    padding: 22px 24px;
}
#noveo_header .bottom_row ul .has_noveo_menu>a{
    display: flex;
    align-items: center;
}
#noveo_header .bottom_row ul .has_noveo_menu>a::after{
    content: '';
    display: block;
    width: 10px;
    height: 5px;
    background-image: url('icons/menu-arrow-black.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 4px;
    transition-duration: 0.4s;
}
#noveo_header .has_noveo_menu:hover>a::after{
    transform: rotate(180deg);
}

#noveo_header .bottom_row ul li.current-menu-item>a,
#noveo_header .bottom_row ul li.current-menu-parent>a,
#noveo_header .bottom_row ul li.current_noveo_item>a{
    color: #0194DE;
}
#noveo_header .bottom_row ul li.current-menu-item>a::after,
#noveo_header .bottom_row ul li.current-menu-parent>a::after,
#noveo_header .bottom_row ul li.current_noveo_item>a::after{
    background-image: url('icons/menu-arrow-red.svg');
}

#noveo_header .has_noveo_menu:hover .noveo_mega_menu{
    /*display: block;*/
    pointer-events: all;
    opacity: 1;
}
.noveo_mega_menu{
    /*display: none;*/
    opacity: 0;
    transition-duration: 0.4s;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    transform: translateY(-1px);
    pointer-events: none;
}
.noveo_mega_menu .menu_box{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #fff;
    box-shadow: 0 96px 96px 0 rgba(0, 0, 0, .75);
    -webkit-box-shadow: 0 96px 96px 0 rgba(0, 0, 0, .75);
}
.noveo_mega_menu .menu_box .left{
    background-color: #fff;
    padding: 24px 0px;
    height: calc(344px - 48px);
    display: flex;
    align-items: center;
}
.noveo_mega_menu .menu_box .left .inner{
    max-height: 100%;
    overflow: auto;
    padding: 0px 96px;
    width: 100%;
}
.noveo_mega_menu .menu_box .left h3,
.noveo_mega_menu .menu_box .left .h3{
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 2.8rem;
    line-height: 3.2rem;
    color: #0194DE;
    margin-bottom: 48px;
}
.noveo_mega_menu .menu_box .left ul{
    padding-left: 0px;
    margin: 0px;
    list-style: none;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.noveo_mega_menu .menu_box .left li{
    display: flex;
    align-items: flex-start;
}
.noveo_mega_menu .menu_box .left li::before{
    content: '';
    display: block;
    width: 12px;
    min-width: 12px;
    height: 2px;
    background-color: #0194DE;
    margin-right: 4px;
    margin-top: 8px;
}
.noveo_mega_menu .menu_box .left li a{
    line-height: 125% !important;
}
.noveo_mega_menu .menu_box .left li a.current{
    color: #0194DE !important;
}
.noveo_mega_menu .menu_box .right{
    position: relative;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.noveo_mega_menu.reverse .menu_box .right{
    order: -1;
}
.noveo_mega_menu .menu_box .right .background_image{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.noveo_mega_menu .menu_box .right::before{
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #00000040;
    z-index: 1;
}
.noveo_mega_menu .menu_box .right h3,
.noveo_mega_menu .menu_box .right .h3{
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 2.8rem;
    line-height: 3.2rem;
    color: #FFF;
}
.noveo_mega_menu .menu_box .right .button_box{
    position: relative;
    z-index: 2;
    color: #FFF !important;
}

#noveo_header .top_row .wpml-ls-legacy-dropdown {
    width: auto;
}
#noveo_header .top_row .wpml-ls-legacy-dropdown ul {
    display: inline-block;
}
#noveo_header .top_row .wpml-ls-legacy-dropdown a {
    border: none;
    padding: 0;
    background: 0 0;
    margin-right: 0;
    justify-content: center;
}
#noveo_header .top_row .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
    padding-right: 16px;
}
#noveo_header .top_row .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
    content: '';
    display: block;
    width: 10px;
    height: 5px;
    background-image: url('icons/menu-arrow-black.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition-duration: 0.4s;
    position: absolute;
    right: 0px;
    top: 4px;
    border: 0px;
}
#noveo_header .top_row .wpml-ls-legacy-dropdown li:hover a.wpml-ls-item-toggle:after{
    transform: rotate(180deg);
}
#noveo_header .top_row .wpml-ls-legacy-dropdown ul.wpml-ls-sub-menu {
    background-color: #FFF;
    padding: 12px;
    z-index: 10;
    border-top: 0;
    left: auto;
    transform: translateX(-4px);
}
#noveo_header .top_row .wpml-ls-legacy-dropdown ul {
    display: inline-block;
}
#noveo_header .top_row .wpml-ls-legacy-dropdown .wpml-ls-item:not(:last-child) {
    margin-bottom: 8px;
}
#noveo_header .top_row .wpml-ls-legacy-dropdown a img {
    height: auto !important;
    width: 19px;
}