@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+KR:100,300,400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre:300,400,500,700");
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

._con {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

._flex-center {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* 톱 버튼 */
.top {
  position: fixed;
  z-index: 500;
  width: 35px;
  height: 35px;
  background-color: #323388;
  right: 10px;
  bottom: 20px;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  line-height: 35px;
  color: white;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.top:hover {
  background-color: #e2645a;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

/*  */
body.hide {
  overflow: hidden;
}

button {
  border: none;
  outline: none;
}

a {
  display: inline-block;
  text-decoration: none;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::after,
::before {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: '';
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul, li {
  list-style-type: none;
}

section {
  position: relative;
  width: 100%;
  height: auto;
}

section::after {
  clear: both;
}

.bgsize {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* @import url('https://fonts.googleapis.com/css?family=Lato:700,900'); */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.scroll-none {
  overflow-y: hidden;
  -webkit-transition: all 1s ease 1s;
  transition: all 1s ease 1s;
}

body.scroll-auto {
  overflow-y: auto;
  -webkit-transition: all 2s ease 1s;
  transition: all 2s ease 1s;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 15px;
  font-weight: 300;
}

/* 오버레이 */
body.modal-open {
  overflow: hidden;
}

body.scbar {
  -ms-overflow-style: none;
}

body.scbar::-webkit-scrollbar {
  display: none !important;
}

.scroll-icon {
  position: absolute;
  z-index: 2000;
  cursor: pointer;
}

.scroll-icon.down {
  left: 50%;
  top: auto;
  bottom: 50px;
}

.scroll-icon.up {
  left: 50%;
  top: 50px;
  bottom: auto;
}

.scroll-icon .icon img {
  width: calc(53px * 0.2);
  height: calc(100px * 0.2);
  -webkit-animation: arrowicon 2s ease infinite;
          animation: arrowicon 2s ease infinite;
}

/* background-image */
/* 원형 박스 */
/* transform */
/* 쇼핑몰 뷰어 */
input[id="item-1"] + label.label-box {
  left: 0;
}

input[id="item-1"] + label.label-box .pic-box {
  left: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-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);
  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;
}

@-webkit-keyframes rightIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes rightIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.subVisu-sec {
  overflow: hidden;
  width: 100%;
  height: 350px;
  margin-top: 80px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: height 1s ease;
  transition: height 1s ease;
}

.subVisu-sec ._con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.subVisu-sec ._con > h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #a8e8f5;
  margin-bottom: 30px;
}

.subVisu-sec ._con > p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .subVisu-sec {
    height: 350px;
    margin-top: 80px;
  }
  .subVisu-sec ._con {
    padding: 0 20px;
  }
  .subVisu-sec ._con > h5 {
    font-size: 24px;
    font-weight: 500;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    margin-bottom: 30px;
  }
  .subVisu-sec ._con > p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
}

@media screen and (max-width: 992px) {
  .subVisu-sec {
    height: 280px;
    margin-top: 80px;
  }
  .subVisu-sec ._con {
    padding: 0 20px;
  }
  .subVisu-sec ._con > h5 {
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    margin-bottom: 20px;
  }
  .subVisu-sec ._con > p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
}

@media screen and (max-width: 768px) {
  .subVisu-sec {
    height: 230px;
    margin-top: 70px;
  }
  .subVisu-sec ._con {
    padding: 0 20px;
  }
  .subVisu-sec ._con > h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    margin-bottom: 20px;
  }
  .subVisu-sec ._con > p {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
}

@media screen and (max-width: 576px) {
  .subVisu-sec {
    height: 200px;
    margin-top: 50px;
    background-position: 80% 50%;
  }
  .subVisu-sec ._con {
    display: none;
  }
}

@media (max-width: 420px) {
  .subVisu-sec {
    height: 170px;
    margin-top: 50px;
    background-position: 80% 50%;
  }
  .subVisu-sec ._con {
    display: none;
  }
}

header {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
}

header .nav {
  height: 80px;
  background-color: #fff;
  -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
}

header .nav::after {
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e1e3e5;
  display: none;
}

header .nav.bbAct::after {
  display: block;
}

header .nav ._con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 100%;
  width: 100%;
  opacity: 1;
  -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
}

header .nav ._con .logo {
  position: relative;
  width: 30%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  cursor: pointer;
}

header .nav ._con .logo img {
  width: calc(236px * 0.7);
  height: calc(69px * 0.7);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

header .nav ._con .menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 70%;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 7000;
  height: 100%;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

header .nav ._con .menu ul {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .nav ._con .menu ul li {
  width: calc(100% / 5);
}

header .nav ._con .menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

header .nav ._con .menu ul li a:hover {
  background-color: #2f3033;
  color: #ffffff;
}

header .nav ._con .menu ul li a.active {
  background-color: #2f3033;
  color: #ffffff;
}

header .nav ._con .menu ul .li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  cursor: pointer;
}

header .nav ._con .menu ul .li:hover {
  background-color: #2f3033;
  color: #ffffff;
}

header .nav ._con .menu ul#pcMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .nav ._con .menu ul#moMenu {
  display: none;
}

header .nav .moBt-btn {
  display: none !important;
  position: absolute;
  top: 0;
  right: 30px;
  width: 150px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  cursor: pointer;
}

header .nav .moBt-btn span {
  position: absolute;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header .nav .moBt-btn span:nth-of-type(1) {
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  width: 35px;
  height: 2px;
  margin-top: -15px;
  background-color: #2f3033;
}

header .nav .moBt-btn span:nth-of-type(2) {
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  width: 20px;
  height: 3px;
  margin-top: 5px;
  background-color: #2f3033;
}

header .nav .moBt-btn.over span:nth-of-type(1) {
  width: 20px;
}

header .nav .moBt-btn.over span:nth-of-type(2) {
  width: 35px;
}

header .nav #spanLine {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #adafb3;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
}

@media screen and (max-width: 1200px) {
  header {
    position: fixed;
    z-index: 5000;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav {
    height: 80px;
    background-color: #fff;
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e1e3e5;
    display: none;
  }
  header .nav.bbAct::after {
    display: block;
  }
  header .nav ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    height: 100%;
    width: 100%;
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav ._con .logo {
    position: relative;
    width: 15%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 20px;
    cursor: pointer;
  }
  header .nav ._con .logo img {
    width: calc(236px * 0.5);
    height: calc(69px * 0.5);
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
  }
  header .nav ._con .menu {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 7000;
    height: 100%;
    margin-right: 5%;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
  }
  header .nav ._con .menu ul {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .nav ._con .menu ul li {
    width: calc(100% / 5);
  }
  header .nav ._con .menu ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
  }
  header .nav ._con .menu ul li a:hover {
    background-color: #2f3033;
    color: #ffffff;
  }
  header .nav ._con .menu ul li a.active {
    background-color: #2f3033;
    color: #ffffff;
  }
  header .nav ._con .menu ul .li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
    cursor: pointer;
  }
  header .nav ._con .menu ul .li:hover {
    background-color: #2f3033;
    color: #ffffff;
  }
  header .nav ._con .menu ul#pcMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .nav ._con .menu ul#moMenu {
    display: none;
  }
  header .nav .moBt-btn {
    position: absolute;
    top: 0;
    right: 30px;
    width: 150px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    cursor: pointer;
    display: none;
  }
  header .nav .moBt-btn span {
    position: absolute;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  header .nav .moBt-btn span:nth-of-type(1) {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 35px;
    height: 2px;
    margin-top: -15px;
    background-color: #2f3033;
  }
  header .nav .moBt-btn span:nth-of-type(2) {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 20px;
    height: 3px;
    margin-top: 5px;
    background-color: #2f3033;
  }
  header .nav .moBt-btn.over span:nth-of-type(1) {
    width: 20px;
  }
  header .nav .moBt-btn.over span:nth-of-type(2) {
    width: 35px;
  }
  header .nav #spanLine {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #adafb3;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
}

@media (max-width: 992px) {
  header {
    position: fixed;
    z-index: 5000;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav {
    height: 80px;
    background-color: #fff;
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e1e3e5;
    display: none;
  }
  header .nav.bbAct::after {
    display: block;
  }
  header .nav ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    height: 100%;
    width: 100%;
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav ._con .logo {
    position: relative;
    width: 15%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 20px;
    cursor: pointer;
  }
  header .nav ._con .logo img {
    width: calc(236px * 0.5);
    height: calc(69px * 0.5);
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
  }
  header .nav ._con .menu {
    display: none;
  }
  header .nav .moBt-btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: absolute;
    top: 0;
    right: 30px;
    width: 150px;
    height: 100%;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    cursor: pointer;
  }
  header .nav .moBt-btn span {
    position: absolute;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  header .nav .moBt-btn span:nth-of-type(1) {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 35px;
    height: 2px;
    margin-top: -15px;
    background-color: #2f3033;
  }
  header .nav .moBt-btn span:nth-of-type(2) {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 20px;
    height: 3px;
    margin-top: 5px;
    background-color: #2f3033;
  }
  header .nav .moBt-btn.over span:nth-of-type(1) {
    width: 20px;
  }
  header .nav .moBt-btn.over span:nth-of-type(2) {
    width: 35px;
  }
  header .nav #spanLine {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #adafb3;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
}

@media (max-width: 576px) {
  header {
    position: fixed;
    z-index: 5000;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav {
    height: 50px;
    background-color: #fff;
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e1e3e5;
    display: none;
  }
  header .nav.bbAct::after {
    display: block;
  }
  header .nav ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    height: 100%;
    width: 100%;
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav ._con .logo {
    position: relative;
    width: 15%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 20px;
    cursor: pointer;
  }
  header .nav ._con .logo img {
    width: calc(236px * 0.4);
    height: calc(69px * 0.4);
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
  }
  header .nav ._con .menu {
    display: none;
  }
  header .nav .moBt-btn {
    display: block;
    position: absolute;
    top: 0;
    right: 30px;
    width: 150px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    cursor: pointer;
  }
  header .nav .moBt-btn span {
    position: absolute;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  header .nav .moBt-btn span:nth-of-type(1) {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 35px;
    height: 2px;
    margin-top: -15px;
    background-color: #2f3033;
  }
  header .nav .moBt-btn span:nth-of-type(2) {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 20px;
    height: 3px;
    margin-top: 5px;
    background-color: #2f3033;
  }
  header .nav .moBt-btn.over span:nth-of-type(1) {
    width: 20px;
  }
  header .nav .moBt-btn.over span:nth-of-type(2) {
    width: 35px;
  }
  header .nav #spanLine {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #adafb3;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
}

#subMenu {
  z-index: 4000;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-transform: translateY(-130%);
          transform: translateY(-130%);
}

#subMenu .subMenu-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#subMenu .subMenu-wrap ._con {
  padding: 0 100px;
}

#subMenu .subMenu-wrap ._con .backBt {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 50px;
  margin-top: -60px;
  background-color: #2f3033;
  font-size: 16px;
  font-weight: 300;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}

#subMenu .subMenu-wrap ._con .backBt img {
  margin-right: 30px;
  width: calc(50px * 0.4);
  height: calc(50px * 0.4);
}

#subMenu .subMenu-wrap .menuBox {
  padding: 0;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box .imgBx {
  width: 60%;
  height: 350px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box .texBx {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 50px 0 50px;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box .texBx h3 {
  font-size: 42px;
  font-weight: 500;
  line-height: 42px;
  font-family: "Frank Ruhl Libre", serif !important;
  color: #2f3033;
  text-align: left;
  margin-bottom: 20px;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box .texBx p {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  text-align: right;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box .texBx p::after {
  z-index: -1;
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2f3033;
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box .texBx p:hover {
  color: #ffffff;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box .texBx p:hover::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

@media screen and (max-width: 1200px) {
  .subMenu-wrap ._con {
    padding: 0 20px;
  }
  .subMenu-wrap ._con .backBt {
    width: 200px;
    height: 50px;
    margin-top: -60px;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .subMenu-wrap ._con .backBt img {
    margin-right: 30px;
    width: calc(50px * 0.4);
    height: calc(50px * 0.4);
  }
  .subMenu-wrap .menuBox {
    padding: 0 20px;
  }
  .subMenu-wrap .menuBox .subMenu--box .imgBx {
    width: 60%;
    height: 330px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .subMenu-wrap .menuBox .subMenu--box .texBx {
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px 0 0 50px;
  }
  .subMenu-wrap .menuBox .subMenu--box .texBx h3 {
    font-size: 42px;
    font-weight: 500;
    line-height: 42px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #2f3033;
    text-align: left;
    margin-bottom: 20px;
  }
  .subMenu-wrap .menuBox .subMenu--box .texBx p {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: right;
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .subMenu-wrap .menuBox .subMenu--box .texBx p::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2f3033;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .subMenu-wrap .menuBox .subMenu--box .texBx p:hover {
    color: #ffffff;
  }
  .subMenu-wrap .menuBox .subMenu--box .texBx p:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

#mobMenu-box {
  overflow: hidden;
  z-index: 6000;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
}

.mobMenu-wrap {
  overflow: hidden;
  position: fixed;
  z-index: 6500;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
}

.mobMenu-wrap .mo-back-bt {
  position: absolute;
  z-index: 6100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 50px;
  top: 30px;
  left: 30px;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
  background-color: #2f3033;
  font-size: 16px;
  font-weight: 300;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}

.mobMenu-wrap .mo-back-bt img {
  margin-right: 30px;
  width: calc(50px * 0.4);
  height: calc(50px * 0.4);
}

.mobMenu-wrap #mo-rightImg {
  overflow: hidden;
  position: absolute;
  width: auto;
  height: 100%;
  right: 0;
  top: 0;
  padding: 30px 30px 30px 0;
}

.mobMenu-wrap #mo-rightImg .rightImg-box {
  width: 450px;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
}

.mobMenu-wrap #mobmenuBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  width: 100%;
  top: 50%;
  padding-left: 150px;
  -webkit-transform: translateY(-50%) translateX(-110%);
          transform: translateY(-50%) translateX(-110%);
}

.mobMenu-wrap #mobmenuBox .moMenu-UL {
  overflow: hidden;
  position: relative;
  width: 300px;
}

.mobMenu-wrap #mobmenuBox .moMenu-UL span {
  margin: 0;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  text-align: left;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  cursor: pointer;
}

.mobMenu-wrap #mobmenuBox .moMenu-UL span::after {
  z-index: -1;
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  left: 0;
  top: 49px;
  width: 100%;
  height: 1px;
  background-color: #939599;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.mobMenu-wrap #mobmenuBox .moMenu-UL span:hover::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.mobMenu-wrap #mobmenuBox .moMenu-UL li {
  padding: 0;
  margin: 0;
  line-height: 0;
}

.mobMenu-wrap #mobmenuBox .moMenu-UL li a {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  text-align: left;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.mobMenu-wrap #mobmenuBox .moMenu-UL li a::after {
  z-index: -1;
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  background-color: #2f3033;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover {
  color: #ffffff;
}

.mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

@media screen and (max-width: 1200px) {
  #mobMenu-box {
    overflow: hidden;
    z-index: 6000;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
  }
  .mobMenu-wrap {
    overflow: hidden;
    position: fixed;
    z-index: 6500;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  .mobMenu-wrap .mo-back-bt {
    position: absolute;
    z-index: 6100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 200px;
    height: 50px;
    top: 30px;
    left: 30px;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    background-color: #2f3033;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
  }
  .mobMenu-wrap .mo-back-bt img {
    margin-right: 30px;
    width: calc(50px * 0.4);
    height: calc(50px * 0.4);
  }
  .mobMenu-wrap #mo-rightImg {
    overflow: hidden;
    position: absolute;
    width: 40%;
    height: 100%;
    right: 0;
    top: 0;
    padding: 30px 30px 30px 0;
  }
  .mobMenu-wrap #mo-rightImg .rightImg-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .mobMenu-wrap #mobmenuBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    width: 100%;
    top: 50%;
    padding-left: 30px;
    -webkit-transform: translateY(-50%) translateX(-110%);
            transform: translateY(-50%) translateX(-110%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL {
    overflow: hidden;
    position: relative;
    width: 300px;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span {
    margin: 0;
    padding-left: 10px;
    font-size: 18px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    cursor: pointer;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 49px;
    width: 100%;
    height: 1px;
    background-color: #939599;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li {
    padding: 0;
    margin: 0;
    line-height: 0;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: #2f3033;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover {
    color: #ffffff;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@media screen and (max-width: 992px) {
  #mobMenu-box {
    overflow: hidden;
    z-index: 6000;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
  }
  .mobMenu-wrap {
    overflow: hidden;
    position: fixed;
    z-index: 6500;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  .mobMenu-wrap .mo-back-bt {
    position: absolute;
    z-index: 6100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 200px;
    height: 50px;
    top: 30px;
    left: 30px;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    background-color: #2f3033;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
  }
  .mobMenu-wrap .mo-back-bt img {
    margin-right: 30px;
    width: calc(50px * 0.4);
    height: calc(50px * 0.4);
  }
  .mobMenu-wrap #mo-rightImg {
    overflow: hidden;
    position: absolute;
    width: 40%;
    height: 100%;
    right: 0;
    top: 0;
    padding: 30px 30px 30px 0;
  }
  .mobMenu-wrap #mo-rightImg .rightImg-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .mobMenu-wrap #mobmenuBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    width: 100%;
    top: 50%;
    padding-left: 30px;
    -webkit-transform: translateY(-50%) translateX(-110%);
            transform: translateY(-50%) translateX(-110%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL {
    overflow: hidden;
    position: relative;
    width: 300px;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span {
    margin: 0;
    padding-left: 10px;
    font-size: 18px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    cursor: pointer;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 49px;
    width: 100%;
    height: 1px;
    background-color: #939599;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li {
    padding: 0;
    margin: 0;
    line-height: 0;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: #2f3033;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover {
    color: #ffffff;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@media screen and (max-width: 768px) {
  #mobMenu-box {
    overflow: hidden;
    z-index: 6000;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
  }
  .mobMenu-wrap {
    overflow: hidden;
    position: fixed;
    z-index: 6500;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  .mobMenu-wrap .mo-back-bt {
    position: absolute;
    z-index: 6100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 200px;
    height: 50px;
    top: 30px;
    left: 30px;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    background-color: #2f3033;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
  }
  .mobMenu-wrap .mo-back-bt img {
    margin-right: 30px;
    width: calc(50px * 0.4);
    height: calc(50px * 0.4);
  }
  .mobMenu-wrap #mo-rightImg {
    overflow: hidden;
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    padding: 10px 10px 10px 0;
  }
  .mobMenu-wrap #mo-rightImg .rightImg-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .mobMenu-wrap #mobmenuBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    width: 100%;
    top: 50%;
    padding-left: 30px;
    -webkit-transform: translateY(-50%) translateX(-110%);
            transform: translateY(-50%) translateX(-110%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL {
    overflow: hidden;
    position: relative;
    width: 300px;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span {
    margin: 0;
    padding-left: 10px;
    font-size: 18px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    cursor: pointer;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 49px;
    width: 100%;
    height: 1px;
    background-color: #939599;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li {
    padding: 0;
    margin: 0;
    line-height: 0;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: #2f3033;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover {
    color: #ffffff;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@media screen and (max-width: 576px) {
  #mobMenu-box {
    overflow: hidden;
    z-index: 6000;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
  }
  .mobMenu-wrap {
    overflow: hidden;
    position: fixed;
    z-index: 6500;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  .mobMenu-wrap .mo-back-bt {
    position: absolute;
    z-index: 6100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 150px;
    height: 40px;
    top: 20px;
    left: 20px;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    background-color: #2f3033;
    font-size: 14px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
  }
  .mobMenu-wrap .mo-back-bt img {
    margin-right: 20px;
    width: calc(50px * 0.32);
    height: calc(50px * 0.32);
  }
  .mobMenu-wrap #mo-rightImg {
    overflow: hidden;
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    padding: 0 0 0 0;
  }
  .mobMenu-wrap #mo-rightImg .rightImg-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .mobMenu-wrap #mobmenuBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    width: 100%;
    top: 50%;
    padding-left: 20px;
    -webkit-transform: translateY(-50%) translateX(-110%);
            transform: translateY(-50%) translateX(-110%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL {
    overflow: hidden;
    position: relative;
    width: 200px;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span {
    margin: 0;
    padding-left: 10px;
    font-size: 15px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    cursor: pointer;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 39px;
    width: 100%;
    height: 1px;
    background-color: #939599;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li {
    padding: 0;
    margin: 0;
    line-height: 0;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 5px 5px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: #2f3033;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover {
    color: #ffffff;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@media (max-width: 420px) {
  #mobMenu-box {
    overflow: hidden;
    z-index: 6000;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
  }
  .mobMenu-wrap {
    overflow: hidden;
    position: fixed;
    z-index: 6500;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  .mobMenu-wrap .mo-back-bt {
    position: absolute;
    z-index: 6100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 150px;
    height: 40px;
    top: 20px;
    left: 0px;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    background-color: #2f3033;
    font-size: 14px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
  }
  .mobMenu-wrap .mo-back-bt img {
    margin-right: 20px;
    width: calc(50px * 0.32);
    height: calc(50px * 0.32);
  }
  .mobMenu-wrap #mo-rightImg {
    overflow: hidden;
    position: absolute;
    width: 50% !important;
    height: 100%;
    right: 0;
    top: 0;
    padding: 0 0 0 0;
  }
  .mobMenu-wrap #mo-rightImg .rightImg-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .mobMenu-wrap #mobmenuBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    padding-left: 10px;
    -webkit-transform: translateY(-50%) translateX(-110%);
            transform: translateY(-50%) translateX(-110%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL {
    overflow: hidden;
    position: relative;
    width: 200px;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span {
    margin: 0;
    padding-left: 10px;
    font-size: 15px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    cursor: pointer;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 39px;
    width: 100%;
    height: 1px;
    background-color: #939599;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li {
    padding: 0;
    margin: 0;
    line-height: 0;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 5px 5px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: #2f3033;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover {
    color: #ffffff;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.footer {
  padding: 30px 0;
  border-top: 1px solid #e1e3e5;
  border-bottom: 1px solid #e1e3e5;
}

.footer ._con .addr-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.footer ._con .addr-box .logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer ._con .addr-box .logo-box img {
  width: calc(236px * 1);
  height: calc(69px * 1);
}

.footer ._con .addr-box .logo-box p {
  margin-top: 30px;
  margin-left: 20px;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #939599;
  text-align: left;
}

.footer ._con .addr-box .siteMap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer ._con .addr-box .siteMap p {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #939599;
  text-align: right;
}

.footer ._con .addr-box .siteMap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin-top: 50px;
}

.footer ._con .addr-box .siteMap ul li {
  width: 20%;
}

.footer ._con .addr-box .siteMap ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
}

.contact {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 0;
}

.contact a {
  width: 250px;
  height: 40px;
  font-size: 13px;
  font-weight: 300;
  line-height: 40px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  text-align: center;
  background-color: #101010;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.contact a:hover {
  background-color: #303030;
}

@media screen and (max-width: 1200px) {
  .footer {
    padding: 30px 20px;
    border-top: 1px solid #e1e3e5;
    border-bottom: 1px solid #e1e3e5;
  }
  .footer ._con {
    padding-right: 20px;
  }
  .footer ._con .addr-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .footer ._con .addr-box .logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer ._con .addr-box .logo-box img {
    width: calc(236px * 0.8);
    height: calc(69px * 0.8);
  }
  .footer ._con .addr-box .logo-box p {
    margin-top: 30px;
    margin-left: 20px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #939599;
    text-align: left;
  }
  .footer ._con .addr-box .siteMap {
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .footer ._con .addr-box .siteMap p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #939599;
  }
  .footer ._con .addr-box .siteMap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    margin-top: 50px;
  }
  .footer ._con .addr-box .siteMap ul li {
    width: 20%;
  }
  .footer ._con .addr-box .siteMap ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .contact {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 0;
  }
  .contact a {
    width: 250px;
    height: 40px;
    font-size: 13px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: center;
    background-color: #101010;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .contact a:hover {
    background-color: #303030;
  }
}

@media screen and (max-width: 992px) {
  .footer {
    padding: 30px 0 20px;
    border-top: 1px solid #e1e3e5;
    border-bottom: 1px solid #e1e3e5;
  }
  .footer ._con {
    padding-right: 0px;
  }
  .footer ._con .addr-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer ._con .addr-box .logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #e1e3e5;
  }
  .footer ._con .addr-box .logo-box img {
    width: calc(236px * 0.7);
    height: calc(69px * 0.7);
  }
  .footer ._con .addr-box .logo-box p {
    margin-top: 20px;
    margin-left: 0px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #939599;
    text-align: center;
  }
  .footer ._con .addr-box .siteMap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .footer ._con .addr-box .siteMap p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #939599;
    text-align: center;
  }
  .footer ._con .addr-box .siteMap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 80%;
    margin-top: 20px;
  }
  .footer ._con .addr-box .siteMap ul li {
    width: 20%;
  }
  .footer ._con .addr-box .siteMap ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: center;
  }
  .contact {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 0;
  }
  .contact a {
    width: 250px;
    height: 40px;
    font-size: 13px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: center;
    background-color: #101010;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .contact a:hover {
    background-color: #303030;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 20px 0 20px;
    border-top: 1px solid #e1e3e5;
    border-bottom: 1px solid #e1e3e5;
  }
  .footer ._con {
    padding-right: 0px;
  }
  .footer ._con .addr-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer ._con .addr-box .logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #e1e3e5;
  }
  .footer ._con .addr-box .logo-box img {
    width: calc(236px * 0.6);
    height: calc(69px * 0.6);
  }
  .footer ._con .addr-box .logo-box p {
    margin-top: 20px;
    margin-left: 0px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #939599;
    text-align: center;
  }
  .footer ._con .addr-box .siteMap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 15px;
    padding-bottom: 10px;
  }
  .footer ._con .addr-box .siteMap p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #939599;
  }
  .footer ._con .addr-box .siteMap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 80%;
    margin-top: 20px;
  }
  .footer ._con .addr-box .siteMap ul li {
    width: 20%;
  }
  .footer ._con .addr-box .siteMap ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .contact {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 0;
  }
  .contact a {
    width: 250px;
    height: 40px;
    font-size: 13px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: center;
    background-color: #101010;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .contact a:hover {
    background-color: #303030;
  }
}

@media screen and (max-width: 576px) {
  .footer {
    padding: 20px 0 20px;
    border-top: 1px solid #e1e3e5;
    border-bottom: 1px solid #e1e3e5;
  }
  .footer ._con {
    padding-right: 0px;
  }
  .footer ._con .addr-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer ._con .addr-box .logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #e1e3e5;
  }
  .footer ._con .addr-box .logo-box img {
    width: calc(236px * 0.6);
    height: calc(69px * 0.6);
  }
  .footer ._con .addr-box .logo-box p {
    margin-top: 20px;
    margin-left: 0px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #939599;
    text-align: center;
  }
  .footer ._con .addr-box .siteMap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 15px;
    padding-bottom: 10px;
  }
  .footer ._con .addr-box .siteMap p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #939599;
  }
  .footer ._con .addr-box .siteMap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 80%;
    margin-top: 20px;
  }
  .footer ._con .addr-box .siteMap ul li {
    width: 33.3333%;
  }
  .footer ._con .addr-box .siteMap ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: 300;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .contact {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 0;
  }
  .contact a {
    width: 250px;
    height: 40px;
    font-size: 13px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: center;
    background-color: #101010;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .contact a:hover {
    background-color: #303030;
  }
}

@media (max-width: 420px) {
  .footer {
    padding: 20px 0 20px;
    border-top: 1px solid #e1e3e5;
    border-bottom: 1px solid #e1e3e5;
  }
  .footer ._con {
    padding-right: 0px;
  }
  .footer ._con .addr-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer ._con .addr-box .logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #e1e3e5;
  }
  .footer ._con .addr-box .logo-box img {
    width: calc(236px * 0.6);
    height: calc(69px * 0.6);
  }
  .footer ._con .addr-box .logo-box p {
    margin-top: 20px;
    margin-left: 0px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #939599;
    text-align: center;
  }
  .footer ._con .addr-box .siteMap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 15px;
    padding-bottom: 10px;
    padding: 15px 10px 10px;
  }
  .footer ._con .addr-box .siteMap p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #939599;
  }
  .footer ._con .addr-box .siteMap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 80%;
    margin-top: 10px;
  }
  .footer ._con .addr-box .siteMap ul li {
    width: 33.3333%;
  }
  .footer ._con .addr-box .siteMap ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: 300;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .contact {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 0;
  }
  .contact a {
    width: 250px;
    height: 40px;
    font-size: 13px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: center;
    background-color: #101010;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .contact a:hover {
    background-color: #303030;
  }
}

#estBox-bg {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
}

#estBox {
  overflow: hidden;
  position: absolute;
  z-index: 6000;
  width: 550px;
  left: 50%;
  top: 100px;
  -webkit-transform: translateX(-50%) translateY(-150%);
          transform: translateX(-50%) translateY(-150%);
  padding: 30px 30px;
  background-color: #fff;
  border: 1px solid #f2f2f5;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

#estBox #sucsMsg {
  position: absolute;
  z-index: 6000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
}

#estBox #sucsMsg::after {
  z-index: -1;
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fdfdff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

#estBox #sucsMsg h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  margin-bottom: 30px;
}

#estBox #sucsMsg p {
  margin-top: 0;
  margin-bottom: 20px;
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
}

#estBox #sucsMsg h5 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
}

#estBox h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  margin-bottom: 20px;
}

#estBox form {
  position: relative;
  width: 100%;
}

#estBox form .ex-inputfield {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 5px;
  /* 파일 업로드 */
  /* 파일 업로드 끝 */
}

#estBox form .ex-inputfield input::-ms-clear,
#estBox form .ex-inputfield input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

#estBox form .ex-inputfield input[type="text"] {
  -webkit-appearance: none;
  height: 24px;
  padding: 0 8px;
  border: 1px solid #e1e3e5;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  border-radius: 0;
}

#estBox form .ex-inputfield input[type="text"]:nth-of-type(2n) {
  margin-left: 10px;
}

#estBox form .ex-inputfield input[type="text"].ex-inputfield--large {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
}

#estBox form .ex-inputfield input[type="text"]:disabled {
  background-color: #f0f0f0;
  border: 1px solid #bcbcbc;
  color: #757575;
  cursor: not-allowed;
  opacity: 1.0;
  /*used for safari as it changes it by default to 0.4*/
}

#estBox form .ex-inputfield input[type="text"]:focus {
  -webkit-box-shadow: 0 0 1px #0288d1;
          box-shadow: 0 0 1px #0288d1;
  outline: none;
}

#estBox form .ex-inputfield input::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #adafb3;
}

#estBox form .ex-inputfield input[type="text"]:-ms-input-placeholder {
  color: #bcbcbc;
}

#estBox form .ex-inputfield input::-moz-placeholder {
  color: #bcbcbc;
  opacity: 1.0;
}

#estBox form .ex-inputfield .ex-checkbox,
#estBox form .ex-inputfield .ex-radio {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 12px 5px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266;
}

#estBox form .ex-inputfield .ex-checkbox label,
#estBox form .ex-inputfield .ex-checkbox label,
#estBox form .ex-inputfield .ex-radio label,
#estBox form .ex-inputfield .ex-radio label {
  padding-left: 20px;
  padding-right: 20px;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

#estBox form .ex-inputfield .ex-checkbox input[type=checkbox],
#estBox form .ex-inputfield .ex-checkbox input[type=radio],
#estBox form .ex-inputfield .ex-radio input[type=checkbox],
#estBox form .ex-inputfield .ex-radio input[type=radio] {
  margin: 0;
  opacity: 0;
  cursor: pointer;
  width: 14px;
  height: 14px;
  z-index: 10;
  position: absolute;
}

#estBox form .ex-inputfield .ex-checkbox input[type=checkbox] + label::before,
#estBox form .ex-inputfield .ex-radio input[type=checkbox] + label::before {
  border: 1px solid #adafb3;
  width: 14px;
  height: 14px;
  content: '';
  position: absolute;
  left: 0;
  background-color: #fff;
}

#estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:hover + label::before,
#estBox form .ex-inputfield .ex-radio input[type=checkbox]:hover + label::before {
  border: 2px solid #0288d1;
}

#estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:focus + label::before,
#estBox form .ex-inputfield .ex-radio input[type=checkbox]:focus + label::before {
  -webkit-box-shadow: 0 0 1px #0288d1;
          box-shadow: 0 0 1px #0288d1;
  outline: none;
}

#estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:checked + label::before,
#estBox form .ex-inputfield .ex-radio input[type=checkbox]:checked + label::before {
  border: 1px solid transparent;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ij48cGF0aCBmaWxsPSIjMDI4OGQxIiBkPSJNMTguOSA4LjhsLTguNyA4LjdjLS4xLjEtLjIuMS0uMyAwbC00LjktNC45Yy0uMS0uMS0uMS0uMiAwLS4zbDEuMi0xLjJjLjEtLjEuMi0uMS4zIDBsMy42IDMuNiA3LjMtNy4zYy4xLS4xLjItLjEuMyAwbDEuMiAxLjJjLjEgMCAuMS4xIDAgLjJ6IiAvPjwvc3ZnPg==") no-repeat center center;
  background-size: 24px 24px;
}

#estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:checked:hover + label::before,
#estBox form .ex-inputfield .ex-radio input[type=checkbox]:checked:hover + label::before {
  background-size: 30px 30px;
}

#estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:disabled,
#estBox form .ex-inputfield .ex-radio input[type=checkbox]:disabled {
  cursor: not-allowed;
}

#estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:disabled + label,
#estBox form .ex-inputfield .ex-radio input[type=checkbox]:disabled + label {
  color: #c8c9cc;
  cursor: not-allowed;
}

#estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:disabled:checked + label::before,
#estBox form .ex-inputfield .ex-radio input[type=checkbox]:disabled:checked + label::before {
  border: 1px solid transparent;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ij48cGF0aCBmaWxsPSIjYmNiY2JjIiBkPSJNMTguOSA4LjhsLTguNyA4LjdjLS4xLjEtLjIuMS0uMyAwbC00LjktNC45Yy0uMS0uMS0uMS0uMiAwLS4zbDEuMi0xLjJjLjEtLjEuMi0uMS4zIDBsMy42IDMuNiA3LjMtNy4zYy4xLS4xLjItLjEuMyAwbDEuMiAxLjJjLjEgMCAuMS4xIDAgLjJ6IiAvPjwvc3ZnPg==") no-repeat center center;
}

#estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:disabled + label::before,
#estBox form .ex-inputfield .ex-radio input[type=checkbox]:disabled + label::before {
  border: 1px solid #c8c9cc;
}

#estBox form .ex-inputfield .ex-radio {
  margin-top: 0;
}

#estBox form .ex-inputfield input[type=radio] + label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  border: 1px solid #9f9f9f;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
}

#estBox form .ex-inputfield input[type=radio]:hover + label::before {
  border: 2px solid #0288d1;
}

#estBox form .ex-inputfield input[type=radio]:focus + label::before {
  -webkit-box-shadow: 0 0 1px #0288d1;
          box-shadow: 0 0 1px #0288d1;
  outline: none;
}

#estBox form .ex-inputfield input[type=radio]:checked + label::before,
#estBox form .ex-inputfield input[type=radio]:checked:hover + label::before {
  border: 1px solid #0288d1;
}

#estBox form .ex-inputfield input[type=radio] + label::after {
  position: absolute;
  content: " ";
  width: 8px;
  height: 8px;
  left: 4px;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

#estBox form .ex-inputfield input[type=radio]:checked + label::after {
  background-color: #0288d1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

#estBox form .ex-inputfield input[type="radio"]:disabled {
  cursor: not-allowed;
}

#estBox form .ex-inputfield input[type="radio"]:disabled + label {
  color: #bcbcbc;
  cursor: not-allowed;
}

#estBox form .ex-inputfield input[type=radio]:disabled + label::before,
#estBox form .ex-inputfield input[type=radio]:checked:disabled + label::before {
  border: 1px solid #bcbcbc;
}

#estBox form .ex-inputfield input[type=radio]:checked:disabled + label::after {
  background-color: #bcbcbc;
}

#estBox form .ex-inputfield select::-ms-expand {
  display: none;
}

#estBox form .ex-inputfield .ex-select-menu {
  width: 100%;
  height: 40px;
  padding-left: 16px;
  padding-right: 24px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  border: 1px solid #e1e3e5;
  background-image: url("../imgs/icon/select-dropdown.png");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 8px auto;
}

#estBox form .ex-inputfield .ex-select-menu:focus {
  -webkit-box-shadow: 0 0 1px #0288d1;
          box-shadow: 0 0 1px #0288d1;
  outline: none;
}

#estBox form .ex-inputfield .ex-select-menu:disabled {
  background-color: #f0f0f0;
  border: 1px solid #bcbcbc;
  color: #bcbcbc;
  cursor: not-allowed;
}

#estBox form .ex-inputfield .ex-select-menu:disabled::-ms-value {
  color: #bcbcbc;
}

#estBox form .ex-inputfield .ex-select-menu .ex-select-menu--large {
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  padding-left: 12px;
  padding-right: 46px;
  background-position: right 16px center;
  background-size: 14px 8px;
}

#estBox form .ex-inputfield textarea {
  height: 100px;
  width: 100%;
  max-width: 100%;
  padding: 10px 16px;
  resize: none;
  outline: none;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  border: 1px solid #e1e3e5;
}

#estBox form .ex-inputfield textarea::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #adafb3;
}

#estBox form .ex-inputfield textarea:-ms-input-placeholder {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #adafb3;
}

#estBox form .ex-inputfield textarea::-ms-input-placeholder {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #adafb3;
}

#estBox form .ex-inputfield textarea::placeholder {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #adafb3;
}

#estBox form .ex-inputfield .file-box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

#estBox form .ex-inputfield .file-box .up {
  margin-top: 0px;
  width: 100%;
}

#estBox form .ex-inputfield .file-box #file-upload {
  position: absolute;
  left: -9999px;
}

#estBox form .ex-inputfield .file-box label[for="file-upload"] {
  padding: 0 20px;
  display: inline-block;
  background: #222222;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: center;
  -webkit-font-feature-settings: 400;
  font-feature-settings: 400;
  color: white;
  width: 30%;
  height: 50px;
}

#estBox form .ex-inputfield .file-box label[for="file-upload"]:hover {
  background: #e1e3e5;
}

#estBox form .ex-inputfield .file-box #filename {
  padding: 0px 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif !important;
  -webkit-font-feature-settings: 300;
  font-feature-settings: 300;
  line-height: 50px;
  float: left;
  width: 70%;
  height: 50px;
  white-space: nowrap;
  overflow: hidden;
  color: #979797;
  border: 1px solid #e1e3e5;
}

#estBox form .ex-inputfield .captcha-w {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}

#estBox form .ex-inputfield .captcha-w .titsucss {
  background-color: #99aae0;
  border: 1px solid #222222;
}

#estBox form .ex-inputfield .captcha-w label {
  margin-right: 10px;
}

#estBox form .ex-inputfield .captcha-w label.captcha-title {
  background: white;
  color: #2f3033;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 49%;
  height: 50px;
  font-size: 14px;
  font-weight: 400;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif !important;
  border: 1px solid #e1e3e5;
  padding-left: 20px;
}

#estBox form .ex-inputfield .captcha-w label.captcha-title .captcha-a,
#estBox form .ex-inputfield .captcha-w label.captcha-title .captcha-hack,
#estBox form .ex-inputfield .captcha-w label.captcha-title .captcha-b {
  font-size: 14px;
  font-weight: 400;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif !important;
  font-weight: 500;
  color: #e24a89;
  line-height: 50px;
}

#estBox form .ex-inputfield .captcha-w label.captcha-title .captcha-hack {
  display: none;
}

#estBox form .ex-inputfield .captcha-w label.captcha-title .captcha-a {
  margin-left: 10px;
}

#estBox form .ex-inputfield .captcha-w .input.captcha {
  background-color: white;
  border: 1px solid #e1e3e5;
  outline: none;
  display: block;
  width: 49%;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif !important;
}

#estBox form .ex-inputfield .captcha-w .input.captcha::-webkit-input-placeholder {
  color: #d6b1ac;
}

#estBox form .ex-inputfield .captcha-w .input.captcha:-ms-input-placeholder {
  color: #d6b1ac;
}

#estBox form .ex-inputfield .captcha-w .input.captcha::-ms-input-placeholder {
  color: #d6b1ac;
}

#estBox form .ex-inputfield .captcha-w .input.captcha::placeholder {
  color: #d6b1ac;
}

#estBox form .submitBox {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#estBox form .submitBox input[type="button"] {
  outline: none;
  border: none;
  padding: 10px 50px;
  margin: 0 2px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  cursor: pointer;
}

#estBox form .submitBox input[type="button"]:nth-of-type(1) {
  background-color: #72b3da;
  color: #ffffff;
}

#estBox form .submitBox input[type="button"]:nth-of-type(2) {
  background-color: #bfc6ca;
  color: #ffffff;
}

@media screen and (max-width: 576px) {
  #estBox {
    overflow: hidden;
    position: absolute;
    z-index: 6000;
    width: 94%;
    left: 50%;
    top: 50px;
    -webkit-transform: translateX(-50%) translateY(-150%);
            transform: translateX(-50%) translateY(-150%);
    padding: 30px 20px;
    background-color: #fff;
    border: 1px solid #f2f2f5;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  #estBox #sucsMsg {
    position: absolute;
    z-index: 6000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  #estBox #sucsMsg::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fdfdff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  #estBox #sucsMsg h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    margin-bottom: 30px;
  }
  #estBox #sucsMsg p {
    margin-top: 0;
    margin-bottom: 20px;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  #estBox #sucsMsg h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  #estBox h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    margin-bottom: 20px;
  }
  #estBox form {
    position: relative;
    width: 100%;
  }
  #estBox form .ex-inputfield {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 5px;
    /* 파일 업로드 */
    /* 파일 업로드 끝 */
  }
  #estBox form .ex-inputfield input::-ms-clear,
  #estBox form .ex-inputfield input::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
  }
  #estBox form .ex-inputfield input[type="text"] {
    -webkit-appearance: none;
    height: 24px;
    padding: 0 8px;
    border: 1px solid #e1e3e5;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    border-radius: 0;
  }
  #estBox form .ex-inputfield input[type="text"]:nth-of-type(2n) {
    margin-left: 10px;
  }
  #estBox form .ex-inputfield input[type="text"].ex-inputfield--large {
    width: 100%;
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  #estBox form .ex-inputfield input[type="text"]:disabled {
    background-color: #f0f0f0;
    border: 1px solid #bcbcbc;
    color: #757575;
    cursor: not-allowed;
    opacity: 1.0;
    /*used for safari as it changes it by default to 0.4*/
  }
  #estBox form .ex-inputfield input[type="text"]:focus {
    -webkit-box-shadow: 0 0 1px #0288d1;
            box-shadow: 0 0 1px #0288d1;
    outline: none;
  }
  #estBox form .ex-inputfield input::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #adafb3;
  }
  #estBox form .ex-inputfield input[type="text"]:-ms-input-placeholder {
    color: #bcbcbc;
  }
  #estBox form .ex-inputfield input::-moz-placeholder {
    color: #bcbcbc;
    opacity: 1.0;
  }
  #estBox form .ex-inputfield .ex-checkbox,
  #estBox form .ex-inputfield .ex-radio {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 12px 5px;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266;
  }
  #estBox form .ex-inputfield .ex-checkbox label,
  #estBox form .ex-inputfield .ex-checkbox label,
  #estBox form .ex-inputfield .ex-radio label,
  #estBox form .ex-inputfield .ex-radio label {
    padding-left: 20px;
    padding-right: 20px;
    font-weight: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox],
  #estBox form .ex-inputfield .ex-checkbox input[type=radio],
  #estBox form .ex-inputfield .ex-radio input[type=checkbox],
  #estBox form .ex-inputfield .ex-radio input[type=radio] {
    margin: 0;
    opacity: 0;
    cursor: pointer;
    width: 14px;
    height: 14px;
    z-index: 10;
    position: absolute;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox] + label::before,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox] + label::before {
    border: 1px solid #adafb3;
    width: 14px;
    height: 14px;
    content: '';
    position: absolute;
    left: 0;
    background-color: #fff;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:hover + label::before,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:hover + label::before {
    border: 2px solid #0288d1;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:focus + label::before,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:focus + label::before {
    -webkit-box-shadow: 0 0 1px #0288d1;
            box-shadow: 0 0 1px #0288d1;
    outline: none;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:checked + label::before,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:checked + label::before {
    border: 1px solid transparent;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ij48cGF0aCBmaWxsPSIjMDI4OGQxIiBkPSJNMTguOSA4LjhsLTguNyA4LjdjLS4xLjEtLjIuMS0uMyAwbC00LjktNC45Yy0uMS0uMS0uMS0uMiAwLS4zbDEuMi0xLjJjLjEtLjEuMi0uMS4zIDBsMy42IDMuNiA3LjMtNy4zYy4xLS4xLjItLjEuMyAwbDEuMiAxLjJjLjEgMCAuMS4xIDAgLjJ6IiAvPjwvc3ZnPg==") no-repeat center center;
    background-size: 24px 24px;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:checked:hover + label::before,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:checked:hover + label::before {
    background-size: 30px 30px;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:disabled,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:disabled {
    cursor: not-allowed;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:disabled + label,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:disabled + label {
    color: #c8c9cc;
    cursor: not-allowed;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:disabled:checked + label::before,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:disabled:checked + label::before {
    border: 1px solid transparent;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ij48cGF0aCBmaWxsPSIjYmNiY2JjIiBkPSJNMTguOSA4LjhsLTguNyA4LjdjLS4xLjEtLjIuMS0uMyAwbC00LjktNC45Yy0uMS0uMS0uMS0uMiAwLS4zbDEuMi0xLjJjLjEtLjEuMi0uMS4zIDBsMy42IDMuNiA3LjMtNy4zYy4xLS4xLjItLjEuMyAwbDEuMiAxLjJjLjEgMCAuMS4xIDAgLjJ6IiAvPjwvc3ZnPg==") no-repeat center center;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:disabled + label::before,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:disabled + label::before {
    border: 1px solid #c8c9cc;
  }
  #estBox form .ex-inputfield .ex-radio {
    margin-top: 0;
  }
  #estBox form .ex-inputfield input[type=radio] + label::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    border: 1px solid #9f9f9f;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.3s ease-in-out;
    transition: border 0.3s ease-in-out;
  }
  #estBox form .ex-inputfield input[type=radio]:hover + label::before {
    border: 2px solid #0288d1;
  }
  #estBox form .ex-inputfield input[type=radio]:focus + label::before {
    -webkit-box-shadow: 0 0 1px #0288d1;
            box-shadow: 0 0 1px #0288d1;
    outline: none;
  }
  #estBox form .ex-inputfield input[type=radio]:checked + label::before,
  #estBox form .ex-inputfield input[type=radio]:checked:hover + label::before {
    border: 1px solid #0288d1;
  }
  #estBox form .ex-inputfield input[type=radio] + label::after {
    position: absolute;
    content: " ";
    width: 8px;
    height: 8px;
    left: 4px;
    border-radius: 50%;
    background-color: #ffffff;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  #estBox form .ex-inputfield input[type=radio]:checked + label::after {
    background-color: #0288d1;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  #estBox form .ex-inputfield input[type="radio"]:disabled {
    cursor: not-allowed;
  }
  #estBox form .ex-inputfield input[type="radio"]:disabled + label {
    color: #bcbcbc;
    cursor: not-allowed;
  }
  #estBox form .ex-inputfield input[type=radio]:disabled + label::before,
  #estBox form .ex-inputfield input[type=radio]:checked:disabled + label::before {
    border: 1px solid #bcbcbc;
  }
  #estBox form .ex-inputfield input[type=radio]:checked:disabled + label::after {
    background-color: #bcbcbc;
  }
  #estBox form .ex-inputfield select::-ms-expand {
    display: none;
  }
  #estBox form .ex-inputfield .ex-select-menu {
    width: 100%;
    height: 40px;
    padding-left: 16px;
    padding-right: 24px;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
    border: 1px solid #e1e3e5;
    background-image: url("../imgs/icon/select-dropdown.png");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 8px auto;
  }
  #estBox form .ex-inputfield .ex-select-menu:focus {
    -webkit-box-shadow: 0 0 1px #0288d1;
            box-shadow: 0 0 1px #0288d1;
    outline: none;
  }
  #estBox form .ex-inputfield .ex-select-menu:disabled {
    background-color: #f0f0f0;
    border: 1px solid #bcbcbc;
    color: #bcbcbc;
    cursor: not-allowed;
  }
  #estBox form .ex-inputfield .ex-select-menu:disabled::-ms-value {
    color: #bcbcbc;
  }
  #estBox form .ex-inputfield .ex-select-menu .ex-select-menu--large {
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    padding-left: 12px;
    padding-right: 46px;
    background-position: right 16px center;
    background-size: 14px 8px;
  }
  #estBox form .ex-inputfield textarea {
    height: 100px;
    width: 100%;
    max-width: 100%;
    padding: 10px 16px;
    resize: none;
    outline: none;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    border: 1px solid #e1e3e5;
  }
  #estBox form .ex-inputfield textarea::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #adafb3;
  }
  #estBox form .ex-inputfield textarea:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #adafb3;
  }
  #estBox form .ex-inputfield textarea::-ms-input-placeholder {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #adafb3;
  }
  #estBox form .ex-inputfield textarea::placeholder {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #adafb3;
  }
  #estBox form .ex-inputfield .file-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
  #estBox form .ex-inputfield .file-box .up {
    margin-top: 0px;
    width: 100%;
  }
  #estBox form .ex-inputfield .file-box #file-upload {
    position: absolute;
    left: -9999px;
  }
  #estBox form .ex-inputfield .file-box label[for="file-upload"] {
    padding: 0 20px;
    display: inline-block;
    background: #222222;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
    -webkit-font-feature-settings: 400;
    font-feature-settings: 400;
    color: white;
    width: 30%;
    height: 50px;
  }
  #estBox form .ex-inputfield .file-box label[for="file-upload"]:hover {
    background: #e1e3e5;
  }
  #estBox form .ex-inputfield .file-box #filename {
    padding: 0px 20px;
    font-size: 14px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    -webkit-font-feature-settings: 300;
    font-feature-settings: 300;
    line-height: 50px;
    float: left;
    width: 70%;
    height: 50px;
    white-space: nowrap;
    overflow: hidden;
    color: #979797;
    border: 1px solid #e1e3e5;
  }
  #estBox form .ex-inputfield .captcha-w {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
  #estBox form .ex-inputfield .captcha-w .titsucss {
    background-color: #99aae0;
    border: 1px solid #222222;
  }
  #estBox form .ex-inputfield .captcha-w label {
    margin-right: 10px;
  }
  #estBox form .ex-inputfield .captcha-w label.captcha-title {
    background: white;
    color: #2f3033;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 49%;
    height: 50px;
    font-size: 14px;
    font-weight: 400;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    border: 1px solid #e1e3e5;
    padding-left: 20px;
  }
  #estBox form .ex-inputfield .captcha-w label.captcha-title .captcha-a,
  #estBox form .ex-inputfield .captcha-w label.captcha-title .captcha-hack,
  #estBox form .ex-inputfield .captcha-w label.captcha-title .captcha-b {
    font-size: 14px;
    font-weight: 400;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    font-weight: 500;
    color: #e24a89;
    line-height: 50px;
  }
  #estBox form .ex-inputfield .captcha-w label.captcha-title .captcha-hack {
    display: none;
  }
  #estBox form .ex-inputfield .captcha-w label.captcha-title .captcha-a {
    margin-left: 10px;
  }
  #estBox form .ex-inputfield .captcha-w .input.captcha {
    background-color: white;
    border: 1px solid #e1e3e5;
    outline: none;
    display: block;
    width: 49%;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  #estBox form .ex-inputfield .captcha-w .input.captcha::-webkit-input-placeholder {
    color: #d6b1ac;
  }
  #estBox form .ex-inputfield .captcha-w .input.captcha:-ms-input-placeholder {
    color: #d6b1ac;
  }
  #estBox form .ex-inputfield .captcha-w .input.captcha::-ms-input-placeholder {
    color: #d6b1ac;
  }
  #estBox form .ex-inputfield .captcha-w .input.captcha::placeholder {
    color: #d6b1ac;
  }
  #estBox form .submitBox {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #estBox form .submitBox input[type="button"] {
    outline: none;
    border: none;
    padding: 10px 50px;
    margin: 0 2px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    cursor: pointer;
  }
  #estBox form .submitBox input[type="button"]:nth-of-type(1) {
    background-color: #72b3da;
    color: #ffffff;
  }
  #estBox form .submitBox input[type="button"]:nth-of-type(2) {
    background-color: #bfc6ca;
    color: #ffffff;
  }
}

@media (max-width: 420px) {
  #estBox {
    overflow: hidden;
    position: absolute;
    z-index: 6000;
    width: 94%;
    left: 50%;
    top: 50px;
    -webkit-transform: translateX(-50%) translateY(-150%);
            transform: translateX(-50%) translateY(-150%);
    padding: 30px 20px;
    background-color: #fff;
    border: 1px solid #f2f2f5;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  #estBox #sucsMsg {
    position: absolute;
    z-index: 6000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  #estBox #sucsMsg::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fdfdff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  #estBox #sucsMsg h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    margin-bottom: 30px;
  }
  #estBox #sucsMsg p {
    margin-top: 0;
    margin-bottom: 20px;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  #estBox #sucsMsg h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  #estBox h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    margin-bottom: 20px;
  }
  #estBox form {
    position: relative;
    width: 100%;
  }
  #estBox form .ex-inputfield {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 5px;
    /* 파일 업로드 */
    /* 파일 업로드 끝 */
  }
  #estBox form .ex-inputfield input::-ms-clear,
  #estBox form .ex-inputfield input::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
  }
  #estBox form .ex-inputfield input[type="text"] {
    -webkit-appearance: none;
    height: 24px;
    padding: 0 8px;
    border: 1px solid #e1e3e5;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    border-radius: 0;
  }
  #estBox form .ex-inputfield input[type="text"]:nth-of-type(2n) {
    margin-left: 10px;
  }
  #estBox form .ex-inputfield input[type="text"].ex-inputfield--large {
    width: 100%;
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  #estBox form .ex-inputfield input[type="text"]:disabled {
    background-color: #f0f0f0;
    border: 1px solid #bcbcbc;
    color: #757575;
    cursor: not-allowed;
    opacity: 1.0;
    /*used for safari as it changes it by default to 0.4*/
  }
  #estBox form .ex-inputfield input[type="text"]:focus {
    -webkit-box-shadow: 0 0 1px #0288d1;
            box-shadow: 0 0 1px #0288d1;
    outline: none;
  }
  #estBox form .ex-inputfield input::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #adafb3;
  }
  #estBox form .ex-inputfield input[type="text"]:-ms-input-placeholder {
    color: #bcbcbc;
  }
  #estBox form .ex-inputfield input::-moz-placeholder {
    color: #bcbcbc;
    opacity: 1.0;
  }
  #estBox form .ex-inputfield .ex-checkbox,
  #estBox form .ex-inputfield .ex-radio {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 12px 5px;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266;
  }
  #estBox form .ex-inputfield .ex-checkbox label,
  #estBox form .ex-inputfield .ex-checkbox label,
  #estBox form .ex-inputfield .ex-radio label,
  #estBox form .ex-inputfield .ex-radio label {
    padding-left: 20px;
    padding-right: 20px;
    font-weight: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox],
  #estBox form .ex-inputfield .ex-checkbox input[type=radio],
  #estBox form .ex-inputfield .ex-radio input[type=checkbox],
  #estBox form .ex-inputfield .ex-radio input[type=radio] {
    margin: 0;
    opacity: 0;
    cursor: pointer;
    width: 14px;
    height: 14px;
    z-index: 10;
    position: absolute;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox] + label::before,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox] + label::before {
    border: 1px solid #adafb3;
    width: 14px;
    height: 14px;
    content: '';
    position: absolute;
    left: 0;
    background-color: #fff;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:hover + label::before,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:hover + label::before {
    border: 2px solid #0288d1;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:focus + label::before,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:focus + label::before {
    -webkit-box-shadow: 0 0 1px #0288d1;
            box-shadow: 0 0 1px #0288d1;
    outline: none;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:checked + label::before,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:checked + label::before {
    border: 1px solid transparent;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ij48cGF0aCBmaWxsPSIjMDI4OGQxIiBkPSJNMTguOSA4LjhsLTguNyA4LjdjLS4xLjEtLjIuMS0uMyAwbC00LjktNC45Yy0uMS0uMS0uMS0uMiAwLS4zbDEuMi0xLjJjLjEtLjEuMi0uMS4zIDBsMy42IDMuNiA3LjMtNy4zYy4xLS4xLjItLjEuMyAwbDEuMiAxLjJjLjEgMCAuMS4xIDAgLjJ6IiAvPjwvc3ZnPg==") no-repeat center center;
    background-size: 24px 24px;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:checked:hover + label::before,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:checked:hover + label::before {
    background-size: 30px 30px;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:disabled,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:disabled {
    cursor: not-allowed;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:disabled + label,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:disabled + label {
    color: #c8c9cc;
    cursor: not-allowed;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:disabled:checked + label::before,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:disabled:checked + label::before {
    border: 1px solid transparent;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ij48cGF0aCBmaWxsPSIjYmNiY2JjIiBkPSJNMTguOSA4LjhsLTguNyA4LjdjLS4xLjEtLjIuMS0uMyAwbC00LjktNC45Yy0uMS0uMS0uMS0uMiAwLS4zbDEuMi0xLjJjLjEtLjEuMi0uMS4zIDBsMy42IDMuNiA3LjMtNy4zYy4xLS4xLjItLjEuMyAwbDEuMiAxLjJjLjEgMCAuMS4xIDAgLjJ6IiAvPjwvc3ZnPg==") no-repeat center center;
  }
  #estBox form .ex-inputfield .ex-checkbox input[type=checkbox]:disabled + label::before,
  #estBox form .ex-inputfield .ex-radio input[type=checkbox]:disabled + label::before {
    border: 1px solid #c8c9cc;
  }
  #estBox form .ex-inputfield .ex-radio {
    margin-top: 0;
  }
  #estBox form .ex-inputfield input[type=radio] + label::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    border: 1px solid #9f9f9f;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.3s ease-in-out;
    transition: border 0.3s ease-in-out;
  }
  #estBox form .ex-inputfield input[type=radio]:hover + label::before {
    border: 2px solid #0288d1;
  }
  #estBox form .ex-inputfield input[type=radio]:focus + label::before {
    -webkit-box-shadow: 0 0 1px #0288d1;
            box-shadow: 0 0 1px #0288d1;
    outline: none;
  }
  #estBox form .ex-inputfield input[type=radio]:checked + label::before,
  #estBox form .ex-inputfield input[type=radio]:checked:hover + label::before {
    border: 1px solid #0288d1;
  }
  #estBox form .ex-inputfield input[type=radio] + label::after {
    position: absolute;
    content: " ";
    width: 8px;
    height: 8px;
    left: 4px;
    border-radius: 50%;
    background-color: #ffffff;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  #estBox form .ex-inputfield input[type=radio]:checked + label::after {
    background-color: #0288d1;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  #estBox form .ex-inputfield input[type="radio"]:disabled {
    cursor: not-allowed;
  }
  #estBox form .ex-inputfield input[type="radio"]:disabled + label {
    color: #bcbcbc;
    cursor: not-allowed;
  }
  #estBox form .ex-inputfield input[type=radio]:disabled + label::before,
  #estBox form .ex-inputfield input[type=radio]:checked:disabled + label::before {
    border: 1px solid #bcbcbc;
  }
  #estBox form .ex-inputfield input[type=radio]:checked:disabled + label::after {
    background-color: #bcbcbc;
  }
  #estBox form .ex-inputfield select::-ms-expand {
    display: none;
  }
  #estBox form .ex-inputfield .ex-select-menu {
    width: 100%;
    height: 40px;
    padding-left: 16px;
    padding-right: 24px;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
    border: 1px solid #e1e3e5;
    background-image: url("../imgs/icon/select-dropdown.png");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 8px auto;
  }
  #estBox form .ex-inputfield .ex-select-menu:focus {
    -webkit-box-shadow: 0 0 1px #0288d1;
            box-shadow: 0 0 1px #0288d1;
    outline: none;
  }
  #estBox form .ex-inputfield .ex-select-menu:disabled {
    background-color: #f0f0f0;
    border: 1px solid #bcbcbc;
    color: #bcbcbc;
    cursor: not-allowed;
  }
  #estBox form .ex-inputfield .ex-select-menu:disabled::-ms-value {
    color: #bcbcbc;
  }
  #estBox form .ex-inputfield .ex-select-menu .ex-select-menu--large {
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    padding-left: 12px;
    padding-right: 46px;
    background-position: right 16px center;
    background-size: 14px 8px;
  }
  #estBox form .ex-inputfield textarea {
    height: 100px;
    width: 100%;
    max-width: 100%;
    padding: 10px 16px;
    resize: none;
    outline: none;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    border: 1px solid #e1e3e5;
  }
  #estBox form .ex-inputfield textarea::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #adafb3;
  }
  #estBox form .ex-inputfield textarea:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #adafb3;
  }
  #estBox form .ex-inputfield textarea::-ms-input-placeholder {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #adafb3;
  }
  #estBox form .ex-inputfield textarea::placeholder {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #adafb3;
  }
  #estBox form .ex-inputfield .file-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
  #estBox form .ex-inputfield .file-box .up {
    margin-top: 0px;
    width: 100%;
  }
  #estBox form .ex-inputfield .file-box #file-upload {
    position: absolute;
    left: -9999px;
  }
  #estBox form .ex-inputfield .file-box label[for="file-upload"] {
    padding: 0 20px;
    display: inline-block;
    background: #222222;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
    -webkit-font-feature-settings: 400;
    font-feature-settings: 400;
    color: white;
    width: 40%;
    height: 50px;
  }
  #estBox form .ex-inputfield .file-box label[for="file-upload"]:hover {
    background: #e1e3e5;
  }
  #estBox form .ex-inputfield .file-box #filename {
    padding: 0px 20px;
    font-size: 14px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    -webkit-font-feature-settings: 300;
    font-feature-settings: 300;
    line-height: 50px;
    float: left;
    width: 60%;
    height: 50px;
    white-space: nowrap;
    overflow: hidden;
    color: #979797;
    border: 1px solid #e1e3e5;
  }
  #estBox form .ex-inputfield .captcha-w {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
  #estBox form .ex-inputfield .captcha-w .titsucss {
    background-color: #99aae0;
    border: 1px solid #222222;
  }
  #estBox form .ex-inputfield .captcha-w label {
    margin-right: 10px;
  }
  #estBox form .ex-inputfield .captcha-w label.captcha-title {
    background: white;
    color: #2f3033;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 49%;
    height: 50px;
    font-size: 14px;
    font-weight: 400;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    border: 1px solid #e1e3e5;
    padding-left: 20px;
  }
  #estBox form .ex-inputfield .captcha-w label.captcha-title .captcha-a,
  #estBox form .ex-inputfield .captcha-w label.captcha-title .captcha-hack,
  #estBox form .ex-inputfield .captcha-w label.captcha-title .captcha-b {
    font-size: 14px;
    font-weight: 400;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    font-weight: 500;
    color: #e24a89;
    line-height: 50px;
  }
  #estBox form .ex-inputfield .captcha-w label.captcha-title .captcha-hack {
    display: none;
  }
  #estBox form .ex-inputfield .captcha-w label.captcha-title .captcha-a {
    margin-left: 10px;
  }
  #estBox form .ex-inputfield .captcha-w .input.captcha {
    background-color: white;
    border: 1px solid #e1e3e5;
    outline: none;
    display: block;
    width: 49%;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  #estBox form .ex-inputfield .captcha-w .input.captcha::-webkit-input-placeholder {
    color: #d6b1ac;
  }
  #estBox form .ex-inputfield .captcha-w .input.captcha:-ms-input-placeholder {
    color: #d6b1ac;
  }
  #estBox form .ex-inputfield .captcha-w .input.captcha::-ms-input-placeholder {
    color: #d6b1ac;
  }
  #estBox form .ex-inputfield .captcha-w .input.captcha::placeholder {
    color: #d6b1ac;
  }
  #estBox form .ex-inputfield.twoz {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #estBox form .ex-inputfield.twoz #inputComp, #estBox form .ex-inputfield.twoz #inputEmail {
    margin-left: 0;
    margin-top: 5px;
  }
  #estBox form .ex-inputfield#threeCheck {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 15px;
  }
  #estBox form .ex-inputfield#threeCheck .ex-checkbox {
    margin-top: 0px;
    margin-bottom: 10px;
  }
  #estBox form .ex-inputfield#threeRadio {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 15px;
  }
  #estBox form .ex-inputfield#threeRadio .ex-radio {
    margin-top: 0px;
    margin-bottom: 10px;
  }
  #estBox form .ex-inputfield#twoCaptcha {
    width: 100%;
    margin-top: 5px;
  }
  #estBox form .ex-inputfield#twoCaptcha .captcha-w {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #estBox form .ex-inputfield#twoCaptcha .captcha-w label {
    width: 100%;
    margin-right: 0;
  }
  #estBox form .ex-inputfield#twoCaptcha .captcha-w input {
    margin-top: 5px;
    width: 100%;
  }
  #estBox form .submitBox {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #estBox form .submitBox input[type="button"] {
    outline: none;
    border: none;
    padding: 10px 20px;
    margin: 0 2px;
    width: 50%;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    cursor: pointer;
  }
  #estBox form .submitBox input[type="button"]:nth-of-type(1) {
    background-color: #72b3da;
    color: #ffffff;
  }
  #estBox form .submitBox input[type="button"]:nth-of-type(2) {
    background-color: #bfc6ca;
    color: #ffffff;
  }
}

.ntop {
  width: 100%;
  height: 180px;
  background-color: #1599b5;
}

.ntop ._con {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ntop ._con span {
  position: absolute;
  top: 0;
  width: 2px;
  height: 40px;
  background-color: white;
  left: 50%;
}

.ntop ._con .tex-h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
}

.conts-box {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 70px 0 100px;
}

.conts-box ._con .scont-bx {
  width: 640px;
  margin: 0 auto;
}

.conts-box ._con .scont-bx > form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.conts-box ._con .scont-bx > form .inputs {
  width: calc(50% - 16px);
  margin: 8px;
}

.conts-box ._con .scont-bx > form .inputs > input {
  width: 100%;
  height: 50px;
  border: 2px solid #e6e8e8;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #414141;
  padding: 5px 10px;
}

.conts-box ._con .scont-bx > form .inputs > textarea {
  width: 100%;
  height: 210px;
  border: 2px solid #e6e8e8;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #414141;
  padding: 5px 10px;
  resize: none;
}

.conts-box ._con .scont-bx > form .w-100 {
  width: 100% !important;
}

.conts-box ._con .scont-bx > form .btn {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.conts-box ._con .scont-bx > form .btn a {
  width: 220px;
  height: 50px;
  text-align: center;
  background-color: #1f798d;
  font-size: 16px;
  font-weight: 400;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .ntop {
    height: 180px;
  }
  .ntop ._con span {
    width: 2px;
    height: 40px;
  }
  .ntop ._con .tex-h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .conts-box {
    margin: 70px 0 100px;
  }
}

@media screen and (max-width: 992px) {
  .ntop {
    height: 140px;
  }
  .ntop ._con span {
    width: 2px;
    height: 36px;
  }
  .ntop ._con .tex-h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .conts-box {
    margin: 50px 0 80px;
  }
  .conts-box ._con {
    padding: 0 10px;
  }
}

@media screen and (max-width: 768px) {
  .ntop {
    height: 100px;
  }
  .ntop ._con span {
    width: 2px;
    height: 30px;
  }
  .ntop ._con .tex-h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .conts-box {
    margin: 40px 0 70px;
  }
  .conts-box ._con {
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .ntop {
    height: 70px;
  }
  .ntop ._con span {
    width: 2px;
    height: 20px;
  }
  .ntop ._con .tex-h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .conts-box {
    margin: 30px 0 50px;
  }
  .conts-box ._con {
    padding: 0 10px;
  }
  .conts-box ._con .scont-bx {
    width: 100%;
  }
  .conts-box ._con .scont-bx > form .inputs {
    width: calc(50% - 8px);
    margin: 4px;
  }
  .conts-box ._con .scont-bx > form .inputs > input {
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding: 5px 10px;
  }
  .conts-box ._con .scont-bx > form .inputs > textarea {
    height: 210px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding: 5px 10px;
  }
  .conts-box ._con .scont-bx > form .btn {
    margin-top: 20px;
  }
  .conts-box ._con .scont-bx > form .btn a {
    width: 180px;
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
}
/*# sourceMappingURL=esti.css.map */