.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;
  color: #424242;
  background: #fff;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.h_top {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 0.5px solid #d8d8d8;
}
.h_logo {
  max-width: 300px;
}
.header_in_wrap {
  max-width: 1520px;
  height: 80px;
  margin: 0 auto;
  width: 95%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  transition: all 0.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 .naver:hover {
  color: #00913a;
}
.header_in_wrap .naver {
  transition: all 0.5s ease;
  height: 100%;
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: 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 0.5s ease;
  overflow: hidden;
  position: relative;
}
.header_in_wrap .gnb li:hover a {
  color: #00913a;
}
.header_in_wrap .gnb li.active a {
  color: #00913a;
}
.header_in_wrap .gnb li.active a::before {
  width: 120%;
}
.header_in_wrap .gnb li a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: -10%;
  width: 0;
  height: 4px;
  background: #00913a;
  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: 0.3s;
}
.menu-wrap .line:nth-child(2) {
  top: calc(50% - 1px);
}
.menu-wrap .line:last-child {
  bottom: 0;
  transform-origin: 25% 50%;
  transition: 0.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 a {
    padding: 0 1.5rem;
  }
}
@media (min-width: 0px) and (max-width: 1080px) {
  /* header */
  header .header_in_wrap {
    height: 65px;
    /* 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: 220px;
  }
  .header_in_wrap nav {
    display: block;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #333;
    height: 0px;
    overflow: hidden;
    transition: all 0.5s ease;
  }
  .header_in_wrap .naver {
    font-size: 1.6rem;
    line-height: 4rem;
    /* background: #f5f5f570; */
    color: #fff;
    width: 100%;
    text-align: center;
  }
  .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;
  }
}
@media (min-width: 1080px) and (max-width: 1100px) {
  nav {
    display: none;
  }
}
