.swiper {
    width: 100%;
    height: 400px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background:white;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper-pagination{
    position: relative;
    margin-top: 20px;
  }

  .swiper-pagination-bullet{
    border: solid 1px var(--blue);
    background-color: white;
  }
  .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color:var(--blue);
  }