.swiper-container {
  height: 500px;
  width: 100%;
}

.swiper-container .swiper-slide {
  text-align: left;
  font-size: 18px;
  display: flex;
  justify-content: flex-start; 
  align-items: center; 
  background-position: center;
  background-color: none
}

.swiper-container .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  width: 100%;
  background-color: none;
  padding-top: 50px;
  padding-bottom: 50px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
 .swiper-button-next,
    .swiper-button-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        content: "\203A"; 
        font-size: 18px;
        color: red;
    }

    .swiper-button-prev::after {
        content: "\2039"; 
    }

    .swiper-button-next {
        right: 10px;
    }

    .swiper-button-prev {
        left: 10px;
    }
    .swiper-slide {
      background-position: center;
      background-size: cover;
      width: 300px;
      height: 300px;
    }
    .swiperr {
      width: 100%;
      height: 100%;
    }

    .swiperr-slide {
      text-align: center;
      font-size: 18px;
      height: calc((100% - 30px) / 2) !important;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiperr-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;}