 
        .mySwiper {
             padding: 80px 0;
             margin-left: 0;
             margin-right: 0;
    
             overflow-y: hidden;
          }
    
    
          .swiper {
             width: 100%;
             position: relative;
    
             -webkit-mask-image: linear-gradient(to right,
                   rgba(0, 0, 0, 0) 0%,
                   rgba(0, 0, 0, 1) 15%,
                   rgba(0, 0, 0, 1) 85%,
                   rgba(0, 0, 0, 0) 100%);
             mask-image: linear-gradient(to right,
                   rgba(0, 0, 0, 0) 0%,
                   rgba(0, 0, 0, 1) 15%,
                   rgba(0, 0, 0, 1) 85%,
                   rgba(0, 0, 0, 0) 100%);
          }
    
          .swiper-wrapper {
             display: flex;
             align-items: center;
          }
    
    
          .swiper-slide {
             transition: transform 0.3s ease, opacity 0.3s ease;
             transform: scale(1.85);
             opacity: 0.6;
          }
    
          .swiper-slide-active {
             transform: scale(1.9);
             opacity: 1;
             z-index: 10;
          }
    
    
          .swiper-slide {
    
             width: 280px;
             transition: all 0.4s ease;
             filter: brightness(1.1);
             margin-top: -50px;
          }
    
    
    
          .swiper-slide img {
             display: block;
             width: 100%;
             border-radius: 15px;
             -webkit-box-reflect: below 10px linear-gradient(transparent, transparent, rgba(255, 255, 255, 0.2));
          }
    
    
          .hero-prev::after,
          .hero-next::after {
             font-size: 20px !important;
             font-weight: bold;
          }
    
          .hero-prev,
          .hero-next {
             width: 40px;
             height: 40px;
             color: #fff !important;
          }
    
          .hero-pagination .swiper-pagination-bullet {
             background: #fff !important;
             opacity: 0.5;
          }
    
          .hero-pagination .swiper-pagination-bullet-active {
             opacity: 1;
             width: 12px;
             border-radius: 5px;
          }
