/* Start Banner */
.banner {
  position: relative;
  min-height: calc(100vh - 80px);
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 0;
  overflow: hidden;
}
.banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.video-banner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  aspect-ratio: 16 / 9;
  pointer-events: none;
  object-fit: cover;
}
.banner .content {
  position: relative;
  max-width: 80%;
  margin: 25px auto;
  z-index: 2;
}
/* End Banner */

/* Start Video Gallery */
.video-gallery .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  grid-gap: 25px;
}
.video-gallery .box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-gallery iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
@media screen and (max-width: 535px) {
  .video-gallery .container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
/* End Video Gallery */