<!-- start Simple Custom CSS and JS -->
<style type="text/css">
.video-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}


.video-carousel video {
  width: 100vw;
  height: auto;
  display: none;
}


.video-carousel video.active {
  display: block;
}

.video-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
}

.prev-button {
  left: 10px;
}

.next-button {
  right: 10px;
}
</style>
<!-- end Simple Custom CSS and JS -->
