.district-page__img-block {
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    transition: box-shadow .15s;
    margin: 20px auto;
    padding: 20px 0;
    border-radius: 5px;
}

.district-page__img-block h2 {
color: rgb(51, 51, 51);
font-weight: 300;
text-align: center;
}


@media only screen and (max-width: 500px) {
.district-page__img-block h2 {
    margin: 0 12px;
}
}


.district-page__img-wrapper {
    background: #F3F4F6;
    margin: 20px 20px 0;
    padding: 10px 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.district-page__img-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 10px;
    border-radius: 5px;
    background: #fff;
    width: 300px;
    margin: 12px;
    box-shadow: 0 6px 10px rgb(0 0 0 / 10%);
    cursor: pointer;
}

.district-page__img-item:hover {
    box-shadow: 0 6px 10px rgb(0 0 0 / 30%);
}