#header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    transition: background-color .5s;
    background-color: rgba(255, 255, 255, 0.9);
}

#header.show,
#header.hover{
    background-color: #fff;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
}

.h1{
    width: 100%;
    height: 100px;
}

.h1 .center{
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.h1 .center>a{
    display: flex;
    align-items: center;
    justify-content: center;
}

#header.show .h1 .center>a img,
#header.hover .h1 .center>a img{
    content: url(../images/logo.png);
}

ul.main_menu{
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

ul.main_menu>li{
    width: 250px;
    height: 100%;
    position: relative;
}

ul.main_menu>li a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 20px;
    color: #111;
    font-family: 'SUIT-SemiBold', sans-serif;
    transition: color .3s;
}

ul.main_menu>li:hover a{
    color: #0c9882 !important;
}

#header.show ul.main_menu>li a,
#header.hover ul.main_menu>li a{
    color: #111;
}

ul.main_menu>li a:after{
    content: " ";
    width: 0;
    height: 3px;
    background-color: #0c9882;
    position: absolute;
    left: 50%;
    bottom: -1px;
    transition: width .3s, left .3s;
}

ul.main_menu>li:hover a:after{
    width: 100%;
    left: 0;
}

.mark {
  display: flex;
  margin-left:auto;
  padding-right:30px;
}

.lang ul{
    display: flex;
    align-items: center;
    gap: 0 25px;
}

.lang ul li{
    font-size: 18px;
    color: #111;
    font-family: 'SUIT-Light', sans-serif;
    cursor: pointer;
    position: relative;
    transition: color .3s;
}

.lang ul li:after{
    content: " ";
    width: 0;
    height: 2px;
    background-color: #111;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: background-color .3s;
}

.lang ul li.on{
    font-family: 'SUIT-Medium', sans-serif;
}

.lang ul li.on:after{
    width: 100%;
}

#header.show .lang ul li,
#header.hover .lang ul li{
    color: #111;
    font-family: 'SUIT-Regular', sans-serif;
}

#header.show .lang ul li.on,
#header.hover .lang ul li.on{
    font-family: 'SUIT-SemiBold', sans-serif;
}

#header.show .lang ul li:after,
#header.hover .lang ul li:after{
    background-color: #111;
}

.h2{
    width: 100%;
    height: 270px;
    border-top: 1px solid #e3e3e4;
    display: none;
}

#m_header{
    display: none;
}





































/* mobile */
@media screen and (max-width: 767px){

    #header {
        display: none;
    }

    #m_header {
        display: block !important;
        width: 100%;
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        transition: background-color .5s;
    }

    #m_header.show,
    #m_header.hover {
        background-color: #fff;
        box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
    }

    #m_header .center{
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #m_header .center>a{
        width: 130px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #m_header .center>a img{
        width: 90%;
        padding-top: 1vh;
    }

    #m_header.show .center>a img,
    #m_header.hover .center>a img{
        content: url(../images/logo.png);
    }

    .menu_icon{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu_icon i{
        font-size: 26px;
        color: #fff;
        transition: color .3s;
    }

    .mark {
      padding-right: 0;
      width: 15%;
    }
    .mark img {
      width: 60%;
    }

    #m_header.show .menu_icon i,
    #m_header.hover .menu_icon i{
        color: #111;
    }

    .menu_box{
        width: 70%;
        height: calc(100vh - 60px);
        position: fixed;
        left: 0;
        bottom: 0;
        background-color: #fff;
        z-index: 100;
        border-top: 1px solid #e1e1e1;
        box-sizing: border-box;
        padding: 30px;
        box-sizing: border-box;
        transform: translateX(-100%);
        transition: transform 1s;
    }

    .menu_box.show{
        transform: translateX(0);
    }

    .menu_box_top{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu_box_top .lang ul{
        gap: 0 20px;
    }

    .menu_box_top .lang ul li{
        font-size: 15px;
        color: #111;
    }

    .menu_box_top .lang ul li.on:after{
        background-color: #111;
    }

    .close_btn{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close_btn i{
        font-size: 20px;
        color: #111;
    }

    ul.m_mainmenu{
        width: 100%;
        margin-top: 8vh;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 30px 0;
    }

    ul.m_mainmenu>li a{
        width: 100%;
        color: #111;
    }


}
































/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    #header {
        display: none;
    }

    #m_header {
        display: block !important;
        width: 100%;
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        transition: background-color .5s;
    }

    #m_header.show,
    #m_header.hover {
        background-color: #fff;
        box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
    }

    #m_header .center{
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #m_header .center>a{
        width: 130px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #m_header .center>a img{
        width: 100%;
    }

    #m_header.show .center>a img,
    #m_header.hover .center>a img{
        content: url(../images/logo.png);
    }

    .menu_icon{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu_icon i{
        font-size: 26px;
        color: #fff;
        transition: color .3s;
    }


    .mark {
        padding-right: 0;
        width: 10%;
    }
    .mark img {
        width: 60%;
    }

    #m_header.show .menu_icon i,
    #m_header.hover .menu_icon i{
        color: #111;
    }

    .menu_box{
        width: 350px;
        height: calc(100vh - 60px);
        position: fixed;
        left: 0;
        bottom: 0;
        background-color: #fff;
        z-index: 100;
        border-top: 1px solid #e1e1e1;
        box-sizing: border-box;
        padding: 30px;
        box-sizing: border-box;
        transform: translateX(-100%);
        transition: transform 1s;
    }

    .menu_box.show{
        transform: translateX(0);
    }

    .menu_box_top{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu_box_top .lang ul{
        gap: 0 20px;
    }

    .menu_box_top .lang ul li{
        font-size: 15px;
        color: #111;
    }

    .menu_box_top .lang ul li.on:after{
        background-color: #111;
    }

    .close_btn{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close_btn i{
        font-size: 20px;
        color: #111;
    }

    ul.m_mainmenu{
        width: 100%;
        margin-top: 8vh;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 30px 0;
    }

    ul.m_mainmenu>li{
        width: 100%;
    }

    ul.m_mainmenu>li p{
        font-size: 20px;
        color: #111;
        font-family: 'SUIT-SemiBold', sans-serif;
    }

    ul.m_submenu{
        width: 100%;
        margin-top: 15px;
        padding-left: 15px;
        box-sizing: border-box;
        display: none;
    }

    ul.m_submenu li{
        font-size: 16px;
        color: #111;
        font-family: 'SUIT-Regular', sans-serif;
        margin-bottom: 10px;
    }

    ul.m_submenu li:last-child{
        margin-bottom: 0;
    }

}







































/* pc */
@media screen and (min-width: 1025px) and (max-width: 1400px){

    .h1 .center{
        width: 90%;
    }

    ul.main_menu>li{
        width: max-content;
        padding: 0 35px;
    }

}
