@font-face {
    font-family: 'proxima_novabold';
    src: url('../uploads/fonts/nova-bold-webfont.woff2') format('woff2'),
         url('../uploads/fonts/nova-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  
  }
  @font-face {
    font-family: 'masked_hero_demoregular';
    src: url('../uploads/fonts/masked-hero-webfont.woff2') format('woff2'),
         url('../uploads/fonts/masked-hero-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  
  }
  
  @font-face {
    font-family: 'robotobold';
    src: url('../uploads/fonts/roboto-bold-webfont.woff2') format('woff2'),
         url('../uploads/fonts/roboto-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }
  
  
  @font-face {
    font-family: 'robotomedium';
    src: url('../uploads/fonts/roboto-medium-webfont.woff2') format('woff2'),
         url('../uploads/fonts/roboto-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }
  
  
  @font-face {
    font-family: 'robotoregular';
    src: url('../uploads/fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('../uploads/fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

#hero {
    width: 100%;
    height: 100vh;
    background-color: #191338;
    position: relative;
    overflow: hidden;
    flex-direction: column;
  }

  #hero .container, #hero .container-fluid {
    padding-top: 84px;
  }

  #color-cielo, .circle {
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  #color-cielo .circle {
    background-image: 
    radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)), 
    radial-gradient(1px 1px at 50px 160px, #a52b66, rgba(0,0,0,0)), 
    radial-gradient(2px 2px at 90px 40px, #054aa7, rgba(0,0,0,0)), 
    radial-gradient(2px 2px at 5px 10px, #aecea1, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0));
      background-repeat: repeat;
      background-size: 200px 200px;
      animation: zoom 10s infinite;
      opacity: 0;
      background-attachment: fixed;
  }
  
  #color-cielo .circle:nth-child(1) {
    background-position: 50% 50%;
    animation-delay: 0s;
  }
  #color-cielo .circle:nth-child(2) {
    background-position: 20% 60%;
    animation-delay: 1s;
  }
  #color-cielo .circle:nth-child(3) {
    background-position: -20% -30%;
    animation-delay: 2s;
  }
  #color-cielo .circle:nth-child(4) {
    background-position: 40% -80%;
    animation-delay: 3s;
  }
  #color-cielo .circle:nth-child(5) {
    background-position: -80% -40%;
  }
  @keyframes zoom {
    0% {
      opacity: 0;
      transform: scale(0.95);
      animation-timing-function: ease-in;
    } 
    85% {
      opacity: 1;
      transform: scale(1.2);
      animation-timing-function: linear;
    }
    100% {
      opacity: 0;
      transform: scale(1.9);
    }
    
  }
  #fondo-azul{
    background-image: url("../img/bg-space.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: absolute;
    margin: auto;
    width: 106%;
    top: -2%;
    right: -3%;
    bottom: -3%;
    left: -3%;
    height: 106%;
  }
  #hero:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, rgb(246 109 44 / 21%) 0%, rgb(23 66 187 / 21%) 49%, rgb(167 255 84 / 12%) 82%);
    background-size: 200%;
    animation: aurora 5s infinite;
  }
  
  @keyframes aurora {
    0% {
        background-position: left top;
    }
    25% {
        background-position: right top;
    }
    50% {
        background-position: right bottom;
    }
    75% {
        background-position: left bottom;
    }
    100% {
        background-position: left top;
    }
  }
#nave {
    background-image: url("../img/nave.png");
    position: absolute;
    margin: auto;
    width: 104%;
    top: -2%;
    right: -2%;
    bottom: -3%;
    left: -2%;
    height: 104%;
    background-position: center;
    background-size: cover;
    opacity: 0.8;
    z-index: 2;
}

#video-intro {
    z-index: 3;
    display: block;
    position: absolute;
    width: 44%;
    top: 11%;
    margin: 0 auto;
    background: rgb(36 24 49);
    padding: 10px 14px;
    opacity: 0.8;
    -webkit-clip-path: polygon(12% 0, 100% 0%, 88% 100%, 0% 100%);
    clip-path: polygon(12% 0, 100% 0%, 88% 100%, 0% 100%);
    filter: drop-shadow(1px 1px 2px rgba(143, 143, 143, 0.5));
    mix-blend-mode: lighten;
}

#video-intro .container-video{
    position: relative;
    display: block;
    -webkit-clip-path: polygon(12% 0, 100% 0%, 88% 100%, 0% 100%);
    clip-path: polygon(12% 0, 100% 0%, 88% 100%, 0% 100%);
}
#video-intro .container-video #btn-play{
    position: absolute;
    display: block;
    right: 13%;
    bottom: 15px;
    width: 35px;
    background: rgb(135 94 222 / 80%);
    cursor: pointer;
    text-align: center;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0px 0px 12px rgb(250 246 253 / 79%);
    visibility: hidden;
}
#btn-play i{
    opacity: 0.5;
    line-height: 2.2;
}
#video-intro .container-video:hover #btn-play{
    transition: 500ms;
    visibility: visible;
}
.btn-footer{
    z-index: 5;
    right: 27%;
    bottom: 40px;
    position: absolute;
    font-family: 'masked_hero_demoregular';
    text-align: center;
    text-transform: lowercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: 500ms;
}
.btn-footer:hover{
    transform: scale(1.1);
}
.btn-footer a{
    text-decoration: none;
    color: #ffffff;
    background-image: url(../img/bg-btn.png);
    background-size: cover;
    background-position: center;
    padding: 30px 52px 30px 90px;
    text-align: center;
}
.lineas-video{
    position: relative;
}
.lineas-video:before {
    content: "";
    background-image: url(../img/line-top-video.png);
    position: absolute;
    right: 0;
    top: -25px;
    width: 53%;
    height: 55px;
    display: block;
    z-index: 12;
    background-position: center left;
    background-repeat: no-repeat;
    background-size: auto;
}
.lineas-video:after {
    content: "";
    background-image: url(../img/line-bottom-video.png);
    position: absolute;
    left: -4px;
    bottom: -23px;
    width: 65%;
    height: 55px;
    display: block;
    z-index: 12;
    background-position: center left;
    background-repeat: no-repeat;
    background-size: auto;
}
@media (max-width: 600px){

    .btn-footer{
        font-size: 11px; 
        right: 25px;
    }
}
@media (min-width: 768px){
    #video-intro {
        margin-left: 3%;
    }
}
@media (max-width: 1024px){
    #video-intro {
        width: 92%;
    
    }
}
@media (max-width: 768px) and (orientation: landscape){
    #video-intro {
        max-width: 276px;
    }
    .btn-footer {
        right: 22%;
        font-size: 10px;
    }
    .btn-footer a {
        padding: 24px 46px 27px 85px;
    }
}