/* Customisable Variables */
:root {
  --lines: 3;
  --duration: 1000ms;
  --delay: 400ms;
  --theme: #7157F9;
  --angle: -45deg;
  --dark: #1C1B21;
  --light: #E8E8E9;
}

/* popup */
.pc {
  display: block;
}

.mobile {
  display: none;
}

.layer-popup {
  /* position: absolute; */
  z-index: 9999;
  background-color: #fff;
  box-shadow: 2px 3px 10px #555;
  border-radius: 10px;
  height: auto !important;
}

.layer-popup:nth-child(1) {
  left: 0;
}

.layer-popup img {
  width: 100%;
  height: auto !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.layer-popup .show-chk-wrap {
  display: flex;
  padding: 6px 10px;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}

.layer-popup .show-chk-wrap a {
  font-size: 16px;
  color: #505050;
  cursor: pointer;
}

.layer-popup .show-chk-wrap a:hover {
  color: #222;
  font-weight: 600;
  transition: 0.3s;
}

.close-popup {
  box-sizing: border-box;
  padding: 4px 12px;
  border: 1px solid #999;
  border-radius: 4px;
}

.close-popup:hover {
  border: 1px solid #505050; 
  background-color:#505050; 
  color: #fff !important;
  transition: 0.3s;
}

.popup-space {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  top: 5%;
  left: 5%;
  gap: 10px;
  /* align-items: center; */
  z-index: 100;
}


/* main */
#main {
  background: url(../img/main-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.Title {
  color: #FFF;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: -0.7px;
  opacity: 0;
  transform: translate(0%, 100%) matrix(1, 0, 0, 1, 0, 0);
  will-change: opacity, transform;
  animation: revealText var(--duration) cubic-bezier(0.7, 0, 0.3, 1) forwards var(--delay);
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.txt {
  color: #FFF;
  font-family: "HSBomBaram 2.0";
  font-size: 80px;
  line-height: 140%;
  letter-spacing: 0.8px;
}

.point-txt {
  color: #B19D60 !important; 
}

.Title-mask {
  display: block;
  position: relative;
  text-align: start;
  overflow: hidden;
}

.Title-line {
  display: inline-block;
  opacity: 0;
  transform: translate(0%, 100%) matrix(1, 0, 0, 1, 0, 0);
  will-change: opacity, transform;
  animation: revealText var(--duration) cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

.second-text {
  display: none;
  color: #FFF;
  font-family: "HSBomBaram 2.0";
  font-size: 80px;
  line-height: 140%;
  letter-spacing: 0.8px;
}

.Title-mask:nth-child(1) .Title-line { animation-delay: calc(var(--delay) * 1); }
.Title-mask:nth-child(2) .Title-line { animation-delay: calc(var(--delay) * 2); }

@keyframes revealText {
  from { opacity: 0; transform: translate(0%, 100%) matrix(1, 0, 0, 1, 0, 0); }
  to { opacity: 1; transform: translate(0%, 0%) matrix(1, 0, 0, 1, 0, 0); }
}

.main-point {
  position: absolute;
  right: 40px;
  top: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;  /* 오른쪽 정렬 */
  justify-content: space-between;
  height: 80vh;  /* 화면 높이의 80% */
  flex-direction: column;
  gap: 12px;
  padding: 40px 0 10px;
}

.main-point>p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 20px;
  line-height: 1.4;
  white-space: nowrap; 
  writing-mode: sideways-lr; 
}

.main-point>hr {
  width: 1px;
  height: 100%; /* 세로선 높이 화면 80% */
  background: rgba(255, 255, 255, 0.65);
}


/* section2 */
#section2 {
  background: #FFF;
  padding: 60px;
  position: relative;
}

.reveal>img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.reveal {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.mo-intro {
  display: none;
}

.st2-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.st2-wrap>p {
  color: #FFF;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
  display: flex;
  gap: 28px;
  align-items: center;
}

.st2-wrap>p>span {
  font-family: "HSBomBaram 2.0";
  font-size: 80px;
  line-height: 140%; /* 112px */
  letter-spacing: 0.8px;
}

.st2-wrap>div {
  display: inline-flex;
  box-sizing: border-box;
  padding: 44px 82px 43px 44px;
  align-items: center;
  background: #B19D60;
  color: #FFF;
  font-size: 24px;
  line-height: 150%; /* 36px */
  letter-spacing: -0.6px;
  word-break: keep-all;
}


/* section3 */
#section3 {
  background: url(../img/st3-bg.png);
  background-position: bottom left !important;
  background-size: cover !important;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  z-index: 5;
}

.st3-sticky {
  width: fit-content;
  color: #B19D60;
  /* position: sticky; */
  box-sizing: border-box;
  padding-top: 100px;
  padding-bottom: 100px;
  top: 90px;
  left: 100px;
  color: #B19D60;
  font-family: "HSBomBaram 2.0";
  font-size: 96px;
  line-height: 130%; /* 124.8px */
  letter-spacing: 0.96px;
}

.st3-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 50px; 
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-top: -30px;
  margin-bottom: -150px;
}

.st3-container>p {
  color: #222;
  font-size: 48px;
  font-weight: 500;
  line-height: 150%; /* 72px */
  letter-spacing: -1.2px;
  word-break: keep-all;
}

.dynamic-hr-div2 {
  width: fit-content;
  height: 185px;
}

.dynamic-hr2 {
  width: 1px;
  height: 0px;
  background: #333;
  transition: height 0.3s ease-out;
  opacity: 1;
}

.st3-mo-img {
  width: 100%;
  display: none;
}

/* section3-2 */
#section3-2 {
  background: #FFF;
  position: relative;
  padding-top: 250px;
  padding-bottom: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gray-bg {
  width: 100%;
  position: absolute;
  height: 426px;
  left: 0;
  top: 0;
  background: #E2E2E2;
}

.st3-2-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  z-index: 5;
}

.st3-box-container {
  width: 100%;
  display: flex;
  gap: 50px;
  margin-bottom: 30px;
  align-items: start;
}

.st3-box {
  width: 33.3%;
  aspect-ratio: 1 / 1.05;
  box-sizing: border-box;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  position: relative;
  border-radius: 12px;
  box-shadow: 8px 16px 48px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.st3-box:nth-child(2) {
  margin-top: 80px;
}

.st3-box>p:first-child {
  color: #111;
  font-size: 40px;
  font-weight: 600;
  line-height: 130%; /* 52px */
  letter-spacing: -1px;
  z-index: 5;
}

.st3-box>p:last-child {
  color: #505050;
  font-size: 18px;
  line-height: 150%; /* 27px */
  letter-spacing: -0.45px;
  word-break: keep-all;
  z-index: 5;
}

.st3-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center center !important;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

.st3-box:first-child::before {
  background-image: url(../img/st3-box-bg.png);
}

.st3-box:nth-child(2)::before {
  background-image: url(../img/st3-box-bg2.png);
}

.st3-box:last-child::before {
  background-image: url(../img/st3-box-bg3.png);
}

.st3-box:hover::before {
  transform: scale(1.15);
}

.dynamic-hr-div {
  width: fit-content;
  height: 120px;
}

.dynamic-hr {
  width: 1px;
  height: 0px;
  background: #BBB;
  transition: height 0.3s ease-out;
  opacity: 1;
}

.st3-2-div {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.st3-2-div>p:first-child {
  color: #222;
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  line-height: 130%; /* 62.4px */
  letter-spacing: -1.2px;
}

.st3-2-div>p:last-child {
  text-align: center;
  color: #505050;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: -0.55px;
}

.st3-2-div>p:last-child>span {
  color: #B19D60;
  font-weight: 600;
}


/* section4 */
#section4 {
  padding-bottom: 100px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

.st4-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.st4-top-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.st4-top-left>p:first-child {
  color: #B19D60;
  font-size: 32px;
  font-weight: 600;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.8px;
}

.st4-top-left>p:last-child {
  color: #B19D60;
  font-family: "HSBomBaram 2.0";
  font-size: 96px;
  line-height: 130%; /* 124.8px */
  letter-spacing: 0.96px;
}

.st4-top-right {
  width: 70%;
  display: flex;
  align-items: start;
  gap: 40px;
}

.st4-top-div {
  box-sizing: border-box;
  padding: 0 30px;
  font-size: 20px;
  line-height: 200%; /* 40px */
  letter-spacing: -0.5px;
  word-break: keep-all;
}

.st4-top-div:first-child {
  border-left: 3px solid #8E762D;
  color: #8E762D;
}

.st4-top-div:last-child {
  border-left: 3px solid #555;
  color: #333;
}

.certificate-container {
  width: 95%;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: start;
}

.certificate {
  width: calc(25% - 20px);
  border-radius: 12px;
  box-shadow: 8px 16px 48px 0px rgba(0, 0, 0, 0.08);
}

.certificate:nth-child(2n) {
  margin-top: 65px;
}


/* section5 */
#section5 {
  background: url(../img/st5-bg.png);
  background-size: cover !important;
  background-position: bottom left;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 100px;
  padding-bottom: 50px;
  overflow: hidden;
}

.st5-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.st-tit {
  color: #B19D60;
  font-family: "HSBomBaram 2.0";
  font-size: 96px;
  line-height: 130%; /* 124.8px */
  letter-spacing: 0.96px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.finish-nav-wrap {
  transform: translateX(150%);
}

.nav-btn {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(177, 157, 96, 0.30);
  border-radius: 100%;
  cursor: pointer;
}

.nav-btn:hover {
  background: #B19D60;
}

.finish-swiper-container {
  overflow: hidden;
  width: 100%;
  z-index: 5;
  padding-bottom: 50px;
  padding-right: 20%;
  transform: translateX(100%);
}

.finish-swiper-container .swiper-wrapper {
  padding-left: 22%;
}

.finish-swiper-container .swiper-slide {
  width: auto !important;
}

.finish-swiper-container .swiper-slide:nth-child(odd) {
  margin-top: 60px;
}

.finish-box {
  border-radius: 12px;
  background: #FFF;
  box-shadow: 8px 16px 48px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  width: 280px;
  height: 300px;
  padding: 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.finish-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.finish-tit {
  color: #B19D60;
  font-size: 32px;
  font-weight: 600;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.8px;
  word-break: keep-all;
}

.finish-sub-tit {
  color: #B19D60;
  font-size: 16px;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
  word-break: keep-all;
}

.finish-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.finish-bottom>p {
  color: #505050;
  font-size: 16px;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
  word-break: keep-all;
}

.finish-bottom>p:last-child {
  color: #999; 
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.fadeInRight {
  animation: fadeInRight 0.7s ease-out forwards;
}

.fadeInRight2 {
  animation: fadeInRight2 0.7s ease-out forwards;
}


/* section6 */
#section6 {
  background: #333;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.st6-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.st6-top-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.st6-top-div .go-youtube {
  display: none;
}

.youtube-nav-wrap {
  margin-bottom: 30px;
}

.st6-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.go-youtube {
  border-radius: 100px;
  border: 1px solid #FFF;
  display: flex;
  box-sizing: border-box;
  padding: 15px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%; /* 26px */
  letter-spacing: -0.5px;
}

.go-youtube:hover {
  background: #B19D60;
  color: #FFF;
  border: 1px solid #B19D60;
}

.youtube-swiper-container {
  width: 60%;
  overflow: hidden;
}

.youtube-swiper-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
}


/* section7 */
#section7 {
  background: #F2F1EE;
  display: none;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.st7-inner {
  width: 100%;
  position: sticky;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-top: 100px;
}

.st7-inner.fixed {
  position: fixed;
}

.main-scroll {
  width: 100%;
  height: 915px;
  position: relative;
}

.st7-img {
  max-width: 350px;
  position: absolute;
  width: 20%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease; 
}

.st7-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 80px;
  z-index: 10;
  top: 100px;
}

.st7-left-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.st7-left-div {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.st7-left-div>p {
  color: #767676;
  font-size: 28px;
  font-weight: 600;
  line-height: 130%; /* 36.4px */
  letter-spacing: -0.7px;
}

.st7-left-div>p:first-child {
  opacity: 0.6;
}

.st7-left-div.on>p {
  color: #8E762D;
}

.st7-left-div.on hr {
  display: inline-flex !important;
  width: 56px;
  height: 1.5px;
  background: #8E762D;
}

.st7-right {
  /* padding-top: 200px; */
  z-index: 10;
  width: 50%;
  position: relative;
}

.st7-right-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: end;
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
  position: absolute;
  top: 200px;
  right: 0;
}

.st7-right-wrap.on {
  opacity: 1;
}

.st7-right-div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: end;
}

.st7-right-div>p {
  color: rgba(177, 157, 96, 0.70);
  text-align: right;
  font-family: "HSBomBaram 2.0";
  font-size: 80px;
  line-height: 140%; /* 112px */
  letter-spacing: -2px;
}

.st7-right-div>div {
  color: #222;
  text-align: right;
  font-size: 40px;
  font-weight: 600;
  line-height: 140%; /* 56px */
  letter-spacing: -1px;
}

.st7-right>div {
  color: #505050;
  text-align: right;
  font-size: 20px;
  line-height: 150%; /* 30px */
  letter-spacing: -0.5px;
}

.st7-swiper-container {
  width: 100%;
  overflow: hidden;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.swiper-pagination {
  position: static;
  justify-content: center;
}

.swiper-notification {
  display: none;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: #B19D60;
}

.section {
  width: 100%;
  height: auto !important;
  min-height: 820px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  background: #F2F1EE;
}

.content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding: 0 10px;
  position: relative;
}

.content ul {
  font-size: 30px;
  color: #767676;
  margin: 0;
  padding: 0;
  padding-left: 16px;
  list-style: none;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content .fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #8E762D;
}

.content .right {
  flex-grow: 1;
  color: black;
  position: relative;
}

.right .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 200px;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
}

.st-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  max-width: 480px;
  width: 20%;
}

/* contact */
#contact {
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: start;
  justify-content: space-between;
}

.contact-left {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contact-div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-div>p:first-child {
  color: #8E762D;
  font-size: 32px;
  font-weight: 600;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.8px;
}

.contact-div>p:last-child {
  color: #8E762D;
  font-family: "HSBomBaram 2.0";
  font-size: 96px;
  line-height: 130%;
  letter-spacing: 0.96px;
}

.contact-left>p {
  color: #8E762D;
  font-size: 56px;
  font-weight: 600;
  line-height: 130%; /* 72.8px */
  letter-spacing: -1.4px;
}

.contact-form {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.flex-input {
  width: 100%;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  height: 46px;
  padding: 10px 0px 10px 16px;
  color: #111;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -0.5px;
  border-radius: 6px;
  border: 1px solid #DDD;
  background: #FFF;
}

textarea {
  width: 100%;
  display: flex;
  height: 140px;
  box-sizing: border-box;
  padding: 10px 0px 10px 16px;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #DDD;
  background: #FFF;
  resize: none;
  color: #111;
  font-size: 20px !important;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -0.5px;
  border-radius: 6px;
  border: 1px solid #DDD;
  background: #FFF;
}

input[type="text"]::placeholder {
  color: rgba(34, 34, 34, 0.50);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px; /* 150% */
  letter-spacing: -0.4px;
}

label {
  color: #505050;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 130% !important; /* 23.4px */
  letter-spacing: -0.45px !important;
}

.form-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.agree-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.round-checkbox {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50px;
  appearance: none;
  position: relative;
  cursor: pointer;
  background: #FFF;
  border: 2px solid #999;
}

.round-checkbox:checked::before {
  font-size: 100%;
  color: #fff;
  position: relative;
}

.round-checkbox:checked {
  background-image: url("../img/check.png");
  background-size: 15px !important;
  background-position: center center !important;
  background-color: #8E762D;
  background-repeat: no-repeat;
  border: none;
}

.agree {
  color: #222;
  font-size: 18px !important;
  line-height: 26px !important; /* 144.444% */
  letter-spacing: -0.45px !important;
  cursor: pointer;
}

.agree-open {
  color: #B19D60;
  font-weight: 600 !important;
}

.c-btn {
  border-radius: 8px;
  background: #B19D60;
  display: flex;
  box-sizing: border-box;
  padding: 16px 60px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  color: #FFF;
  font-size: 20px;
  line-height: 28px; /* 140% */
  font-weight: 600;
  letter-spacing: -0.5px;
  border: none;
}

.c-btn:hover {
  background: #8E762D;
}

.agree-modal {
  position: fixed;
  top: 2.5vh;
  width: 1080px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  cursor: pointer;
  z-index: 1001;
  box-sizing: border-box;
  padding: 0 48px;
  padding-top: 60px !important;
  padding-bottom: 20px !important;
  justify-content: initial !important;
  height:95vh;
  gap: 20px !important;
  display: none;
}

.agree-close {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: end;
  cursor: pointer;
}

.agree-close > svg {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.80);
  padding: 6.4px 6.4px 5.6px 5.6px;
}

.agree-close>svg:hover {
  background: #000;
  transition: 0.3s;
}

.agree-modal>.title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.p24 {
  color: #111;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px; /* 141.667% */
  letter-spacing: -0.6px;
}

.p40 {
  color:  #111;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px; /* 130% */
  letter-spacing: -1px;
}

.content-div {
  height: 90%;
  overflow: hidden;
}

.agree-modal>.content-div>.content {
  margin-top: 20px;
  height: 100%;
  overflow: scroll;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: #505050;
  padding-bottom: 80px;
}

.modal-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  z-index: 101 !important;
}

/* 1000px */ 
.mi-br {
  display: none;
}

/* 650px */
.mo-br {
  display: none;
}

@media(max-width: 1530px) {
  .st3-box-container {
    gap: 30px;
  }
  .st3-box {
    padding: 30px;
  }
}

@media(max-width: 1420px) {
  .st3-container {
    margin-bottom: -120px;
  }
  .st3-container>p {
    font-size: 40px;
    letter-spacing: -1px;
  }
  #section3-2  {
    padding-top: 200px;
  }
}

@media(max-width: 1400px) {
  .st2-wrap>p>span {
    font-size: 72px;
    letter-spacing: -1.8px;
  }
  .st2-wrap>p, .st2-wrap>div {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st3-box>p:first-child {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st3-box>p:last-child {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st3-2-div>p:first-child {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st3-2-div>p:last-child {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .youtube-nav-wrap {
    margin-bottom: 20px;
  }
}


@media(max-width: 1280px) {
  .Title {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .txt, .second-text {
    font-size: 72px;
    letter-spacing: -1.8px;
  }
  .main-point>p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st2-wrap>div {
    padding: 40px 52px 40px 40px;
  }
  .st3-box>p:first-child {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st3-box>p:last-child {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st4-top-right {
    gap: 20px;
  }
  .st4-top-div {
    font-size: 18px;
    letter-spacing: -0.45px;
    padding: 0 20px;
  }
  .certificate-container {
    width: 100%;
    gap: 20px;
  }
  .certificate {
    width: calc(25% - 15px);
  }
  .go-youtube {
    font-size: 18px;
    letter-spacing: -0.45px;
    padding: 10px 20px;
  }
  .st7-left {
    gap: 50px;
  }
  .st7-left-div>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st7-right {
    height: 550px;
  }
  .st7-right-wrap {
    top: 150px;
  }
  .st7-right-div>p {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .st7-right-div>div {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st7-right-wrap>div {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .main-scroll {
    height: 800px;
  }
  .contact-left {
    gap: 40px;
    width: 40%;
  }
  .contact-div>p:first-child, .st4-top-left>p:first-child {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .contact-div>p:last-child, .st4-top-left>p:last-child, .st-tit {
    font-size: 80px;
    letter-spacing: -2px;
  }
  .contact-left>p {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .agree-modal {
    width: 100%;
    left: 0;
    top: 0;
    height: 100vh;
    transform: none;
  }
  .section {
    min-height: 790px;
  }
}

@media(max-width: 1100px) {
  .st2-wrap>p>span {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .st2-wrap>p {
    gap: 20px;
  }
  .st2-wrap>p, .st2-wrap>div {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st3-container {
    width: 45%;
  }
  .st3-box-container {
    gap: 20px;
  }
  .st3-box {
    padding: 20px;
  }
  .st4-top-div {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .section {
    display: none;
  }
  #section7 {
    display: flex;
    gap: 40px;
  }
  .main-scroll {
    display: none;
  }
  .st7-inner {
    flex-direction: column;
    position: static;
  }
  .st7-left .st7-left-wrap, .st7-right {
    display: none;
  }
  .st7-swiper-container {
    display: flex;
  }
  .st7-img {
    position: static;
    margin: 0 auto;
    transform: none;
    max-width: 300px;
    width: 40%;
  }
  .st7-right-wrap {
    opacity: 1;
    position: static;
    width: 100%;
    align-items: start;
    gap: 20px;
  }
  .st7-right-div {
    align-items: start;
    gap: 0;
  }
  .st7-right-div>p, .st7-right-div>div, .st7-right-wrap>div {
    text-align: left;
  }
  .st7-right-div>div {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st7-right-wrap>div {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
}

@media (max-width: 1024px) {
  .Title {
    align-items: center;
  }
  .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .st3-container {
    width: 55%;
  }
  .st6-top {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
  .youtube-nav-wrap {
    margin-left: auto;
    margin-bottom: 0;
  }
  .st6-top-div {
    width: 100%;
  }
  .st6-top-div .go-youtube {
    display: flex;
  }
  .st6-container .go-youtube {
    display: none;
  }
  .youtube-swiper-container {
    width: 100%;
  }
  .contact-left {
    gap: 40px;
    width: 40%;
  }
  .contact-div>p:first-child, .st4-top-left>p:first-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .contact-div>p:last-child, .st4-top-left>p:last-child, .st-tit {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .contact-left>p {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .form-wrap {
    flex-direction: column;
    gap: 20px;
  }
  .c-btn {
    width: 100%;
  }
}

@media(max-width:1000px) {
  #section2 {
    padding: 0;
  }
  .reveal {
    box-sizing: border-box;
    padding: 40px 40px 0 40px;
  }
  .st2-wrap {
    position: relative;
    gap: 0;
    transform: none;
    margin-top: -90px;
  }
  .st2-wrap>p {
    padding: 0 60px;
  }
  .st2-wrap>div {
    padding: 40px 60px;
  }
  .st2-wrap>p, .st2-wrap>div {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  #section3 {
    background: #FFF;
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 0;
    align-items: center;
  }
  .st3-sticky {
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
  }
  .st3-container {
    width: 70%;
    margin: 0;
    gap: 20px;
  }
  .st3-container>p {
    text-align: center;
  }
  .dynamic-hr-div2 {
    height: 140px;
  }
  .st3-mo-img {
    display: inline-flex;
  }
  #section3-2 {
    padding-top: 0;
    padding-bottom: 80px;
    margin-top: -3px;
  }
  .st3-2-container {
    gap: 40px;
  }
  .gray-bg {
    display: none;
  }
  .st3-box-container {
    padding-top: 80px;
    padding-bottom: 80px;
    flex-direction: column;
    align-items: start;
    background: #E2E2E2;
    margin-bottom: -80px;
  }
  .st3-box {
    width: 55%;
  }
  .st3-box:nth-child(2) {
    margin-top: 0;
    margin-left: auto;
  }
  .st3-box>p:first-child {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st3-box>p:last-child {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st3-2-div>p:first-child, .st3-container>p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st3-2-div>p:last-child {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .mi-br {
    display: block;
  }
  .st4-top {
    flex-direction: column;
    gap: 40px;
  }
  .st4-top-right {
    width: 100%;
  }
  .st4-top-div {
    width: 50%;
    padding: 0 30px;
  }
  #section7 {
    flex-direction: column;
  }
}

@media(max-width: 900px) {
  .pc {
    display: none !important;
  }
  .mobile {
    display: block;
  }
  .layer-popup .show-chk-wrap {
    margin-top: 0;
  }
  .layer-popup .show-chk-wrap a {
    font-size: 14px;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.35px;
  }
  .layer-popup .show-chk-wrap .x-btn {
    padding: 0 15px;
  }
  .Title {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .txt, .second-text {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .main-point {
    flex-direction: row;
    bottom: 30px;
    padding: 0 16px;
    width: 100%;
    height: auto;
    top: unset;
    right: unset;
    flex-direction: row-reverse;
  }
  .main-point>p {
    writing-mode: initial;
  }
  .main-point>hr {
    width: 100%;
    height: 1px;
  }
  #section4 {
    padding-bottom: 80px;
    gap: 60px;
  }
  .certificate-container {
    flex-wrap: wrap;
  }
  .certificate {
    width: calc(50% - 10px);
  }
  .certificate:nth-child(2) {
    margin-top: 32.5px;
  }
  .certificate:nth-child(3) {
    margin-top: -32.5px;
  }
  .certificate:nth-child(4) {
    margin-top: 0;
  }
  #section5 {
    padding-top: 80px;
    padding-bottom: 30px;
  }
  .finish-box {
    padding: 24px;
    height: 280px;
  }
  .finish-top {
    gap: 8px;
  }
  .finish-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .finish-bottom {
    gap: 12.8px;
  }
  #section7 {
    padding-top: 80px;
  }
  .st7-inner {
    padding-top: 80px;
  }
  #contact {
    flex-direction: column;
    gap: 40px;
  }
  .contact-left, .contact-form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .layer-popup {
    position: absolute;
    top: 0;
    left: 0;
  }
  .st3-container {
    width: 75%;
  }
  .st4-top-div {
    padding: 0 20px;
  }
  .agree-modal {
    padding: 0 20px;
  }
}

@media(max-width: 700px) {
  .pc-intro {
    display: none;
  }
  .mo-intro {
    display: inline-block;
  }
  .st3-box {
    width: 60%;
  }
  .st3-container {
    width: 85%;
  }
  #section4 {
    gap: 40px;
  }
  .st4-top-right {
    flex-direction: column;
    gap: 40px;
  }
  .st4-top-div {
    width: 100%;
  }
}

@media(max-width: 650px) {
  .mo-br {
    display: block;
  }
}

@media (max-width: 600px) {
  .layer-popup {
    left: 5% !important;
  }
  .txt, .second-text {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .main-point {
    gap: 8px;
  }
  .main-point>p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .reveal {
    padding: 20px 20px 0 20px;
  }
  .st2-wrap>p {
    padding: 0 40px;
    font-size: 18px;
    letter-spacing: -0.45px;
    gap: 10px;
  }
  .st2-wrap>p>span {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .st2-wrap>div {
    padding: 40px;
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .dynamic-hr-div2 {
    height: 100px;
  }
  .st3-container {
    box-sizing: border-box;
    padding: 0 20px;
    width: 100%;
  }
  .st3-container>p {
    text-align: left;
  }
  .st3-box {
    gap: 4px;
    border-radius: 6px;
  }
  .st3-box>p:first-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st3-box>p:last-child {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st3-2-div>p:first-child, .st3-container>p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st3-2-div>p:last-child {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  #section4, #section5, #section6 {
    gap: 40px;
  }
  .st5-top {
    flex-direction: column;
    align-items: start;
  }
  .nav-wrap {
    margin-left: auto;
    gap: 12px;
  }
  .nav-btn {
    width: 48px;
    height: 48px;
  }
  .nav-btn>svg {
    width: 30px;
    height: 30px;
  }
  .finish-swiper-container {
    padding-right: 15%;
  }
  .finish-swiper-container .swiper-wrapper {
    padding-left: 20px;
  }
  .finish-swiper-container .swiper-slide:nth-child(odd) {
    margin-top: 48px;
  }
  .finish-box {
    width: 250px;
    height: 270px;
    border-radius: 9.6px;
  }
  .finish-tit {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .finish-sub-tit, .finish-bottom>p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .go-youtube {
    font-size: 16px;
    letter-spacing: -0.4px;
    padding: 0 15px;
    height: 46px;
  }
  .go-youtube svg {
    width: 20px;
    height: 20px;
  }
  .youtube-swiper-container iframe {
    border-radius: 6px;
  }
  .st7-right-div>p {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st7-right-div>div {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st7-right-wrap>div {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .contact-div>p:last-child, .st4-top-left>p:last-child, .st-tit {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .flex-input {
    flex-direction: column;
    gap: 32px;
  }
  label, .agree, .c-btn {
    font-size: 16px !important;
    letter-spacing: -0.4px !important;
  }
  .agree-modal {
    gap: 40px !important;
  }
  .agree-modal>.title>.p24 {
      font-size: 20px;
      line-height: 28px; /* 140% */
      letter-spacing: -0.5px;
  }
  .agree-modal>.title>.p40 {
      font-size: 28px;
      line-height: 38px; /* 135.714% */
      letter-spacing: -0.7px;
  }
}

@media (max-width: 480px) {
  .txt, .second-text {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st2-wrap {
    margin-top: -70px;
  }
  .st2-wrap>p>span {
    font-size: 48px;
    letter-spacing: 0.48px;
  }
  .st3-container>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st3-box>p:first-child {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st3-box>p:last-child {
    font-size: 11px;
    letter-spacing: -0.275px;
  }
  .st3-2-div>p:first-child {
    font-size: 25px;
    letter-spacing: -0.625px;
  }
  .xs-no-br {
    display: none;
  }
  .finish-swiper-container {
    padding-right: 0;
  }
  .finish-box {
    width: 225px;
    height: 240px;
  }
  .st7-right-div>p {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st7-right-div>div {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st7-right-wrap>div {
    font-size: 15px;
    letter-spacing: -0.375px;
  }
}

@media(max-width: 400px) {
  .st3-box>p:last-child {
    font-size: 9px;
    letter-spacing: -0.225px;
  }
}
