  /* SWIPER SLIDER*/
  .swiper {
    padding-bottom: 38px !important;
    width: 100%;
    height: 100%;
  }
  .swiper-wrapper{
    align-items: center;
  }
  .swiper-slide {
    text-align: left;
    font-size: 18px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition: 0.3s;
  }

  .swiper-slide img {
    max-width: 100%;
    width: auto;
    height:auto; 
    min-height: 100%;
    object-fit: cover;
    margin: auto;
  }
  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    background: #fff;
  }

  @media (max-width: 320px){
  .swiper-slide img {
    width: 15px;
    height: 15px;
}
}

  

