@font-face{
    font-family: 'At aero';
    src:url("/assets/fonts/at-aero-font-family-1743326293-0/AtAero-Air.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face{
    font-family: 'At aero-bold';
    src:url("/assets/fonts/at-aero-font-family-1743326293-0/AtAero-Bold.otf")format("opentype");
    font-weight: normal;
    font-style: normal;
}
/*
src: url("./fonts/nevis.eot");
    src: url("./fonts/nevis.eot?#iefix") format("embedded-opentype"),
         url("./fonts/nevis.woff") format("woff"),
         url("./fonts/nevis.ttf") format("truetype"),
         url("./fonts/nevis.svg") format("svg"); */


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family:'At aero' ;
}

header{
    width: 100%;
    position: fixed;
    z-index: 3;
    background-color: #f2f2f2;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0  5%;
    height: 100px;
    border-bottom: 1px solid rgba(225, 225, 226, 0.8);
}

#logotipo h1{
    height:50px;
}

#logotipo h1 a{
    font-size: 35px;
    font-weight: 900;
    padding: 10px;
    margin-left: 20px;
    color: #555;
    text-shadow: 1px 1px 0px #ccc;
    line-height: 30px;

}

.menu{list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.items a{

    margin: 0 15px;
    font-size: 18px;
    font-weight: 700;
    cursor:pointer;
    color:black;
}


.menu a{
    text-transform: uppercase;
    color: #444;
    font-family: "At Aero" ;
    font-size: 18px;
    font-weight: 800;
    padding: 10px;
    transition: all 600ms;
}

.menu a span:hover{
    padding: 7px 1px;
    border-radius: 5px;
    background: rgb(44, 42, 42);
    color: white;
}
/* boton start a proyect */
.menu .button{
    background-color: black;
    cursor: pointer;
    border: none;
    padding: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    border-radius: 5px;
    outline: none;
}

.button:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(98, 17, 17), rgb(22, 22, 120), rgb(78, 74, 76), blue, rgb(106, 87, 87), blue, rgb(114, 62, 90), blue);
    background-size: 800%;
    border-radius: 12px;
    filter: blur(10px);
    animation: glowing 20s linear infinite;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}
/* fin boton start a proyect */

/* estilos link redes sociaales */

.container-social{
    width: 10%;
    margin-top: 0px;
    display: flex;
    flex-direction: row;
    justify-content:space-evenly;

}

/* fin estilos  redes sociales */

#menu{
    display: none;
}

.menu-icono{
    width: 25px;
}

label{
    cursor: pointer;
    display: none;
}

#content{
    margin-left: 0;
    margin-right: 0;
    margin-top: 97px;
    width: 100%;
}

/* inicio estilos contenido del documento */

/* first page */
.first-page{
    position: relative;
    width: 100%;
    height: 813px;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 0px;

}

.first-page .video-container{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container video{
position: relative;
top: 50%;
left: 50%;
object-fit: cover;
width: 100%;
height: 100%;
transform: translate(-50%, -50%);
}

.first-page .texto{
    width: 60%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 100px;
    color: white;

}

.first-page  .texto-largo{
    width: 100%;
    color: white;
    margin-bottom: 50px;
    font-weight: 600;
    font-size: 35px;
}

.first-page  .texto-corto{
    width: 100%;
    color: white;
    font-weight: 500;
    font-size: 30px;
}
/* fin first page */

/* estilos de la segunda pagina */

.second-page{
    width: 75%;
    height: 790px;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content:space-around;
    transition: all 4s;
}

.abajo .parrafo1{
    animation: mover-izquierda-derecha  1s 1;
    animation-fill-mode:forwards;
}
@keyframes mover-izquierda-derecha {
    from{
        transform: translateX(-800px);
        color: white;
        font-size: 3px;
    }
    to{
        transform: translateX(15px)
    }
}

.abajo .parrafo2{
    animation: mover-derecha-izquierda  2s 1;
    animation-fill-mode:forwards;
}
@keyframes mover-derecha-izquierda {
    from{
        transform: translateX(2000px);
        color: white;
        font-size: 3px;
    }
    to{
        transform: translateX(20px)
    }
}

.abajo .parrafo3{
   animation: mover-derechas-izquierda  3s 1;
    animation-fill-mode:forwards;
}
@keyframes mover-derechas-izquierda {
    from{
        transform: translateX(2000px);
        color: white;
        font-size: 3px;
    }
    to{
        transform: translateX(-50px)
    }
}


.second-page .parrafo1{
    text-align: left;
    font-size: 100px;
    letter-spacing: 3px;
    font-weight: 350;
}

.second-page .parrafo2{
    font-style: italic;
    text-align: center;
    font-size: 100px;
    letter-spacing: 3px;
    font-weight: 350;
}

.second-page .parrafo3{
    text-align: right;
    font-size: 100px;
    letter-spacing: 3px;
    font-weight: 350;
}
/* fin estilos segunda pagina*/

/* estilos tercer pagina */
#content .third-page{
    margin: 0 auto;
}

.third-page{
    width: 70%;
    min-height: 800px;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    align-items: center;
}

.third-page .presentation{
    width: 100%;
    height: 100%;
    margin: 50px  0px  90px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.third-page .presentation .video{
    margin: 3px;
}

.third-page .boton{
    margin-top: 0px;
    border-radius: 5px;
    padding: 5px 15px;
    margin: 7px auto;
    font-size: 40px;
    color: #555;
    letter-spacing: 2px;
}


.third-page .boton a{
    border: 1px solid rgb(101, 98, 98);
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 40px;
    font-weight: 350;
    color: black;
    letter-spacing: 2px;
    transition: all 300ms;
}

.third-page .boton a:hover{

    background: black;
    padding: 5px 16px;
    margin: 7px auto;
    font-size: 41px;
    color: white;
}

/* fin estilos tercer pagina */

/* estilos cuarta pagina */

.fourth-page{
    width: 70%;
    height: 860px;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.fourth-page__principal{
    margin-left: 0px;
    margin-top: 60px;
    width: 100%;
    height: 650px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-right: 35px;
}

.fourth-page__principal .contenido{
    width: 50%;
    padding: 0;
    margin-right: 45px;
    }

.fourth-page__principal .contenido h3{
    font-size: 70px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 3px;
    margin: 0px 0 70px 0;

}

.fourth-page__principal .contenido p{
    font-size: 30px;
    text-align:justify;
    font-weight: 500;
    color: #292828;
    letter-spacing: 2px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.fourth-page__principal .contenido span{
    width: 100vw;
    font-size: 30px;
    text-align:justify;
    font-weight: 600;
    color: black;
    letter-spacing: 1px;
    margin-bottom: 10px;

}

.fourth-page__principal .imagen{
    width: 400px;

}

.fourth-page .link{
    margin: 0 auto;
    margin-top: 60px;
    font-size: 35px;
    color: #555;
    letter-spacing: 2px;

}

.fourth-page .link a{
    border: 1px solid rgb(101, 98, 98);
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 36px;
    font-weight: 450;
    color: black;
    letter-spacing: 2px;
    transition: all 300ms;
}

.fourth-page .link a:hover{

    background: black;
    padding: 5px 16px;
    margin: 7px auto;
    font-size: 38px;
    color: white;
}

.fourth-page .imagen{
    align-items: center;

}

.five-page{
    margin: 0 auto;
    width: 100%;
    height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.five-page__principal{
    margin-top: 20px;
}

.five-page__principal .conte{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.fiverr_reseña{
    font-family:'At aero-bold';
    color: black;
}

.five-page__principal .conte h2{
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: 'At aero-bold';
    font-size: 45px;
    font-weight: bold;
}

.five-page__principal .conte h3{
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 30px;
    color: #555;

}

.five-page__principal {
    background-color: #eeeded;
     height: 790px;
     width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.five-page__principal .parrafos{
    margin-top: 30;
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.parrafos .parrafo1{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.parrafos .parrafo2{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.parrafos .parrafo3{
    margin-top: 15px;
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.simbol{
    margin-bottom: 60px;
    font-family: 'At aero-bold';
    font-size: 160px;
    color: black;
}

.simbols{
    width: 78%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.five-page__principal .parrafos p{
    margin:20px 10px 10px 10px ;

}

#imgjojicore{
   width: 100%;
   max-width: 472.1186px;
   }



.readMore a{
    color: black;
    font-size: 24px;
}

/* estilos cuarta pagina */



/* fin estilos contenido del documento */

@media (max-width:1100px){

    #header{
        min-height: 150px;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr  1fr;
        grid-template-rows: 1fr;
    }


#content{
    margin-top: 146px;
    width: 100%;
    margin: 0 auto;
}

    #logotipo{
        display: flex;
        justify-content:left;
        align-items: center;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 60px;
    }

    #header .container-social{
        width: 80%;
        margin: 30px;
        padding: 0;
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        justify-content: end;
        gap: 15px;

    }

    #header .nav{
        width: 100%;
        height: 60px;
        grid-column-start: 1;
        grid-column-end: 3;
    }

    #header .nav a{
        font-size: 16px;
    }

    /* estilos primera pagina */
     .first-page  .texto{
        margin-left: 10%;
        margin-right: 30%;
    }

    .first-page  .texto-largo{
        font-size: 24px;
    }

    .first-page  .texto-corto{
        font-size: 20px;
    }

    /* fin estilos primera pagina */

    /* estilos segunda pagina*/

.second-page .parrafo1{
    text-align: left;
    font-size: 50px;
    letter-spacing: 3px;
    font-weight: 350;
}

.second-page .parrafo2{
    font-style: italic;
    text-align: center;
    font-size: 50px;
    letter-spacing: 3px;
    font-weight: 350;
}

.second-page .parrafo3{
    text-align: right;
    font-size: 50px;
    letter-spacing: 3px;
    font-weight: 350;
}
    /* fin los segunda pagina*/

    /* estilos tercr pagina */
     .third-page{
        min-height: 1000px;
    }

    .third-page .presentation{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .third-page .boton a{
    border: 1px solid rgb(101, 98, 98);
    border-radius: 5px;
    padding: 3px 12px;
    font-size: 22px;
    font-weight: 900;
    color: black;
    letter-spacing: 1px;
    transition: all 300ms;

}

.third-page .boton a:hover{

    background: black;
    padding: 4px 14px;
    font-weight: 900;
    margin: 5px auto;
    font-size: 26px;
    color: white;
}

    /* fin estilos tercer pagina */

    /* estilos cuarta  pagina */

.fourth-page{
    margin-top: 100px;
    width: 80%;
    height: 700px;
   }
.fourth-page .fourth-page__principal{
    margin-right: 20px;
}

.fourth-page__principal{
    margin: 0 auto;
    width: 100%;
    gap: 20px;
    margin-bottom: 10px;

}

.fourth-page__principal .contenido h3{
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}


.fourth-page__principal .contenido p{
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.fourth-page__principal .contenido span{
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.fourth-page__principal .contenido{
    margin-bottom: 20px;
    margin-right: 10px;
}

.fourth-page .link{
    margin-top: 20px;
    margin-bottom: 40px;
    color: #555;
    letter-spacing: 1px;

}

.fourth-page .link a{
    margin: 4px auto;
    font-size: 22px;
    color: black;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 30px;
}


.fourth-page__principal .contenido{
    margin-bottom: 5px;
}

.fourth-page .link a:hover{

    background: black;
    padding: 5px 16px;
    margin: 7px auto;
    font-size: 26px;
    color: white;
}

/* estilos cuarta pagina */


.five-page{
    margin: 0 auto;
    width: 100%;
    height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.five-page__principal .conte{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.fiverr_reseña{
    font-family:'At aero-bold';
    color: black;
}

.five-page__principal .conte h2{
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: 'At aero-bold';
    font-size: 35px;
    font-weight: bold;
}

.five-page__principal .conte h3{
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 18px;
    color: #555;

}

.five-page__principal {
    margin-top: 16px;
    background-color: #eeeded;
    height: 780px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.five-page__principal .parrafos{
    margin-top: 30;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.parrafos .parrafo1{
    margin-top: 0;
    padding: 0;
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.parrafos .parrafo2{
    margin-top: 0;
    padding: 0;
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.parrafos .parrafo3{
    margin-top: 0;
    padding: 0;
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.simbol{
    margin-top: 0;
    padding: 0;
    margin-bottom: 60px;
    font-family: 'At aero-bold';
    font-size: 100px;
    color: black;
}

.five-page__principal .parrafos p{
    margin:20px 10px 10px 10px ;

}

}

@media (max-width:800px){

    header{
        background-color: #a5a4a4;
    }
    .menu{
        padding: 30px;
        margin: 0;
    }

    label{
        display: initial;
    }

    #content{
    margin-top: 146px;
    }


#logotipo h1 a{
    margin-left: 0px;
    color: #0a0a0a;
    text-shadow: 1px 1px 0px #ccc;
    line-height: 30px;
}


    .menu-icono{
        margin-left: 10px;
    }


    .menu{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #cacbd1;
        display: flex;
        flex-direction: column;
        justify-content: start;
        gap: 20px;
        height: 100vh;
        display: none;
    }

    .items{
        margin: 0 0 20px 0;
        width: 100%;
    }

    .items a{
        margin-left: 0;
    }
    #menu:checked ~ .nav .menu{
        display: initial;
     }

#content .first-page{
    margin: 0 !important;
    padding: 0 !important;
}

.second-page{
    width: 100%;
    height: 390px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0 1rem;
    margin-left: 0;
    margin-right: 0;
    padding: 0 1rem;
    box-sizing: border-box;
}

.second-page .parrafo1{
    text-align: left;
    font-size: 26px;
    letter-spacing: 3px;
    font-weight: 350;
}

.second-page .parrafo2{
    font-style: italic;
    text-align: center;
    font-size: 26px;
    letter-spacing: 3px;
    font-weight: 350;
}

.second-page .parrafo3{
    text-align: right;
    font-size: 26px;
    letter-spacing: 3px;
    font-weight: 350;
    padding: 0 1rem;
}

.third-page{
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.third-page .presentation .proyectouno .video{
    width: 100%;
    margin: 0 auto;
}

.third-page .presentation .proyectodos .video{
    width: 100%;
    margin: 0 auto;
}

.third-page .presentation .proyectotres .video{
    width: 100%;
    margin: 0 auto;
}

.third-page .presentation{
    width: 100%;
}

.third-page .boton a{
    border-radius: 5px;
    padding: 3px 3px;
    font-size: 18px;
    font-weight: 900;
    color: black;
    letter-spacing: 1px;
    transition: all 300ms;

}

.third-page .boton a:hover{

    background: black;
    padding: 4px 6px;
    font-weight: 900;
    margin: 5px auto;
    font-size: 20px;
    color: white;
}

.fourth-page{
    margin-top: 30px;
    width: 100%;
    min-height: 1320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    box-sizing: border-box;
}

.fourth-page__principal{
    width: 100%;
    height: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.fourth-page__principal .contenido{
    margin-bottom: 10px;
    font-size: 18px;
    margin: 0 auto;
    width: 100%;
    text-align: center;

}

.fourth-page__principal .contenido p{
    width: 100%;
    padding: 0;
    margin: 0 auto;
    margin-bottom: 30px;
}
   
.fourth-page__principal .contenido span{
    width: 100vw;
    font-size: 18px;
    text-align:justify;
    letter-spacing: 1px;
    margin-bottom: 10px;
}


.fourth-page__principal .imagen{
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.fourth-page .link{
    margin-top: 40px;
}

.fourth-page .link{
    margin-top: 100px;
    font-size: 16px;
    color: #555;
    letter-spacing: 2px;

}

.fourth-page .link a{
    margin: 4px auto;
    font-size: 16px;
    color: black;
    font-weight: bold;
    letter-spacing: 2px;
}


.fourth-page .contenido{
    margin-bottom: 5px;
}

.fourth-page .link a:hover{

    background: black;
    padding: 5px 16px;
    margin: 7px auto;
    font-size: 18px;
    color: white;
}

.five-page{
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}


.five-page{
    margin: 0 auto;
    width: 100%;
    height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.five-page__principal .conte{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.five-page__principal .conte h2{
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'At aero-bold';
    font-size: 20px;
    font-weight: bold;
    margin: 10px 10px 10px 10px;
}

.five-page__principal .conte h3{
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 12px;
    color: #555;
    margin: 10px 10px 10px 10px;
    text-align: center;

}

.five-page__principal {
    margin-top: 1px;
    background-color: #eeeded;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.five-page__principal .parrafos{
    margin-top: 30;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
    box-sizing: border-box;
}

.parrafos .parrafo1{
    margin: 0 auto;
    padding: 0;
    width: 100%;
    text-align: justify;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.parrafos .parrafo2{
    margin:0 auto;
    padding: 0;
    width: 100%;
    text-align: justify;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.parrafos .parrafo3{
    margin: 0 auto;
    padding: 0;
    width: 100%;
    text-align: justify;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.simbol{
    margin-top: 0;
    padding: 0;
    margin-bottom: 20px;
    font-family: 'At aero-bold';
    font-size: 100px;
    color: black;
}

.five-page__principal .parrafos p{
    margin:0;

}

}


@media (max-width:480px){

    
/* estilos de la segunda pagina */

.second-page{
    width: 75%;
    height: 600px;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content:space-around;
    transition: all 4s;
}

.abajo .parrafo1{
    animation: mover-izquierda-derecha  1s 1;
    animation-fill-mode:forwards;
}
@keyframes mover-izquierda-derecha {
    from{
        transform: translateX(-800px);
        color: white;
        font-size: 3px;
    }
    to{
        transform: translateX(10px)
    }
}

.abajo .parrafo2{
    animation: mover-derecha-izquierda  2s 1;
    animation-fill-mode:forwards;
}
@keyframes mover-derecha-izquierda {
    from{
        transform: translateX(2000px);
        color: white;
        font-size: 3px;
    }
    to{
        transform: translateX(20px)
    }
}

.abajo .parrafo3{
   animation: mover-derechas-izquierda  3s 1;
    animation-fill-mode:forwards;
}
@keyframes mover-derechas-izquierda {
    from{
        transform: translateX(2000px);
        color: white;
        font-size: 3px;
    }
    to{
        transform: translateX(-5px)
    }
}


.second-page .parrafo1{
    text-align: center;
    font-size: 16px;
}

.second-page .parrafo2{
    font-style: italic;
    text-align: center;
    font-size: 16px;
}

.second-page .parrafo3{
    text-align: center;
    font-size: 16px;
}
/* fin estilos segunda pagina*/

}