.gallery-wrapper {
    max-width: 1300px;
    margin: 0 auto 0 auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);;
    grid-column-gap: 1.75vw;
    grid-row-gap: 1.75vw;
    position: relative;
}

.gallery-item {
    margin:0;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50%;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*------------------------------------*\
    #Lightbox
\*------------------------------------*/
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-caption {
    color: white;
    margin-top: 2em;
}
