@charset "UTF-8";

  @font-face {
    font-family: SpaceMono-Bold;
    src: url('/fonts/Space_Mono/SpaceMono-Bold.ttf'); 
  }
  
  @font-face {
    font-family: SpaceMono-BoldItalic;
    src: url('/fonts/Space_Mono/SpaceMono-BoldItalic.ttf'); 
  }
  
  @font-face {
    font-family: SpaceMono-Italic;
    src: url('/fonts/Space_Mono/SpaceMono-Italic.ttf'); 
  }
  
  @font-face {
    font-family: SpaceMono-Regular;
    src: url('/fonts/Space_Mono/SpaceMono-Regular.ttf'); 
  }

  @font-face {
    font-family: Raleway-Bold;
    src: url('/fonts/Raleway/static/Raleway-Bold.ttf'); 
  }
  
  @font-face {
    font-family: Raleway-BoldItalic;
    src: url('/fonts/Raleway/static/Raleway-BoldItalic.ttf'); 
  }
  
  @font-face {
    font-family: Raleway-Italic;
    src: url('/fonts/Raleway/static/Raleway-Italic.ttf'); 
  }
  
  @font-face {
    font-family: Raleway-Regular;
    src: url('/fonts/Raleway/static/Raleway-Regular.ttf'); 
  }
  

* {
    box-sizing: border-box;
    margin: 0; 
    padding: 0;
}

body{
    overflow: hidden;
    background-color: #000;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    margin-bottom: 0;
    font-family: Raleway-Bold;
}


.texto-blanco {
    font-weight: 700;
    color: #fff;
}


.nav{
    position: absolute;
    z-index: 70;
    top: 40%;
} 
.nav li,
.nav li a {
    display: block;
    margin: 9px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: Spacemono-Italic;
    font-size: 19px;
    color: #c2c2c2;
    transition: .5s ease;
}
.nav li.active{
    border-bottom: 2px solid #feff01;
}

.section.s1 .texto{
    padding-top: 3vw;
    display: block;
    text-align: center;
    display: none;
}
.section.s1 .texto h1{
    font-size: 70px;
    color: #fff;
    font-style: normal;
    font-weight: 500;
    text-transform: normal;
    color: white;
    margin-bottom: 1vw;
}
.section.s1 .texto h2{
  color: #feff01;
}

.section.s1 .flechita{
    color: #fff;
    position: absolute;
    bottom: 10%;
    left: 45%;
    font-size: 50px;
    animation: bajar-subir 1s ease infinite;
    display: none;
}

@keyframes bajar-subir {
    0% { transform: translateY(20px);}
    25% { transform: translateY(0); }
    100% {  transform: translateY(20px);}
}

.section.s1 video{
    position: absolute;
    z-index: 10;
    right: 0;
    top: 0;
    height: 95vh;
    width: 200vh;
    left: 0;
    z-index: 9998;
}


.boton-portada {
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  background-color: #333;
  color: #fff;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  margin: auto;
  z-index: 9999;
}

.boton-portada:hover {
  background-color: #444;
}

.boton-portada:focus {
  outline: none;
}

.boton-portada i {
  margin-left: 5px;
}

/*Segunda sección*/
.section.s2{
  z-index: 100;
}
.section.s2 video{
  position: absolute;
  top: 50;
  margin-top: 200px;
}
.section.s2 .texto{
    margin-top: 2vw;
}
.section.s2 .texto h2{
    font-size: 70px;
    color: #e232dc;
    font-style: normal;
    font-weight: 700;
    text-transform: normal;
}

.typed{
    color: rgb(255, 255, 255);
    font-weight: 600;
}


.proyectos{
  display: block;
  margin: auto;
  height: 39vw;
  width: 85%;
  margin-top: 1vw;

}
.proyectos .slide{
  display: grid;
  grid-template-columns: repeat(3,33%);

}

.proyecto{
    width: 30vw;
    padding: 0 52px;    
    box-sizing: border-box;
    display: flex;
    transform: translateX(-1em); 
    margin: auto ; 
}

.proyecto .video-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px -6px #feff01;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.4);
    transition: .7s ease-in-out;
    margin: auto;
}

.video-card.visible {
    opacity: 1;
    transform: scale(1);
}
.proyecto .video-card img{
  height: 300px;
  width: 500px;
}

.proyecto .video-card .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
}

.proyecto .video-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 32px;
    background: linear-gradient(0deg, #000 0%, #000 33%, rgba(0, 0, 0, 0) 100%);
    margin: 0;
    color: #fff;
}

.video video{
  position: absolute;
  top: 200;
  left: 0;
  right: 0;
  display: none;
  height: 70vh;
}
.video.active{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  height: 100vw;
  z-index: 99;
}


.video.active video{
    display: block;
    z-index: 1000;
    margin-left: auto;
    margin-right: auto;
}

.video.active .close-btn {
    position: absolute;
    top: 32px;
    right: 20px;
    font-size: 64px;
    background: white;
    padding: 0 12px;
    border-radius: 100%;
    line-height: 0.8;
    cursor: pointer;
    transform: rotateZ(45deg);
    color: black;
}






/*Clase fullpage*/

#fp-nav ul li a span {
    background: white !important;
}
#fp-nav ul li .fp-tooltip {
    color: white !important;
}
.fp-slidesNav ul{
    text-align: center;
    margin-top: -2.5vw !important; 
}
.fp-slidesNav ul li a span{
    background: white !important;  
}
.fp-watermark{
  opacity: 0;
}
#fp-nav{
    display: none !important;
}

/*Tercera sección*/

.section.s3 .texto h2{
    font-size: 70px;
    color: #e232dc;
    font-style: normal;
    font-weight: 700;
    text-transform: normal;
}
.info{
    display: block;
    margin: auto;
    height: auto;
}
.logo img{
    display: block;
    margin: 2vw auto;
    height: 25vw;
    border-radius: 10px;
    opacity: 0;
}

.logo.visible img{
    opacity: 1;
    animation: aparecer 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes aparecer {
    0% {
      transform: scale(0.5);
    }
    100% {
      transform: scale(1);
    }
}
.sobremi{
    margin: 3vw auto 0vw auto;
    justify-content: center;
    width: 60%;
    opacity: 0;
    
}
.sobremi p{
    color: white;
    font-family: SpaceMono-Regular; 
    font-size: 18px; 
    text-shadow: 3px 1px 2px #776e6e;
    font-weight: 400;
    background: #000000; 
    margin: 0 0 25px; 
    overflow: hidden; 
    padding: 20px; 
    border-radius: 35px 0px 35px 0px; 
    -moz-border-radius: 35px 0px 35px 0px; 
    -webkit-border-radius: 35px 0px 35px 0px; 
    border: 2px solid #feff01;
    text-align: center;
}
.sobremi p span{
  font-family: SpaceMono-Italic;
  color: #e232dc;
  text-shadow: none;

}
.sobremi.visible{
    opacity: 1;
    animation: aparecer2 1.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes aparecer2 {
    0% {
      transform: rotateX(-30deg) translateX(-300px) skewX(-30deg);
      opacity: 0;
    }
    100% {
      transform: rotateX(0deg) translateX(0) skewX(0deg);
      opacity: 1;
    }
  }
  

  /*CONTACTO*/

  .section.s4 .texto h2{
    font-size: 70px;
    color: #f83ba6;
    font-style: normal;
    font-weight: 700;
    text-transform: normal;
}

  .contact1 {
    padding: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  .container-contact1 {
    width: 1163px;
    border-radius: 10px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0px 130px 88px 148px;
  }
  
  .contact1-pic {
    width: 296px;
  }
  
  .contact1-pic img {
    max-width: 100%;
  }
  
  .contact1-form {
    width: 390px;
    margin-top: 100px;
  }
  
  input.input1 {
    height: 50px;
    border-radius: 0px;
    padding: 0 30px;
    outline: none;
    border: none;
  }
  input.input1 + .shadow-input1 {
    border-radius: 25px;
  }
  
  textarea.input1 {
    min-height: 150px;
    border-radius: 0px;
    padding: 12px 30px;
    outline: none;
    border: none;
  }
  textarea.input1 + .shadow-input1 {
    border-radius: 25px;
  }
  
  .wrap-input1 {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 20px;
  }
  
  .input1 {
    display: block;
    width: 100%;
    background: #e6e6e6;
    font-family: SpaceMono-Regular;
    font-size: 15px;
    line-height: 1.5;
    color: #666666;
  }
  
  .shadow-input1 {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 0px 0px;
    color: rgba(150, 13, 155, 0.5);
  }
  
  .input1:focus + .shadow-input1 {
    -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
    animation: anim-shadow 0.5s ease-in-out forwards;
  }
  
  @-webkit-keyframes anim-shadow {
    to {
      box-shadow: 0px 0px 80px 30px;
      opacity: 0;
    }
  }
  
  @keyframes anim-shadow {
    to {
      box-shadow: 0px 0px 80px 30px;
      opacity: 0;
    }
  }
  

  .container-contact1-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .contact1-form-btn {
    cursor: pointer;
    min-width: 193px;
    height: 50px;
    border-radius: 25px;
    background: #b3b3b3;
    font-family: SpaceMono-Bold;
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .contact1-form-btn i {
    margin-left: 7px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .contact1-form-btn:hover {
    background: #535353;
  }
  
  .contact1-form-btn:hover i {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
  }


 
/*REDES*/
.redes .button{
  display: inline-block;
  margin-left: 5px;
  background: #fff; 
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
}
.redes .button .icon{
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  line-height: 60px;
  transition: all 0.3s ease-out;
}
.redes .button .icon i{
  font-size: 25px;
  line-height: 60px;
  transition: all 0.3s ease-out;
}
.redes .button a{
  color: black;
}
  
/*------------------------------------------------------------------
      
      [ Responsive ]*/



@media (max-width: 1200px) {
  .nav, 
  .section.s1 video {
    display: none;
  }
  #video-portada{
      display:none;
  }
  .section.s1 .texto,
  .section.s1 .flechita{
    display: block;
  }
  #boton-portada {
      display: none;
    }

}


/*Full Page*/





/*SECCIÓN2*/

@media screen and (max-width: 1700px) {
  .proyectos{
   margin-top: 4vw;
  }
  .proyecto{
    width: 500px;

  }
  .proyecto .video-card img{
    width: 500px;
  }

}

@media screen and (max-width: 1200px) {
  .proyectos{
    height: 65vw;
  }
  .proyectos .slide{
    grid-template-columns: repeat(2,50%);
  }
  #movil{
    display: none;
  }
  .proyecto{
    width: 500px;
    padding: 2vw;
  }
  .fp-slidesNav ul{
    margin-top: -5.5vh !important; 
}
}

@media screen and (max-width: 992px) {
  .proyectos{
    height: 65vw;
  }

  .proyecto{
    width: 500px;
    padding: 0 72px; 
  }
  .proyecto .video-card img{
    width: 400px;
  }
}



@media screen and (max-width: 576px) {
  .section.s2 .texto h2{
    font-size: 50px;
  }
  .proyectos .slide{
    display: block;
  }
  #movil2{
    display: none;
    visibility: hidden;
    height: 0px;
    width: 0px;
  }
  .proyectos{
    height: auto;
  }

}
@media screen and (max-width: 450px) {
  .proyecto{
    margin-top: 6vh;
    width: 400px;
    height: 200px;
    padding: 0px; 
    margin-bottom: 60px;
  }
  .proyecto .video-card img{
    width: 400px;
    height: 200px;
  }
  .proyectos{
    height: auto;
  }
  .right{
    padding-left: 20px;
  }

}

@media (max-width: 1100px) {
  .video .videoPlayer {
      width: 100vw;
  }
}


  /*SECCIÓN3*/

  @media screen and (max-width: 1200px) {
    .texto{
      margin-bottom: 5%;
    }
    .logo{
      margin-bottom: 10%;
    }
    .logo img{
      width: 45%;
      height: 45%;
    }
  }
  @media screen and (max-width: 992px) {
    .sobremi p{
      font-size: 0.8em;
    }
  }

  @media screen and (max-width: 576px) {
    .section.s3 .texto h2{
      font-size: 3em;
    }
    .logo img{
      width: 70%;
      height: 40%;
    }
    .sobremi p{
      margin-top: 8vh;
      font-size: 0.7em;
    }
  }
  @media screen and (max-width: 450px) {
    .logo img{
      width: 70%;
      height: 30%;
    }
    .sobremi p{
        font-size: 0.7em;
      }
      .section.s3{
        margin-top: 20vh;
      }
  }


  /*CONTACTO*/
  
  
  @media screen and (max-width: 576px) {
    .redes .button .icon{
      height: 35px;
      width: 35px;
    }
    .redes .button .icon i{
      font-size: 15px;
      transform: translateY(-13%);
    }
    .redes .button a{
        transform: translateY(-10%);
    }
  }
  
  
