
  .custom-video-wrapper {
    width: 100%;
    height: 800px;
    overflow: hidden;
    position: relative;
  }

  .custom-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media screen and (max-width: 768px) {
    .custom-video-wrapper {
      height: 300px;
    }
    .custom-video {
      height: 300px;
    }
  }
