.wee-slider-section,
.wee-slider-section * {
  box-sizing: border-box;
}

.wee-slider-section {
  position: relative;
  height: 300vh;
  background: white;
}

.wee-slider-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 95px;
}

.wee-slider-container {
  width: 85vw;
  height: 65vh;
  position: relative;
}

/* SLIDES */
.wee-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.wee-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* IMAGE */
.wee-slide-left {
  width: 30%;
  flex: 0 0 30%;
  overflow: hidden;
  border-radius: 25px;
}

.wee-slide-left img {
    width: 100%;
    height: 65vh !important;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08) !important;
    transition: opacity 0.8s ease, transform 1.2s ease;
}

.wee-slide.active .wee-slide-left img {
  opacity: 1;
  transform: scale(1.05);
}

/* TEXT */
.wee-slide-right {
  width: 70%;
  flex: 0 0 55%;
  overflow: hidden;
  position: relative;
}

.wee-slide-right h2 {
  font-family: 'Plus Jakarta Sans';
  font-size: 46px;
  color: black;
  font-weight: 700;
  margin-bottom: 15px;
}

.wee-slide-right p,
.wee-slide-right li {
  font-family: 'Inter';
  font-size: 17px;
  color: black;
  margin-top:5px;
}

ul.wee-list {
  padding-left: 18px;
}

a.wee-btn {
  display: inline-block;
  margin-top: 20px;
  background: #ddc07e;
  color: black;
  padding: 14px 35px;
  border-radius: 150px;
  text-decoration: none;
}

/* PROGRESS */
.wee-slider-progress {
  position: absolute;
  right: 7.5vw;
  bottom: 21vh;
  display: flex;
  gap: 12px;
  z-index: 50;
}

.wee-progress-bar {
  width: 120px;
  height: 5px;
  background: #d6d6d6;
  cursor: pointer;
}

.wee-progress-bar.active {
  background: #ddc07e;
}


/* responsive */
@media screen and (max-width: 1366px) {
  .wee-slider-container {
    width: 90vw;
    height: 65vh;
    position: relative;
}

.wee-slide {
    gap: 80px;
}

.wee-slider-progress {
    bottom: 17vh;
}
}

@media screen and (max-width: 1024px) {
.swiper-slide.swiper-slide-active {
    width: 100% !important;
}
}