/*
 Theme Name:     Big Waters Federation
 Theme URI:      https://www.elegantthemes.com/gallery/divi/
 Description:    Divi Child Theme for the site Big Waters Federation
 Author:         Big Waters Federation
 Author URI:     https://www.bigwaters.org
 Template:       Divi
 Version:        1.0.0
*/
 
 
/* =Theme customization starts here
------------------------------------------------------- */
.blog-gallery-images {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px; /* Set fixed height */
    overflow: hidden; /* Hide overflow if needed */
    transition: all 3000ms ease; /* Apply transition with 3000ms duration */
}

.blog-gallery-images img {
    height: 500px; /* Force the image height to 500px */
    width: auto; /* Scale width to maintain aspect ratio */
    object-fit: contain; /* Ensure the image is contained within the container without being cropped */
    transition: all 3000ms ease; /* Apply transition with 3000ms duration */
}
