.module-page-video-02 .inset {
  position: relative;
  padding: 0;
}

.module-page-video-02 .ratio {
  --bs-aspect-ratio: calc(4 / 3 * 100%);
}

@media (min-width:768px) {
  .module-page-video-02 .ratio {
    --bs-aspect-ratio: calc(9 / 16 * 100%);
  }
}

.module-page-video-02 .video-container {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  z-index: 0;
}

.module-page-video-02 video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  object-fit: cover;
  max-width: 100%;
  height: 100%;
}

.module-page-video-02 .thumbnail {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  z-index: 1;
}

.module-page-video-02 .thumbnail img {
  height: 100%;
}

.module-page-video-02 .custom-play-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
}

.module-page-video-02 .custom-play-button .icon {
  width: 3rem;
  height: 3rem;
  color: #fff;
}

.module-page-video-02 .custom-play-button .icon:hover {
  color: var(--tb-primary-base);
}