.content_image_banner {
  position: relative;
  padding-block: var(--margin-padding-container-margin-updown);
}
.content_image_banner .background-image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.content_image_banner .background-image-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--hsl-color-system-dark-green-750-CI, rgba(0, 125, 64, 0.8)) 0%, var(--hsl-color-system-black-600, rgba(0, 0, 0, 0.48)) 100%);
  background-blend-mode: hard-light;
  backdrop-filter: blur(2px);
}
.content_image_banner .background-image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.content_image_banner .container {
  position: relative;
  z-index: 2;
}
.content_image_banner .container > .row {
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .content_image_banner .container > .row {
    aspect-ratio: unset;
  }
}
.content_image_banner .container h1,
.content_image_banner .container h2,
.content_image_banner .container h3,
.content_image_banner .container h4,
.content_image_banner .container h5 {
  color: var(--text-default-secondary);
}
