.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  width: 100%;
  height: 100%;
  color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10vmin 15vmax;
  position: relative;
  overflow: hidden;
}

.swiper-slide .bg {
  position: absolute;
  left: -2%;
  top: -2%;
  width: 104%;
  height: 104%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  filter: blur(20px) contrast(.4);
}

.swiper-slide .image {
  max-width: calc(100vh - 200px - 20vh);
  height: calc(100vh - 200px - 20vh);
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 10px 5px;
  margin-right: 3vw;
  align-self: stretch;
}

.swiper-slide .title {
  font-size: 8vmin;
  color: #fff;
  margin-bottom: 20px;
}

.swiper-slide .description {
  font-size: max(1.3vw, 20px);
  line-height: max(1.6vw, 24px);
  color: #ddd;
  text-shadow: 0 1px 20px #000;
  padding-left: 0;
  font-weight: 400;
}

.swiper-slide .btn {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: unset;
  background-color: rgba(255,255,255,.5);
  color: rgba(0,0,0,.6);
}

@media screen and (max-width: 1280px) {
  .swiper-slide .title {
    font-size: 5vw;
  }
  .swiper-slide {
    padding: 10vmin
  }
  .swiper-slide .image {
    max-width: calc(40vh);
    height: calc(100vh - 200px - 20vh);
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 10px 5px;
    margin-right: 3vw;
    align-self: stretch;
  }
}

@media screen and (max-width: 700px) {
  .swiper-slide .title {
    margin-top: 20px;
    font-size: 8vw;
    line-height: 9vw;
    font-weight: bold;
  }
  .swiper-slide {
    padding: 10vw;
  }
  .swiper-slide .image {
    max-width: 100vw;
    width: 90vw;
    height: auto;
    max-height: 40vh;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 10px 5px;
    margin-right: 3vw;
    align-self: stretch;
  }


  .swiper-slide .btn {
    width: 60vw !important;
    margin: 0 auto;
    max-width: 10000000px;
  }

  .swiper-slide .description {
    text-shadow: none;
    font-size: max(2vh, 16px);
    line-height: max(2.1vh, 18.4px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* number of lines to show */
    line-clamp: 6;
    -webkit-box-orient: vertical;
  }
}
