.image-gallery-block {
  position: relative;
}
.image-gallery-block .image-gallery-headline,
.image-gallery-block .image-gallery-subhead,
.image-gallery-block .gallery-image,
.image-gallery-block .gallery-caption {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}
.image-gallery-block.is-visible .image-gallery-headline,
.image-gallery-block.is-visible .image-gallery-subhead,
.image-gallery-block.is-visible .gallery-image,
.image-gallery-block.is-visible .gallery-caption {
  animation-name: fadeIn;
  animation-duration: 500ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.image-gallery-block.is-visible .image-gallery-headline {
  animation-delay: 0.1s;
}
.image-gallery-block.is-visible .image-gallery-subhead {
  animation-delay: 0.2s;
}
.image-gallery-block.is-visible .gallery-image {
  animation-delay: 0.3s;
}
.image-gallery-block.is-visible .gallery-caption {
  animation-delay: 0.4s;
}
.image-gallery-block .image-gallery-headline {
  color: #144178;
  margin-bottom: 0.5rem;
  text-align: center;
}
.image-gallery-block .image-gallery-subhead {
  color: #58585B;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 0.875rem;
}
.image-gallery-block .gallery-container {
  position: relative;
  z-index: 1;
}
.image-gallery-block .gallery-half-background {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: rgb(18 165 176 / 15%);
  z-index: 0;
  transition: height 0.2s ease-out;
}
.image-gallery-block .image-gallery-swiper {
  border-radius: 10px;
}
.image-gallery-block .gallery-image-wrapper {
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: 25px;
  overflow: hidden;
}
.image-gallery-block .gallery-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-gallery-block .gallery-caption {
  text-align: center;
  color: #004554;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.375;
  margin-top: 2rem;
  padding: 0 1rem;
}
.image-gallery-block .swiper-pagination {
  position: relative;
  bottom: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 1.5rem;
  padding-bottom: 2.5rem;
}
.image-gallery-block .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #004554;
  opacity: 1;
  margin: 0 5px;
  transition: background-color 0.3s ease;
  border-radius: 50%;
  cursor: pointer;
}
.image-gallery-block .swiper-pagination-bullet:hover {
  background-color: #12A5B0;
}
.image-gallery-block .swiper-pagination-bullet-active {
  background-color: #12A5B0;
}
