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

.main {
  -webkit-transition: .5s;
  transition: .5s;
  width: 100%;
}

#main__section1 {
  width: 100%;
  height: 100vh;
  color: #fff;
}

.section1__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 9;
}

.section1__bg-shadow {
  width: 100%;
  height: 100%;
  z-index: 10;
  background: #000;
  opacity: .3;
  position: absolute;
}

.section1__bg__bg-cont {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  will-change: transform;
}

.section1__bg__bg-cont img,
.section1__bg__bg-cont video {
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.section1__guide-box {
  position: relative;
  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;
  z-index: 11;
  height: 100%;
}

.section1__title {
  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;
  padding-bottom: 20px;
}

.section1__title__text1 {
  font-size: 15rem;
  font-weight: 700;
  padding-right: 10px;
}

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

.section1__title__text2 span {
  font-size: 5.2rem;
}

.section1__title__text2 span:first-child {
  font-weight: 700;
}

.section1__subtitle {
  text-align: center;
}

.subtitle__text-change-box {
  display: inline-block;
  position: relative;
  padding: 1.5rem 0;
}

.subtitle__text-change-box .top-line,
.subtitle__text-change-box .bottom-line {
  height: 1px;
  display: inline-block;
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
}

.subtitle__text-change-box .top-line {
  top: 0;
}

.subtitle__text-change-box .bottom-line {
  bottom: 0;
}

.subtitle__text-change-box .subtitle__text-change-box__text-area {
  display: inline-block;
  overflow: hidden;
}

.subtitle__text-change-box .text-change1 {
  display: inline-block;
  font-size: 3.6em;
  font-weight: 700;
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
}

.section1__intro-btn {
  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-top: 50px;
}

.intro-btn__intro-text {
  font-size: 2rem;
  padding-bottom: 20px;
}

.intro-btn__button {
  display: inline-block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.intro-btn__button:hover .button__line-top {
  top: 0;
  left: -100%;
}

.intro-btn__button:hover .button__line-bottom {
  bottom: 0;
  right: -100%;
}

.intro-btn__button:hover .button__line-left {
  top: -100%;
  left: 0;
}

.intro-btn__button:hover .button__line-right {
  bottom: -100%;
  right: 0;
}

.intro-btn__button:hover .button__text__view-text {
  opacity: 0;
  -webkit-transform: rotateX(-90deg) translateY(-100%);
          transform: rotateX(-90deg) translateY(-100%);
}

.intro-btn__button:hover .button__text__hover-text {
  -webkit-transform: translate(-50%, 0) rotateX(0);
          transform: translate(-50%, 0) rotateX(0);
  opacity: 1;
}

.button__text {
  display: inline-block;
  font-size: 1.6rem;
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
}

.button__line-top,
.button__line-bottom,
.button__line-left,
.button__line-right {
  display: inline-block;
  position: absolute;
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
  background: #fff;
}

.button__line-top,
.button__line-bottom {
  width: 100%;
  height: 1px;
}

.button__line-top {
  top: 0;
  left: 0;
}

.button__line-bottom {
  bottom: 0;
  right: 0;
}

.button__line-left,
.button__line-right {
  width: 1px;
  height: 100%;
}

.button__line-left {
  top: 0;
  left: 0;
}

.button__line-right {
  bottom: 0;
  right: 0;
}

.button__text__hover-text,
.button__text__view-text {
  display: inline-block;
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
}

.button__text__hover-text {
  position: absolute;
  white-space: nowrap;
  left: 50%;
  -webkit-transform: translate(-50%, 100%) rotateX(90deg);
          transform: translate(-50%, 100%) rotateX(90deg);
  opacity: 0;
}

.hooking-content {
  width: 100%;
}

.hooking-content__sticky {
  width: 100%;
}

.hooking-content__sticky__slide-container {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slide-default {
  text-align: center;
  font-size: 4.8rem;
  padding-top: 400px;
}

.hc-slide2 {
  padding-bottom: 400px;
}

.slide-default.enabled {
  display: block;
}

.cp-text span {
  -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) 1.2s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 1.2s;
}

.cp-text.cp-off span {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.cp-img img {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 1.2s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 1.2s;
}

.cp-img.cp-off img {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.pinset-career__title {
  text-align: center;
  font-size: 3.6rem;
  padding-bottom: 50px;
}

.pinset-career__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.pinset-career__content__pinset-academy,
.pinset-career__content__maketer-education {
  display: inline-block;
  text-align: center;
  width: 45%;
}

.pinset-career__content__pinset-academy img,
.pinset-career__content__maketer-education img {
  width: 100%;
}

.pinset-career__content__pinset-academy {
  margin-top: 100px;
}

.pinset-academy__img,
.marketer-education__img {
  line-height: 0;
}

.pinset-career__text-default h2 {
  padding-bottom: 10px;
}

.pinset-career__text-default h2 span {
  font: 700 3.6rem 'Noto Sans KR';
}

.pinset-career__text-default p span {
  display: block;
  font-size: 1.8rem;
  padding-bottom: 10px;
}

.busy-reason {
  width: 100%;
  height: 150vh;
  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;
}

.busy-reason__sticky {
  width: 100%;
  height: 100%;
}

.busy-reason__sticky__slide-container {
  height: 100%;
  position: relative;
}

.br-slide1 {
  height: 100%;
  position: relative;
  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;
}

.br-slide1__text-area {
  position: relative;
  text-align: center;
  display: inline-block;
  height: 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.br-slide1__text-area2 {
  height: 40%;
}

.br-slide1__text-area2 span {
  display: inline-block;
  font-weight: 700;
}

.br-slide1__text-area__text2 {
  position: relative;
}

.br-slide1__text-area__text2 span {
  font-weight: 700;
  font-size: 4.8rem;
  position: absolute;
}

.br-slide1__text-area__text2 span::after {
  display: inline-block;
  position: absolute;
  right: -1%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  content: '';
  height: 90%;
  width: 2px;
  background: #000;
  -webkit-animation: blink 0.3s infinite 0s alternate forwards;
          animation: blink 0.3s infinite 0s alternate forwards;
}

@-webkit-keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.br-slide1__text-area__text2::after {
  display: inline-block;
  content: '결국 제대로 하는 곳만 남기 때문입니다.';
  opacity: 0;
  font-size: 4.8rem;
}

.br-slide1__text-area__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.br-slide1__text-area__text:first-child {
  font-size: 4.8rem;
  margin-bottom: 10px;
}

.br-slide1__text-area__text:nth-of-type(2) span {
  font-size: 3.6rem;
}

.br-slide1__text-area__text strong {
  font-weight: 500;
  margin-right: 1rem;
}

.effect-text__cont {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.effect-text__cont:after {
  display: inline-block;
  content: '오는 문의를 소화하기도 바쁩니다.';
  opacity: 0;
  white-space: nowrap;
}

.effect-text__cont__text-area {
  display: inline-block;
  left: 0;
  white-space: nowrap;
  position: absolute;
  text-align: left;
}

.effect-text__cont__text-area span {
  position: relative;
  font-weight: 700;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(70%, #d3e2f8), color-stop(70%, transparent));
  background: linear-gradient(to top, #d3e2f8 70%, transparent 70%);
}

.stack-text {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-filter .5s;
  transition: opacity 0.5s, -webkit-filter .5s;
  transition: opacity 0.5s, filter .5s;
  transition: opacity 0.5s, filter .5s, -webkit-filter .5s;
}

.stack-text.active {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}

.marketing-case {
  margin-bottom: 500px;
}

.marketing-case__title {
  text-align: center;
  padding-bottom: 50px;
}

.marketing-case__title__main-title {
  font-size: 3.6rem;
  padding-bottom: 5px;
}

.marketing-case__title__sub-title {
  font-size: 2rem;
}

.marketing-case__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.marketing-case__content__opening-marketing,
.marketing-case__content__blog-marketing {
  width: 45%;
}

.marketing-case__content__opening-marketing img,
.marketing-case__content__blog-marketing img {
  width: 100%;
}

.marketing-case__text-default h3 {
  padding: 10px 0;
}

.marketing-case__text-default h3 span {
  font-size: 1.8rem;
  font-weight: 700;
}

.marketing-case__text-default p span {
  font-size: 1.6rem;
  vertical-align: middle;
}

.marketing-case__text-default img {
  width: 14px;
  height: auto;
}

.opening-marketing__img,
.blog-marketing__img {
  line-height: 0;
  position: relative;
  cursor: pointer;
}

.opening-marketing__img:hover .marketing-case__img-shadow,
.blog-marketing__img:hover .marketing-case__img-shadow {
  opacity: 0.5;
}

.marketing-case__img-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.marketing-case__content__blog-marketing {
  margin-top: 100px;
}

.education-review {
  margin-bottom: 500px;
}

.education-review__title {
  font-size: 3.6rem;
  text-align: center;
  padding-bottom: 10px;
}

.education-review__subtitle {
  font-size: 2rem;
  text-align: center;
  padding-bottom: 5px;
}

.education-review__review--container, .education-review__review--container--mobile {
  width: 75%;
  padding-top: 50px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.review__area, .review__area2, .review__area3 {
  width: 400px;
  height: 650px;
  position: relative;
}

.review__area2 {
  margin-left: 80px;
}

.review__default {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.3);
  background: #fff;
  padding: 20px;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.review__default .review__title {
  font-size: 2rem;
  line-height: 100%;
  margin-bottom: 10px;
}

.review__default .review__content {
  font-size: 1.8rem;
  line-height: 1.5;
}

.review__default .review__writer {
  position: absolute;
  font-size: 1.6rem;
  line-height: 1.5;
  bottom: 20px;
}

.review__default .review__writer span {
  font-weight: 700;
}

.review__default:nth-of-type(1) {
  -webkit-transform: translate(-3%, 5%);
          transform: translate(-3%, 5%);
  z-index: 3;
  -webkit-filter: blur(0);
          filter: blur(0);
}

.review__default:nth-of-type(2) {
  z-index: 2;
}

.review__default:nth-of-type(3) {
  -webkit-transform: translate(3%, -5%);
          transform: translate(3%, -5%);
  z-index: 1;
}

.review__button__area {
  position: absolute;
  right: -5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8rem;
}

.review__index {
  letter-spacing: 0.1em;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 2.4rem;
}

.review__index span:first-child {
  font-size: 4rem;
  font-weight: 700;
}

.review__button {
  margin-top: 10px;
  text-align: center;
  cursor: pointer;
}

.review__button span {
  display: inline-block;
  line-height: 0;
}

.review__button img {
  width: 4.8rem;
  height: auto;
}

.different-portfolio {
  margin-bottom: 500px;
}

.different-portfolio__title {
  text-align: center;
  font-size: 3.6rem;
  padding-bottom: 10px;
}

.different-portfolio__subtitle {
  text-align: center;
  font-size: 2rem;
}

.different-portfolio__subtitle:nth-of-type(3) {
  padding-bottom: 30px;
}

.subtitle__text1 {
  display: inline-block;
}

.different-portfolio__content__title,
.different-portfolio__content__text {
  text-align: center;
  font-size: 1.8rem;
}

.different-portfolio__content__text span {
  display: inline-block;
  padding-bottom: 20px;
}

.different-portfolio__content__charge-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 30px 0;
}

.charge-company_content1,
.charge-company_content2,
.charge-company_content3 {
  position: relative;
}

.charge-company_content1::after,
.charge-company_content2::after,
.charge-company_content3::after {
  position: absolute;
  display: inline-block;
  content: '';
  width: 1px;
  height: 0;
  background: #000;
  right: 0;
  top: 0;
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
}

.charge-company_content1.animation::after,
.charge-company_content2.animation::after,
.charge-company_content3.animation::after {
  height: 100%;
}

.charge-company_content4 {
  position: relative;
}

.charge-company_content4::after {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
}

.charge-company__default {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  padding: 30px 0;
}

.charge-company__default img {
  width: 70px;
  height: auto;
}

.charge-company__default p {
  font-size: 1.6rem;
  text-align: center;
  padding-top: 10px;
}

.cp-div .cp-active {
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}

.cp-div .cp-active .cp-active__text span,
.cp-div .cp-active .cp-active__text a {
  -webkit-transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
  transition: cubic-bezier(0.76, 0, 0.24, 1) 1s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.cp-div.cp-off .cp-active {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.cp-div.cp-off .cp-active .cp-active__text.cp-off-text span,
.cp-div.cp-off .cp-active .cp-active__text.cp-off-text a {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.sales-up {
  margin-bottom: 300px;
}

.sales-up__title {
  text-align: center;
  font-size: 3.6rem;
  margin-bottom: 50px;
}

.sales-up__promotion-package {
  width: 960px;
  margin: 0 auto;
  color: #fff;
  display: table;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.sales-up__promotion-package:hover .promotion-package__background {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.sales-up__promotion-package__cont {
  background: url("../img/package-bg1.jpg") no-repeat center;
  border-radius: 10px;
  padding: 30px 0;
}

.promotion-package__text-container {
  position: relative;
  z-index: 2;
}

.promotion-package__title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

.promotion-package__title span {
  font-weight: 700;
}

.promotion-package__text,
.marketing-package__viewmore-btn {
  text-align: center;
  font-size: 1.6rem;
}

.promotion-package__text:last-child {
  margin-top: 20px;
}

.marketing-package__viewmore-btn {
  display: inline-block;
  color: #fff;
  font-weight: 700;
}

.promotion-package__background {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  display: table-cell;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: .5s;
  transition: .5s;
}

.single-promotion {
  text-align: center;
  width: 960px;
  margin: 0 auto;
}

.single-promotion__title {
  font-size: 2.4rem;
  padding: 30px 0 20px 0;
}

.single-promotion__title span {
  font-weight: 700;
}

.single-promotion__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.single-promotion__menu li {
  font-size: 1.4rem;
  text-align: center;
  width: 16%;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

.single-promotion__menu li span {
  border-radius: 10px;
  position: relative;
  display: block;
  padding: 20px 0;
  -webkit-transition: all cubic-bezier(0.76, 0, 0.24, 1) 1.5s, color 0.5s;
  transition: all cubic-bezier(0.76, 0, 0.24, 1) 1.5s, color 0.5s;
  font-weight: 700;
  overflow: hidden;
  color: #767676;
}

.single-promotion__menu li span::after {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset 4px 4px 7px -1px rgba(0, 0, 0, 0.5);
          box-shadow: inset 4px 4px 7px -1px rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.single-promotion__menu li:hover span {
  color: #000;
}

.single-promotion__menu li:hover span::after {
  opacity: 1;
}

.single-promotion__menu li.active span {
  color: #000;
}

.single-promotion__menu li.active span::after {
  opacity: 1;
}

.single-promotion__detail {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.single-promotion__detail:hover .single-promotion__detail__background {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.single-promotion__detail__cont {
  width: 100%;
  height: 100%;
  background: url("../img/package-bg2.jpg") no-repeat center/100% 100%;
}

.single-promotion__detail__background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: .5s;
  transition: .5s;
}

.single-promotion__detail__text-container {
  width: 100%;
  height: 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}

.single-promotion__detail__title,
.single-promotion__detail__text-area,
.single-promotion__detail__viewmore-btn {
  color: #fff;
}

.single-promotion__detail__title {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.single-promotion__detail__text-area span {
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.single-promotion__detail__viewmore-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  font-size: 1.6rem;
}

.question {
  margin-bottom: 200px;
}

.question__title {
  font-size: 3.6rem;
  text-align: center;
  padding-bottom: 50px;
}

.question__history {
  text-align: center;
  margin-bottom: 200px;
}

.question__history__img-cont {
  width: 400px;
  height: 600px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  border: solid 2px rgba(0, 0, 0, 0.3);
}

.question__history__img-cont img {
  width: 300%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: contactList 5s cubic-bezier(0.76, 0, 0.24, 1) 0s infinite alternate forwards;
          animation: contactList 5s cubic-bezier(0.76, 0, 0.24, 1) 0s infinite alternate forwards;
}

@-webkit-keyframes contactList {
  from {
    top: 0;
  }
  to {
    top: -170%;
  }
}

@keyframes contactList {
  from {
    top: 0;
  }
  to {
    top: -170%;
  }
}

.history__text {
  font-size: 1.8rem;
}

.question__moneytaker {
  margin-bottom: 200px;
}

.question__moneytaker img,
.question__proof img {
  width: 150px;
  height: auto;
}

.question__moneytaker__title {
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 50px;
}

.link__default {
  cursor: pointer;
  margin: 0 20px;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 10px;
}

.link__default > div {
  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;
  overflow: hidden;
  border-radius: 10px;
  -webkit-transition: all cubic-bezier(0.76, 0, 0.24, 1) 1.5s, -webkit-box-shadow 0.3s;
  transition: all cubic-bezier(0.76, 0, 0.24, 1) 1.5s, -webkit-box-shadow 0.3s;
  transition: all cubic-bezier(0.76, 0, 0.24, 1) 1.5s, box-shadow 0.3s;
  transition: all cubic-bezier(0.76, 0, 0.24, 1) 1.5s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}

.link__default.cp-off > div {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.link__default.shadow {
  -webkit-box-shadow: 5px 5px 7px -5px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 5px 7px -5px rgba(0, 0, 0, 0.5);
}

.link__default.shadow:hover {
  -webkit-box-shadow: 5px 5px 7px -1px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 5px 7px -1px rgba(0, 0, 0, 0.5);
}

.link__default .link__img-area {
  padding: 50px 50px;
  position: relative;
  line-height: 0;
  letter-spacing: 0;
}

.link__default .link__img-area object {
  width: 20px;
  height: auto;
  position: absolute;
  top: 20px;
  left: 20px;
}

.link__default p {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  padding: 20px 0;
  background: #fff;
}

.question__moneytaker__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.moneytaker__link__youtube {
  background: #cc202d;
}

.moneytaker__link__business {
  background: #fec502;
}

.question__proof__title {
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 50px;
}

.question__proof__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.proof__link__mvip {
  background: #4d56b2;
}

.proof__link__academy {
  background: #e84d2a;
}
/*# sourceMappingURL=index.css.map */