
.image-slider-section {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  
.image-slider-section .image-slider-container {
    width: 100%;
}
  
  .image-slider-section .swiper-slide {
    width: 100%;
    height: 500px;
  }
  
  .image-slider-section .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .image-slider-section #next-btn,
  .image-slider-section #prev-btn {
    display: none;
    transition: all 0.3s ease-in-out;
  }
  
  .image-slider-section:hover #next-btn,
  .image-slider-section:hover #prev-btn {
    display: block;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
  }
  
  .image-slider-section #next-btn:hover,
  .image-slider-section #prev-btn:hover {
    background: #000;
    transition: all 0.3s ease-in-out;
  }
  
  .image-slider-section #next-btn::after,
  .image-slider-section #prev-btn::after {
    font-size: 15px;
    color: #fff;
    display: block;
    line-height: 40px;
    text-align: center;
  }


  .image-slider-section .swiper-wrapper{
    height: max-content;
  }
  
  @media screen and (max-width: 1024px) {
    .image-slider-section .swiper-slide {
      height: 380px;
    }
  }
  
  @media screen and (max-width: 599px) {
    .image-slider-section .swiper-slide {
      height: 200px;
    }
  }
    