.city_wrap a{
    font-size: 16px;
}
.wrap-sert {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 100%;
}

.sert_item-grid img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.sert_item-grid img:hover {
    transform: scale(1.2);
}