

.slider-item-bg-video {
  position: relative;
  width: 100%;
  height: 75vh; /* O la altura que necesites */
  overflow: hidden;
}


#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover; /* Esto hace que el video se ajuste sin deformarse */
}


