﻿@charset "utf-8";

/* header */
header {
    position: fixed;
    top: 30px;
    padding-left: 60px;
    padding-right: 60px;
    width: 100%;
    z-index: 99;
}

#headerInnerWrap {
    transition: all ease-out 0.4s;
}

.header {
    position: relative;
    display: flex;
    align-items: stretch;
}

.head_left {
    padding-left: 80px;
    display: flex;
    align-items: center;
    /* height: 100%; */
    background-color: #FFF;
}

.logo {
    width: 215px;
}

.logo .logo_white {
    display: none;
}

.menu_click {
    position: relative;
    margin-left: 30px;
    padding-left: 30px;
    padding-right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    z-index: -1;
}

.menu_click::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 26px;
    background-color: var(--white-color);
    opacity: 0.5;
}

.menu_click i {
    display: block;
    cursor: pointer;
}

.head_right {
    display: flex;
    align-items: center;
}

/* language */
.language_box {
    position: relative;
    background: var(--white-color);
    height: 100%;
    padding-left: 16px;
    padding-right: 14px;
}

.header_language {
    position: absolute;
    top: 100%;
    left: -10%;
    width: 120%;
    padding-top: 8px;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    pointer-events: none;
    z-index: 999;
}

.language_current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 100%;
    padding-right: 35px;
    font-size: 18px;
    color: var(--dark-color);
    font-weight: 400;
    transition: all .6s ease;
    position: relative;
    background-image: url(../images/chevron-right.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 30px;
    z-index: 9999;
}

.language_current img {
    width: 24px;
}

.language_content {
    position: relative;
    z-index: 2;
    padding: 10px 0 10px 0;
    opacity: 0;
    background: var(--white-color);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.language_content:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-bottom-color: var(--white-color);
    top: -18px;
    left: 50%;
    margin-left: -10px;
}

.language_content .language_item_box {
    padding-bottom: 2px;
}

.language_content a {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: Arial;
    text-transform: uppercase;
    display: block;
    text-align: center;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

.language_content a:hover {
    color: var(--main-color);
}



.language_box:hover .header_language {
    pointer-events: auto;
}

.language_box:hover .language_content {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.language_box:hover .header_language:after {
    height: 100%;
    opacity: 1;
}

.head_link a {
    display: flex;
    height: 90px;
    padding: 13px 30px;
    align-items: center;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
    background-color: var(--main-color);
}

.head_link a i {
    display: block;
    margin-left: 10px;
    width: 20px;
}

.head_link a i img {
    transition: transform 0.4s;
}

.head_link a:hover i img {
    transform: rotate(45deg);
}

.head_search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 100%;
    background-color: #002677;
    cursor: pointer;
}

.head_search i {
    display: block;
    width: 28px;
    height: 28px;
    background-image: url(../images/search_white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.search_modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: 13;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.search_wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--white-color), .8);
    -webkit-backdrop-filter: blur(2.5px);
    backdrop-filter: blur(2.5px);
    transition: background-color .3s, -webkit-backdrop-filter .3s;
    transition: backdrop-filter .3s, background-color .3s;
    transition: backdrop-filter .3s, background-color .3s, -webkit-backdrop-filter .3s;
}

.search_modal__container {
    position: relative;
    padding-top: 170px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-height: 350px;
    align-items: center;
    max-width: 100%;
    background-color: var(--main-color);
    overflow: hidden;
    z-index: 23;
}

.search_modal_show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.is-closed i {
    background-image: url(../images/white_close.svg);
}

.search-container {

    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 1000px;
}

.search_form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.search_form .s_input {
    flex: 1;
    background-color: transparent;
    height: 50px;
    color: var(--white-color);
    font-size: 20px;
    font-family: 'Monda';
}

.search_form .s_submit {
    width: 30px;
    height: 50px;
    background-color: transparent;
    background-image: url(../images/search_white.svg);
    background-repeat: no-repeat;
    background-size: 26px;
    background-position: center;
    cursor: pointer;
}

.s_input::placeholder {
    color: rgba(255, 255, 255, 0.50);
    font-size: 16px;
    font-family: 'Monda';
}

.s_input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.50);
    font-size: 18px;
    font-family: 'Monda';
}

.s_input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.50);
    font-size: 18px;
    font-family: 'Monda';
}

.s_input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.50);
    font-size: 18px;
    font-family: 'Monda';
}

.s_input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.50);
    font-size: 18px;
    font-family: 'Monda';
}

.search_list {
    padding-top: 16px;
}

.search_list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -10px;
    margin-right: -10px;
}

.search_list ul li {
    padding: 10px;
}

.search_list ul li a {
    padding: 4px 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.2);
}

.search_list ul li a:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

body.ovh {
    overflow: hidden;
}

.menu_icon {
    width: 50px;
    padding-right: 10px;
    height: 100%;
    background-color: #002677;
    display: none;
    cursor: pointer;
}

.menu_icon i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* menu */
.menu {
    flex: 1;
    position: relative;
    padding-right: 20px;
    background-color: var(--white-color);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    transition: -webkit-clip-path .3s;
    transition: clip-path .3s;
    transition: clip-path .3s, -webkit-clip-path .3s;
}

.menu>ul>li {
    position: relative;
    float: left;
    padding: 0 25px;
}

.menu>ul>li>a {
    display: flex;
    position: relative;
    padding: 30px 0;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}

.menu>ul>li>a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: width .4s;
}

.menu>ul>li.current>a::before {
    width: 100%;
}

.menu>ul>li .sub-menu {
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    position: absolute;
    top: 100%;
    display: flex;
    transition: all 0.4s ease-out;
    width: 376px;
    z-index: 9;
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
}

.menu>ul>li .sub-menu>ul {
    margin-top: 8px;
    padding: 24px;

    position: relative;
    width: 100%;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
}

.menu>ul>li .sub-menu>ul::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background-image: url(../images/menu_down.svg);
    background-repeat: no-repeat;
}

.menu>ul>li .sub-menu>ul>li {
    position: relative;
    padding-top: 24px;
}

.menu>ul>li .sub-menu>ul>li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: width 0.4s;
}

.menu>ul>li .sub-menu>ul>li>a {
    display: block;
    position: relative;
    padding-bottom: 24px;

    width: 100%;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    transition: all 0.4s;
}

.menu>ul>li .sub-menu>ul>li>a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.10);
}

.menu>ul>li .sub-menu>ul>li>a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -12px;
    width: 36px;
    height: 36px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background-image: url(../images/menu_grey.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center;
    transition: all 0.4s;
}

.menu>ul>li .sub-menu>ul>li>a:hover {
    color: var(--main-color);
}

.menu>ul>li .sub-menu>ul>li>a:hover:after {
    border: 1px solid var(--main-color);
    background-image: url(../images/menu_blue.svg);
}

.menu>ul>li .sub-menu>ul>li:hover:before {
    width: 100%;
}

.menu>ul>li:hover>a {
    color: var(--main-color);
}

.menu>ul>li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scaleY(1);
}

.active .menu {
    -webkit-clip-path: inherit;
    clip-path: inherit;
}

/* header hover */
.grey_head .head_left,
.headerColor2 .head_left,
.headerColor3 .head_left {
    background-color: var(--main-color);
}

.grey_head .logo .logo_white,
.headerColor2 .logo .logo_white,
.headerColor3 .logo .logo_white {
    display: block;
}

.grey_head .logo .logo_blue,
.headerColor2 .logo .logo_blue,
.headerColor3 .logo .logo_blue {
    display: none;
}

.grey_head .head_left,
.headerColor2 .head_left,
.headerColor3 .head_left {
    padding-left: 30px;
}

.grey_head .menu_click,
.headerColor3 .menu_click {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.grey_head .menu,
.headerColor3 .menu {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}

.headerColor2 .menu_click {
    padding-right: 0;
    margin-left: 0;
    padding-left: 0;
}

.headerColor2 .menu {
    padding-left: 75px;
}

.grey_head .menu>ul>li.active>a,
.grey_head .menu>ul>li:hover>a,
.headerColor2 .menu>ul>li.active>a,
.headerColor2 .menu>ul>li:hover>a,
.headerColor3 .menu>ul>li.active>a,
.headerColor3 .menu>ul>li:hover>a {
    color: var(--main-color);
}

.grey_head .menu>ul>li.active>a::before,
.headerColor2 .menu>ul>li.active>a::before,
.headerColor2 .menu>ul>li.current>a::before,
.headerColor3 .menu>ul>li.active>a::before,
.headerColor3 .menu>ul>li.current>a::before {
    background: var(--main-color);
    width: 100%;
}

/* mobile menu */
.pu_select {
    position: fixed;
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    background-color: var(--main-color);
    width: 100%;
    height: 100vh;
    overflow: auto;
    opacity: 0;
    overflow: hidden;
    transform: translateX(-100%);
    transition: opacity .3s, visibility .3s, transform .3s;
    z-index: -110;
}

.pu_select .menu_close {
    width: 34px;
    cursor: pointer;
}

.pu_select .menu_close img {
    width: 100%;
}

.mobile_search {
    padding-top: 30px;
}

.mobile_menu {
    margin-top: 20px;
    margin-bottom: 40px;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile_menu>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    color: var(--white-color);
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color .3s;
}

.mobile_menu .sub-menu {
    padding-top: 10px;
    padding-bottom: 10px;
}

.mobile_menu .sub-menu>ul>li {
    padding-top: 10px;
}

.mobile_menu .sub-menu>ul>li>a {
    position: relative;
    padding-left: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.mobile_menu .sub-menu>ul>li>a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
}

.pu_select.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 110;
}

@media screen and (max-width:1580px) {
    .head_left {
        padding-left: 40px;
    }

}

@media screen and (max-width:1440px) {
    .menu_click {
        margin-left: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .headerColor2 .menu {
        padding-left: 55px;
    }
}

@media screen and (max-width:1366px) {
    .menu_click {
        margin-left: 16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .headerColor2 .menu {
        padding-left: 40px;
    }

    .menu>ul>li {
        padding: 0 20px;
    }

}

@media screen and (max-width:1365px) {
    .header {
        justify-content: space-between;
        background-color: var(--white-color);
    }

    .grey_head .header,
    .headerColor3 .header {
        background-color: var(--main-color);
    }

    .menu,
    .menu_click {
        display: none !important;
    }

    .menu_icon {
        display: block;
    }

    .head_search {
        width: 70px;
    }

    .logo {
        width: 200px;
    }

    .head_link a {
        height: 80px;
    }


}

@media screen and (max-width:991px) {
    header {
        top: 20px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width:767px) {
    header {
        top: 0;
        padding-left: 0px;
        padding-right: 0px;
    }

    .logo,
    .mobile_logo {
        width: 170px;
        display: flex;
        align-items: center;
    }

    .menu_icon {
        padding-right: 0;
    }

    .head_link a {
        height: 70px;
    }

    .grey_head .head_left,
    .headerColor2 .head_left,
    .head_left {
        padding-left: 16px;
    }

    .head_link,
    .head_search {
        display: none !important;
    }

    .header {
        height: 70px;
    }

    .pu_select {
        padding: 20px 20px;
    }

}