*{
    padding: 0;
    margin: 0;
 }
body {
    background-image: url("img/fondologo.png");
    background-repeat: no-repeat, repeat;
}
.encabezado{
    background-color: rgb(18, 138, 168);
    display: flex;
    justify-content:flex-start;
    align-items: center;
}
.encabezado img{
    width: 10%;
    padding: 10px 30px;
}
.encabezado_titulo{
    width: 90%;
}
.encabezado_titulo p{
    font-size: 40px;
    font-weight: bold;
    font-family: 'Squada One', cursive;
}
.izq{
    text-align: center;
    margin-right: 240px;
}
.der{
    text-align: right;
    margin-right: 30px;
    color: rgb(200, 200, 212);
}
.ingreso{
    margin: 20px 0;
    background-image: url("Imagen/fondo.PNG");
}
.ingreso_sub{
    width: 40%;
    margin: auto;
    background-color: rgb(36, 207, 107);
    padding: 20px;
    border-radius: 20px;
}
.ingreso_sub_titulo{
    font-size: 40px;
    text-align: center;
    font-family: 'Squada One', cursive;
    margin-bottom: 15px;
    color: rgb(240, 232, 232);
    background-color: rgb(7, 107, 32);
}
.ingreso_contenido{
    width: 60%;
    margin: auto;
    text-align: justify;
    font-size: 20px;
    background-color: rgb(194, 30, 30);
    color: cornsilk;
   font-weight: 500;
    padding: 20px;
    border-radius: 20px;
}
.ingreso_sub_cajas{
    font-size: 30px;
    font-family: 'Squada One', cursive;
    margin-bottom: 20px;
    text-align: center;
}
.ingreso_sub_cajas input{
    font-size: 30px;
    padding: 10px;
    border-radius: 10px;
}
.ingreso_sub_boton{
    text-align: center;
}
.ingreso_sub_boton input{
    font-size: 30px;
    font-family: 'Squada One', cursive;
    padding: 10px 50px;
    border-radius: 10px;
}
.ingreso_sub_boton input:hover{
    background-color: coral;
}
.ingreso_sub_cajasm{
    font-size: 30px;
    font-family: 'Squada One', cursive;
    margin-bottom: 20px;    
}
.ingreso_sub_cajasm input{
    font-size: 30px;
    padding: 10px;
    border-radius: 10px;
    width: 95%;
}
.ingreso_sub_cajasm select{
    font-size: 30px;
    padding: 10px;
    border-radius: 10px;
    width: 95%;
}


section{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0;
}
.blog-contenedor{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.blog-item{
    /* width: 30%; */
    width: calc(100% / 5 - 20px);
    margin-bottom: 30px;
}
.blog-item img{
    display: block;
    width: 100%;
}
.blog-data{
    display: flex;
    justify-content: space-between;
}

/* FOOTER */
footer{
    text-align: center;
    padding: 30px 0;
}
footer span{
    color: rgba(0,0,0,.5);
    margin-right: 10px;
}
footer a{
    text-decoration: none;
    background-color: #eaeaea;
    padding: 5px 10px;
    border: 1px solid #cccccc;
    margin: 0 10px;
    color: #4d4d4d;
}
.active{
    background-color: transparent;
    border: none;
}


.general{
    display: flex; 
    width: 90%;
    margin: auto;
    justify-content: space-around;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: justify;
}
.general-vision-titulo{
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: rgb(240, 232, 232);
    background-color: rgb(7, 107, 32);
    border-radius: 10px;
}
.general-vision p{
    padding: 15px 20px;
    background-color: rgb(187, 243, 191);
    border-radius: 10px;
}
.general-vision{
    width: 40%;
}
.general-otros{
    width: 15%;
}
.general-otros ul{
    padding: 20px;
    background-color: rgb(187, 243, 191);
    border-radius: 10px;
}
.piepagina{
    background-color: darkblue;
    color: cornsilk;
    padding: 20px 50px;
    margin-top: 10px;
    font-size: 20px;
    font-family: 'Squada One', cursive;
    line-height: 25px;
}



/* RESPONSIVE DESIGN */

@media only screen and (max-width: 700px){
    .encabezado img{
        padding: 1px 20px;
    }
    .encabezado_titulo p{
        font-size: 30px;
    }
}
@media only screen and (max-width: 600px){
    .encabezado_titulo p{
        font-size: 20px;
    }
}
@media only screen and (max-width: 400px){
    .encabezado_titulo p{
        font-size: 15px;
    }
    .general{
        display: none; 
    }
}