/*
    www.cssscript.com/responsive-justified-photo-grid-layout-pure-css-flexbin-css/
    w3reign.com/responsive-justified-photo-grid-gallery-with-pure-css/
*/
.galleryMain, .galleryMain2 { display: flex;overflow: hidden;flex-wrap: wrap;min-height:100px;width:100%; } /*min-height:700px;*/ /*max-width:1654px;*/
.galleryMain:after, .galleryMain2:after { content: '';flex-grow: 999999999;min-width: 300px;height: 0; }
.galleryMain > *, .galleryMain2 > * {
    position: relative;
    display: block;
    height: var(--galPicHeight) !important;
    margin: 3px;
    flex-grow: 1; 
}
.galleryMain > * > img, .galleryMain2 > * > img {
    height: var(--galPicHeight) !important;
    object-fit: cover;
    max-width: 100%;
    min-width: 100%;
    vertical-align: bottom; 
}
@media (max-width: 980px) {
    .galleryMain {
        display: flex;
        overflow: hidden;
        flex-wrap: wrap;
        min-height:600px;
    }
    .galleryMain:after {
        content: '';
        flex-grow: 999999999;
        min-width: 150px;
        height: 0; }
    .galleryMain > * {
        position: relative;
        display: block;
        height: 200px !important;
        margin: 2.5px;
        flex-grow: 1; }
    .galleryMain > * > img {
        height: 200px !important;
        object-fit: cover;
        max-width: 100%;
        min-width: 100%;
        vertical-align: bottom; }
}
/*
    @media (max-width: 400px) {
    .galleryMain {
        display: flex;
        overflow: hidden;
        flex-wrap: wrap;
        margin: -2.5px; 
        min-height:500px;
    }
    .galleryMain:after {
        content: '';
        flex-grow: 999999999;
        min-width: 100px;
        height: 0; }
    .galleryMain > * {
        position: relative;
        display: block;
        height: 100px !important;
        margin: 2.5px;
        flex-grow: 1; }
    .galleryMain > * > img {
        height: 100px !important;
        object-fit: cover;
        max-width: 100%;
        min-width: 100%;
        vertical-align: bottom; }
    .galleryMain.flexbin-margin {
        margin: 2.5px; } 
}

*/