:root {
    --green:#5dac03;
    --red:#ff2e63;
    --black:#252a34;
    --white: #fff;
    --blue: #08d9d6;
    --claro:#eaeaea;
    --azul: #0011cc;
    --azulmenu: #ddddff;
    --verde: #008811;
    --verde-oscuro: #006622;
    --grisclaro: #eeeeee;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* el tamano del box esta limitado por el borde - el elemento no crece, disminuye el tamano*/
}

body {
    /* color de fondo para el body*/
    background: var(--grisclaro);
    overflow-x: hidden; /* que no haya scroll horizontal para el eje x */
    font-family: 'Raleway', sans-serif; /* Familia de fuentes de google */
}

/* Separador */

.separador {
    min-height: 40px;
}

/* Boton Ir hacia arriba */

    .go-top {
        position: fixed;
        bottom: 100px;
        right: -100%;
        width: 50px;
        height: 50px;
        border: 2px solid var(--green);
        background: var(--white);
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: 400ms;

    }
    .go-top:hover{
        border: 2px solid var(--white);
        background: var(--green);
        color: var(--white);
    }
    .go-top:hover span {
        color: var(--white);
    }
    .go-top > span {
        font-size: 30px;
        color: var(--black);
    }
/* Fin boton ir hacia arriba */

/* Efectos skew */

.skew-abajo{
    position: absolute;
    bottom: 0;
    left: 0;
    border-width: 0 0 10vh 100vw;
    border-style: solid;
    border-color: transparent transparent var(--grisclaro) transparent;
}

.skew-arriba{
    position: absolute;
    top: 0;
    left: 0;
    border-width: 10vh 100vw 0 0;
    border-style: solid;
    border-color:  var(--grisclaro) transparent transparent transparent;
    z-index: 10;
}

.skew-abajo-inv{
    position: absolute;
    bottom: 0;
    left: 0;
    border-width: 0 100vw 10vh 0;
    border-style: solid;
    border-color: transparent transparent var(--grisclaro) transparent;
}

.skew-arriba-inv{
    position: absolute;
    top: 0;
    left: 0;
    border-width: 10vh 0 0 100vw;
    border-style: solid;
    border-color: var(--grisclaro) transparent transparent transparent;
    z-index: 10;
}

/* Fin efectos skew */

/* Estilos Menu de navegacion */
#header {
    position: relative;
    width: 100%;
}
.menu {
    position: fixed; /* posicion fija */
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.menu .logo-box{
    margin-left: 20px;  
    text-align: center;
}

.menu .logo-box a{
    
    text-decoration: none;
    font-size: 35px;
    font-weight: 400;
    color: var(--black);
}
.menu .logo-box a img {
    
    vertical-align: middle;
    width: 60px;
    height: 50px;
    cursor: pointer;
}
/* .menu .logo-box h1 a{
    text-decoration: none;
    font-size: 35px;
    font-weight: 400;
    color: var(--black);
} */

.menu .list-container {
    margin-right: 20px;
}

.menu .list-container .lists {
    display: flex; /* para que no se superpongan los menus */
}

.menu .list-container .lists li {
    list-style: none;
}

.menu .list-container .lists li a {
    text-decoration: none;
    margin: 0px 10px;
    padding: 8px;
    color: var(--black);
    border-radius: 2px;
    font-size: 16px;
    transition: 0.3s;    
}

.menu .list-container .lists li a.active {
    background: var(--azul);
    color: var(--white);
}

.menu .list-container .lists li a:hover {
    /*background: var(--azul);*/
    color: var(--azul);
    /* agrego esto 
    font-size: 19px;*/
}
.btn-menu > .fa-bars{
    display: none;
}

/* Fin Estilos Menu de navegacion */

/* Inicio estilos de imagen de portada */
.img-portada {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(../img/head11.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
.img-portada .bienvenidos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* oscurece la imagen de fondo */

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.img-portada .bienvenidos h1 {
    font-size: 50px;
    color: var(--white);
    font-weight: 300;
}

.img-portada .bienvenidos hr {
    width: 400px;
    height: 2px;
    background: var(--white);
    border: none;
    margin-top: 5px;
}

.img-portada .bienvenidos p {
    font-size: 20px;
    color: var(--white);
    margin-top: 20px;
}
.img-portada .bienvenidos > button {
    width: 170px;
    height: 40px;
    background: var(--green);
    border-radius: 24px;
    border: none;
    outline: none;
    font-size: 22px;
    color: var(--white);
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.5s;
}
.img-portada .bienvenidos > button:hover { 
    background: var(--blue);
}

/* FIN estilos de imagen de portada */

/* Imagenes centrales */

.img-central1{
    background: url(../img/head11.jpg);
}

.img-central2{
    background: url(../img/head2.png);
}

.img-central3{
    background: url(../img/2071.png);
}

.img-central1, .img-central2, .img-central3 {
    position: relative;
    width: 100%;
    height: 5vh;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.oscurecedor{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Fin imágenes centrales */

/* Inicio acerca de nosotros */

.acerca-de {
    width: 100%;
    margin-top: 120px;
    background: var(--grisclaro);
}
.acerca-de .info-container {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.acerca-de .info-container h1 {
    font-size: 50px;
    font-weight: 400;
    color: var(--black);
    text-align: center;
    margin-bottom: 20px;
}

.acerca-de .info-container p {
    text-align: center;
    font-size: 17px;
    color: var(--black);
    line-height: 35px;
    margin: 10px 0px;
}

.acerca-de .info-container .fotos-nosotros {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 50px 0px;
}

.acerca-de .info-container .fotos-nosotros img {
    width: 85%; /*calc(33.33% - 10px);*/
    height: 300px;
    object-fit: cover;
    margin: 10px 10px;
    border-radius: 10px;
    cursor: pointer;
}
.acerca-de .info-container .about-more {
    width: 100%;
    display: flex;
    justify-content: center;
}
.acerca-de .info-container .about-more button {
    width: 80px;
    height: 30px;
    background: var(--green);
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 15px;
    color: var(--white);
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.5s;
}

.acerca-de .info-container .about-more button:hover{
    background: var(--blue);
}
/* FIN estilos acerca de nosotros */

/* INICIO estilos FOOTER */

    .footer {
        position: relative;
        width: 100%;
        height: 100%;
        background: url(../img/footer.jpg);
        background-attachment: fixed;
        background-position: center;
        background-size: cover;
    }
    .footer .deg-footer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
    }

    .footer .ejeZfooter {
        position: relative;
        width: 100%;
        height: 100%;
        padding-top: 10%;
    }

    .footer .footer-content {
        width: 90%;
        padding-top: 100px;
        margin: auto;
        padding-bottom: 50px;
    }
    .footer .footer-content .footer-title {
        width: 50%;
        margin: auto;
        border: 2px solid var(--white);
        padding: 15px;
    }

    .footer .footer-content .footer-title h2 {
        text-align: center;
        color: var(--white);
        font-size: 30px;
        font-weight: normal;
        margin-bottom: 10px;
    }

    .footer .footer-content .footer-title hr {
        width: 80%;
        margin: auto;
    }

    .footer .footer-content .formulario-content {
        width: 60%;
        background: var(--white);
        border-radius: 24px;
        border: 2px solid var(--green);
        margin: 50px auto;
        padding: 30px;
        margin-bottom: 150px;
    }

    .footer .footer-content .formulario-content #contacto {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .footer .footer-content .formulario-content #contacto label {
        text-align: center;
        color: var(--black);
        font-size: 22px;
        margin: 30px 0px 10px 0px;
    }

    .footer .footer-content .formulario-content #contacto input {
        width: 90%;
        height: 40px;
        margin: auto;
        border: 2px solid var(--green);
        border-radius: 24px;
        outline: none;
        text-align: center;
        font-size: 17px;
        color: var(--black);
    }

    .footer .footer-content .formulario-content #contacto textarea {
        width: 90%;
        height: 200px;
        margin: auto;
        border: 2px solid var(--green);
        border-radius: 24px;
        outline: none;
        font-size: 15px;
        color: var(--black);
        padding: 20px;
    }

    .footer .footer-content .formulario-content #contacto .send {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 40px 0px;
    }
    .footer .footer-content .formulario-content #contacto .send button {
        width: 150px;
        height: 40px;
        background: var(--green);
        border-radius: 24px;
        border: none;
        outline: none;
        font-size: 22px;
        color: var(--white);
        text-align: center;
        margin-top: 20px;
        cursor: pointer;
        transition: 0.5s;
    }

    .footer .footer-content .formulario-content #contacto .send button:hover {
        background: var(--blue);
    }

    .footer .footer-content .footer-text {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: rgba(0, 0, 0, 0.8);
        border-top: 5px solid var(--white);

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer .footer-content .footer-text p {
        color: var(--white);
        font-size: 20px;

    }
/* FIN estilos FOOTER */

@media only screen and (max-width:900px) {
    
    .btn-menu > .fa-bars {
        display: block;
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 28px;
        cursor: pointer;
    }

    .btn-menu > .fa-bars:hover {color: var(--green);}
    .btn-menu > .fa-times {color: var(--green);}
    .menu .list-container{
        position: absolute;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--white);
        
    }

    .menu .list-container .lists {
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-top: 5px solid var(--green) ;
    }
 
    .menu .list-container .lists li {
        width: 90%;
        margin-top: 10px;
        border-bottom: 1px solid var(--green);
        text-align: center;
        padding-bottom: 10px;
    }

    .menu .list-container .lists li a {
        font-size: 20px;
    }
    .menu .list-container .lists li a.active {
        background: none;
        color: var(--green);
    }

    .menu .list-container .lists li a:hover {
        background: none;
        color: var(--green);
    }
}

@media only screen and (max-width: 773px) {

    /* Inicio imagen de portada */

    .img-portada .bienvenidos h1 {
        font-size: 40px;
    }
    .img-portada .bienvenidos > button {
        width: 130px;
        font-size:  20px;

    }
    /* Fin imagen de portada */

    /* Inicio Acerca de nosotros */

        .acerca-de .info-container h1 {
            font-size: 40px;
        }
        .acerca-de .info-container .fotos-nosotros {
            flex-direction: column;
        }
        .acerca-de .info-container .fotos-nosotros img {
            width: 100%;

        }
    /* Fin acerca de nosostros */

    /* Inicio nuestros proyectos */
    .nuestros-proyectos .container-project .project-imagenes img{
        width: 80%;
        margin-bottom: 30px;
    }
    /* Fin nuestros proyectos */

}

@media only screen and (max-width:590px) {
    /* Inicio imagen de portada */
    .img-portada .bienvenidos h1 {
        font-size: 30px;
    }
    .img-portada .bienvenidos hr {
        width: 100px;

    }
    .img-portada .bienvenidos p {
        font-size: 17px;
    }
    .img-portada .bienvenidos > button {
        width: 100px;
        font-size:  17px;

    }
    /* Fin imagen de portada */
     /* Inicio Acerca de nosotros */

     .acerca-de .info-container h1 {
        font-size: 30px;
    }

    .acerca-de .info-container p {
        font-size: 15px;
    }

    /* Fin acerca de nosostros */
}

@media only screen and (max-width:900px){
    .footer .footer-content .footer-title h2 {font-size: 25px;}
    .footer .formulario-content {width: 85%; padding:20px;}
    .footer .formulario-content #contacto input{width: 100%;}
    .footer .formulario-content #contacto textarea{width: 100%;}
}
@media only screen and (max-width:590px){
    .footer .footer-content .footer-title h2 {font-size: 18px;}
    .footer .formulario-content {width: 95%; padding:20px;}
    .footer .formulario-content #contacto label{font-size: 17px;}
    .footer .formulario-content #contacto input{width: 100%; font-size: 17px;}
    .footer .formulario-content #contacto textarea{width: 100%;}
    .footer .formulario-content #contacto .mensaje-form p{font-size: 17px;}
    .footer .footer-text {width: 100%; padding: 0px 30px;}
    .footer .footer-text p{font-size: 17px;}
}

.azul{
    color: var(--azul);
}

.verde{
    color: var(--verde);
}

.back-verde{

    background-color: var(--verde-oscuro);
}