.swiper {
    width: 100%;
    height: 100%;
    padding: 12px;
  }

  .swiper-slide {
    text-align: left;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper-button-next {
    top: 50%;
    /* right: 0px !important; */
  }

  .swiper-button-prev {
    top: 50%;
    /* left: 0px !important; */
  }

  .swiper-button-next::after {
    color: transparent;
  }

  .swiper-button-prev::after {
    color: transparent;
  }

  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--red);
  }

