body{
  overflow-x: hidden;
}
.slider-section {
  overflow: hidden;
  padding-right: 64px; /* desktop preview */
}

#sliderTrack {
  display: flex;

  will-change: transform;
}

.slide {
  flex: 0 0 calc(50% - 2.5px);
  padding-right: 5px;
}

.slide img {
  width: 100%;
  height: 664px;
  object-fit: cover;
}

/* ✅ MOBILE */
@media (max-width: 768px) {

  .slider-section {
    padding-right: 10px;
    margin-top: -78px;
  }

  .slide {
    flex: 0 0 calc(100% - 10px);
  }

  .slide img {
   height: 436px;
   width: 100%;
  }
  button[onclick="prevSlide()"],
  button[onclick="nextSlide()"] {
    display: none;
  }

}
.swiper-button-prev:after,
.swiper-button-next:after {
  
    font-size: 25px !important;
  
}
.main-pagination {
  position: static !important;
  width: auto !important;
  color: black;
}
.image-pagination{
   margin-bottom: 20px;
}
.imageSlider .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  opacity: 1;
 
}
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: black !important;
}

.imageSlider .swiper-pagination-bullet-active {
  background: #ffffff !important;
}


@media(max-width:1024px){
  .tablet-container{
    flex-direction: column !important;
  }
}

