
* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    /* background-color: rgb(250,250,250); */
}
h1 {
    text-align: center;
    color: darkcyan;
    font-size: 1.3em;
    margin-top: 15px;
}
h2 {
    font-size: 1.2em;
    text-align: center;
}
 nav {
    width: 100%;
    padding: 10px 0;
    display: grid;
    grid-template: "borde-izq logo-escudo  espacio-central title-page borde-der" 120px/
                    10px       60px        5px               auto     5px;
} 
.logo-escudo {
    grid-area: logo-escudo;
    width: 100%;
    display: flex;
    align-items: center;
}
.img-logo-escudo {
    width: 100%;
}
.title-page {
    grid-area: title-page;
    width: 100%;
}
.title-experiencias, .title-secretaria {
    color: rgb(9,67,181);
}
.colegios {
    width: 100%;
    margin-top: 20px;
}
.colegio {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.box-escudo-nombre {
    width: 75%;
    box-shadow: rgba(50, 50, 93, 0.25) 5px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    /* padding-top: 20px; */
}
.div-escudo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.img-escudos {
/*     border-top-left-radius: 15px;
    border-top-right-radius: 15px; */
    width: 100%;
}
.nombre-sede {
    background-color: rgb(0,142,64);
}
.box-nombre {
    text-align: center;
    width: 100%;
    height: 60px;
    background-color: rgb(0,142,64);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-wrap: wrap;
/*     border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px; */
}
@media only screen and (min-width: 430px) {
    nav {
    grid-template: "borde-izq logo-escudo  espacio-central title-page borde-der" 120px/
                    30px       60px        5px               auto     5px;
    }
    .colegio {
        width: 300px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .colegios {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;

    }
    .box-escudo {
        height: 400px;
    }
    .box-escudo-nombre {
        width: 100%;
    }
}
@media only screen and (min-width: 700px) {
    .title-experiencias {
        font-size: 2em;
    }
    .title-secretaria {
        font-size: 1.4em;
    }
    .logo-escudo {
        width: 80px;
        margin-left: 40px;
    }
}
@media only screen and (min-width: 1024px) {
    nav {
        height: 155px;
        /* margin-top: 5px; */
    }
}
