/* 스와이퍼 */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 페이지네이션 */
.swiper-pagination {
  bottom: 0 !important;
  z-index: 2 !important;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: #000 !important;
  opacity: 0.1 !important;
  margin: 0 6px !important;
}

.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 32px !important;
  border-radius: 999px !important;
}

/* 이전, 다음 버튼 */
.swiper-button-prev,
.swiper-button-next {
  transform: translateY(-25%) !important;
  width: 80px !important;
  height: 80px !important;
  z-index: 3 !important;
  background-size: contain;
}

.swiper-button-prev {
  left: 20px !important;
  right: auto !important;
  background: url('../img/arrow-left.svg') no-repeat center center / contain !important;
}

.swiper-button-next {
  right: 20px !important;
  left: auto !important;
  background: url('../img/arrow-right.svg') no-repeat center center / contain !important;
}

.swiper-button-prev::after, 
.swiper-button-next::after {
  display: none !important;
}

@media (max-width: 1279px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 4px !important;
    height: 4px !important;
    margin: 0 6px !important;
  }

  .swiper-pagination .swiper-pagination-bullet-active {
    width: 14px !important;
  }

  .swiper-button-prev,
  .swiper-button-next {
    transform: translateY(0) !important;
    width: 40px !important;
    height: 40px !important;
  }
}

@media (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
  }

}


