@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;
}

.mb {
  margin-bottom: 100px;
}

.about-us {
  padding-top: 160px;
}

.about-us span {
  display: inline-block;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
}

.about-us__title span {
  font: 700 3.6rem 'Noto Sans KR';
}

.about-us__text-area1 {
  margin-top: 50px;
}

.about-us__text-area1 p {
  margin-bottom: 10px;
}

.about-us__text-area1 p:last-child {
  margin: 0;
}

.about-us__text-area1 p span {
  font-size: 1.8rem;
}

.why {
  margin-top: 50px;
}

.why span {
  font-size: 2rem;
  font-weight: 700;
}

.about-us__text-area2 {
  margin-top: 50px;
}

.about-us__text-area2 p {
  margin-bottom: 10px;
}

.about-us__text-area2 p:first-child span {
  font-weight: 700;
}

.about-us__text-area2 p:last-child {
  margin: 0;
}

.about-us__text-area2 p span {
  font-size: 1.8rem;
}

.about-us__text-area3 {
  margin-top: 50px;
}

.about-us__text-area3 p {
  margin-bottom: 10px;
}

.about-us__text-area3 p:last-child {
  margin: 0;
}

.about-us__text-area3 p span {
  font-size: 1.8rem;
  font-weight: 700;
}

.about-us__video {
  margin-top: 20px;
  width: 50%;
}

.video-ratio {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
}

.video-ratio iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.column__img {
  margin-top: 20px;
  width: 50%;
  cursor: pointer;
  border: 1px solid #eee;
}

.column__img .img-cont {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.column__img .img-cont img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.about-us__img {
  display: inline-block;
  width: 540px;
  margin-top: 50px;
}

.img-ratio {
  width: 100%;
}

.img-ratio img {
  width: 100%;
  height: auto;
}

.column-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
}

.column-link img {
  display: inline-block;
  width: auto;
  height: 15px;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
}

.column-link a {
  display: inline-block;
  margin-left: 10px;
}

.column-link a span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
}

.about-us__text-area4 {
  margin-top: 50px;
}

.about-us__text-area4 p {
  margin-bottom: 10px;
}

.about-us__text-area4 p:last-child {
  margin: 0;
}

.about-us__text-area4 p span {
  font-size: 1.8rem;
}

.about-us__text-area5 {
  margin-bottom: 100px;
}

.about-us__text-area5 p {
  margin-top: 50px;
}

.about-us__text-area5 p span {
  font-size: 1.8rem;
  font-weight: 700;
}
/*# sourceMappingURL=company.css.map */