



#epaggelmatias {
    display: flex;
    position: relative;
    background-color: #fff;
    
    flex-direction: column;
    align-items: center;
}

#structures-and-programs h2 {
    color: #fff;
    font-weight: bold;
    font-size: var(--text-xl);
    text-align: center;
    margin-bottom: 0px;
}

.municipality-boxes-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.municipality-box {
    width: 350px;
    height: auto;
    background-color: #fff;
    color: #0a2239;
    font-size: var(--text-lg);
    box-shadow: 4px 6px 6px #0a2239;
    border-radius: 4px;
    padding: 33px 10px;
    text-align: center;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}




.structures-and-programs-wrapper {
    gap: 50px;
    margin: 100px 0 0;
}

p.outer-title.epaggelmatias {
    text-align: center;
    width: 310px;
    height: 80px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 2px solid #2D87E1;
    border-radius: 10px;
    opacity: 1;
    font-weight: 300;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}


.container.structures-and-programs-wrapper.d-flex.flex-row.justify-content-center.flex-wrap.str {
    margin-bottom: 5%;
    max-width: fit-content;
    padding-left: 5%;
    padding-right: 5%;
}
h2.section-title.section-title-decor {
    margin-left: -5%;
    font-size: 32px;
    width: 410px;
}

@media screen and (max-width: 992px) {
    .municipality-box {
        width: auto;
    }
}

@media screen and (max-width: 400px) {
    .municipality-boxes-container {
        grid-template-columns: unset;
    }

}