.gallery
{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

#section-1 .gallery 
{
    grid-template-columns: repeat(4,1fr);
}

.gallery-content
{
    width: 100%;
    height: auto;
    overflow: hidden;
}

.gallery-item
{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#section-5 .gallery 
{
    max-width: 1200px;
    gap: 20px;
}

#section-6 .gallery 
{
    grid-template-columns: repeat(1,1fr);
}

#section-7 .gallery
{
    grid-template-columns: repeat(3,1fr);
    max-width: 1200px;
    display: none;
}

.text
{
    text-align: center;
    padding: 10px;
    font-size: 0.8rem;
}

#section-2 .gallery
{
    /* grid-template-columns: repeat(2,1fr); */
    width: 100%;
    max-width: 1200px;
    /* padding: 20px; */
}

.gallery img 
{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#section-1 .gallery img 
{
    box-shadow: none;
}

.h-2 
{
    grid-row: span 2;
}

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