.image-banner-section {
  --image-banner-height: 750px;
  --image-banner-overlay-opacity: 0;
}

.image-banner-section.small {
  --image-banner-height: 450px;
}

.image-banner-section.big {
  --image-banner-height: 1080px;
}

.image-banner-section.adapt {
  --image-banner-height: auto;
}

.image-banner-section.full_height {
  --image-banner-height: 100vh;
  --min-height: 700px;
}

.image-banner__image-item {
  min-height: var(--min-height);
}

@media (max-width: 959px) {
  .image-banner-section {
    --image-banner-height: 450px;
  }

  .image-banner-section.small {
    --image-banner-height: 250px;
  }

  .image-banner-section.big {
    --image-banner-height: 600px;
  }
}

.image-banner-section {
  position: relative;
  height: auto;
}

.image-banner__image {
  display: flex;
  flex-flow: row nowrap;
  gap: 0;
  width: 100%;
}


@media (max-width: 959px) {
  .image-banner__image {
    flex-flow: row wrap;
  }
}

.image-banner__image-item {
  position: relative;
  width: 100%;
  height: var(--image-banner-height);
}

.image-banner__image-item img,
.image-banner__image-item svg {
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.image-banner__image-item::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
  user-select: none;
  background-color: rgba(0, 0, 0, var(--image-banner-overlay-opacity));
}

.image-banner__carousel-track>li::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
  user-select: none;
  background-color: rgba(0, 0, 0, var(--image-banner-overlay-opacity));
}

.image-banner__content {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
}

.image-banner__container--show-bg {
  background-color: rgb(var(--color-background));
}

.image-banner-section.content-below .image-banner__content {
  position: relative;
  height: auto;
}

.image-banner__heading.title3 {
  white-space: pre-wrap;
  font-weight: 600;
  font-size: 64px;
  text-transform: uppercase;
  line-height: 100%;
}

.image-banner__heading.title5 {
  font-weight: 600 !important;
  font-size: 24px;
  line-height: 100%;
  text-transform: none !important;
}

.image-banner__heading,
.image-banner__subheading,
.image-banner__description {
  color: rgb(var(--color-text));
}

.image-banner__button-group {
  display: flex;
  flex-grow: 0;
  gap: 14px;
}

.image-banner__description {
  font-size: 21px;
  line-height: 27px;
  letter-spacing: 0;
}

.image-banner__subheading {
  font-size: 28px;
  line-height: 36px;
  letter-spacing: .06px;
}

@media (max-width: 959px) {
  .image-banner__heading {
    font-size: 32px;
  }

  .image-banner__subheading {
    font-size: 24px;
    line-height: 170%;
  }
}

.image-banner-section .divider {
  display: block;
  width: 2px;
  height: 80px;
  background: #ffffff;
}

.image-banner-section .iocn-with-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-columns-with-image__heading-link-text {
  font-size: 16px;
  font-family: 'MiSans';
  font-weight: 600;
  text-decoration: underline;
  line-height: 100%;
}

.image-banner-section .icon-title {
  font-size: 30px;
  font-weight: 600;
  font-family: 'Gilroy';
  line-height: 100%;
  letter-spacing: 0;
}

@media (max-width: 1023px) {
  .image-banner__heading.title4 {
    font-size: 32px;
    line-height: 32px;
  }

  .image-banner__description {
    font-size: 16px;
    line-height: 20px;
  }
}