.swiper-wrapper {
    display: flex;
    transition: transform 1s cubic-bezier(.4,0,.2,1);
  }
  
  .swiper-slide {
    min-width: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(.9);
    opacity: .5;
    transition: .8s;
  }
  
  .swiper-slide.active {
    transform: scale(1);
    opacity: 1;
  }
  