.fgl-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /*grid-auto-rows: 200px;*/
    gap: 10px;
}

.fgl-gallery img {
    width: 100%;
    height: 400px!important;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.fgl-gallery .fgl-lightbox:nth-of-type(1), .fgl-gallery .fgl-lightbox:nth-of-type(2){
      grid-column: span 3;
      
}


.fgl-gallery .fgl-lightbox:nth-of-type(3), .fgl-gallery .fgl-lightbox:nth-of-type(4), .fgl-gallery .fgl-lightbox:nth-of-type(5){
      grid-column: span 2;

}
/* lightbox */
.fgl-lightbox-overlay {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.9);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.fgl-lightbox-overlay img {
    max-width:100%;
    max-height:100%;
}

@media(max-width: 700px){
    .fgl-gallery{
        grid-template-columns: repeat(1, 1fr);
    }
    .fgl-gallery img{
        height: 300px!important;
    }
    
    .fgl-lightbox-overlay img{
        max-width:90%;
        max-height:90%;
    }
}