 .swiper {
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .swiper-slide {
      background-position: center;
      background-size: cover;
      width: 300px;
      height: 450px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
    }

    .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
    }

    .swiper-slide h2 {
      color: #fff;
      font-size: 12pt;
      background: rgba(0, 0, 0, 0.8);
      width: 100%;
      text-align: center;
      padding: 10px;
      margin: 0;
        z-index: 1;
      border-radius: 0 0 15px 15px;
    }

    .swiper-slide-active img {
      transform: scale(1.1);
      transition: transform 0.5s ease-in-out;
    }

    @media (max-width: 768px) {
      .swiper-slide {
        width: 90%;
        height: auto;
        aspect-ratio: 3/4;
      }

      .swiper-slide h2 {
        font-size: 1.2rem;
        padding: 8px;
      }

    }
 .btn-6{
     color: #FFFFFF;
 }