.gallery
{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-gap: 20px;
}

.gallery-text 
{
    padding: 20px;
}
/* 
.gallery-container
{
    width: 100%;
    height: auto;
    text-align: center;
    background-color: var(--electric-lemon);
    border-radius: 5px;
    box-shadow: 0 4px 4px hsl(355deg, 25%, 10%);
}

.gallery-container:hover
{
    box-shadow: 0 4px 4px rgb(184, 179, 179);
}

.gallery-container img
{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: 50% 50%;
    cursor: pointer;
    transition: .5s ease-in-out;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.gallery-items
{
    width: 100%;
    height: 100%;
    text-align: center;
}

.gallery-items .gallery-text
{
    width: 100%;
    height: auto;
    text-align: left;
    opacity: 1;
    color: var(--primary-color);
    font-size: 1rem;
    pointer-events: none;
    z-index: 4;
    transition: .3s ease-in-out;
    text-align: left;
    padding: 10px 20px;
}

.gallery-items .image, .gallery-items iframe
{
    width: 100%;
    height: 100%;
}

.gallery p
{
    margin: 20px;
}

.gallery-cta 
{
    padding: 20px;
}

.gallery-cta a:hover
{
    color: var(--trinary-color);
    text-decoration: none;
}

.w-2
{
    grid-column: span 2;
} */