.video-carousel-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
  opacity: 0;
}
@media (max-width: 700px) {
  .video-carousel-wrapper {
    width: 80%;
  }
}

.video-carousel {
  display: flex;
  gap: 20px;
}
.video-carousel video {
  max-height: 400px;
}
@media (max-width: 700px) {
  .video-carousel video {
    min-height: 550px;
  }
}

.video-slide {
  background-color: rgba(0, 0, 0, 0.4);
  min-width: 300px;
}
@media (max-width: 700px) {
  .video-slide {
    min-width: 90%;
    background-color: transparent;
  }
}

.video-carousel-wrapper {
  position: relative;
}

.carousel-arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: calc(50% - 20px);
  right: -3%;
  width: 106%;
  z-index: 9;
  pointer-events: none;
}
@media (max-width: 700px) {
  .carousel-arrows {
    width: 90%;
    width: 116%;
    right: -8%;
  }
}
.carousel-arrows img {
  height: 30px !important;
}
.carousel-arrows .carousel-arrow {
  pointer-events: all;
}/*# sourceMappingURL=custom.css.map */