
@import url('https://fonts.googleapis.com/css2?family=Suwannaphum:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arbutus+Slab&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500&display=swap');
:root {
    --gris: #9e9e9e;
    --grisfuerte: #70635a;
    --rojo: #ff3547;
    --rosa: #ec2286;
    --amarillo: #fdea0b;
    --verde: #9ac93d;
    --azul: #00a6e4;
}
*{
    margin: 0;
    padding: 0;
}
.max_titulo {
    width: 100%;
    height: 190px;
    background-image: url(https://www.zinacantepec.gob.mx/img/fuente.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* animation-name: relleno; */
}
.max_titulo::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0.2;
    background-image: linear-gradient(2deg, rgb(5 0 0) 30%, #49474700 100%);
}
.max_titulo h1{
    display: flex;
    height: 100%;
    width: 70%;
    margin: auto;
    align-items: center;
    font-size: xxx-large;
    font-family: serif;
    color: white;
    position: absolute;
    justify-content: flex-start;
    z-index: 1;
    font-family: 'Prata', serif;
    border-bottom: 2px solid verde;
}
.bando{
    width: 70%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    
}
.vigente{
    display: flex;
    align-items: center;
    justify-content: center;
}
.bando img{
    height: 400px;
    
}
.item_bandos a{
    text-decoration: none;
    cursor: pointer;
}
.vigente img {
width: 350px;
}
.band{
    display:flex;
    margin: 10px;

}
.band i {
    background-color: #ccc;
    color: white;
    padding: 5px;
    border: 2px solid var(--grisfuerte);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-right: 15px;
    box-shadow: 0px 7px 10px gray;
}

.info_bando{  
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.bandos{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

}
.info_bando h3{
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    margin-left: 5px;
    flex-direction: column;
    text-align: center;
    width: 400px;
    justify-content: space-evenly;
    color: var(--grisfuerte);
    font-weight: bold;
    text-align: justify;
}
.info_bando span{
    background-color: var(--verde);
    color: white;
    padding: 5px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    font-size: 15px;

}

.titulo_central{
    font-family: 'Roboto Slab', serif;
    display: block;
    text-align: center;
    color:var(--grisfuerte);
    font-size: 20px;
   padding: 10px;
   line-height: 28px;

   overflow: hidden;
   position: relative;
}
.titulo_central h1{
margin-top: 0px;
display: block;
position: relative;

}


.titulo_central span{
    display: block;
    
    color:  #9ac93d;
    font-size: 17px;
    animation-name: gobierno;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 3s ease-out;
}

@keyframes gobierno{
    0%{
        transform: translateY(-7px);
    }
    100%{
        transform: translateY(2px);
    }
}