@charset "utf-8";

/*
 * main.css
 * 메인영역 삽입 추가하시면됩니다. 아래 커스텀진행하세요.
 *
 * 1) main visual
 * 
 */

/* 1) main visual */
[data-mainVisual] {
  position: relative;
  height: 100vh;
}
[data-mainVisual]:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, var(--wrap-color), transparent);
  z-index: 1;
}
[data-mainVisual] .visual-list {
  height: 100%;
}
/* text */
[data-visual="text"] {
  display: flex;
  flex-direction: column;
  gap: 25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  max-width: 1700rem;
  width: 92%;
  box-sizing: content-box;
  color: #fff;
  transform: translate(-50%, -50%);
}
[data-visual="text"] strong {
  font-size: 18rem;
  color: #99bbff;
  font-weight: 500;
}
[data-visual="text"] em {
  font-size: 80rem;
  font-weight: bold;
  font-family: var(--font-eng);
  text-transform: uppercase;
  text-shadow: 5rem 5rem 15rem rgba(0, 0, 0, 0.5);
}
[data-visual="text"] span {
  margin-top: 25rem;
  font-size: 24rem;
  line-height: 1.6;
  font-weight: 300;
}
[data-visual="text"] :is(strong, em, span) {
  opacity: 0;
  transform: translateY(30rem);
  transition: 2s ease 0s;
  transition-property: opacity, transform;
  word-break: keep-all;
}
/* img */
[data-visual="img"] {
  overflow: hidden;
  display: block;
  height: 100%;
}
[data-visual="img"] img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  transition: transform 7000ms linear;
}
/* active motion */
[data-visual="img"].motion__in img {
  transform: scale(1);
}
[data-visual="text"].motion__in :is(strong, em, span) {
  opacity: 1;
  transform: translateY(0rem);
}
[data-visual="text"].motion__in strong {
  transition-delay: 0.15s;
}
/*[data-visual="text"].motion__in em{transition-delay:0.3s;}*/
[data-visual="text"].motion__in span {
  transition-delay: 0.45s;
}
/* control */
[data-mainVisual] .swiper-page {
  --swiper-theme-color: #fff;
  --swiper-pagination-bullet-inactive-color: #eee;
  position: absolute;
  bottom: 50rem;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  width: auto;
}
[data-mainVisual] .swiper-control {
  display: flex;
  align-items: stretch;
  position: absolute;
  bottom: 30rem;
  right: 50rem;
  z-index: 10;
}
[data-mainVisual] button {
  --sizeWid: 60rem;
  opacity: 0.6;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--sizeWid);
  height: var(--sizeWid);
  background-color: transparent;
  transition: opacity 0.3s ease;
}
[data-mainVisual] button[class*="swiper_"] {
  color: #fff;
}
[data-mainVisual] button[class*="swiper_"] span {
  font-size: 0;
}
[data-mainVisual] button[class*="swiper_"] i {
  font-size: 25rem;
}
[data-mainVisual] button:hover {
  opacity: 1;
}
[data-mainVisual] .swiper-slide {
  isolation: isolate;
}
[data-mainVisual] .visual-player {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: auto;
  height: 100vmax;
  aspect-ratio: 16/9;
  translate: -50% -50%;
  user-select: none;
  pointer-events: none;
}
@media (max-width: 1440px) {
  /* text */
  [data-visual="text"] {
    box-sizing: border-box;
  }
}
@media (max-width: 1024px) {
  /* text */
  [data-visual="text"] em {
    font-size: clamp(50rem, 6.836vw, 70rem);
  }
}
@media (max-width: 768px) {
  /* control */
  [data-mainVisual] .swiper-control {
    right: 10rem;
  }
}
@media (max-width: 480px) {
  /* text */
  [data-visual="text"] strong {
    font-size: 16rem;
  }
  [data-visual="text"] em {
    font-size: 40rem;
  }
  [data-visual="text"] span {
    font-size: 18rem;
  }
  /* control */
  [data-mainVisual] .swiper-page {
    bottom: 30rem;
    left: 10rem;
    transform: translateX(0);
  }
  [data-mainVisual] .swiper-control {
    bottom: 15rem;
  }
  [data-mainVisual] button {
    --sizeWid: 50rem;
  }
  [data-mainVisual] button[class*="swiper_"] i {
    font-size: 20rem;
  }
}

/* main common */
main#content {
  position: relative;
  background: url("/images/main/main_wrap_bg.png") no-repeat center
    bottom/contain;
}
section {
  position: relative;
  overflow: hidden;
}
.mainTit {
  margin-bottom: 100rem;
}
.mainTit h2 {
  font-size: var(--fs55);
  font-family: var(--font-eng);
  color: #fff;
  line-height: 1.3;
}
.mainTit p {
  margin-top: 40rem;
  font-size: var(--fs22);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .mainTit {
    margin-bottom: 80rem;
  }
  .mainTit p {
    margin-top: 30rem;
  }
}
@media (max-width: 768px) {
  .mainTit {
    margin-bottom: 50rem;
  }
  .mainTit p {
    margin-top: 20rem;
  }
}
@media (max-width: 480px) {
  main#content {
    background-size: 170%;
  }
  .mainTit {
    margin-bottom: 35rem;
  }
  .mainTit p {
    margin-top: 15rem;
    font-size: var(--fs20);
  }
}

/* data */
.data {
  padding-top: 180rem;
}
.data .mainTit {
  text-align: center;
}
.data .mainTit h2 {
  font-weight: 600;
}
.data .mainTit p > br {
  display: none;
}
.dataList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.dataList li:nth-child(2) {
  transition-delay: 0.2s;
}
.dataList li:nth-child(3) {
  transition-delay: 0.4s;
}
.dataList li .count {
  display: block;
  margin-bottom: 20rem;
  padding: 0 10rem;
  font-size: 80rem;
  font-family: var(--font-eng);
  font-weight: bold;
  color: #fff;
  line-height: 1;
  text-align: center;
}
.dataList li em {
  display: block;
  font-size: var(--fs18);
  font-family: var(--font-eng);
  line-height: 1.4;
  color: var(--color-point2);
  text-align: center;
}
@media (max-width: 1024px) {
  .data {
    padding-top: 120rem;
  }
}
@media (max-width: 768px) {
  .data {
    padding-top: 100rem;
  }
  .dataList li .count {
    margin-bottom: 15rem;
    font-size: 32rem;
  }
}
@media (max-width: 480px) {
  .data {
    padding-top: 70rem;
  }
  .data .mainTit p > br {
    display: block;
  }
  .dataList {
    grid-template-columns: 1fr;
    gap: 30rem;
  }
  .dataList li:nth-child(2) {
    transition-delay: 0s;
  }
  .dataList li:nth-child(3) {
    transition-delay: 0s;
  }
  .dataList li .count {
    margin-bottom: 5rem;
    font-size: 32rem;
  }
}

/* biz */
.biz {
  padding: 280rem 0 300rem;
}
.biz .marquee {
  display: flex;
  position: absolute;
  left: 0;
  top: 140rem;
  overflow: hidden;
  width: 100%;
  opacity: 0.1;
}
.biz .marquee:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--wrap-color), transparent);
}
.biz .marqueeWrap {
  flex: none;
  display: flex;
}
.biz .marqueeWrap_holder {
  flex: none;
  align-items: center;
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 1000s linear infinite;
  font-size: 180rem;
  font-family: var(--font-eng);
  font-weight: 900;
  color: #fff;
}
.biz .inr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.biz .mainTit {
  width: 100%;
}
.bizPr_tit {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20rem;
  font-family: var(--font-eng);
  font-weight: 600;
}
.bizPr_tit i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40rem;
  aspect-ratio: 1/1;
  background: var(--color-point);
}
.bizPr_tit em {
  display: block;
  margin-top: 4rem;
  padding-left: 20rem;
  width: calc(100% - 40rem);
  font-size: var(--fs25);
  line-height: 1.4;
}
.bizPr_img a {
  display: block;
  position: relative;
}
.bizPr_img a i {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.bizPr_img a i:before,
.bizPr_img a i:after {
  content: "";
  display: block;
  position: absolute;
}
.bizPr_img a i.line1:before {
  left: 0;
  top: 0;
  width: 60%;
  height: 3rem;
  background: linear-gradient(to right, var(--color-point), transparent);
}
.bizPr_img a i.line1:after {
  left: 0;
  top: 0;
  width: 3rem;
  height: 60%;
  background: linear-gradient(to bottom, var(--color-point), transparent);
}
.bizPr_img a i.line2:before {
  right: 0;
  bottom: 0;
  width: 60%;
  height: 3rem;
  background: linear-gradient(to left, var(--color-point), transparent);
}
.bizPr_img a i.line2:after {
  right: 0;
  bottom: 0;
  width: 3rem;
  height: 60%;
  background: linear-gradient(to top, var(--color-point), transparent);
}
.bizPr_img a img {
  display: block;
  width: 100%;
}
.bizPr1 {
  width: calc(50% - 20rem);
}
.bizPr-swiper {
  margin-top: 60rem;
  overflow: visible;
  width: 100%;
}
.bizPr-swiper .swiper-wrapper {
  height: auto;
}
.bizPr-swiper .swiper-scrollbar {
  position: relative;
  margin-top: 30rem;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
}
.bizPr-swiper .swiper-scrollbar-drag {
  background: rgba(255, 255, 255, 0.3);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-70%);
  }
}
@media (max-width: 1024px) {
  .biz {
    padding: 180rem 0 200rem;
  }
  .biz .marquee {
    top: 100rem;
  }
  .biz .marqueeWrap_holder {
    font-size: 120rem;
  }
}
@media (max-width: 768px) {
  .biz {
    padding: 120rem 0 150rem;
  }
  .biz .marquee {
    top: 50rem;
  }
  .biz .marqueeWrap_holder {
    font-size: 100rem;
  }
  .bizPr_tit i {
    width: 35rem;
  }
  .bizPr_tit em {
    margin-top: 6rem;
    padding-left: 10rem;
    font-size: var(--fs22);
  }
  .bizPr1 {
    width: calc(50% - 10rem);
  }
  .bizPr-swiper {
    margin-top: 40rem;
  }
}
@media (max-width: 480px) {
  .biz {
    padding: 100rem 0;
  }
  .biz .marquee {
    top: 60rem;
  }
  .biz .marqueeWrap_holder {
    font-size: 60rem;
    animation: marquee 800s linear infinite;
  }
  .biz .inr {
    display: block;
  }
  .bizPr_tit {
    margin-bottom: 15rem;
  }
  .bizPr_tit i {
    width: 32rem;
  }
  .bizPr_tit em {
    margin-top: 5rem;
  }
  .bizPr1 {
    margin-bottom: 40rem;
    width: 100%;
  }
  .bizPr-swiper {
    margin-top: 0;
  }
}
