section#gallery .container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    
}
section#gallery .container .gallery-item{
    width: 100%;
    height: 100%;
    max-height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
section#gallery .container .gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section#gallery .container .gallery-item video{
    width: 100%;
    height: 100%;
    object-fit:contain;
}

/* -------------------- Design Modal -------------------- */
div#glightbox-body div#glightbox-slider .gslide .ginner-container div.gslide-media{
    position: relative;
}
div#glightbox-body div#glightbox-slider .gslide .ginner-container div.gslide-media::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) , rgba(0, 0, 0, 0.0));
    height: 100px;
    z-index: 8999;
}
div#glightbox-body div#glightbox-slider .gslide .ginner-container div.gslide-media div.description{
    position: absolute;
    z-index: 9000;
    color: #fff;
    left: 40px;
    bottom: 10px;
    font-weight: 600;
    font-size: 24px;
    /* color: var(--color-white); */
}