﻿@charset "utf-8";

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

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

.header {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding-left: 36px;
    padding-right: 36px;
    border-radius: 24px;
    background-color:var(--white-color);
    max-width: 1600px;
    margin: 0 auto;
}

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

.logo {
    max-width: 206px;
}

.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;
    height: 100%;
}

.header_language {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    padding-top: 8px;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    /*pointer-events: none;*/
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.language_current {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-right: 26px;
    transition: all .6s ease;
    position: relative;
    z-index: 9999;
}

.language_current img {
    padding: 11px;
    width: 46px;
    border-radius: 63px;
    background: rgba(153, 153, 153, 0.20);
}

.language_content {
    position: relative;
    z-index: 2;
    padding:20px;
    /*opacity: 0;*/
    width: max-content;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 6px rgba(202, 128, 128, 0.08);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.language_content .language_item_box {
    padding-bottom: 12px;
}
.language_content .language_item_box:last-child {
    padding-bottom: 0;
}
.language_content a {
    position: relative;
    padding-bottom: 12px;
    color: #666;
    font-size: 20px;
    font-style: normal;
    line-height: 28px;
    display: block;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}
.language_content a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.10);
}
.language_content a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color:var(--yellow-color);
    transition: width .4s;
}
.language_content a:hover {
    color: var(--yellow-color);
}
.language_content a:hover:after {
    width: 100%;
}


.language_box:hover .header_language {
    /*pointer-events: auto;*/
    transform: translateX(-50%) scaleY(1);
    opacity: 1;
    visibility: visible;
}

.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_right .text {
    display: flex;
    flex-flow: column;
}
.head_right .text span {
    color: var(--dark-color);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.head_right .text .head_email {
    margin-top: 4px;
    color: var(--main-color);
font-size: 20px;
font-style: normal;
line-height: normal;
}

body.hidden {
    overflow: hidden;
}

.menu_icon {
    display: none;
    width: 24px;
    height: 100%;
    margin-left: 12px;
    cursor: pointer;
}

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

/* menu */
.menu {
    position: relative;
}

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

.menu>ul>li>a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 47px 0 48px 0;
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}
.menu>ul>li>a>i {
    margin-left: 2px;
    width: 20px;
    height: 21px;
    background-image: url(../images/menu_icon.svg);
    background-repeat: no-repeat;
}

.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: max-content;
    z-index: 9;
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
}

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

    position: relative;
    width: 100%;
    border-radius: 20px;
    background:var(--white-color);
    box-shadow: 0px 4px 6px 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;
}
.menu>ul>li .sub-menu>ul>li:first-child a {
    padding-top: 0;
}
.menu>ul>li .sub-menu>ul>li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--yellow-color);
    transition: width 0.4s;
}

.menu>ul>li .sub-menu>ul>li>a {
    display: block;
    position: relative;
    padding-top: 12px;
    padding-bottom: 12px;
    width: 100%;
    color: #666;
    font-size: 20px;
    line-height: 28px;
    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:hover {
    color: var(--yellow-color);
}
.menu>ul>li .sub-menu>ul>li:hover:before {
    width: 100%;
}

.menu>ul>li:hover>a,.menu>ul>li.active>a {
    color: var(--yellow-color);
}
.menu>ul>li:hover>a>i {
   background-image: url(../images/menu_y_icon.svg);
}
.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  {
    top: 0;
  background-color:var(--white-color);
}



/* mobile menu */
.pu_select {
    position: fixed;
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    background-color: var(--yellow-color);
    right: 0;
    top: 0;
    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_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.3);
}

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

@media screen and (max-width:1580px) {
    .menu>ul>li {
        padding: 0 25px;
    }

}

@media screen and (max-width:1439px) {
    .menu>ul>li {
        padding: 0 20px;
    }

}

@media screen and (max-width:1366px) {
    .menu_click {
        margin-left: 16px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .menu>ul>li {
        padding: 0 20px;
    }
    .menus>ul>li>a {
        font-size: 18px;
    }
}

@media screen and (max-width:1279px) {
    .header {
        height: 90px;
    }
    .menu {
        display: none !important;
    }

    .menu_icon {
        display: block;
    }


}

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

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

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

    .menu_icon {
        padding-right: 0;
    }

    .header {
        padding-left: 16px;
        padding-right: 16px;
        height: 70px;
        box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.06);
        border-radius: 0;
    }
    .head_right .text {
        display: none !important;
    }
    .language_current {
        margin-right: 0;
    }
    .language_current img {
        padding:8px;
        width: 40px;
    }
    .language_content {
        padding: 12px;
        border-radius: 10px;
    }
    .language_content .language_item_box {
        padding-bottom: 8px;
    }
    .language_content a {
        padding-bottom: 8px;
        font-size: 16px;
        line-height: 25px;
    }
    .pu_select {
        padding: 20px 20px;
    }

}
