/*!
* © Evite You 2024 All Rights Reserved.
*/

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gallery-item {
    flex: 0 0 calc(33.33%); /* 8 images per row */
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    .gallery-item {
        flex: 0 0 calc(100%); /* 4 images per row */
    }
}

