@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700");
body{
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  padding: 0;
  margin: 0;
}

.video-container{
  width: 100vw;
  height: 100vh;
  position: absolute;  
}

 .video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130vw;
  height: 130vh;
  transform: translate(-50%, -51%);
  pointer-events: none;
  z-index: 1;
  display: block;
}


.cubre-video{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 110vh;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(0,0,0,0.75);
}



.info{
  position: absolute;
  color: #FFFFFF;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Barlow Condensed",sans-serif;
  color: #fff;
  padding: 10px;  
  width: 80%;
}

.logo{
  width: 100px;
  height: auto;
  position: absolute;
  left: 50px;
  top: 50px;
  z-index: 20;
}

h1{
  font-family: "Barlow Condensed",sans-serif;
  font-size: 120px;
  line-height: 120px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
  position: relative;
  display: block;
  animation: fadeIn 3s;
}
h1 span{
  font-weight: 500;
  letter-spacing: -7px;
}

.bajada{
  font-family: "Barlow Condensed",sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 50px;
  position: relative;
  display: block;  
  text-align: center;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
  text-transform: uppercase;
  animation: fadeIn 6s;
}

.parrafo{
  font-family: "Roboto Mono";
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  position: relative;
  display: block;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  animation: fadeIn 9s;
}

@media (min-aspect-ratio: 16/9) {
  .video-container .video {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-container .video {
    width: 177.78vh;
  }
}

@media (max-width: 1024px) {
  h1 {  
    font-size: 110px;
    line-height: 110px;
  }
  .bajada {
    font-size: 35px;
    line-height: 40px;
  }
  .parrafo {
    font-size: 18px;
    line-height: 22px;
  }

  .video{
    display: none;
    width: 1px;
    height: 1px;
  }
  .video-container{
    background: transparent url(../img/bg-mobile.gif) no-repeat center center;
    background-size: cover;
  }
}

@media (max-width: 480px) {
  .info{
    width: 92%;
  }
  .logo {
    width: 80px;
    left: 0;
    right: 0;
    margin: auto;
}
  h1{          
      font-size: 70px;
      line-height: 70px;      
      margin-bottom: 15px;      
      margin-top: 40px;
  }
  h1 span{  
    letter-spacing: -5px;
  }
  .bajada {  
    font-size: 30px;  
    line-height: 30px;
    margin-bottom: 15px;  
  }
  .parrafo {
    font-size: 16px;
    line-height: 20px;
    width: 100%;
  }
}



@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}