.slideshow-video-container {
  position: relative;
  width: 100%;
  height: 100vh;
}
.slideshow-video-container .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  z-index: 0;
}
.slideshow-video-container .slide.active {
  opacity: 1;
  z-index: 1;
}
.slideshow-video-container .slide.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slideshow-video-container .slide.video-slide .slide-texts {
  position: absolute;
  top: 40%;
  left: 8%;
  z-index: 3;
  color: white;
}
.slideshow-video-container .slide.video-slide .slide-texts h1, .slideshow-video-container .slide.video-slide .slide-texts h3 {
  color: white;
}
.slideshow-video-container .slide.video-slide .slide-texts .delay-1 {
  animation-delay: 1s;
}
.slideshow-video-container .slide.video-slide .slide-texts .delay-2 {
  animation-delay: 2s;
}
.slideshow-video-container .slide.video-slide .slide-texts .delay-3 {
  animation-delay: 3s;
}
.slideshow-video-container .slide.video-slide .slide-texts .delay-4 {
  animation-delay: 4s;
}
.slideshow-video-container .slide.video-slide .slide-texts .delay-5 {
  animation-delay: 5s;
}
@media (max-width: 768px) {
  .slideshow-video-container .slide.video-slide .slide-texts h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .slideshow-video-container .slide.video-slide .slide-texts h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
}
.slideshow-video-container .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  z-index: 2;
}
.slideshow-video-container .nav.prev {
  left: 20px;
}
.slideshow-video-container .nav.next {
  right: 20px;
}
@media (max-width: 768px) {
  .slideshow-video-container .nav.prev {
    display: none;
  }
  .slideshow-video-container .nav.next {
    display: none;
  }
}
.slideshow-video-container .dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}
.slideshow-video-container .dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.slideshow-video-container .dots .dot.active {
  background-color: #717171;
}

.text-fade, .slideshow-video-container .slide.video-slide .slide-texts h1, .slideshow-video-container .slide.video-slide .slide-texts h3 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=slideshow-video.css.map */