@charset "UTF-8";
/* 오버레이 */
/*/////////커스텀 컬러*/
.header {
  z-index: 5000;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: transform 0.5s ease;
}
.header .topNav {
  z-index: 5000;
  position: relative;
  width: 100%;
  height: 80px;
  background-color: #ffffff;
}
.header .topNav__contain {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.header .topNav__contain--leftBt, .header .topNav__contain--rightBt {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .topNav__contain--logo {
  width: calc(100% - 200px);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .topNav__contain--logo img {
  width: 96.4px;
  height: auto;
  cursor: pointer;
}
.header .topNav__contain--leftBtn {
  border-right: 1px solid #2e2f31;
}
.header .topNav__contain--leftBtn .custom-bt {
  width: 130px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  transition: background-color 0.5s ease;
  cursor: pointer;
}
.header .topNav__contain--leftBtn .custom-bt:hover {
  color: #ffffff;
  background-color: #2e2f31;
}
.header .topNav__contain--rightBtn {
  border-left: 1px solid #2e2f31;
}
.header .topNav__contain--rightBtn .contact-bt {
  width: 130px;
  height: 100%;
  color: #323333;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  transition: background-color 0.5s ease;
}
.header .topNav__contain--rightBtn .contact-bt a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  transition: background-color 0.5s ease;
}
.header .topNav__contain--rightBtn .contact-bt a:hover {
  color: #ffffff;
  background-color: #2e2f31;
}
.header .menuNav {
  z-index: 5000;
  position: fixed;
  width: 100%;
  height: 50px;
  border-top: 1px solid #2e2f31;
  background-color: #ffffff;
}
.header .menuNav::after {
  width: 100%;
  height: 1px;
  background-color: #b1b4b9;
  bottom: 0;
}
.header .menuNav__contain {
  width: 100%;
  height: 100%;
}
.header .menuNav__contain--menu {
  width: 100%;
  height: 100%;
  display: flex;
}
.header .menuNav__contain--menu .menuBx {
  width: 20%;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
}
.header .menuNav__contain--menu .menuBx a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  transition: background-color 0.5s ease;
}
.header .menuNav__contain--menu .menuBx .sub-menuBx {
  z-index: 7000;
  position: absolute;
  margin-top: 48px;
  width: 20%;
  padding: 20px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #2e2f31;
  border-left: 1px solid #2e2f31;
  border-right: 1px solid #2e2f31;
}
.header .menuNav__contain--menu .menuBx .sub-menuBx li {
  width: 100%;
}
.header .menuNav__contain--menu .menuBx .sub-menuBx li a {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans KR" !important;
  font-weight: 300;
  font-size: 15px;
  color: #323333;
  transition: background-color 0.5s ease;
}
.header .menuNav__contain--menu .menuBx .sub-menuBx li a:hover {
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.5);
}
.header .menuNav__contain--menu .menuBx .sub-menuBx.reBg {
  background-color: #2e2f31;
}
.header .menuNav__contain--menu .menuBx .sub-menuBx.reBg li a {
  color: #323333;
}
.header .menuNav__contain--menu .menuBx.reBg {
  background-color: #2e2f31;
}
.header .headerQuick {
  z-index: 2000;
  position: fixed;
  left: 0;
  top: 129px;
  width: 100px;
  border-right: 1px solid #323333;
  border-bottom: 1px solid #323333;
  transform: translateX(-110%);
  transition: transform 0.5s ease;
}
.header .headerQuick__wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.header .headerQuick__wrap--custom, .header .headerQuick__wrap--esti {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  background-color: #ffffff;
  transition: background-color 0.5s ease;
}
.header .headerQuick__wrap--custom:hover, .header .headerQuick__wrap--esti:hover {
  background-color: #2e2f31;
  color: #ffffff;
}
.header.small {
  transform: translateY(-80px);
}
.header.small .headerQuick {
  transform: translateX(0);
}

@media screen and (max-width: 768px) {
  .header {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .moHeader, .moMenu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .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;
    color: #323333;
    font-family: "Noto Sans KR", sans-serif !important;
    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;
    border-left: 1px solid #5c5c60;
    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;
    color: #323333;
    font-family: "Noto Sans KR", sans-serif !important;
    background-color: #ffffff;
    border-left: 1px solid #5c5c60;
    transition: all 0.5s ease;
  }
  .moHeader__nav .moBt--menuBt .estiBt:hover {
    color: #ffffff;
    background-color: #5c5c60;
  }
}
@media screen and (max-width: 576px) {
  .moHeader {
    height: 50px;
  }
  .moHeader__nav--logo {
    width: 40%;
    padding-left: 15px;
  }
  .moHeader__nav--logo img {
    height: 25px;
  }
  .moHeader__nav--menuBt {
    width: 60%;
  }
}
#moHeader {
  transition: all 0.5s ease;
}
#moHeader.nav-down {
  transform: translateY(0);
}
#moHeader.nav-up {
  transform: translateY(-50px);
}
#moHeader.btClick {
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .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;
    color: #323333;
    font-family: "Noto Sans KR", sans-serif !important;
    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;
    color: #323333;
    font-family: "Noto Sans KR", sans-serif !important;
    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;
  }
}

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