/*헤더 고정안한 거 css*/
/* .header_wrap{
    position: relative;
    width: 100%;
} */

/* 헤더고정 css */
.header_wrap{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background-color: white;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}
/*
.h_logo{
    height: 56px;
    line-height: 56px;
    width: 133px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: center;
}
*/
.h_logo>a {
    width: 212px;
    height: 70px;
    display: block;
    background-size: cover;
    background-image: url(/img/m11999.svg);
}
.gnb{
    display: flex;
    justify-content: end;
    align-items: center;
}
.h_menu{
    margin: 0 40px;
    flex-wrap: wrap;
}
.h_li{
    margin: 10px 0;
}
.h_li>a{
    display: block;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 18px;
    color: #828282;
}
.h_li:hover>a{
    color: #009de4;
}
.ham_icon{
    cursor: pointer;
}

.ham_box{
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);;
    display: none;
    transition: top 0.3s;
    position: absolute;
    z-index: 11;
    top: 0;
    /* top: -100%; */
    left: 0;
    width: 100%;
}
.ham_box.active{
    top: 0;
}
.ham_top{
    position: relative;
    width: 100%;
    height: 100px;
    background-color: #009de4;
}
.ham_nation{
    font-size: 18px;
    position: absolute;
    transform: translateY(-50%) translateX(-900px);
    top: 50%;
    left: 50%;
    color: white;
}
.ham_nation>a{
    opacity: 0.5;
    color: white;
}
.ham_nation>.ham_in.active{
    opacity: 1;
    font-weight: bold;
}
.ham_nation>.ham_out.active{
    opacity: 1;
    font-weight: bold;
}
.ham_inner{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ham_t_l{
    color: #FFFFFF;
    font-size: 24px;
}
.ham_t_r{
    display: flex;
    align-items: center;
}
.ham_t_r>li>a{
    font-size: 14px;
    padding: 0 10px;
    box-sizing: border-box;
    color: #E2E2E2;
}
.ham_t_r>li>a.w{
    color: #FFFFFF;
}
.ham_close{
    cursor: pointer;
    margin-left: 10px;
    position: relative;
    width: 20px;
    height: 20px;
}
.ham_close::before,.ham_close::after{
    content: '';
    width: 28.2842px;
    height: 2px;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.ham_close::before{
    transform: translate(-50%,-50%) rotate(-45deg);
}
.ham_close::after{
    transform: translate(-50%,-50%) rotate(45deg);
}
.ham_bot{
    background-color: white;
    padding: 80px 0 60px 0;
    box-sizing: border-box;
    height: 700px;
}
.ham_bot_inner{
    position: relative;
}
.ham_bot_inner li{
    width: 265px;
}
.ham_bot_inner li>a{
    display: block;
    color: #828282;
    font-size: 18px;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
}
.ham_bot_inner li > a:hover{
    color: #009de4;
}
.ham_cate{
    height: 100%;
}
.ham_cate_2{
    top: 0;
    position: absolute;
    left: 265px;
    width: 265px;
}
.ham_cate_3{
    top: 0;
    position: absolute;
    left: 265px;
    width: 265px;

}
.ham_cate_4{
    top: 0;
    position: absolute;
    left: 265px;
    width: 265px;

}

.ham_cate{
    display: none;
}
li:hover>.ham_cate{
    display: block;
}