.swiper {
  width: 100%;
  height: 100vh;
}

/* .swiper-slide {
    height: 100%;
    width: 100%;
  } */

.slider-image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  animation: zoomIn 5s infinite linear;
}
@keyframes zoomIn {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 105%;
  }
  100% {
    background-size: 120%;
  }
}
.slider-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.219);
}
.slider-image:hover {
  cursor: grab;
}
.slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white-color);
  filter: brightness(1);
}
.slider-content .slider-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.slider-content .slider-description {
  font-family: "Roboto", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
