.homepage-video-module {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fcf4dbff;
}
/* new update */
.homepage-video-module .homepage-video-controls {
	position: absolute;
    right: 20px;
    bottom: 20px;
}
/* end update */

.homepage-video-wrapper {
  position: relative;
  width: 100%;
  /* 16:9 -> 9/16*100 = 56.25% */
  padding-top: 56.25%;
  /* background: #000; */
  overflow: hidden;
}

.homepage-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.homepage-video:not([src]) {
  opacity: 0;
}

@media (max-width: 768px) {
  .homepage-video-module {
    border-radius: 4px;
    height: 40vh;
  }
  .homepage-video {
    height: 50vh;
  }
}

@media (max-width: 480px) {
  .homepage-video-module {
    height: 30vh;
  }
  .homepage-video {
    height: 30vh;
  }
}
