.video-custom--container {
  display: block;
  height: auto;
  max-height: 520px;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  position: relative;

  @media screen and (min-width: 768px) {
    max-height: 720px;
  }

  video {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

