/********** ESTRUCTURA GENERAL *********/
*{
    margin: auto;
    padding: 0;
    box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: sans-serif;
}

/**** CABECERA ****/

.cab_redes{
    text-align:right;
    padding: 5px;
    display: none;
}

.header_section{
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: -1;
    background: url(../imagenes/header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    /*background: linear-gradient(-90deg, red,white,red);*/
}

.logo{
    width: 30%;
    padding: 10px;
    text-align: center;
}

.logo img{
    width: 65%;
    height: auto;
}

.iniciales{
    display: none;
}

.title{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: dodgerblue;
    font-weight: bolder;
}

.class_institute{
    padding: 10px;
    font-size: 3vw;
    font-family: ViceCitySans;
    /*color: whitesmoke;
    text-shadow: 2px 2px 8px black;*/
}

.name_institute{
    padding: 10px;
    font-size: 4vw;
    font-family: RightLand;
    /*color:whitesmoke;*/
}

/**** CABECERA ****/


/**** MENÚ ****/


/* ---------- STICKY ---------- */

.sticky {
  left: 0px;
  position: fixed;
  margin-top: 0px;
  top: 0;
  width: 100%;
}

.sticky + .main {
  padding-top: 116px;
}

/* ---------- STICKY ----------- */

/**** MENÚ ****/





/*** PIE ***/

.pie {
    width: 100%;
    /*height: 200;*/
    display: flex;
    justify-content: space-around;
    padding: 15px;
    border-style: solid;
    border: 1;
    /*border-radius: 10px;*/
    border-color: steelblue;
    background-color: dodgerblue;
    color: white;
    font-size: 14px;
}

.mapa{
    width: 30%;
    border-right:1px; 
    border-left:0px; 
    border-bottom:0px; 
    border-top:0px;
    border-style: inset;
}

.mapa a{
    width: 100%;
    float: left;
    text-decoration: none;
    color: white;
    padding-top: 4px;
    padding-bottom: 4px;
}

.datos{
    width: 30%;
    border-right:1px; 
    border-left:0px; 
    border-bottom:0px; 
    border-top:0px;
    border-style: inset;
}

.datos p{
    width: 100%;
    padding-top: 5px;
    padding-bottom: 15px;
}

.redes{
    width: 30%;
    text-align: center;
}

.redes h3{
    width: 100%;
    text-align: center;
    height: 30px;
}

.redes span{
    width: 100px;
    font-size: 5vh;
    padding: 10px;
}

.redes a{
    text-decoration: none;
    color: white;
}

/*    */

/*** PIE ***/


/* RESPONSIVE DESIGN -- media screen and (max-width: 520px) and (min-width: 480px) */

@media only screen and (min-width : 250px) and (max-width : 480px)
{
    
    body, html {
        width: 100%;
    }
    
    .header_section{
        z-index: 5;
        background: url(../imagenes/headerresize.jpg);
    }
    
    
    .logo{
        width: 100%;
    }
    
    .logo img{
        width: 30%;
    }
    
    /*.iniciales{
        display: block;
        width: 70%;
        line-height: 100px;
        font-family:sans-serif;
        font-size: 5vh;
        font-weight: bold;
        color: white;
        text-align: justify;
        margin-left: 15px;
    }*/
    
    .acceso_matri{
        width: 90%;
        margin: auto;
    }

    .acceso_matri img{
        width: 50px;
        height: 50px;
        margin: auto;
        margin-top: 25px;
    }
    
    .title{
        display: none;
    }
    
    .informativa{
        flex-direction: column;    
    }
    
    .boletines{
        width: 100%;
    }
    
    .eventos{
        margin-top: 10px;
        width: 100%;
    }
    
    .noticias{
        margin-top: 10px;
        width: 100%;
    }
    
    .reflexion h2{
    font-size: 5vw;
    }

    .reflexion h4{
    font-size: 4vw;
    }
    
    .elegida_palabra{
    font-size: 7vw;   
    }

    .msj_palabra{
    font-size: 6vw;
    }
    
    
    .mapa{
        display:none;
    }
    
    .datos{
        display: none;
    }
    
    .redes{
        width: 100%;
    }
}