ul.business-gallery,
ul.category-gallery,
ul.image-gallery {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.business-gallery,
.category-gallery,
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.image-gallery>li {
    flex: auto;
    height: 200px;
    cursor: pointer;
    position: relative;
}

.category-gallery>li {
    flex: 1 1 auto;
    flex-direction: column;
    height: 100px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.image-gallery::after {
    content: "";
    flex-grow: 999;
}

.image-gallery li img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    border-radius: 5px;
}

.business-gallery>li {
    width: 250px;
    cursor: pointer;
    position: relative;
    border: 1px solid #ddd;
    padding: 10px;
}

.business-gallery>li:hover {
    background-color: #ddd;
}

.business-gallery li img {
    object-fit: cover;
    height: 250px;
    vertical-align: middle;
    border-radius: 5px;
}

.image-members img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.image-members:hover img,
.image-gallery li:hover img {
    opacity: 0.85;
    filter: hue-rotate(-90deg);
}

.image-gallery li:hover {
    background: rgb(255 0 0 / 50%);
}

.overlay {
    position: absolute;
    width: 100%;
    height: 30px;
    background: rgba(57, 57, 57, 0.502);
    bottom: 0;
    left: 0;
    color: #fff;
    /* center overlay content */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.cat-overlay {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background: rgb(255 255 255 / 75%);
    padding: 5px 10px;
}

.images-wrapper1 {
    display: grid;
    grid-template-columns: auto;
    column-gap: 30px;
    margin: 0px 30px;
    text-align: center;
}

.images-wrapper2 {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 30px;
    margin: 0px 30px;
    text-align: center;
}

.images-wrapper3 {
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 30px;
    margin: 0px 30px;
    text-align: center;
}

.images-wrapper img {
    margin: 30px;
}

.images-wrapper {
    display: block;
}

.product-img {
    max-width: 100%;
    padding: 0px 0px 30px 0px;
}

.bcity {
    color: #8b0000;
    font-size: 13px;
}