.swiper {
    width: 100%;
    height: 100%;
  }
  
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
  
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .swiper-slide img {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #d395ae;
  }
  
  @media (min-width: 768px) {
    .solo {
        display: none;
    }
  }
  
  .duo {
    display: none;
  }
  
  @media (min-width: 768px) {
    .duo {
        display: flex;
    }
  }
  
  @media (min-width: 1024px) {
    .duo {
        display: none;
    }
  }
  
  .trio {
    display: none;
  }
  
  @media (min-width: 1024px) {
    .trio {
        display: flex;
    }
  }
