
.swiper-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
}

.swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.swiper-slide img {
 /* object-fit: cover; */
  max-width: 100%;
  height: auto;
}

.swiper-pagination {
  position: sticky;
  /* bottom: 10px !important; */
}

/* Ensure no extra padding or margin on smaller screens */
@media screen and (max-width: 768px) {
  .swiper-container {
  /*  margin-top: 16px; */
  /*  height: 400px; */ /* Adjust height on smaller screens */
  }
  .swiper-slide img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 1024px) {
  .swiper-container {
  /*  width: 60%; */
  }
}

@media (min-width: 1200px) {
  .swiper-slide img {
    object-fit: cover;
  }
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  bottom: 20px;
  color: #fff;
  background-color: #000;
  border-radius: 50%;
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button-prev::after,
.swiper-button-next::after{
font-size: 16px;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

