.header_h {
    height: 135px;
}

.header_box {
    position: fixed;
    background: #fff;
    height: 130px;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.header {
    position: relative;
    display: flex;
    width: 100%;
    height: 85px;
    max-width: 100%;
    padding: 0px 10px;
    margin: 0 auto;
    align-items: center;
    border-top: 1px solid #dfdfdf;
    justify-content: center;
}

.logo {
    background: #ffffff;
    border-radius: 0px 0px 50% 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    height: 100%;
    margin: 5px 0px 5px 0px;
    z-index: 2;
}

.logo>img {
    max-width: 100%;
    max-height: 100%;
}

.top_menu_box {
    display: flex;
    justify-content: flex-end;
    width: calc(100% - 350px);
    max-width: 800px;
    margin-left: 10px;
}

.top_menu_box.left {
    justify-content: flex-start;
}

.top_menu_list {
    position: relative;
    padding: 10px 15px;
    font-size: 18px;
}

.menu_top_btn {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.menu_top_btn a {
    padding: 10px 10px;
    font-size: 16px;
}

.menu_top_btn a .icon {
    padding-right: 5px;
}

.top_menu_list.search {
    border-radius: 20px;
}

.search_btn_box {
    position: relative;
    width: 150px;
}

.search_btn_box input {
    border-radius: 20px;
    width: 100%;
    height: 30px;
    padding-left: 10px;
    padding-right: 45px;
    border: 2px solid #376634;
}

.search_btn_box a {
    display: block;
    position: absolute;
    right: 5px;
    top: 0px;
    width: 40px;
    height: 30px;
    text-align: center;
    font-size: 20px;
}

.bar {
    display: none;
    position: fixed;
    float: right;
    width: 50px;
    height: 50px;
    top: 60px;
    right: 3%;
    z-index: 11;
}

.bar>div {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border: 0 none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.bar>div:before {
    content: "";
    position: absolute;
    z-index: 1;
    display: block;
    width: 30px;
    height: 2px;
    top: 24px;
    right: 16px;
    background-color: #000;
    -webkit-transition: all .5sease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5sease;
}

.bar>div:after {
    content: "";
    position: absolute;
    z-index: 1;
    display: block;
    width: 30px;
    height: 2px;
    top: 31px;
    right: 16px;
    background-color: #000;
    -webkit-transition: all .5sease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5sease;
}

.bar:after {
    content: "";
    position: absolute;
    z-index: 1;
    display: block;
    width: 30px;
    height: 2px;
    top: 17px;
    right: 16px;
    background-color: #000;
    -webkit-transition: all .5sease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5sease;
}

.bar.active:after {
    transform: rotate(45deg);
    top: 25px;
}

.bar.active>div:before {
    display: none;
}

.bar.active>div:after {
    transform: rotate(-45deg);
    top: 25px;
}

.bar:hover>div:before {
    width: 20px;
}

/*header_down_menu_box*/
.header_down_menu_box_bg {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000059;
    z-index: 9;
}

.header_down_menu_box {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: #00000059;*/
    z-index: 10;
}

.header_down_menu_box_row {
    display: flex;
    height: 100%;
    justify-content: flex-start;
}

.header_down_body_box {
    width: 100%;
    height: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.header_down_menu_item {
    position: relative;
    width: 65%;
    max-width: 600px;
    min-width: 300px;
    height: 100%;
    background-color: #f6f6f6;
    padding: 30px 30px 30px 25px;
    overflow-y: auto;
}

.header_down_menu_ul {
    width: 100%;
    list-style-type: none;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

.header_down_menu_ul li {
    width: 100%;
    margin: 10px;
    padding: 20px 10px 0px 10px;
    border-top: 1px solid #d7d7d7;
}

.header_down_menu_ul li:nth-child(1) {
    border-top: 0;
    padding-top: 0;
}

.header_down_menu_ul li.w_100 {
    width: 100%;
    border-bottom: solid 1px #c0c0c0;
}

.header_down_menu_ul li a {
    font-size: 20px;
    display: block;
    color: #2c2c2c;
}

.header_down_menu_ul li a img {
    width: 100%;
    padding: 0px 35px;
}

.header_down_menu_ul li a .icon {
    display: block;
    font-size: 45px;
}

.top_search_box {
    position: relative;
    width: 180px;
    padding: 10px 15px;
    height: 50px;
}

.top_search_box input {
    width: 100%;
    border-radius: 20px;
    padding-right: 40px;
}

.top_search_box a {
    position: absolute;
    display: block;
    font-size: 20px;
    right: 22px;
    top: calc(50% - 15px);
}

@media only screen and (max-width: 1060px) {
    .top_menu_box {
        display: none;
    }

    .bar {
        display: block;
    }

    .top_search_box {
        position: relative;
        width: 100%;
        padding: 10px 0px;
        height: auto;
    }

    .top_search_box input {
        width: 100%;
        border-radius: 0px;
        height: 45px;
        padding-right: 40px;
    }

    .header_down_menu_ul li a {
        font-size: 28px;
        right: 15px;
        top: calc(50% - 18px);
    }

    .logo {
        max-width: calc(100% - 110px);
    }
}

/* Language Switcher */
.menu_top_btn .lang_box {
    display: flex;
    align-items: center;
    margin-left: 10px;
    border-left: 1px solid #eee;
    padding-left: 10px;
}

.lang_btn {
    display: inline-block;
    padding: 10px 8px !important;
    font-size: 15px !important;
    color: #666;
    transition: color 0.3s;
    line-height: 1.2;
}

.lang_btn.active {
    color: var(--web-color);
    font-weight: bold;
}

.lang_btn:hover {
    color: var(--web-color);
}

/* Mobile Language Switcher */
.mobile_lang_row {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    border-top: 1px solid #d7d7d7;
    margin-top: 10px;
    width: 100%;
}

.mobile_lang_row .lang_btn {
    font-size: 18px;
    padding: 10px 15px !important;
    color: #2c2c2c;
    border-right: 1px solid #d7d7d7;
}

.mobile_lang_row .lang_btn:last-child {
    border-right: none;
}

.mobile_lang_row .lang_btn.active {
    color: var(--web-color);
    font-weight: bold;
}