html,
body {
  width: 100%;
  height: 100%;
  color: #fff;
}

.fx-background {
  transition: all .5s;
  opacity: 1;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.fx-background.faded-back {
  opacity: 0;
}

.fx-background:after {
  content: "";
  background: transparent url(../images/pattern-overlay.png) repeat top left;
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.main-title-wrapper {
  position: absolute;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 5;
}

.main-title-wrapper h1 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  font-family: bebas-neue, sans-serif;
  text-shadow: 1px 1px 1px #000;
}

.main-title-wrapper h1 .auto-complete {
  display: block;
  font-size: .3em;
}

label,
input {
  display: inline;
  width: initial;
  background: transparent;
  color: #fff;
  font-size: 1em;
  font-family: bebas-neue, sans-serif;
}

.sey-container {
  z-index: 1000;
}

input {
  width: initial;
  border-bottom: 1px dashed #fff;
  padding-bottom: 0;
}

/*______________FullScreen Video_____________*/
.video-background {
  background: transparent;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}

.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-aspect-ratio: 16 / 9) {
  .video-foreground {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16 / 9) {
  .video-foreground {
    width: 300%;
    left: -100%;
  }
}

/*______________End Of Fullscreen Video______*/
