/*!
 * TravelWeb Manager v5 (https://webcontent.travelwebmanager.com)
 * Copyright 2018 Conecta Turismo S.L.
 * Owner Software License
 */
.app {
  position: relative;
  min-height: 100%;
}
* {
  box-sizing: border-box;
}
.video-background {
  background: #000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#vidtop-content {
  top: 0;
  color: #fff;
}
.vid-info {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 1rem;
  font-family: Avenir, Helvetica, sans-serif;
}
.vid-info h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0;
  line-height: 1.2;
}
.vid-info a {
  display: block;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.6s background;
  border-bottom: none;
  margin: 1rem auto;
  text-align: center;
}
@media (min-aspect-ratio: 16/9) {
  .video-foreground {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-foreground {
    width: 300%;
    left: -100%;
  }
}
@media all and (max-width: 600px) {
  .vid-info {
    width: 50%;
    padding: 0.5rem;
  }
  .vid-info h1 {
    margin-bottom: 0.2rem;
  }
}
@media all and (max-width: 500px) {
  .vid-info .acronym {
    display: none;
  }
}
.construction-content {
  display: block;
  position: fixed;
  background: transparent;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  opacity: 1;
}
.construction-content:before {
  content: ' ';
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  background: rgba(32, 35, 45, 0.3);
  z-index: 0;
  outline: none;
}
.construction-content .content {
  position: absolute;
  z-index: 0;
  left: 0;
  padding: 0;
  top: 50vh;
  width: 100%;
  padding: 0 5%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  opacity: 1;
  visibility: visible;
}
.construction-content .content h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.3em;
  font-family: 'Patua One', cursive;
}
.construction-content .content p {
  font-weight: 400;
  line-height: 1.4em;
  font-family: 'Patua One', cursive;
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 30px;
  color: #fff;
}
