.swiper-container {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
  }

  .swiper-slide {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center; 
    width: 100%;
    height: 100%;
  }
 
  .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 80vh
  }

.swiper-wrapper {
  display: flex !important;
  flex-direction: row;
}

.swiper-pagination {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
}

.swiper-pagination-bullet {
  width: 16px; 
  height: 16px; 
  background: #000; 
  opacity: 0.7; 
  margin: 0 5px;
  border-radius: 50%; 
}

.swiper-pagination-bullet-active {
  background: #fff; 
  border: 2px solid #000;
  opacity: 1;
}
