:root {
    --green:#5dac03;
    --red:#ff2e63;
    --black:#252a34;
    --white: #fff;
    --blue: #88eeff;
    --claro:#cccccc;
    --azul: #0011cc;
    --verde: #008811;
    --verde-oscuro: #006622;
    --grisclaro: #eeeeee;
    --azulfondo: #007bff;
}

*{
    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(--blue);
    overflow-x: hidden; /* que no haya scroll horizontal para el eje x */
    font-family: 'Raleway', sans-serif; /* Familia de fuentes de google */
}

/* 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(--blue) transparent;
}

.skew-arriba{
    position: absolute;
    top: 0;
    left: 0;
    border-width: 10vh 100vw 0 0;
    border-style: solid;
    border-color:  var(--blue) 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 .list-container {
    margin-right: 60px;
}

.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: 20px;
    font-weight: bold;
    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);
}

.btn-menu > .fa-bars{
    display: none;
}

/* Fin Estilos Menu de navegacion */

/* Inicio estilos de imagen de portada */

.img-portada {
    position: relative;
    background: url(../img/fondo1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
.img-portada .bienvenidos {
    position: absolute;
    top: 0;
    left: 0;
    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 hr {
    width: 60%;
    height: 2px;
    background: var(--white);
    border: none;
    margin-top: 3px;
}

/* FIN estilos de imagen de portada */

/* Imagenes centrales */

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

/* Fin imágenes centrales */

/* Estilos del footer */

.footer {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(../img/fondo2.jpeg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: var(--black);
}

.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%;
}

    /* 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) {

.ocultos {
    display: none;
}

}

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

}

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

}
