@charset "utf-8";
/* 인트로 슬라이드 */
.intro.swiper {
    width: 100%;
    height: 100%;
}

.intro.mySwiper {
    width: 100%;
    height: 100vh;
}

.intro .swiper-slide {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.swiper-slide img.slide_img { /* 슬라이드 이미지 */
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transform: scale(1);
}

.zoom-anim {
    animation: slide_zoom 2s ease-in-out forwards;
}

@keyframes slide_zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.intro .slide_textbox{
    position: relative;
    top: -5%;
    width: 1196px;
    padding: 0 40px;
}

.intro .swiper-slide .slide_title {
    color: #FFF;
    font-size: 50px;
    font-weight: bold;
}
.intro .swiper-slide .slide_sub {
    color: #FFF;
    font-size: 20px;
    font-weight: normal;
    margin-top: 20px;
}

/* 페이지네이션 위치 */
.intro.swiper .swiper-pagination {
    bottom: 90px;
}

.intro .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: #E7E7E7;
}

.intro .swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 50px;
    color: #fff;
    background: #E7E7E7;
    position: relative;
}

.intro .swiper-pagination-bullet-active::after {
    content: "";
    width: 40px;
    height: 8px;
    border-radius: 50px;
    background: #4774FB;
    position: absolute;
    left: 0;
    animation: spt 7s linear;
}
.intro .swiper-pagination-bullet-active.pause::after {
  animation-play-state: paused;
  width: 0px;
  animation: none;
}
.intro .swiper-pagination-bullet-active.running::after {
  animation-play-state: running;
  animation: spt 7s linear;
}

/* swiper-pagination time animation */
@keyframes spt {
    0% {width: 0;}
    100% {width: 40px;}
}

/* 페이지 넘기기 */
.intro .swiper-button-prev {
  color: #fff; border: 1px solid #fff; border-radius: 50px; padding: 0 10px 0 7px; left: -50px; transition: ease all .3s; opacity: 70%; outline-offset: 5px;
}
.intro .swiper-button-next {
  color: #fff; border: 1px solid #fff; border-radius: 50px; padding: 0 7px 0 10px; right: -50px; transition: ease all .3s; opacity: 70%; outline-offset: 5px;
}
.intro .swiper-button-next:after, .intro .swiper-button-prev:after {
  font-size: 18px;
}
.intro:hover .swiper-button-prev,
.intro:focus-within .swiper-button-prev {left: 20px;}
.intro:hover .swiper-button-next,
.intro:focus-within .swiper-button-next {right: 20px;}

@media (max-width: 500px) {
.intro .swiper-button-prev,
.intro .swiper-button-next {display: none;}
}

/* play */
.intro .swiper-button-play-pause {
  position: absolute; bottom: 87px; left: calc(50% + 56px); transform: translateX(-50%); 
  border: none; width: 24px; height: 24px; background: none;
  z-index: 20; text-indent: -9999px; overflow: hidden; 
}
.intro .swiper-button-play-pause::before {content: ""; width: 24px; height: 24px; background: url(../img/intro/stop.svg) center / 18px no-repeat; display: block;  z-index: 20;}
.intro .swiper-button-play-pause.play::before {background-image: url(../img/intro/play.svg);}

/* progress */
.autoplay-progress {
  position: absolute;
  right: 20px;
  bottom: 54px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #4774FB;
}
.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 8px;
  stroke: #4774FB;
  fill: none;
  stroke-dashoffset: calc(48px * (1 - var(--progress)));
  stroke-dasharray: 48;
}
/* ************************ */

/* 스크롤 유도 */
.intro #scroll_down {font-size: 15px; color: #fff; padding-bottom: 50px; position: relative; text-decoration: none; position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); z-index: 500;}
.intro #scroll_down span:nth-of-type(1) {position: absolute; top: 34px; left: 50%; width: 8px; height: 8px; margin-left: -4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; border-bottom-left-radius: 1px; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); -webkit-animation: sdb 1s infinite; animation: sdb 1s infinite; box-sizing: border-box;}

/* scroll_down animation */
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
  50% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  50% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  100% {
    transform: rotate(-45deg) translate(0, 0);
  }
}