.zoomOut img {
  transition: transform 7s ease-in-out;
}

.zoomOut.swiper-slide-active img {

}

.caption {
  color: #fff;
  font-family: "Zalando Sans Expanded", sans-serif;
  left: 50%;
  font-weight: bold;
  position: absolute;
  text-align: center;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.80);
  top: calc(50% - 40px);
  transform: translateX(-50%) translateY(-50%);
  width: 80%;
  z-index: 5;
}

.swiper {
  width: 100%;
}

figure {
  position: relative;
  padding-top: calc(50%);
  overflow: hidden;
  z-index: 2;
}

figure img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  object-position: bottom;
  z-index: 1;
}

.swiper-slide-active .caption .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

.caption div:nth-of-type(1) {
  font-weight: 400;
  font-style: normal; 
  animation-delay: 1s;
  margin-bottom: 0.5em;
}

.caption div:nth-of-type(2) {
  color: #fff;
  animation-delay: 2s;
}

.swiper-pagination-bullet {
  --swiper-theme-color: rgb(187, 187, 187);
  --swiper-pagination-bullet-width: 4px;
  --swiper-pagination-bullet-height: 4px;
  --swiper-pagination-bullet-border-radius: none;
  transition: .5s;
}

.swiper-pagination-bullet-active {
  --swiper-pagination-bullet-width: 20px;
}