.container1520 {
    max-width: 1520px;
    width: 95%;
    margin: 0 auto;
}
/* header.on */
/* header.on {
    background: #fff;
} */
/* header.on .header_in_wrap{
    height: 50px;
} */


header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    transition: all .5s ease-in-out;
    box-shadow: 0 19px 35px rgba(0,0,0,0.11);
}
.h_top {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: .5px solid #D8D8D8;
}
.h_logo{
    max-width: 300px;
}
.header_in_wrap{
    max-width: 1580px;
    height: 80px;
    padding: 2rem 0;
    margin: 0 auto;
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items:center ;
    transition: all .5s ease-in-out;
}
.header_in_wrap .h_logo{
    max-width: 270px;
}
.header_in_wrap nav{
    /* height: 100%; */
    display: flex;
    align-items: center;
}
.header_in_wrap .gnb{
    display: flex;
    height: 100%;
    font-size: 2rem;
    font-weight: 600;
    height: 100%;
}
.header_in_wrap .gnb li a {
    transition: all .5s ease ;
    /* overflow: hidden; */
    position: relative;
}
.header_in_wrap .gnb li:hover a {color: #578035;}
.header_in_wrap .gnb li.active a {
    color: #578035;
    
}
.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: #578035;
    /* transition: all .3s ease ; */
    transition-duration: 0.5s;
}

.header_in_wrap .gnb a {
    padding: 0 2rem;
    /* 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: #222;
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 .h_logo {
        max-width: 250px;
    }
    .header_in_wrap .gnb a {
        padding: 0 1rem;
    }
}
@media (min-width:0px) and (max-width:1080px){
    /* header */
    header .header_in_wrap{
        height: 65px;
        padding: 0;
        align-items: center;
        /* justify-content: space-between; */
    }
    header.on .header_in_wrap{
        height: 65px;

    }
    .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: 230px;
    }
    .header_in_wrap nav {
        display: block;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #578035   ;
        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;
        font-weight: 800;
    }
}
@media (min-width:0px) and (max-width:500px){
    .h_logo{width: 220px;}
}