.container1520 {
  max-width: 1520px;
  width: 95%;
  margin: 0 auto;
}
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);
  font-family: MICEGothicBold;
  font-weight: Bold;
}
.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{
  height: 100px;
  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: 300px;
}
.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;
  cursor: pointer;
}
.header_in_wrap .gnb li:hover a {color: #6A99A6;}
.header_in_wrap .gnb li.active a {
  color: #00616A;
  
}
.header_in_wrap .gnb li.active a::before {
  width: 120%;
}
.header_in_wrap .gnb li a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  margin-left: -10%;
  width: 0;
  height: 4px;
  background: #6A99A6;
  /* 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: 5rem;
}
.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:1080px){
  .menu-wrap{
    display: block;
  }
  /* header */
  header .header_in_wrap{
    height: 80px;
    /* justify-content: space-between; */
  }
  header.on .header_in_wrap{
    height: 80px;
    
  }
  .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: 220px;
  }
  .header_in_wrap nav {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #00616A;
    height: 0px;
    overflow: hidden;
    transition: all .5s ease;
  }
  .header_in_wrap .gnb {
    font-size: 1.6rem;
  }
  header.on .header_in_wrap nav {
    top: 80px;
  }
  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;}
}

