/* Logo container fix */
.navbar-header {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Logo brand link fix */
.navbar-brand {
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    float: none !important;
}


@media only screen and (max-width: 991px) {
  header .navbar-header .navbar-brand img {
    max-height: 70px;
  }
}


.image-gallery {
    display: flex;
    flex-wrap: wrap;
}

.image-gallery .col-md-3 {
    display: flex;
    margin-bottom: 30px;
}

.image-gallery figure {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin: 0;
}

.image-gallery figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Ensure all gallery items have equal height */
.image-gallery .col-md-3 figure a {
    display: block;
    width: 100%;
    height: 100%;
}