/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 02 2026 | 11:51:42 */
.banner-strip {
  background: #fff;
  padding: 40px 0;
  width: 100%;
}

.banner-strip-inner {
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
  overflow: visible; 
}

.banner-strip-swiper {
  overflow: hidden;
}

.banner-strip-swiper .swiper-slide {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-strip-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1200px) {
  .banner-strip-swiper .swiper-slide {
    height: 350px;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .banner-strip-swiper .swiper-slide {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .banner-strip {
    padding: 20px 0;
  }
  .banner-strip-swiper .swiper-slide {
    height: 280px;
  }
}

.banner-strip-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
}

.banner-strip-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  cursor: pointer;
  z-index: 20;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
}

.banner-strip-nav:hover {
  color: #999;
}
.banner-strip-prev {
  left: -26px;
}
.banner-strip-next {
  right: -26px;
}

@media (max-width: 1400px) {
  .banner-strip-inner {
    padding: 0;
  }
  .banner-strip-swiper img {
    width: 100%;
    max-width: none;
  }
  .banner-strip-prev {
    left: 10px;
  }
  .banner-strip-next {
    right: 10px;
  }
  .banner-strip-nav{
    width:34px;
    height:34px;
    font-size:18px;
	background: rgba(255,255,255,0.7);
  }
}
.banner-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 이미지 */
.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

/* 어두운 오버레이 */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
}

/* 제목 텍스트 */
.banner-overlay h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  transform: translateY(10px);
  transition: transform .35s ease;
  padding: 0 20px;
}
.banner-text {
  text-align: center;
}

/* 버튼 */
.banner-btn {
  display: inline-block;
  margin-top: 5px;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 30px;
  text-decoration: none;
  transition: all .3s ease;
}

/* 버튼 Hover */
.banner-btn:hover {
  background: #fff;
  color: #000;
}

/* =========================
   Hover (마우스 가능한 기기)
========================= */
@media (hover: hover) {

  .banner-overlay {
    opacity: 0;
  }

  .banner-item:hover img {
    transform: scale(1.05);
  }

  .banner-item:hover .banner-overlay {
    opacity: 1;
  }

  .banner-item:hover .banner-overlay h3 {
    transform: translateY(0);
  }
}

/* =========================
   Mobile (hover 없는 기기)
========================= */
@media (hover: none) {

  .banner-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(0,0,0,.6),
      rgba(0,0,0,.1)
    );
    align-items: flex-end;
    padding-bottom: 20px;
  }

  .banner-overlay h3 {
    font-size: 18px;
    transform: none;
  }
}
