

/** REMOVE ELEMENTS **/
.header-wrapper,
.advert-banner,
.footer-wrapper {
  display:none !important;
}



/** LANDING PAGE **/
html,
body,
.LandingPage {
  width:100%;
  height:100%;
  height:100vh;
  margin:0px;
  padding:0px;
  position: relative;
}
html {
  background:#000000 url(backgrounds/landing-poster.jpg) no-repeat 50% 50%;
  background-size:cover;
}
.LandingPage {
  position:relative;
  z-index:2;
  display:table;
  width:100%;
  height:100vh;
  height:100%;
  -webkit-background:rgba(0, 0, 0, 0.5);
  -moz-background:rgba(0, 0, 0, 0.5);
  -ms-background:rgba(0, 0, 0, 0.5);
  -o-background:rgba(0, 0, 0, 0.5);
  background:rgba(0, 0, 0, 0.5);
}
.LandingPage .LandingPage-spacing {
  display:table-cell;
  vertical-align:middle;
}
.LandingPage .LandingPage-content {
  padding:40px;
  text-align:center;
}
.LandingPage .LandingPage-content img {
  width:100%;
  max-width:680px;
  max-height:202px;
}
.LandingPage .LandingPage-content .LandingPage-buttons {
  margin:80px 0px 0px 0px;
}
.LandingPage .LandingPage-content .LandingPage-buttons .Btn {
  display:inline-block;
  vertical-align:middle;
  margin:10px;
  padding:20px;
  font-size:1.3em;
}
.LandingPage .LandingPage-content .LandingPage-buttons .Btn--agency {
  background:#532260;
  color:#FFFFFF;
}
.LandingPage .LandingPage-content .LandingPage-buttons .Btn--agency:hover {
  color:#532260;
  background:#FFFFFF;
}
.LandingPage .LandingPage-content .LandingPage-buttons .Btn--mortgage {
  background:#122140;
  color:#FFFFFF;
}
.LandingPage .LandingPage-content .LandingPage-buttons .Btn--mortgage:hover {
  color:#122140;
  background:#FFFFFF;
}
@media screen and (max-width:520px){
  .LandingPage .LandingPage-content .LandingPage-buttons {
    margin:40px 0px 0px 0px;
  }
  .LandingPage .LandingPage-content .LandingPage-buttons .Btn {
    display:block;
    margin:10px 0px;
  }
}



/** LANDING VIDEO **/
/* #LandingVideo {
  object-fit:cover;
  width:100vw;
  height:100vh;
  position:fixed;
  z-index:1;
  top:0;
  left:0;
} */

.video-background {
  position: absolute;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16/9) {
  .video-background iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-background iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}
