/********** 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%;
    height: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: -1;
    background-image: url(../imagenes/header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    /*background: linear-gradient(-90deg, red,white,red);*/
}

.logo{
    width: 30%;
    height: 100%;
    padding: 10px;
    text-align: center;
}

.logo img{
    width:auto;
    height: 100%;;
}

.iniciales{
    display: none;
}

.title{
    width: 100%;
    height: 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: 100%;
    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 : 200px) and (max-width : 800px)
{
    
    body, html {
        width: 100%;
    }
    
    .header_section{
        z-index: 5;
        background: url(../imagenes/headerresize.jpg);
        height: 100%;
    }
    
    .logo{
        width: 100%;
    }
      
    /*.logo img{
        width:auto;
        height: 40%;;
    }*/
    main{
        height: 300px;
    }
    
    .contenido{
        height: 300px;
    }
    
    .title{
        display: none;
    }
    
    
    .mapa{
        display:none;
    }
    
    .datos{
        display: none;
    }
    
    .redes{
        width: 100%;
    }
}