.gallery {
  display: flex;
  flex-wrap: wrap;       /* allows wrapping if too many images */
  gap: 10px;             /* space between images */
  justify-content: center; /* center them horizontally */
}

.gallery a img {
  max-width: 200px;      /* thumbnail size */
  height: auto;
  border-radius: 4px;    /* optional rounded corners */
}

.box-image-text .image {
  min-height: 190px;
  max-height: 190px;
}

.box-image-text .image img {
  max-height: 190px;
  margin: auto;
}

.box-simple {
  min-height: 230px;
}

.background-image-fixed-2 {
  background-image: url('/img/Itilla-banner.jpg') !important;
  background-size: cover;
  background-position: center;
}


