.video-section {
  position: absolute;
  background-position: center;
  /* overflow: hidden; */
  background-size: cover;
  background-size: cover;
  width: 100%;
  height: 100vh;
  background-position: center center;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#background-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  /* height: 100vh; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Media Queries que permite ocualtar el video en pantallas pequeñas */
@media (max-width: 768px) {
#background-video {
  display: none;
}

}