@charset "UTF-8";
/* 오버레이 */
.header {
  z-index: 7000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.8s ease;
}
.header__contain {
  width: 100%;
  height: 100%;
  justify-content: space-between;
}
.header__contain--logo {
  height: 100%;
  width: 200px;
}
.header__contain--logo .logo-wrap {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.header__contain--logo .logo-wrap img {
  width: calc(241px * 1);
  height: auto;
  transition: all 0.8s ease;
}
.header__contain--menu {
  height: 100%;
  width: calc(100% - 200px);
}
.header__contain--menu .menu-wrap {
  width: 100%;
}
.header__contain--menu .menu-wrap .menu-ul {
  height: 100%;
}
.header__contain--menu .menu-wrap .menu-ul .menu-li {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 200px;
}
.header__contain--menu .menu-wrap .menu-ul .menu-li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #333;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #333 !important;
}
.header__contain--menu .menu-wrap .menu-ul .menu-li a::before {
  transform: translateX(-100px);
  width: 30px;
  height: 1px;
  margin-top: -30px;
  background-color: #323333;
  transition: all 0.5s ease;
  opacity: 0;
}
.header__contain--menu .menu-wrap .menu-ul .menu-li a.reColor {
  color: #323333;
}
.header__contain--menu .menu-wrap .menu-ul .menu-li.over a::before {
  transform: translateX(0px);
  opacity: 1;
}
.header.small {
  height: 70px;
  background-color: #ffffff;
}
.header.small #logo-img {
  width: calc(241px * 0.7);
}
.header.hover {
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.nav {
  z-index: 3000;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  transform: translateY(-160%);
  transition: all 1s cubic-bezier(0.12, 0.77, 0.34, 1.01);
}
.nav__contain {
  width: calc(100% - 200px);
  margin-left: 200px;
}
.nav__contain--menu {
  width: 200px;
  transition: all 0.5s ease;
}
.nav__contain--menu .sub-ul {
  padding: 30px 0;
}
.nav__contain--menu .sub-ul .sub-li {
  height: 35px;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  color: #4b4c4d;
  font-family: "Noto Sans KR", sans-serif !important;
  transition: all 0.5s ease;
}
.nav__contain--menu .sub-ul .sub-li:hover {
  background-color: #312E29;
}
.nav__contain--menu.selt {
  background-color: #47433d;
}
.nav__contain--menu.selt .sub-ul .sub-li {
  color: #ffffff;
}
.nav.over-sub {
  transform: translateY(0);
}

@media screen and (max-width: 992px) {
  .header {
    display: none;
  }

  .nav {
    display: none;
  }
}
/********** 모바일 메뉴  */
body.mo-open {
  overflow: hidden;
}

.moMenuBar {
  z-index: 9000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #ffffff;
}
.moMenuBar__contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.moMenuBar__contain--logo {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.moMenuBar__contain--logo img {
  width: 150px;
  height: auto;
}
.moMenuBar__contain--btn {
  width: 100px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.moMenuBar__contain--btn .mo-btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 50px;
  height: 100%;
}
.moMenuBar__contain--btn .mo-btn-box span {
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #0a0809;
  transition: all 0.5s ease;
}
.moMenuBar__contain--btn .mo-btn-box span:first-child {
  margin-top: -16px;
}
.moMenuBar__contain--btn .mo-btn-box span:last-child {
  margin-top: 16px;
}
.moMenuBar__contain--btn.mo-open .mo-btn-box span {
  opacity: 0;
}
.moMenuBar__contain--btn.mo-open .mo-btn-box span:first-child {
  opacity: 1;
  transform: rotate(45deg);
  transform-origin: left;
  margin-top: -20px;
}
.moMenuBar__contain--btn.mo-open .mo-btn-box span:last-child {
  opacity: 1;
  transform: rotate(-45deg);
  transform-origin: left;
  margin-top: 20px;
}

.mo-menu {
  z-index: 6000;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.mo-menu__contain--wrap .menu-box {
  width: 350px;
  padding: 20px;
  background-color: #f1f1f5;
}
.mo-menu__contain--wrap .menu-box dl {
  padding: 20px 0;
  background-color: #ffffff;
}
.mo-menu__contain--wrap .menu-box dl dt {
  height: 50px;
  border-bottom: 1px solid #f1f1f5;
}
.mo-menu__contain--wrap .menu-box dl dt a:hover {
  background-color: #f1f1f5;
}
.mo-menu__contain--wrap .menu-box dl dd {
  cursor: pointer;
}
.mo-menu__contain--wrap .menu-box dl dd span {
  height: 50px;
  border-bottom: 1px solid #f1f1f5;
}
.mo-menu__contain--wrap .menu-box dl dd span:hover {
  background-color: #f1f1f5;
}
.mo-menu__contain--wrap .menu-box dl dd ul li a.li-link {
  height: 50px;
  background-color: #fafafc;
  border-bottom: 1px solid #f1f1f5;
}
.mo-menu__contain--wrap .menu-box dl dd ul li a.li-link:hover {
  background-color: #f1f1f5;
}
.mo-menu__contain--wrap .menu-box dl dd:last-child a {
  border-width: 0;
}
.mo-menu.mo-open {
  z-index: 6000;
  justify-content: center;
  align-items: center;
  visibility: visible;
  opacity: 1;
  transition: all 1s ease;
}

@media screen and (max-width: 992px) {
  .mo-menu {
    display: flex;
  }
}
@media screen and (max-width: 576px) {
  .mo-menu {
    z-index: 6000;
  }
  .mo-menu__contain {
    width: 100%;
  }
  .mo-menu__contain--wrap {
    width: 100%;
  }
  .mo-menu__contain--wrap .menu-box {
    width: 90%;
    padding: 20px;
    background-color: #f1f1f5;
  }
  .mo-menu__contain--wrap .menu-box dl {
    padding: 20px 0;
    background-color: #ffffff;
  }
  .mo-menu__contain--wrap .menu-box dl dt {
    height: 50px;
    border-bottom: 1px solid #f1f1f5;
  }
  .mo-menu__contain--wrap .menu-box dl dt a:hover {
    background-color: #f1f1f5;
  }
  .mo-menu__contain--wrap .menu-box dl dd {
    cursor: pointer;
  }
  .mo-menu__contain--wrap .menu-box dl dd span {
    height: 50px;
    border-bottom: 1px solid #f1f1f5;
  }
  .mo-menu__contain--wrap .menu-box dl dd span:hover {
    background-color: #f1f1f5;
  }
  .mo-menu__contain--wrap .menu-box dl dd ul li a.li-link {
    height: 50px;
    background-color: #fafafc;
    border-bottom: 1px solid #f1f1f5;
  }
  .mo-menu__contain--wrap .menu-box dl dd ul li a.li-link:hover {
    background-color: #f1f1f5;
  }
  .mo-menu__contain--wrap .menu-box dl dd:last-child a {
    border-width: 0;
  }
}
@media screen and (min-width: 992px) {
  .moMenuBar {
    display: none;
  }
}
/********** 모바일 메뉴 끝  */

/*# sourceMappingURL=header.css.map */
