<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.banner-area-2 {
    position: relative;
    background-color: black;
    height: calc(100vh);
    min-height: 700px;
    width: 100%;
    overflow: hidden;
}
  
/* .banner-area-2 iframe {
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  } */
  
.banner-area-2 .container {
  position: relative;
  z-index: 9;
}
.banner-area-2 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: unset;
  opacity: 0.5;
  z-index: 2;
}
.banner-area-2 .banner-content {
  padding: 17rem 0;
  z-index: 99;
  text-align:center;
}
.banner-content h1 {
  font-size: 45px;
  font-family: 'Bakerie-Rough-Bold';
  color: #fff;
  text-shadow: 1px 2px #c82020;
  margin-top: 10%;
}
.banner-area-2 .banner-content p {
  margin-bottom: 40px;
  -webkit-animation: 0.9s fadeInUpBig;
  animation: 0.9s fadeInUpBig;
  max-width: 700px;
  font-weight: 600;
  color: #fff;
}
.banner-content {
  max-width: 100%;
}
/* .banner-area-2 .video-container {
  width: 100vw;
  height: 100vh;
} */
iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media (min-aspect-ratio: 16/9) {
  .banner-area-2 .video-container iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}
    
@media (max-aspect-ratio: 16/9) {
  .banner-area-2 .video-container iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}</pre></body></html>