/* PHOTO GALLERY */

.photo-gallery-content {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 56px;
    place-items: center;
} @media (min-width: 576px) {

    .photo-gallery-content {
        grid-template-columns: repeat(2, 1fr);
    }

} @media (min-width: 992px) {

    .photo-gallery-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
}

/* END PHOTO GALLERY */