.video-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.video-track {
  display: flex;
  transition: transform .4s ease-in-out;
}

.video-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  border: 0;
}

/* buttons */
.video-prev,
.video-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 6px 14px;
  cursor: pointer;
}
.video-prev{ left: 10px; }
.video-next{ right: 10px; }
.video-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:10px;
}
.video-dots span{
  width:2px;
  height:2px;
  border-radius:50%;
  border:0;
  background:#ccc;
  cursor:pointer;
  display: inline-block;
}

.video-dots span.active{
  background:#333;
}