@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-family: 'Pretendard Variable';
  font-weight: 400;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-text-size-adjust: none;
  /* 크롬, 사파리, 오페라 신버전 */
  -ms-text-size-adjust: none;
  /* IE */
  -moz-text-size-adjust: none;
  /* 파이어폭스 */
  -o-text-size-adjust: none;
  /* 오페라 구버전 */
}

h1,
h2,
h3,
strong {
  font-weight: 700;
}

.w1440 {
  width: 1440px;
  margin: 0 auto;
}

.w1280 {
  width: 1280px;
  margin: 0 auto;
}

header {
  width: 100%;
  position: fixed;
  z-index: 12;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-transition: .5s;
  transition: .5s;
}

header.active {
  background: rgba(0, 0, 0, 0.5);
}

.header__box {
  width: 100%;
  padding: 16px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  font-size: 20px;
  font-family: 'Noto Sans KR', sans-serif;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo img {
  display: inline-block;
  height: 20px;
  width: auto;
  margin-right: 10px;
}

.header__logo span {
  font-weight: 700;
}

.header__nav-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__nav-box a {
  font-size: 1.6rem;
  color: #fff;
}

.header__nav-box > span {
  font-size: 1.6rem;
  margin-left: 5rem;
  color: #fff;
  cursor: pointer;
}

.header__nav-box__company,
.header__nav-box__contact {
  margin-left: 5rem;
}

.header__nav-box__service {
  display: inline-block;
  position: relative;
}

.header__nav-box__service:hover .service__list {
  visibility: visible;
  opacity: 1;
}

.service__list {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 120%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.service__list a {
  display: block;
  white-space: nowrap;
  padding: 20px 30px;
  color: #aaa;
  -webkit-transition: .5s;
  transition: .5s;
}

.service__list a:hover {
  color: #fff;
}

.service__list a:hover span:after {
  width: 100%;
}

.service__list a span {
  display: inline-block;
  position: relative;
}

.service__list a span:after {
  display: inline-block;
  content: '';
  position: absolute;
  top: 110%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #aaa;
  -webkit-transition: .5s;
  transition: .5s;
}

.burger-menu-btn {
  width: 20px;
  height: 16px;
  display: none;
  position: relative;
  cursor: pointer;
}

.burger-menu-btn span {
  width: 100%;
  height: 2px;
  display: inline-block;
  position: absolute;
  background: #fff;
  border-radius: 2px;
  -webkit-transition: all cubic-bezier(0.76, 0, 0.24, 1) 0.3s;
  transition: all cubic-bezier(0.76, 0, 0.24, 1) 0.3s;
}

.burger-menu-btn span:nth-of-type(1) {
  top: 0;
}

.burger-menu-btn span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.burger-menu-btn span:nth-of-type(3) {
  top: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.burger-menu-btn.active span {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.burger-menu-btn.active.close span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.burger-menu-btn.active.close span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.burger-menu-btn.active.close span:nth-of-type(3) {
  opacity: 0;
}

.burger-menu {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  bottom: 0;
  z-index: 14;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
}

.burger-menu.visible {
  visibility: visible;
  opacity: 1;
}

.burger-menu__hidden-cont {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hidden-cont__list {
  width: 100%;
  padding: 20px 0;
  display: block;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: solid 1px #666;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 1s, background 0.5s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 1s, background 0.5s;
  cursor: pointer;
}

.hidden-cont__list:hover {
  background: rgba(0, 0, 0, 0.8);
}

.hidden-cont__list span {
  color: #fff;
  font-size: 1.8rem;
}

.service__sub-menu {
  width: 100%;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
}

.service__sub-menu.unfold {
  height: 120px;
}

.sub-menu {
  font-size: 1.6rem;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33%;
          flex: 1 0 33%;
  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;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.sub-menu a {
  color: #fff;
}

.dividing-line {
  position: relative;
  height: 7px;
}

.dividing-line span {
  display: inline-block;
  position: absolute;
  top: 50%;
}

.dividing-line__left-line {
  width: 49%;
  height: 1px;
  background: #000;
  left: 0;
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}

.line-default {
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 0.8s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 0.8s;
}

.line-default.active {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.dividing-line__center-point {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
          transform: translate(-50%, -50%) rotate(45deg) scale(0);
  width: 7px;
  height: 7px;
  background: #000;
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
  -webkit-animation: rotateInfinite 2s cubic-bezier(0.76, 0, 0.24, 1) 1s infinite alternate paused;
          animation: rotateInfinite 2s cubic-bezier(0.76, 0, 0.24, 1) 1s infinite alternate paused;
}

.dividing-line__center-point.active {
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1);
          transform: translate(-50%, -50%) rotate(45deg) scale(1);
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@-webkit-keyframes rotateInfinite {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
            transform: translate(-50%, -50%) rotate(405deg);
  }
}

@keyframes rotateInfinite {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
            transform: translate(-50%, -50%) rotate(405deg);
  }
}

.dividing-line__right-line {
  width: 49%;
  height: 1px;
  background: #000;
  right: 0;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.contact-us {
  margin: 150px auto;
  text-align: center;
}

.contact-us__title {
  margin-bottom: 5rem;
}

.contact-us__title span {
  font-size: 3.6rem;
  font-weight: 700;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
}

.contact-us__title.active span {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.contact-us__btn {
  font-size: 2.4rem;
  color: #000;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.contact-us__btn span {
  display: inline-block;
}

.contact-us__btn.active .contact-us__btn__line-top,
.contact-us__btn.active .contact-us__btn__line-bottom {
  width: 100%;
  height: 1px;
}

.contact-us__btn.active .contact-us__btn__line-left,
.contact-us__btn.active .contact-us__btn__line-right {
  width: 1px;
  height: 100%;
}

.contact-us__btn.active .contact-us__btn__text-area span:first-child {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.contact-us__btn:hover .contact-us__btn__line-top {
  left: -100%;
}

.contact-us__btn:hover .contact-us__btn__line-left {
  top: -100%;
}

.contact-us__btn:hover .contact-us__btn__line-bottom {
  right: -100%;
}

.contact-us__btn:hover .contact-us__btn__line-right {
  bottom: -100%;
}

.contact-us__btn:hover .contact-us__btn__text-area span:first-child {
  -webkit-transform: translateY(-100%) rotateX(90deg);
          transform: translateY(-100%) rotateX(90deg);
  opacity: 0;
}

.contact-us__btn:hover .contact-us__btn__text-area span:last-child {
  -webkit-transform: translate(-50%, 0) rotateX(0);
          transform: translate(-50%, 0) rotateX(0);
  opacity: 1;
}

.contact-us__btn__line-top,
.contact-us__btn__line-bottom,
.contact-us__btn__line-left,
.contact-us__btn__line-right {
  -webkit-transition: all cubic-bezier(0.76, 0, 0.24, 1) 0.5s, width cubic-bezier(0.76, 0, 0.24, 1) 1s, height cubic-bezier(0.76, 0, 0.24, 1) 1s;
  transition: all cubic-bezier(0.76, 0, 0.24, 1) 0.5s, width cubic-bezier(0.76, 0, 0.24, 1) 1s, height cubic-bezier(0.76, 0, 0.24, 1) 1s;
  position: absolute;
  background: #000;
  width: 0;
  height: 0;
}

.contact-us__btn__line-top,
.contact-us__btn__line-left {
  top: 0;
  left: 0;
}

.contact-us__btn__line-bottom,
.contact-us__btn__line-right {
  bottom: 0;
  right: 0;
}

.contact-us__btn__text-area {
  padding: 1rem 3rem;
}

.contact-us__btn__text-area span:first-child {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
  -webkit-animation: contactBtnTxt 1s cubic-bezier(0.76, 0, 0.24, 1) 0.5s forwards paused;
          animation: contactBtnTxt 1s cubic-bezier(0.76, 0, 0.24, 1) 0.5s forwards paused;
}

@-webkit-keyframes contactBtnTxt {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

@keyframes contactBtnTxt {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

.contact-us__btn__text-area span:last-child {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 100%) rotateX(-90deg);
          transform: translate(-50%, 100%) rotateX(-90deg);
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
}

.contact-us__text-area {
  margin-bottom: 5rem;
  font-size: 2.4rem;
  line-height: 1.5;
}

.contact-us__text-area span:first-child {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-animation: contactTxt1 1s cubic-bezier(0.76, 0, 0.24, 1) 0s forwards paused;
          animation: contactTxt1 1s cubic-bezier(0.76, 0, 0.24, 1) 0s forwards paused;
}

.contact-us__text-area span:last-child {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-animation: contactTxt1 1s cubic-bezier(0.76, 0, 0.24, 1) 0.15s forwards paused;
          animation: contactTxt1 1s cubic-bezier(0.76, 0, 0.24, 1) 0.15s forwards paused;
}

@-webkit-keyframes contactTxt1 {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

@keyframes contactTxt1 {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

.contact-us__text-area.active span {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

footer {
  width: 100%;
  background: #3f3f3f;
  color: #fff;
  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;
  padding: 50px 0;
}

.footer__logo {
  display: inline-block;
  padding: 30px 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Noto Sans KR';
}

.footer__company-information {
  font-size: 1.4rem;
  color: #767676;
  margin-bottom: 10px;
}

.footer__company-information span {
  color: #aaa;
}

.footer__warning-link {
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.footer__email {
  color: #767676;
}

.footer__privacy-policy {
  color: #ccc;
  -webkit-transition: .5s;
  transition: .5s;
}

.footer__privacy-policy:hover {
  color: #fff;
}

.footer__copyright {
  font-size: 1.2rem;
  color: #767676;
  margin-bottom: 30px;
}

input,
textarea {
  outline: none;
}

.contact__banner {
  width: 100%;
  height: 50vh;
  overflow: hidden;
  position: relative;
}

.contact__banner video, .contact__banner img {
  position: absolute;
  left: 50%;
  bottom: -20%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.banner__filter {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
}

.banner__text-area {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.banner__text-area__title {
  font-size: 3.6rem;
  margin-bottom: 20px;
}

.banner__text-area__text span {
  font-size: 1.6rem;
}

.banner__text-area__text:nth-of-type(2) {
  margin: 5px 0 20px 0;
}

.scroll-down {
  margin: 20px 0;
  text-align: center;
}

.scroll-down div {
  display: inline-block;
}

.scroll-down p {
  margin-top: 5px;
  font-size: 1rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #666;
  -webkit-animation: flashTxt 2s cubic-bezier(0.76, 0, 0.24, 1) 0s infinite forwards;
          animation: flashTxt 2s cubic-bezier(0.76, 0, 0.24, 1) 0s infinite forwards;
}

@-webkit-keyframes flashTxt {
  0% {
    color: #666;
  }
  10% {
    color: #ccc;
  }
  10% {
    color: #666;
  }
  40% {
    color: #ccc;
  }
  60% {
    color: #666;
  }
  80% {
    color: #ccc;
  }
  100% {
    color: #666;
  }
}

@keyframes flashTxt {
  0% {
    color: #666;
  }
  10% {
    color: #ccc;
  }
  10% {
    color: #666;
  }
  40% {
    color: #ccc;
  }
  60% {
    color: #666;
  }
  80% {
    color: #ccc;
  }
  100% {
    color: #666;
  }
}

.scroll-down__outline {
  width: 24px;
  height: 44px;
  background: #ccc;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.scroll-down__outline::after {
  display: inline-block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: #666;
  left: 0;
  top: 100%;
  -webkit-animation: scrollFill 2s cubic-bezier(0.76, 0, 0.24, 1) 0.5s infinite;
          animation: scrollFill 2s cubic-bezier(0.76, 0, 0.24, 1) 0.5s infinite;
}

@-webkit-keyframes scrollFill {
  0% {
    top: 100%;
  }
  25% {
    top: 0;
  }
  50% {
    top: 0;
  }
  75% {
    top: -100;
  }
  100% {
    top: -100%;
  }
}

@keyframes scrollFill {
  0% {
    top: 100%;
  }
  25% {
    top: 0;
  }
  50% {
    top: 0;
  }
  75% {
    top: -100;
  }
  100% {
    top: -100%;
  }
}

.scroll-down__dot {
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #666;
  position: absolute;
  left: 50%;
  top: 15%;
  opacity: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
  -webkit-animation: scrollDot 2s cubic-bezier(0.95, 0.01, 0.27, 0.99) 0s infinite;
          animation: scrollDot 2s cubic-bezier(0.95, 0.01, 0.27, 0.99) 0s infinite;
}

@-webkit-keyframes scrollDot {
  0% {
    top: 15%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 80%;
    opacity: 0;
  }
}

@keyframes scrollDot {
  0% {
    top: 15%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 80%;
    opacity: 0;
  }
}

.scroll-down__fill {
  width: 88%;
  height: 92%;
  background: #fff;
  border-radius: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
  overflow: hidden;
}

.form-cont {
  width: 90%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding-bottom: 50px;
  border-radius: 10px;
}

.form-cont h2 {
  margin-bottom: 20px;
}

.form-cont h2 span {
  font-size: 3.6rem;
  font-weight: 700;
  font-family: 'Noto Sans KR';
}

.form-cont h3 {
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

.form-cont h3 span {
  font-size: 2rem;
  font-weight: 700;
}

.form-cont__area {
  width: 95%;
  margin: 0 auto;
}

.contact-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.form__default {
  -webkit-box-flex: 1 48%;
      -ms-flex-positive: 1 48%;
          flex-grow: 1 48%;
  width: 48%;
  margin-bottom: 30px;
}

.company-info__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.company-info__area label {
  font-size: 1.8rem;
}

.company-info__area input {
  width: 95%;
  font-size: 1.4rem;
  padding: 20px 0 10px 0;
  background: none;
  border: none;
  border-bottom: solid 1px #aaa;
  margin-bottom: 20px;
}

.checkbox-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.checkbox-area div {
  width: 30%;
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  border-radius: 50px;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

.checkbox-area div::after {
  display: inline-block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50px;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.5);
}

.checkbox-area div:hover label {
  color: #333;
}

.checkbox-area div.active {
  -webkit-box-shadow: inset 2px 2px 5px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 2px 2px 5px 0 rgba(0, 0, 0, 0.5);
}

.checkbox-area div.active::after {
  opacity: 0;
}

.checkbox-area div.active label {
  color: #333;
}

.checkbox-area div label {
  position: relative;
  z-index: 5;
  display: inline-block;
  font-weight: 700;
  color: #777;
  -webkit-transition: .2s;
  transition: .2s;
  cursor: pointer;
  padding: 20px 0;
}

.checkbox-area div input {
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
  width: 100%;
  height: 100%;
  display: none;
}

.marketing-before {
  margin-top: 30px;
}

.marketing-before textarea {
  width: 100%;
  resize: none;
  padding: 20px;
  background: none;
  border-radius: 10px;
  border: solid 1px #aaa;
  font-weight: 700;
  font-size: 1.6rem;
}

.budget__area, .onload__area {
  width: 80%;
  margin: 0 auto;
}

.budget__list-area, .onload__list-area {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.budget__list-area li, .onload__list-area li {
  width: 100%;
  font-size: 1.6rem;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-bottom: solid 1px #999;
  cursor: pointer;
  -webkit-transition: background 0.3s, opacity cubic-bezier(0.76, 0, 0.24, 1) 1s, -webkit-transform cubic-bezier(0.76, 0, 0.24, 1) 1s;
  transition: background 0.3s, opacity cubic-bezier(0.76, 0, 0.24, 1) 1s, -webkit-transform cubic-bezier(0.76, 0, 0.24, 1) 1s;
  transition: background 0.3s, transform cubic-bezier(0.76, 0, 0.24, 1) 1s, opacity cubic-bezier(0.76, 0, 0.24, 1) 1s;
  transition: background 0.3s, transform cubic-bezier(0.76, 0, 0.24, 1) 1s, opacity cubic-bezier(0.76, 0, 0.24, 1) 1s, -webkit-transform cubic-bezier(0.76, 0, 0.24, 1) 1s;
}

.budget__list-area li:hover, .onload__list-area li:hover {
  background: rgba(0, 0, 0, 0.6);
}

#budget, #onload {
  width: 100%;
  background: none;
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 20px 0;
  font-size: 1.6rem;
  position: relative;
  outline: none;
  cursor: pointer;
  text-align: center;
}

.input-area, .onload__input__area {
  position: relative;
}

.input-area.active .arrow, .input-area.active .onload__arrow, .onload__input__area.active .arrow, .onload__input__area.active .onload__arrow {
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}

.arrow, .onload__arrow {
  display: inline-block;
  position: absolute;
  font-size: 1.6rem;
  font-weight: 700;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 10px;
  cursor: pointer;
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
}

.arrow img, .onload__arrow img {
  width: 10px;
  height: auto;
}

.submit-btn {
  text-align: center;
  margin: 50px 0;
}

.submit-btn button {
  background: none;
  border: none;
  padding: 20px 50px;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
  border-radius: 50px;
  -webkit-transition: .2s;
  transition: .2s;
  cursor: pointer;
}

.submit-btn button::after {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.5);
  -webkit-transition: .2s;
  transition: .2s;
}

.submit-btn button:hover {
  -webkit-box-shadow: inset 2px 2px 5px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 2px 2px 5px 0 rgba(0, 0, 0, 0.5);
}

.submit-btn button:hover::after {
  opacity: 0;
}

.message__popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.message__popup.active {
  visibility: visible;
  opacity: 1;
}

.message__text-cont {
  width: 500px;
  height: 200px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 20px 40px;
  left: 50%;
  top: 50%;
  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;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.message__text h2 {
  text-align: center;
  padding-bottom: 20px;
  font-size: 2.4rem;
  font-family: 'Noto Sans KR';
}

.message__text span {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}

.message__close-btn {
  cursor: pointer;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  background: #666;
  border-radius: 100%;
}

.message__close-btn span {
  width: 50%;
  height: 2px;
  display: inline-block;
  position: absolute;
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.message__close-btn span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.message__close-btn span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
/*# sourceMappingURL=contact.css.map */