/**
 * UI Initiative Carousel Slider
 *
 * Infinite 3D carousel slider
 *
 * https://uiinitiative.com
 *
 * Copyright 2023 UI Initiative
 *
 * Released under the UI Initiative Regular License
 *
 * December 27, 2023
 */

#appEf {

}

:root {
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-inactive-color: #fff;
}

.swiper-carousel {
  padding-bottom: 32px;
  max-height:350px;
  max-width: 100vw;
  margin-bottom: 20px;
}
.swiper-carousel .swiper-slide {
  width: 100%;
  border-radius: 8px;
  background: #18212b;
  max-width: calc(100% - 48px);
}
.swiper-carousel .swiper-carousel-animate-opacity {
  height: 100%;
}
.swiper-carousel .swiper-pagination-bullets {
  bottom: 0;
}
.swiper-carousel img {
  width: 100%;
  max-height: 35vh;
  overflow: hidden;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}


.swiper-carousel .slide-content {
  position: absolute;
  left: 0;
  height: unset;
  width: 100%;
  bottom: 0;
  padding: 16px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  border-radius: 0 0 8px 8px;
}
.swiper-carousel .slide-content h2 {
  margin: 0;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.1;
}
.swiper-carousel .slide-content p {
  margin: 8px 0 0;
  opacity: 0.65;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 640px) {
  .swiperEf-carousel .swiperEf-button-next,
  .swiperEf-carousel .swiperEf-button-prev {
    display: none !important;
  }

  .swiper-carousel img {
    width: 100%;
    max-height: 18vh;
    overflow: hidden;
    display: block;
    object-fit: cover;
    border-radius: 8px;
  }
}

.swiperEf-pagination {

}

@media (min-width: 1024px) {

  .swiper-carousel img {
    max-height: 25vh;
  }
}

@media (min-width: 1200px) {

  .swiper-carousel img {
    max-height: 25vh;
  }
}

@media (min-width: 1440px) {

  .swiper-carousel img {
    max-height: 25vh;
  }
}

@media (min-width: 1920px) {

  .swiper-carousel img {
    max-height: 30vh;
  }
}