.container1520 {
    max-width: 1520px;
    width: 95%;
    margin: 0 auto;
}
/* header.on */
header.on {
    background: rgba(255, 255, 255, 0.95);
    color: #2d2d2d;
}
header.on .h_logo .logo_b{
    display: block;
}
header.on .h_logo .logo_w{
    display: none;
}



header{
    font-family: 'ONE_Mobile_Title';    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.1);
    /* background: rgba(0, 0 0, 0.5); */
    color: #fff;
    /* transition: all .5s ease-in-out; */
    box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    transition: background .3s ease-in-out;
}
.h_top {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: .5px solid #D8D8D8;
}
.h_logo{

    max-width: 350px;
    /* filter: invert(100%) sepia(100%) saturate(0) hue-rotate(200deg) brightness(200%) contrast(201%); */
    transition: .3s;
}
header .h_logo .logo_b{
    display: none;
}
header .h_logo .logo_w{
    display: block;
}
.header_in_wrap{
    max-width: 1920px;
    height: 80px;
    margin: 0 auto;
    width: 95%;
    display: flex;
    /* gap: 100px; */
    justify-content: space-between;
    align-items:center ;
    /* transition: all .5s ease-in-out; */
}
.header_in_wrap nav{
    /* height: 100%; */
    display: flex;
    align-items: center;
    
}
.header_in_wrap .gnb{
    display: flex;
    height: 100%;
    font-size: 20px;
    height: 100%;
}
.header_in_wrap .gnb li a {
    transition: all .5s ease ;
    /* overflow: hidden; */
    position: relative;
}
.header_in_wrap .gnb li:hover a,
.header_in_wrap .gnb li.active a {
    color: #89c4ff;
}
.header_in_wrap .gnb li.active a::before {
    width: 100%;
}
.header_in_wrap .gnb li a::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
    margin-left: 0%;
    width: 0;
    height: 2px;
    background: #fff;
    /* transition: all .3s ease ; */
    transition-duration: 0.5s;
}

.header_in_wrap .gnb a {
    padding: 0 15px;
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 4rem;
}
.header_in_wrap .header_link{
    display: flex;
    align-items: center;
    font-family: 'NEXON Lv2 Gothic';
    font-weight: bold;
    color: #000;
}
.link_img{margin-right: 1rem;}
/* .header_link p{
    font-size: 1.5rem;
}
.header_link span{
    font-size: 2.6rem;
} */
.header_in_wrap .header_link{display: none;}
/* 모바일메뉴 */
.menu-wrap{
    /* display: none; */
    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
}
.menu-wrap .line{
position: absolute;
width: 100%;
height: 2.5px;
border-radius: 2px;
background: #333;
left: 0;
}
.menu-wrap .line:first-child{
top: 0;
transform-origin: 25% 50%;
transition: .3s;
}
.menu-wrap .line:nth-child(2){
top: calc(50% - 1px);
}
.menu-wrap .line:last-child{
bottom: 0;
transform-origin: 25% 50%;
transition: .3s;
}
.menu-wrap.open .line:first-child{
transform: rotate(45deg) translateX(10%);
}
.menu-wrap.open .line:nth-child(2){
opacity: 0;
}
.menu-wrap.open .line:last-child{
transform: rotate(-45deg) translateX(10%);
}

@media (min-width:0px) and (max-width:1280px){
    .header_in_wrap .gnb {
        font-size: 17px;
    }
    .h_logo {
        max-width: 300px;
    }
}

@media (min-width:0px) and (max-width:1080px){
    /* header */
    /* header{background: #fff;} */
    header {
        background: rgba(255, 255, 255, 0.5);
        color: #2d2d2d;
    }
    header .h_logo .logo_b{
        display: block;
    }
    header .h_logo .logo_w{
        display: none;
    }
    header .header_in_wrap{
        height: 65px;
        padding: 0;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
    }
    header.on .header_in_wrap{
        height: 65px;

    }
    .header_in_wrap .gnb li.active a {
        color: #476bb2;
    }
    .header_in_wrap .header_link{
        display: flex;
    }
    .link_img {
        width: 40px;
    }
    /* mobile menu */
    .header_in_wrap nav.menu_open {
        /* display: block; */
        height: auto;
    }
    .header_in_wrap .h_logo {
        max-width: 250px;
    }
    .header_in_wrap nav {
        display: block;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #223974;
        height: 0px;
        overflow: hidden;
        transition: all .5s ease;
    }
    .header_in_wrap .gnb {
        font-size: 1.6rem;
    }
    header.on .header_in_wrap nav {
        top: 65px;
    }
    header.on .header_in_wrap nav .gnb{
        font-size: 1.6rem;
        color: #000;
    }
    header .header_in_wrap nav .gnb{
        flex-direction: column;
    }
    header .header_in_wrap nav .gnb a{
        line-height: 4rem;
        /* background: #f5f5f570; */
        color: #fff;
        border-bottom: 1px solid #d7d6d6ad;
    }
    header .header_in_wrap nav .gnb a::before{
        display: none
    }
    header .header_in_wrap nav .gnb .active a{
        background: #fff;
    }
}
@media (min-width:0px) and (max-width:500px){
    .h_logo{width: 220px;}
}