@charset "utf-8";



@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(-20px);
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
    transform: translateY(-20px);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes fade-in-bg {
  from {background-color:#00000080} to {background-color:#0000000e}
}
@keyframes fade-out-bg {
  from {background-color:#00000025} to {background-color:#00000080}
}
.swiper-container {
  width: 100%;
  height: 350px;
  margin-top: 0px;
}
.swiper-container .swiper-wrapper .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  background-color:#00000080;
  background-blend-mode:darken;
}
.swiper-container .swiper-wrapper .swiper-slide p {
  opacity:0;
  position: absolute;
  bottom: -2%;
  left: 6%;
  padding-right:6%;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow:0 0 4px black;
}
.swiper-container .swiper-wrapper .swiper-slide-active p {
  animation-name: fade-in;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: both;
}
.swiper-container .swiper-wrapper .swiper-slide-prev p {
  animation-name: fade-out;
  animation-duration: 0.3s;
  animation-delay: 0s;
  animation-fill-mode: both;
}
.swiper-container .swiper-wrapper .swiper-slide-active {
  animation-name: fade-in-bg;
  animation-duration: 1.5s;
  animation-delay: 0s;
  animation-fill-mode: both;
}
.swiper-container .swiper-wrapper .swiper-slide-prev {
  animation-name: fade-out-bg;
  animation-duration: 1.5s;
  animation-delay: 0s;
  animation-fill-mode: both;
}
