html:root{
    --swiper-theme-color: --primary;
}

.swiper{
    margin-bottom: 50px;
  }
  
  .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: flex;
    justify-content: center;
  }
  
  .swiper-slide-text-container{
    position: absolute;
    height: 100%;
    display: flex;
    justify-content: start;
  }
  
  .swiper-slide-text{
    
    background: rgba(0, 0, 0, .5);
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end;
    /* width: 400px; */
    padding: 30px;
    row-gap: 10px;
  }
  
  .swiper-slide-text h3{
    margin-bottom: 0;
  }
  
  .swiper-slide-text a{
    margin-top: 15px;
    color: #fff;
    text-decoration: none;
  }
  
  .swiper-slide img{
    height: 480px;
    object-fit: contain;
  }
  
  @media (min-width: 768px) {
    .swiper-slide-text{
      justify-content: start;
    }
  }
  
  @media (min-width: 576px) {
    .swiper-slide img{
      height: 580px;
    }
  }