/* 240708 header style */
#header{
    width:100%;
    display: flex;
    padding:40px 0;
    align-items: center;
    justify-content: center;
    overflow:initial;
    position:fixed;
    background:rgba(255,255,255,0.9);
    top:0;
    z-index: 99;
}
#header.on-{
    padding-bottom:60px;
}
#header .logo-box{
    height:62px;
}
#header .logo-box img{
    height:100%;
}
#header .wrap{
    width:95%;
    max-width:1280px;
    display:flex;
    align-items: center;
    justify-content: space-between;
}
#header .menu{
    display:flex;
    align-items: center;
    gap:55px;    
}
#header .menu > li{
    font-size:18px;
    height:26px;
    position:relative;
}
#header .menu > li > a::before{
    content:'';
    width:0%;
    height:1px;
    background:#BA0000;
    display: block;
    position: absolute;
    left:0;
    bottom:0;
    transition:width 0.5s;
}
#header .menu > li.lang- > a::before{
	display:none !important;
}
#header .menu > li.on- > a::before{
    width:100%;
    height:1px;
    background:#BA0000;
}

#header .menu > li:hover > a::before{
    width:100%;
    height:1px;
    background:#BA0000;
}
#header .menu > li.noneHover- > a::before{
    width:0;
}
#header .sub-menu{
    position:absolute;
    align-items: left;
    flex-direction: column;
    gap:10px;
    left:0;
    bottom:-20px;
    transform:translateY(100%);
    font-size:15px;
    display:none;
}
#header.on- .sub-menu{
    display:flex;
}
#header .sub-menu li{
    width: max-content;
}
#header.on- .sub-menu li.on- a{
    font-weight:600;
}
#header .menu .lang-{
    width:100px;
    height:22px;
    border:1px solid #000;
    background:none;
    display: flex;
    align-items: center;
}
#header .menu .lang- a{
    cursor: pointer;
    background:#fff;
    color:#000;
    width:50%;
    font-size:12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height:100%;
}
#header .menu .lang- .on-{
    background:#000;
    color:#fff;
}
#header .menu .all-menu{
    display:none;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    width:17px;
    height:15px;
    cursor: pointer;
}
.all-menu span{
    width:100%;
    height:1px;
    background:#000;
}
#header .menu .all-menu.show-{
    align-items: center;
    justify-content: center;
}
#header .menu .all-menu.show- span:nth-child(2){
    display:none;
}
#header .menu .all-menu.show- span:first-child{
    transform:rotate(45deg);
}
#header .menu .all-menu.show- span:last-child{
    transform:rotate(-45deg);
    margin-top:-1px;
}
#modal-menu{
    display:none;
    position:fixed;
    z-index: 90;
    align-items: center;
    justify-content: center;
    background:rgba(0,0,0,0.8);
    width:100vw;
    height:100vh;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
}
#modal-menu .menu{
    display:flex;
    align-items: center;
    flex-direction: column;
    gap:22px;
    text-align: center;
    color:#fff;
    font-size:18px;
}
#modal-menu .menu .sub-menu{
    margin-top:10px;
    display:flex;
    align-items: center;
    flex-direction: column;
    gap:5px;
    font-size:15px;
}
#modal-menu .menu > li a{
    position: relative;
}
#modal-menu .menu > li > a::before{
    content:'';
    width:0%;
    height:1px;
    background:#BA0000;
    display: block;
    position: absolute;
    left:0;
    bottom:0;
    transition:width 0.5s;
}
#modal-menu .menu > li:hover > a::before{
    width:100%;
    height:1px;
    background:#BA0000;
}
#modal-menu .menu > li.on- > a::before{
    width:100%;
    height:1px;
    background:#BA0000;
}
#modal-menu .menu .sub-menu .on-{
    font-weight: 700;
}
#modal-menu.show-{
    display:flex;
}
#modal-menu .menu > li:hover ~ .on- > a::before{
    width:0;
}