
/* city style css start */

.city-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-left: 0;
    margin-bottom: 0;
}

.city-flex li {
    flex: 0 0 calc((100% - 45px) / 4); /* 4 per row with 3 gaps */
    list-style: none;
    box-sizing: border-box;
}

.city-flex li a {
    display: block;
    padding: 10px;
    background: #f8f8f8;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    transition: 0.3s ease;
    border: 1px solid #d9d9d9;
}

.city-flex li a:hover {
    background: #21507e;
    color: #fff!important;
}
@media (max-width: 991px) {
    .city-flex li {
        flex: 0 0 calc((100% - 15px) / 2);
    }
}


@media (max-width: 575px) {
    .city-flex li {
        flex: 0 0 100%;
    }
}
  