@charset "UTF-8";
/* 오버레이 */
/*어드민 디자인*/
/*============================*/
/*@mixin center() {
    top: $percentage;
    left: $percentage;
    transform: translate(-$percentage, -$percentage);
}*/
ul, li {
  list-style-type: none;
}

/* 텍스트 이펙트 */
.visu-top {
  animation: top 1s ease-out 0s both;
}

.visu-top2 {
  animation: top2 1s ease-out 0s both;
}

.visu-top3 {
  animation: top3 1s ease-out 0s both;
}

@keyframes top {
  0% {
    opacity: 0;
    margin-top: -120px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
@keyframes top2 {
  0% {
    opacity: 0;
    margin-top: -180px;
  }
  100% {
    opacity: 1;
    margin-top: -60px;
  }
}
@keyframes top3 {
  0% {
    opacity: 0;
    margin-left: -200px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}
/* 끝 */
/* 슬라이드 */
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes zoomin {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rightin {
  0% {
    opacity: 1;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rightout {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(100%);
  }
}
@keyframes leftscale {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes leftout {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-300px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes topdown {
  0% {
    opacity: 0;
    transform: translateY(-350%);
  }
  40% {
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

* {
  box-sizing: border-box;
}

.topnav-sec {
  background-color: white;
  border-bottom: 1px solid #F2F2F5FF;
}
.topnav-sec .wide-topnav {
  width: 100%;
  height: 50px;
}
.topnav-sec .wide-topnav .topnavbar-box {
  width: 100%;
  z-index: 1000;
}
.topnav-sec .wide-topnav .topnavbar-box dl {
  display: flex;
  width: 100%;
  background-color: #fff;
}
.topnav-sec .wide-topnav .topnavbar-box dl dt.tnav-home {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 100%;
  border-left: 1px solid #F2F2F5FF;
}
.topnav-sec .wide-topnav .topnavbar-box dl dt.tnav-home img {
  width: 26.85px;
  height: 22.5px;
}
.topnav-sec .wide-topnav .topnavbar-box dl dd {
  position: relative;
  width: 200px;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  padding-left: 20px;
  border-right: 1px solid #F2F2F5FF;
  border-left: 1px solid #F2F2F5FF;
  font-size: 14px;
  font-weight: 400;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif;
  color: #4b4c4d;
  cursor: pointer;
}
.topnav-sec .wide-topnav .topnavbar-box dl dd:nth-of-type(2) {
  border-left: none;
}
.topnav-sec .wide-topnav .topnavbar-box dl dd img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 17.9px;
  height: 15px;
  transition: all 0.5s ease;
}
.topnav-sec .wide-topnav .topnavbar-box dl dd.subopen img {
  transform: rotate(540deg);
}
.topnav-sec .wide-topnav .topnavbar-box dl dd ul {
  z-index: -1;
  position: absolute;
  top: 50px;
  border: 1px solid #F2F2F5FF;
  background-color: #fff;
}
.topnav-sec .wide-topnav .topnavbar-box dl dd ul.ul1 {
  width: 200px;
  left: -1px;
  transform: translateY(-110%);
  transition: all 0.5s ease;
}
.topnav-sec .wide-topnav .topnavbar-box dl dd ul.ul2 {
  width: 201px;
  left: -1px;
  transform: translateY(-110%);
  transition: all 0.5s ease;
}
.topnav-sec .wide-topnav .topnavbar-box dl dd ul.subopen {
  transform: translateY(0%);
}
.topnav-sec .wide-topnav .topnavbar-box dl dd ul li {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  border-bottom: 1px solid #F2F2F5FF;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #4b4c4d;
  transition: all 0.5s ease;
}
.topnav-sec .wide-topnav .topnavbar-box dl dd ul li:hover {
  background-color: #7d7f80;
  color: #ffffff;
}

header {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: white;
  transition: all 1s ease-in-out;
}
header .wide-top-bt {
  height: 25px;
  display: flex;
  justify-content: flex-end;
}
header .wide-top-bt .home-bt {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 15px;
  background-color: #192350;
  font-size: 11px;
  font-weight: 300;
  line-height: 11px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  cursor: pointer;
  transition: all 0.5s ease;
}
header .wide-top-bt .home-bt:hover {
  background-color: #2d3b79;
}
header .wide-top-bt .contact-bt {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 15px;
  margin-left: 1px;
  background-color: #192350;
  font-size: 11px;
  font-weight: 300;
  line-height: 11px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  cursor: pointer;
  transition: all 0.5s ease;
}
header .wide-top-bt .contact-bt:hover {
  background-color: #2d3b79;
}
header .wide-top-nav {
  height: 70px;
  display: flex;
  align-items: center;
}
header .wide-top-nav .logo-box {
  display: flex;
  align-items: center;
  width: 25%;
  height: 100%;
  padding-left: 20px;
}
header .wide-top-nav .logo-box img {
  width: 151.25px;
  height: 46.75px;
  cursor: pointer;
  transition: all 1s ease-in-out;
}
header .wide-top-nav .menu-box {
  width: calc(75% - 0px);
  height: 100%;
  display: flex;
  align-items: center;
}
header .wide-top-nav .menu-box .top-nav-ul {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
header .wide-top-nav .menu-box .top-nav-ul li {
  width: 30%;
  height: 100%;
}
header .wide-top-nav .menu-box .top-nav-ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif;
  color: #4b4c4d;
}
header .wide-top-nav .top-pop-bt {
  position: relative;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 100%;
  background-color: #192d52;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  cursor: pointer;
  display: none;
}
header.head-dn {
  background-color: white;
  border-bottom: 0 solid #dddedf;
}
header.head-dn .wide-top-nav .logo-box img.dn {
  display: none;
}
header.head-dn .wide-top-nav .logo-box img.up {
  display: block;
}
header.head-dn .wide-top-nav .menu-box .top-nav-ul li a {
  color: #323333;
}
header.head-up {
  background-color: #fff;
  border-bottom: 1px solid #dddedf;
  transform: translateY(0);
}
header.head-up .wide-top-nav .logo-box img.dn {
  display: block;
}
header.head-up .wide-top-nav .logo-box img.up {
  display: none;
}
header.pop-show {
  z-index: -1000;
}

.top-sub-box {
  position: fixed;
  z-index: 1000;
  top: -460px;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fdfdfd;
  border-bottom: 1px solid #F2F2F5FF;
  transition: all 1s cubic-bezier(0.02, 0.95, 0.33, 1);
}
.top-sub-box.open-box {
  position: fixed;
  top: 70px;
}
.top-sub-box.head-dn {
  position: fixed;
  margin-top: 0;
}
.top-sub-box .wide-subbox .logo-space {
  position: relative;
  display: flex;
  width: 25%;
  padding: 20px;
}
.top-sub-box .wide-subbox .logo-space .smbn-box {
  width: 100%;
  height: 100%;
  background-image: url("../imgs/menu-1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.top-sub-box .wide-subbox .submenu-box {
  width: calc(75% - 0px);
  height: 100%;
}
.top-sub-box .wide-subbox .submenu-box .sub1-ul {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.top-sub-box .wide-subbox .submenu-box .sub1-ul .sub1-li {
  width: 30%;
  border-left: 1px solid #F2F2F5FF;
}
.top-sub-box .wide-subbox .submenu-box .sub1-ul .sub1-li:last-of-type {
  border-right: 1px solid #F2F2F5FF;
}
.top-sub-box .wide-subbox .submenu-box .sub1-ul .sub1-li .sub2-ul {
  width: 100%;
  padding: 20px 0;
}
.top-sub-box .wide-subbox .submenu-box .sub1-ul .sub1-li .sub2-ul .sub2-li {
  width: 100%;
}
.top-sub-box .wide-subbox .submenu-box .sub1-ul .sub1-li .sub2-ul .sub2-li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 32px;
  font-family: "Noto Sans KR", sans-serif;
  color: #4b4c4d;
}
.top-sub-box .wide-subbox .submenu-box .sub1-ul .sub1-li .sub2-ul .sub2-li a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.top-sub-box .wide-subbox .submenu-box .sub1-ul .sub1-li.sub1-li:hover {
  background-color: #202835;
}
.top-sub-box .wide-subbox .submenu-box .sub1-ul .sub1-li.sub1-li:hover .sub2-ul .sub2-li a {
  color: #ffffff;
}
.top-sub-box .wide-subbox .esti-space {
  position: relative;
  width: 60px;
  height: 100%;
  display: none;
}

body.hide {
  overflow: hidden;
}

.moHeader {
  z-index: 5000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  border-bottom: 1px solid #5c5c60;
}
.moHeader__nav {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.moHeader__nav--logo {
  width: 20%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 15px;
}
.moHeader__nav--logo img {
  width: auto;
  height: 30px;
}
.moHeader__nav .moBt {
  width: 80%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.moHeader__nav .moBt--loginBt {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.moHeader__nav .moBt--loginBt .logBt {
  width: 100px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  border-left: 1px solid #5c5c60;
  background-color: #ffffff;
  transition: all 0.5s ease;
}
.moHeader__nav .moBt--loginBt .logBt:hover {
  color: #ffffff;
  background-color: #5c5c60;
}
.moHeader__nav .moBt--menuBt {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.moHeader__nav .moBt--menuBt .btBx {
  width: 60px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.moHeader__nav .moBt--menuBt .btBx span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #34353a;
  transition: all 0.5s ease;
}
.moHeader__nav .moBt--menuBt .btBx span:first-child {
  margin-top: -15px;
}
.moHeader__nav .moBt--menuBt .btBx span:last-child {
  margin-top: 15px;
}
.moHeader__nav .moBt--menuBt .btBx:hover {
  background-color: #5c5c60;
}
.moHeader__nav .moBt--menuBt .btBx:hover span {
  background-color: #ffffff;
}
.moHeader__nav .moBt--menuBt .btBx.moOpen span:first-child {
  margin-top: 0;
  transform: rotate(-45deg);
  transform-origin: center;
}
.moHeader__nav .moBt--menuBt .btBx.moOpen span:last-child {
  margin-top: 0;
  transform: rotate(45deg);
  transform-origin: center;
}
.moHeader__nav .moBt--menuBt .btBx.moOpen span:nth-of-type(2) {
  opacity: 0;
}
.moHeader__nav .moBt--menuBt .estiBt {
  width: 80px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  background-color: #ffffff;
  border-left: 1px solid #5c5c60;
  transition: all 0.5s ease;
}
.moHeader__nav .moBt--menuBt .estiBt:hover {
  color: #ffffff;
  background-color: #5c5c60;
}

#moHeader {
  transition: all 0.5s ease;
}
#moHeader.nav-down {
  transform: translateY(0);
}
#moHeader.nav-up {
  transform: translateY(0);
}
#moHeader.btClick {
  transform: translateY(0);
}

.moMenu {
  z-index: 3000;
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100vh;
}
.moMenu__contain {
  width: 100%;
  height: 100%;
  padding-top: 30px;
  background-color: #ffffff;
}
.moMenu__contain--ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.moMenu__contain--ul .menu-bt {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  cursor: pointer;
  transition: all 0.5s ease;
}
.moMenu__contain--ul .menu-bt:hover {
  color: #ffffff;
  background-color: #64656e;
}
.moMenu__contain--ul .li {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.moMenu__contain--ul .li a {
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  background-color: #ffffff;
  cursor: pointer;
  border-bottom: 1px solid #64656e;
  transition: all 0.5s ease;
}
.moMenu__contain--ul .li a:hover {
  color: #ffffff;
  background-color: #242426;
}

@media (min-width: 992px) {
  #moHeader, .moHeader, .moMenu {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .head-dn, .top-sub-box, .head-up {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .mo-top-sec, .mo-over-sec {
    display: none;
  }
}

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