.video-container2 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 aspect ratio (9 / 16 * 100) */
  overflow: hidden;
}

.video-container2 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-container2 .caption {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 1.2em;
  color: #fff;
}

@media (max-width: 767px) {
  .video-container2 {
    padding-top: 50%;
    /* Adjust as needed for full-height display */
  }

  .video-container2 .caption {
    padding-top: 100%;
    /* Adjust as needed for caption position */
    font-size: 1em;
    /* Adjust font size for mobile */
  }

  .video-container2 .caption {
    position: absolute;
    z-index: 1;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Roboto", sans-serif;
    text-align: center;
    font-size: 2.2em;
    color: #fff;
  }
}