@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;1,400&display=swap');

html{
    
}

body{
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Estilos de colores */
.blanco{
    color: #fff;
}

.negro{
    color: #000;
}

.gris{
    color: #969696;
}

.gris-bg{
    background-color: #f2f2f2;
}

.naranja{
    color: #ff8900;
}

/* Estilos para el Slide*/

.slide{
    position: relative;    
    min-height: 500px;
    background: url(../imagenes/principal_slide.jpg) no-repeat;
    background-size: cover;
}

.slide2{
    background: url(../imagenes/segundo_slide.jpg) no-repeat;
    background-size: cover;
}

.slide-interior{
    position: relative;    
    min-height: 250px;
}

.slide-lafundacion{
    background: url(../imagenes/sdg-cover-01.jpg) no-repeat;
    background-size: cover;
}

.slide-programas{
    background: url(../imagenes/programas_slide.jpg) no-repeat;
    background-size: cover;
}

.slide-contacto{
    background: url(../imagenes/contacto_slide.jpg) no-repeat;
    background-size: cover;
}

/* Estilos para iconos de idiioma */

.lenguaje{
    display: inline-block;
    vertical-align: middle;
}

.lenguaje img{
    height: 20px;
    width:auto;
}

/* Estilos para los iconos de redes sociales*/

a.icono-redes{
    display: inline-block;
    width: 20px;
    height: 20px;
    color: #fff;
    background-color: #000;
    border-radius: 50%;
    text-align: center;
    transition: all ease 0.3s;
}

a.icono-redes:hover{
    background-color: #ff8900;
}

a.icono-redes i{
    /*font-size: 1.3rem;*/
    line-height: 20px;
}


a.icono-redes-gris{
    display: inline-block;
    width: 50px;
    height: 50px;
    color: #000;
    background-color: #f2f2f2;
    border-radius: 50%;
    text-align: center;
    transition: all ease 0.3s;
}

a.icono-redes-gris:hover{
    background-color: #ff8900;
}

a.icono-redes-gris i{
    font-size: 2rem;
    line-height: 50px;
}

/* Estilos para el menú principal*/
.linea-menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 10;
}

.menu{
    display: table;
    width: 100%;
}

.menu li{
    display: table-cell;
    vertical-align: bottom;
    text-align: center;
}

.menu li a{
    display: inline-block;
    text-align: center;
    color: #000;
    font-size: 1rem;
    border: 1px dashed transparent;
}

.menu li a:hover{
    color: #ff8900;
    border-bottom: 1px dashed #ff8900;
}

.menu-simple{
    width: 100%;
}

.menu-simple li a{
    display: block;
    padding: 5px;
    font-size: 0.8rem;
    color: #f2f2f2;
    border-bottom: 1px dashed #eaeaea;
}

.menu-simple li a:hover{
    color: #ff8900;
    border-bottom: 1px dashed #ff8900;
}

@media only screen and (max-width: 720px){
    #linea-redes {
        display: none !important;
    }
    .menu li a{
        display: inline-block;
        text-align: center;
        color: #000;
        font-size: 0.6rem;
        border: 1px dashed transparent;
    }
}

/* EStilo para el Logo */
@media only screen and (max-width: 720px){
    .logo{
        width: 250px;
        height: auto;
    }
}

/* Ocultar el Boton de menu movil */
#btn-menu-movil{
    display: none;
}
.menu-movil{
    display: none;
}

/* Estilos textos principales */

.titulo-xl{
    font-size: 3rem;
}

@media only screen and (max-width: 720px){
    .titulo-xl{
        font-size: 2rem;
    }
    #btn-menu-movil{
        display: block;
        position: absolute;
        right: 5px;
        top: 15px;
        padding: 10px 15px;
    }
    .menu{
        display: none;
    }
    
    .menu-movil{
        position: fixed;
        right: -100%;
        top: 0;
        height: 100%;
        width: 100%;
        display: block;
        background-color: rgba(255,255,255,0.95);
        z-index: 100;
    }
    
    @keyframes movil_muestra {
        from {right: -100%;}
        to {right: 0;}
    }
    @keyframes movil_oculta {
        from {right: 0;}
        to {right: -100%;}
    }

    .muestra{
        display: block;
        right: 0;
        animation-name: movil_muestra;
        animation-duration: 0.5s;
    }
    
    .oculta{
        display: block;
        right: -100%;
        animation-name: movil_oculta;
        animation-duration: 0.5s;
    }
    
    .menu-movil li a{
        position: relative;
        display: block;
        text-align: center;
        padding: 20px 20px;
        color: #1e3348;
        font-size: 1.1em;
        border-bottom: 1px solid #efc119;
        transition: all ease 0.5s;
    }
    
    .menu-movil li a::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(255, 255, 255,1);
        transform: scaleY(0);
        transform-origin: bottom center;
        transition: all ease-in 0.3s;
        z-index:-1;
    }
    
    .menu-movil li a:hover::before{
        transform: scaleY(1);
    }
    
    .menu-movil li a:hover,.menu-movil li a.activo{
        border-bottom: 4px solid #fff;
        color: #1e3348;
    }
    
    .menu-movil li a.activo{
        border-bottom: 4px solid #fff;
        color: #fff;
    }
}

.parrafo{
    margin: 20px auto;
}


/* Estilos para botones */

a.boton{
    padding: 7px 15px;
    color: #ff8900;
    background-color: #fff;
    border-radius: 10px;
}

a.boton-naranja{
    padding: 7px 15px;
    color: #fff;
    background-color: #ff8900;
    border-radius: 10px;
}

a.boton-outline{
    padding: 7px 15px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
}

a.boton-outline-naranja{
    padding: 7px 15px;
    color: #000;
    border: 1px solid #ff4d0e;
    border-radius: 10px;
}

/* estilo para esquinas de cuadros */

.esquinas{
    position: relative;
    margin: 0 auto;
    width: 70%;
}

@media only screen and (max-width: 720px){
    .esquinas{
        width: 90%;
    }
}

.esquinas::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}

.esquinas::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}

.esquinas-naranja::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-top: 1px solid #ff4d0e;
    border-left: 1px solid #ff4d0e;
}

.esquinas-naranja::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-bottom: 1px solid #ff4d0e;
    border-right: 1px solid #ff4d0e;
}

/* Estilos para franja naranja */
.gradiente-naranja{
    background: rgb(234,167,54);
    background: radial-gradient(circle at top right, rgb(255, 216, 0) 0%, rgb(255, 77, 14) 100%);
}

/* eSTILOS PARA ESTADISTICAS */
.estadisticas{
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
    padding: 20px;
    width: 200px;
    height: 200px;
    border: 2px solid #ff4d0e;
    border-radius: 10px;
    background-color: rgba(0,0,0,0.4);
}

.estadisticas .numero{
    text-align: center;
    font-size: 4.5rem;
}

.estadisticas .leyenda{
    text-align: center;
}

.franja-naranja {
    /*background-color:rgba(255, 137, 0,0.4);*/
    background-image: linear-gradient(90deg, rgba(255, 167, 0, 0.5) 80%,rgba(0, 0, 0, 0.4))
}

/* Estilos para Post del Blog */
.blog-post{
    display: inline-block;
    margin-right: 20px;
    padding: 20px;
    width: 200px;
    height: 250px;
    border: 2px solid #ff4d0e;
    border-radius: 10px;
}

.blog-post .titulo{
    text-align: left;
    margin-bottom: 15px;
}

.blog-post .descripcion{
    text-align: left;
}

/* Estilos para los aliados */

.logos-aliados{
    
}

.logos-aliados img{
    height: 70px;
    width: auto;
    margin: 0 20px 0 0;
}


/* Estilos para el pie */

.footer{
    background-color: #000;
    color: #fff;
}

/* Estilos para el Formulario */

.formulario{
    padding: 0 10px;
}

.grupo-form{
    position: relative;
    display: block;
    margin: 0 0 15px 0;
}

.grupo-form label{
    position: relative;
    display: block;
    margin-bottom: 5px;
    font-size: 1em;
    font-weight: bold;
    color: #1e3348;
}

.grupo-form label.error{
    position: absolute;
    display: block;
    top:20px;
    right: -12px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    line-height: 25px;
    text-align: center;
    background-color: #ffc7c7;
    color: #f00;
    font-size: 2em;
}

.grupo-form label i{
    margin-right: 10px;
    color: #F4DC31;
}

.grupo-form input,.grupo-form textarea{
    width: 100%;
    padding: 5px;
    background-color: #f8f8f8;
    border: none;
    border: 1px solid #eaeaea;
    border-radius: 3px;
    font-size: 1.3em;
    color: #555;
}

.grupo-form input[type="submit"]{
    display: block;
    font-size: 1.3em;
    width: 30%;
    min-width: 150px;
    margin: 0 auto;
    transition: all ease 0.5s;
}

.grupo-form input[type="checkbox"]{
    font-size: 1.3em;
    width: 50px;
    margin: 0 auto;
    transition: all ease 0.5s;
}

.grupo-form input[type="submit"]:hover,.grupo-form input[type="submit"]:focus{
    background-color: #29652f;
    color: #fff;
    border-bottom: 2px solid #29652f;
    cursor: pointer;
}

/* Estilos iconos programas */

.iconos-programas{
    display: inline-block;
    margin: 0 15px 15px 0;
}

.iconos-programas img{
    width: 100px;
    height: 100px;
}

.iconos-objetivos{
    display: inline-block;
    margin: 0 15px 15px 0;
}

.iconos-objetivos img{
    width: 75px;
    height: 75px;
}

/* Estilos para tarjetas de proyectos */

.tarjeta_proyecto{
    position: relative;
    display: table;
    width: 100%;
}
.tarjeta_proyecto > .imagen{
    display: table-cell;
    width: 40%;
    padding-right: 10px;
    height: 200px;
    overflow: hidden;
    border-right: 3px solid #F4DC31;
}

.tarjeta_proyecto > .imagen > .miniatura{
    display: block;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.tarjeta_proyecto > .imagen > .miniatura > img{
    width: 100%;
    height: auto;
}

.tarjeta_proyecto > .datos_proyecto{
    display: table-cell;
    vertical-align: top;
    width: 60%;
    padding: 0 20px 0 20px;
    vertical-align: top;
}

.tarjeta_proyecto > .datos_proyecto .titulo-proyecto{
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.tarjeta_proyecto > .datos_proyecto .descripcion-proyecto{
    font-size: 0.9rem;
    color: #777;
}

.tarjeta_proyecto > .datos_proyecto > .programa{
    width: 100%;
    display: table;
}
.tarjeta_proyecto > .datos_proyecto > .programa > .icono{
    width: 65px;
    display: table-cell;
}
.tarjeta_proyecto > .datos_proyecto > .programa > .icono img{
    width: 50px;
    height: auto;
}
.tarjeta_proyecto > .datos_proyecto > .programa > .nombre{
    width: auto;
    display: table-cell;
    vertical-align: middle;
}

/*Estilos para las miniaturas del proyecto*/

.miniaturas-proyectos{
    display: inline-block;
    margin: 0 20px 20px 0;
    border: 2px solid #777;
    box-shadow: 1px 1px 5px #777;
}