section.subsite-hero {
  --_text-color: var(--text-color-k, var(--white));
}
section.subsite-hero:not(.admin):first-of-type {
  margin-top: calc(var(--header-height) * -1);
}
@container main (min-width: 90rem) {
  section.subsite-hero {
    overflow: hidden;
  }
}
section.subsite-hero > .grid {
  height: 100%;
}
section.subsite-hero .img-wrapper {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/4;
  height: 100%;
  position: relative;
  z-index: 1;
  aspect-ratio: 16/7;
}
@container main (max-width: 64rem) {
  section.subsite-hero .img-wrapper {
    height: 60svh;
    aspect-ratio: unset;
  }
}
section.subsite-hero .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.subsite-hero .img-wrapper span {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 2;
  display: block;
  top: 0;
  left: 0;
}
section.subsite-hero .content {
  z-index: 3;
  color: var(--_text-color);
  padding-top: var(--header-height);
}
@container main (max-width: 64rem) {
  section.subsite-hero .content {
    padding-bottom: 2.5rem;
  }
}
@container main (min-width: 64.0625rem) {
  section.subsite-hero .content {
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
section.subsite-hero .content .text {
  text-align: center;
}
@container main (min-width: 64.0625rem) {
  section.subsite-hero .content .text {
    padding-inline: 2.5rem;
    padding-top: 20%;
    text-align: left;
  }
}
section.subsite-hero .content .text h1 {
  font-size: clamp(24px, 3.65vw, 52px);
  line-height: 1.2;
}
section.subsite-hero .content .text .lead-text {
  font: var(--lead-font);
}
section.subsite-hero .content .text .lead-text ul,
section.subsite-hero .content .text .lead-text ol {
  display: inline-block;
}
@container main (min-width: 64.0625rem) {
  section.subsite-hero .content .text .lead-text ul,
  section.subsite-hero .content .text .lead-text ol {
    padding-left: 1.5625rem;
  }
}
@container main (max-width: 64rem) {
  section.subsite-hero .content .text .lead-text ul li,
  section.subsite-hero .content .text .lead-text ol li {
    list-style-position: inside;
  }
}
@container main (min-width: 64.0625rem) {
  section.subsite-hero .form-wrapper {
    padding: 0;
  }
}
section.subsite-hero .form {
  background: var(--form-bg);
  padding: 1.875rem;
  border-radius: 0.625rem;
}
section.subsite-hero .form .with_frm_style legend + h3,
section.subsite-hero .form .with_frm_style h3.frm_form_title {
  font: var(--h6-font);
  color: var(--black);
  font-size: var(--lead-size);
  margin: 0;
}
section.subsite-hero .form .frm_description p {
  font: var(--body-font) !important;
  font-weight: 400 !important;
}
section.subsite-hero .form.bg-blue-light {
  --form-bg: var(--blue-light);
  --btn-bg: var(--yellow);
  --input-bg: var(--_text-color);
}
section.subsite-hero .form.bg-yellow-light {
  --form-bg: var(--yellow);
  --dz-bg: #f8ebd1;
  --btn-bg: var(--blue-light);
  --btn-bg-hover: var(--blue);
}