.hide {
  opacity: 0 !important;
}

.right-motion {
  opacity: 0;
  transform: translateX(10%);
  -webkit-transform: translateX(10%);
  -moz-transform: translateX(10%);
  -ms-transform: translateX(10%);
  -o-transform: translateX(10%);
  transition: all 1.4s ease-out;
  -webkit-transition: all 1.4s ease-out;
  -moz-transition: all 1.4s ease-out;
  -ms-transition: all 1.4s ease-out;
  -o-transition: all 1.4s ease-out;
}

.left-motion {
  opacity: 0;
  transform: translateX(-10%);
  -webkit-transform: translateX(-10%);
  -moz-transform: translateX(-10%);
  -ms-transform: translateX(-10%);
  -o-transform: translateX(-10%);
  transition: all 1.4s ease-out;
  -webkit-transition: all 1.4s ease-out;
  -moz-transition: all 1.4s ease-out;
  -ms-transition: all 1.4s ease-out;
  -o-transition: all 1.4s ease-out;
}

.up-motion {
  opacity: 0;
  transform: translateY(30%);
  -webkit-transform: translateY(30%);
  -moz-transform: translateY(30%);
  -ms-transform: translateY(30%);
  -o-transform: translateY(30%);
  transition: all 1.4s ease-out;
  -webkit-transition: all 1.4s ease-out;
  -moz-transition: all 1.4s ease-out;
  -ms-transition: all 1.4s ease-out;
  -o-transition: all 1.4s ease-out;
}
.up-motion.up10 {
  transform: translateY(10%);
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -o-transform: translateY(10%);
}

.down-motion {
  opacity: 0;
  transform: translateY(-30%);
  -webkit-transform: translateY(-30%);
  -moz-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  -o-transform: translateY(-30%);
  transition: all 1.4s ease-out;
  -webkit-transition: all 1.4s ease-out;
  -moz-transition: all 1.4s ease-out;
  -ms-transition: all 1.4s ease-out;
  -o-transition: all 1.4s ease-out;
}

.section.active .right-motion,
.section.active .left-motion {
  opacity: 1;
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transition: all 1.2s ease-out;
  -webkit-transition: all 1.2s ease-out;
  -moz-transition: all 1.2s ease-out;
  -ms-transition: all 1.2s ease-out;
  -o-transition: all 1.2s ease-out;
}
.section.active .up-motion,
.section.active .down-motion {
  opacity: 1;
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transition: all 1.2s ease-out;
  -webkit-transition: all 1.2s ease-out;
  -moz-transition: all 1.2s ease-out;
  -ms-transition: all 1.2s ease-out;
  -o-transition: all 1.2s ease-out;
}

.main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
}
.main-visual .fp-scroller {
  max-height: 100vh !important;
}
.main-visual .video-wrap {
  width: 100%;
  height: 100%;
}
.main-visual .video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-visual .first {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  top: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: url("../img/main/vis.png") no-repeat;
  background-size: cover;
  animation: up 0.5s 2s forwards;
  -webkit-animation: up 0.5s 2s forwards;
}
.main-visual .first .txt-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 14.4rem;
  animation: top 2s 2s forwards;
  -webkit-animation: top 2s 2s forwards;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.main-visual .first p {
  position: relative;
  width: 100%;
  text-align: center;
  height: 7.2rem;
  overflow: hidden;
}
.main-visual .first span {
  position: absolute;
  display: block;
  width: 100%;
  top: 100%;
  font-size: var(--fs-btit);
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  animation: text 0.6s 0.5s forwards;
  -webkit-animation: text 0.6s 0.5s forwards;
}
.main-visual .first span.last {
  animation: text 0.6s 1s forwards;
  -webkit-animation: text 0.6s 1s forwards;
}

@media all and (max-width: 85.375rem) {
  .main-visual .fp-scroller {
    height: 100%;
    max-height: none;
  }
}
@media all and (max-width: 47.9375rem) {
  .main-visual .first p {
    height: 3.8rem;
  }
  .main-visual .first span {
    font-size: 2rem;
  }
}
@keyframes up {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes text {
  0% {
    top: 100%;
  }
  100% {
    top: 0;
  }
}
@keyframes top {
  0% {
    top: 50%;
    opacity: 1;
  }
  100% {
    top: 0;
    opacity: 0;
  }
}
.inner {
  width: 100%;
  height: 100%;
  max-width: 159rem;
  padding: 0 4rem;
  margin: 0 auto;
}

.sec-1 {
  position: relative;
}
.sec-1 .bg {
  position: absolute;
  width: 79.166667%;
  height: calc(100% - 20rem);
  top: 10rem;
  right: 0;
  background: url("../img/main/sec-2.png") no-repeat;
  background-size: cover;
  z-index: -1;
}
.sec-1 .bg .img-wrap {
  height: 100%;
  width: 100%;
}
.sec-1 .bg .img-wrap img {
  display: block;
  height: 100%;
  width: 100%;
}
.sec-1 .cont-wrap {
  padding-top: 28.5rem;
}
.sec-1 .tit {
  margin-top: 5.5rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: calc(var(--fs-btit) - 1.5rem);
  color: #111111;
}
.sec-1 .tit .eng {
  font-weight: 700;
  line-height: 5.5rem;
}
.sec-1 .tit sup {
  font-size: calc(var(--fs-stit) - 0.6rem);
}
.sec-1 .s-tit {
  margin-top: 5rem;
  font-size: calc(var(--fs-stit) - 0.2em);
  font-weight: 600;
  color: #333333;
  line-height: 4.5rem;
}

.s-tit {
  font-size: var(--fs-stit);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.b-desc {
  font-size: calc(var(--fs-stit) + 0.2rem);
  font-weight: 700;
  line-height: 4.5rem;
}

.sec-2 .right {
  width: 100%;
}
.sec-2 .right .swiper-pagination {
  width: 76.5rem;
  left: auto;
  right: 0;
  bottom: -3rem;
  margin: 0;
}
.sec-2 .right .swiper-pagination .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  border-radius: 10rem;
  -webkit-border-radius: 10rem;
  -moz-border-radius: 10rem;
  -ms-border-radius: 10rem;
  -o-border-radius: 10rem;
  background: #111111;
  opacity: 1;
  transition: width 0.6s, opacity 0.6s;
  -webkit-transition: width 0.6s, opacity 0.6s;
  -moz-transition: width 0.6s, opacity 0.6s;
  -ms-transition: width 0.6s, opacity 0.6s;
  -o-transition: width 0.6s, opacity 0.6s;
}
.sec-2 .right .swiper-pagination .swiper-pagination-bullet-active {
  width: 5.5rem;
  opacity: 0.2;
  transition: width 0.6s, opacity 0.6s;
  -webkit-transition: width 0.6s, opacity 0.6s;
  -moz-transition: width 0.6s, opacity 0.6s;
  -ms-transition: width 0.6s, opacity 0.6s;
  -o-transition: width 0.6s, opacity 0.6s;
}
.sec-2 .flex-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding-top: 8rem;
}
.sec-2 .left {
  position: absolute;
  z-index: 99;
  padding-top: 15rem;
  min-width: 42.5rem;
}
.sec-2 .swiper-slide {
  display: flex;
  align-items: flex-end;
  justify-content: right;
  background: #fff;
  gap: 8rem;
}
.sec-2 .left-txt {
  max-width: 42rem;
}
.sec-2 .img-wrap {
  min-width: 75.6rem;
}
.sec-2 .s-tit {
  margin-bottom: 6rem;
  color: #333333;
}
.sec-2 .small {
  font-size: calc(var(--fs-md) + 0.2rem);
  font-family: "Montserrat", sans-serif;
  color: #a3a3a3;
}
.sec-2 .b-desc {
  margin-top: 3rem;
  font-size: calc(var(--fs-btit) - 1.5rem);
  line-height: 5.5rem;
  font-weight: 700;
  color: #333333;
}
.sec-2 .p-name {
  margin-bottom: 1.6rem;
  font-size: calc(var(--fs-md) + 0.4rem);
  font-weight: 700;
}
.sec-2 .small-name {
  font-size: calc(var(--fs-com) - 0.1rem);
  color: #555555;
  font-weight: 600;
  line-height: 1.2;
}
.sec-2 .desc {
  margin-top: 1.8rem;
  font-size: var(--fs-com);
  line-height: 1.2;
  font-weight: 500;
  color: #111111;
}

.sec-3 {
  min-height: 100vh;
  background: url("../img/main/sec-3.png") no-repeat;
  background-size: cover;
}
.sec-3 .flex-wrap {
  display: flex;
  padding-top: 22rem;
}
.sec-3 .left {
  width: 61.5rem;
}
.sec-3 .left .b-desc {
  width: 125%;
  font-weight: 400;
  font-size: calc(var(--fs-md) + 1rem);
}
.sec-3 .left .point {
  color: #fc637d;
  font-weight: 700;
}
.sec-3 .img-wrap {
  margin-top: 3rem;
}
.sec-3 .b-desc {
  margin-top: 6rem;
}

.sec-4 {
  min-height: 100vh;
  background: url("../img/main/sec-4.png") no-repeat;
  background-size: cover;
}
.sec-4 .flex-wrap {
  display: flex;
  justify-content: space-between;
}
.sec-4 .right {
  padding-top: 13.5rem;
  width: 50%;
}
.sec-4 .b-desc {
  width: 125%;
  margin-top: 6rem;
  margin-bottom: 6rem;
  font-size: calc(var(--fs-md) + 0.5rem);
  line-height: 3.3rem;
  text-align: left;
  font-weight: 400;
}

.sec-5 {
  background: url("../img/main/sec-5.png") no-repeat center;
  background-size: cover;
}
.sec-5 .cont-wrap {
  padding-top: 13rem;
}
.sec-5 .flex-wrap {
  padding-top: 5rem;
  display: flex;
  justify-content: center;
  gap: 8rem;
}
.sec-5 .s-tit {
  color: #fff;
  text-align: center;
}
.sec-5 .card {
  position: relative;
  padding-top: 7.6rem;
}
.sec-5 .num {
  position: absolute;
  z-index: 10;
  top: 0;
  left: -4rem;
  width: 12rem;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-md);
  color: #fff;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  background: #95a2b6;
  border-radius: 99rem;
  -webkit-border-radius: 99rem;
  -moz-border-radius: 99rem;
  -ms-border-radius: 99rem;
  -o-border-radius: 99rem;
}
.sec-5 .num .point {
  font-size: calc(var(--fs-md) + 0.7rem);
  color: #fc637d;
  font-style: italic;
}
.sec-5 .step {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  gap: 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: calc(var(--fs-stit) - 0.3rem);
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.sec-5 .step .width {
  display: block;
  padding: 1.5rem 1.7rem;
  border-radius: 10rem;
  -webkit-border-radius: 10rem;
  -moz-border-radius: 10rem;
  -ms-border-radius: 10rem;
  -o-border-radius: 10rem;
  background: rgba(255, 255, 255, 0.2);
  font-size: calc(var(--fs-md) + 0.2rem);
}
.sec-5 .step .width .mm {
  font-size: calc(var(--fs-desc) - 0.1rem);
  font-weight: 400;
}
.sec-5 .desc {
  margin-top: 2rem;
  font-size: var(--fs-md);
  line-height: 2.5rem;
  color: #fff;
  text-align: center;
  font-weight: 300;
}

.sec-6 {
  min-height: 100vh;
  background: url("../img/main/sec-6.png") no-repeat;
  background-size: cover;
}
.sec-6 .flex-wrap {
  display: flex;
  padding-top: 20.5rem;
  gap: 19rem;
}
.sec-6 .b-desc {
  margin: 5.5rem 0 3.5rem;
  font-size: calc(var(--fs-md) + 1rem);
  font-weight: 700;
  line-height: 4rem;
}
.sec-6 .desc {
  font-size: calc(var(--fs-md) + 0.4rem);
  line-height: 1.4;
}
.sec-6 .right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sec-6 .line-box {
  display: flex;
  align-items: center;
  gap: 8rem;
  padding-left: 37rem;
  width: 80.6rem;
  height: 22rem;
  background: url("../img/main/line1.png") no-repeat;
  background-size: cover;
}
.sec-6 .line-box:last-of-type {
  background: url("../img/main/line2.png") no-repeat;
  background-size: cover;
}
.sec-6 .product {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sec-6 .name {
  font-family: "Montserrat", sans-serif;
  font-size: calc(var(--fs-md) - 0.1rem);
  font-weight: 600;
  text-align: center;
}
.sec-6 .img-wrap {
  display: flex;
  justify-content: center;
}
.sec-6 .img-wrap img {
  display: block;
}

.sec-7 {
  background: url("../img/main/sec-7-kr.png") no-repeat;
  background-size: cover;
}
.sec-7 .flex-wrap {
  display: flex;
  height: 100%;
  justify-content: right;
  align-items: center;
}
.sec-7 .txt-wrap {
  width: 50%;
}
.sec-7 .txt-wrap .desc {
  width: 125%;
}
.sec-7 .desc {
  font-size: calc(var(--fs-btit) - 1rem);
  font-family: "Montserrat", sans-serif;
  line-height: 8rem;
  font-weight: 200;
}
.sec-7 .img-wrap {
  margin-top: 8.5rem;
}

.sec-8 {
  background: url("../img/main/sec-8.png") no-repeat;
  background-size: cover;
}
.sec-8 .last {
  padding-top: 17.5rem;
}
.sec-8 .logo {
  display: flex;
  justify-content: center;
  margin-bottom: 7.5rem;
}
.sec-8 .top {
  margin-bottom: 9rem;
  font-size: calc(var(--fs-btit) - 0.5rem);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
}
.sec-8 .desc {
  font-size: calc(var(--fs-md) + 0.2rem);
  line-height: 1.5;
  font-weight: 300;
  color: #a3a3a3;
  text-align: center;
}

@media all and (min-width: 120.0625rem) {
  .section .inner {
    height: auto;
  }
  .section.sec-1 .cont-wrap {
    padding-top: 0;
  }
  .section.sec-2 .flex-wrap {
    padding-top: 0;
  }
  .section.sec-3 .flex-wrap {
    padding-top: 0;
  }
  .section.sec-4 .right {
    padding-top: 0;
  }
  .section.sec-5 .cont-wrap {
    padding-top: 0;
  }
  .section.sec-6 .flex-wrap {
    padding-top: 0;
  }
  .section.sec-8 .last {
    padding-top: 0;
  }
}
@media all and (max-width: 85.375rem) {
  .b-desc {
    line-height: 1.2;
  }
  .sec-1 .cont-wrap {
    padding-top: 16.5rem;
  }
  .sec-1 .tit {
    margin-top: 4rem;
    line-height: 1.3;
  }
  .sec-1 .tit .eng {
    line-height: 1.3;
  }
  .sec-1 .s-tit {
    margin-top: 4rem;
    line-height: 1.3;
  }
  .sec-1 .bg {
    height: calc(100% - 15rem);
    top: 7.5rem;
  }
  .sec-2 .s-tit {
    margin-bottom: 4rem;
  }
  .sec-2 .swiper-slide .Img-wrap {
    max-width: 50%;
  }
  .sec-2 .left {
    padding-top: 12rem;
  }
  .sec-2 .right .swiper-pagination {
    width: 50%;
  }
  .sec-2 .b-desc {
    line-height: 1.3;
  }
  .sec-3 .flex-wrap {
    padding-top: 8rem;
  }
  .sec-3 .left {
    width: auto;
  }
  .sec-3 .left .b-desc {
    width: 100%;
    margin-top: 4rem;
  }
  .sec-4 .y-scroll {
    height: 100%;
    overflow-y: scroll;
  }
  .sec-4 .right {
    width: 56%;
    padding: 12rem 0;
  }
  .sec-4 .b-desc {
    width: 100%;
    margin: 3rem 0;
    white-space: wrap;
  }
  .sec-5 .cont-wrap {
    padding-top: 10rem;
  }
  .sec-5 .flex-wrap {
    gap: 4rem;
    padding-top: 4rem;
  }
  .sec-5 .num {
    left: -1rem;
    width: 10rem;
    height: 10rem;
  }
  .sec-5 .step {
    margin-top: 2rem;
    font-size: calc(var(--fs-stit) - 0.5rem);
  }
  .sec-6 .flex-wrap {
    padding: 12rem 0 8rem;
    gap: 4rem;
    flex-direction: column;
  }
  .sec-6 .b-desc {
    margin: 4.5rem 0 3.5rem;
  }
  .sec-7 {
    background: url("../img/main/sec-7-kr.png") no-repeat 55% center;
    background-size: cover;
  }
  .sec-7 .logo {
    margin-bottom: 6rem;
  }
  .sec-7 .txt-wrap {
    width: 62%;
  }
  .sec-7 .desc {
    line-height: 1.4;
  }
  .sec-7 .img-wrap {
    margin-top: 4.5rem;
  }
  .sec-8 .top {
    margin-bottom: 6rem;
  }
}
@media all and (max-width: 64rem) {
  .sec-2 .flex-wrap {
    gap: 4rem;
    padding: 8rem 0;
  }
  .sec-2 .left {
    min-width: 0;
    width: 40%;
  }
  .sec-2 .right {
    width: 60%;
  }
  .sec-2 .right .swiper-pagination {
    width: 100%;
    bottom: 21rem;
  }
  .sec-2 .left {
    position: static;
  }
  .sec-2 .swiper-slide {
    flex-direction: column-reverse;
    gap: 6rem;
  }
  .sec-2 .swiper-slide .Img-wrap {
    max-width: none;
    width: 100%;
  }
  .sec-2 .left-txt {
    max-width: none;
    width: 100%;
  }
  .sec-2 .b-desc {
    font-size: calc(var(--fs-stit) + 0.2rem);
  }
  .sec-2 .b-desc br {
    display: none;
  }
  .sec-2 .desc br {
    display: none;
  }
  .sec-3 .flex-wrap {
    flex-direction: column;
    padding: 10rem 0 8rem;
    gap: 4rem;
  }
  .sec-4 .right {
    width: 100%;
    padding: 8rem 0;
  }
  .sec-7 {
    background: url("../img/main/sec-7-kr.png") no-repeat 29% center;
    background-size: cover;
  }
  .sec-7 .txt-wrap {
    width: 62%;
  }
  .sec-7 .desc {
    line-height: 1.3;
  }
  .sec-7 .img-wrap {
    margin-top: 5.5rem;
  }
  .sec-8 .desc {
    word-break: keep-all;
    font-size: var(--fs-md);
  }
  .sec-8 .desc br {
    display: none;
  }
}
@media all and (max-width: 63.9375rem) {
  .section {
    height: auto !important;
    overflow: hidden;
  }
  .fp-tableCell {
    height: auto !important;
  }
  .s-tit {
    line-height: 1.2;
  }
  .main-visual {
    height: 100vh !important;
  }
  .sec-1 .inner {
    padding: 6rem 4rem;
  }
  .sec-1 .cont-wrap {
    padding: 4rem 0;
  }
  .sec-1 .bg {
    height: calc(100% - 16rem);
  }
  .sec-2 .flex-wrap {
    padding: 6rem 0;
  }
  .sec-2 .s-tit {
    margin-bottom: 2rem;
  }
  .sec-2 .b-desc {
    margin-top: 0;
    line-height: 1.3;
    font-size: calc(var(--fs-stit) - 0.4rem);
  }
  .sec-2 .right .swiper-pagination {
    bottom: 20rem;
  }
  .sec-3 {
    min-height: 0;
  }
  .sec-3 .flex-wrap {
    padding: 8rem 0 8rem;
  }
  .sec-3 .b-desc {
    margin-top: 3rem;
  }
  .sec-4 {
    min-height: 0;
  }
  .sec-4 .left {
    display: none;
  }
  .sec-4 .y-scroll {
    overflow-y: visible;
  }
  .sec-5 .cont-wrap {
    padding: 8rem 0;
  }
  .sec-5 .flex-wrap {
    gap: 2rem;
    padding-top: 2rem;
  }
  .sec-5 .num {
    width: 8rem;
    height: 8rem;
    top: 0.8rem;
    font-size: calc(var(--fs-md) - 0.1rem);
  }
  .sec-5 .num .point {
    font-size: calc(var(--fs-md) + 0.3rem);
  }
  .sec-5 .card {
    padding-top: 6.6rem;
  }
  .sec-6 .flex-wrap {
    padding: 10rem 0 8rem;
  }
  .sec-6 .line-box {
    width: 100%;
    height: 19rem;
  }
  .sec-7 {
    background: url("../img/main/sec-7-kr.png") no-repeat 0% 100%;
    background-size: 258%;
  }
  .sec-7 .flex-wrap {
    padding: 50rem 0 8rem;
  }
  .sec-7 .txt-wrap {
    width: 100%;
  }
  .sec-7 .desc {
    width: 100%;
    line-height: 1.1;
  }
  .sec-8 .last {
    padding: 10rem 0;
  }
  .sec-8 .logo {
    margin-bottom: 4.5rem;
  }
  .sec-8 .top {
    margin-bottom: 4rem;
  }
  .sec-8 .desc {
    word-break: keep-all;
  }
  .sec-8 .desc br {
    display: none;
  }
}
@media all and (max-width: 47.9375rem) {
  .inner {
    padding: 0 2rem;
  }
  .main-visual {
    height: calc(var(--vh, 1vh) * 75) !important;
    max-height: calc(var(--vh, 1vh) * 75) !important;
  }
  .main-visual .fp-tableCell {
    height: 100% !important;
  }
  .main-visual .video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
  }
  .sec-1 {
    z-index: 1;
  }
  .sec-1 .inner {
    padding: 6rem 2rem;
  }
  .sec-1 .icon {
    width: 30%;
  }
  .sec-1 .cont-wrap {
    padding: 0;
  }
  .sec-1 .bg {
    position: static;
    width: calc(100% - 4rem);
    margin: 6rem 2rem 0;
    height: 25rem;
  }
  .sec-1 .bg img {
    width: auto;
    height: auto;
    content: url("../img/main/product2.png");
  }
  .sec-1 .tit {
    margin-top: 2rem;
    font-size: calc(var(--fs-btit) - 0.9rem);
  }
  .sec-1 .tit sup {
    font-size: calc(var(--fs-com) - 0.2rem);
  }
  .sec-1 .s-tit {
    margin-top: 2.4rem;
  }
  .sec-1 .s-tit br {
    display: none;
  }
  .sec-2 .flex-wrap {
    flex-direction: column;
  }
  .sec-2 .left {
    padding-top: 0;
  }
  .sec-2 .left,
  .sec-2 .right {
    width: 100%;
  }
  .sec-2 .right .swiper-pagination {
    bottom: 24rem;
  }
  .sec-3 .flex-wrap {
    padding: 6rem 0;
    gap: 2rem;
  }
  .sec-3 .left .b-desc {
    width: 100%;
    white-space: wrap;
    word-break: keep-all;
    font-size: var(--fs-md);
  }
  .sec-3 .b-desc {
    margin-top: 2rem;
  }
  .sec-4 {
    background: url("../img/main/sec-4.png") no-repeat left top;
    background-size: 200%;
  }
  .sec-4 .flex-wrap {
    flex-direction: column;
  }
  .sec-4 .b-desc {
    margin: 1.5rem 0 4rem;
    line-height: 1.3;
    font-size: var(--fs-md);
  }
  .sec-4 .b-desc br {
    display: none;
  }
  .sec-4 .right {
    padding: 42vh 0 6rem;
  }
  .sec-5 .flex-wrap {
    flex-direction: column;
  }
  .sec-5 .cont-wrap {
    padding: 6rem 0;
  }
  .sec-5 .card {
    padding-top: 4.6rem;
  }
  .sec-5 .num {
    top: 1.8rem;
  }
  .sec-6 .flex-wrap {
    padding: 8rem 0;
  }
  .sec-6 .b-desc {
    margin: 2.5rem 0;
    font-size: calc(var(--fs-md) + 0.2rem);
    line-height: 1.3;
    word-break: keep-all;
  }
  .sec-6 .b-desc br {
    display: none;
  }
  .sec-6 .line-box {
    position: relative;
    height: 55rem;
    padding-bottom: 4rem;
    flex-direction: column;
    justify-content: flex-end;
    padding-left: 0;
    gap: 2rem;
    background: #fff;
  }
  .sec-6 .line-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 13rem;
    height: 100%;
    background: #fff;
    z-index: -1;
    background: url("../img/main/mo1.png") no-repeat;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .sec-6 .line-box:last-of-type {
    background: #fff;
    height: 40rem;
  }
  .sec-6 .line-box:last-of-type::before {
    background: url("../img/main/mo2.png") no-repeat;
  }
  .sec-7 {
    background: url("../img/main/sec-7-kr.png") no-repeat 15% 100%;
    background-size: 415%;
    position: relative;
  }
  .sec-7 .flex-wrap {
    padding: 40rem 0 6rem;
  }
  .sec-7 .txt-wrap .desc {
    width: 100%;
    white-space: wrap;
    font-size: 2.7rem;
    word-break: keep-all;
    line-height: 1.2;
  }
  .sec-7 .txt-wrap .desc br {
    display: none;
  }
  .sec-7 .img-wrap {
    margin-top: 4rem;
    width: 50%;
  }
  .sec-8 .last {
    padding: 8rem 0;
  }
  .sec-8 .logo {
    width: 60%;
    margin: 0 auto 3rem;
  }
  .sec-8 .top {
    margin-bottom: 2rem;
    line-height: 1.2;
  }
}/*# sourceMappingURL=main-pt.css.map */