.mhpc-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90vh;
  background-color: var(--mhpc-text-heading-1);
  isolation: isolate;
  z-index: 1;
}
.mhpc-hero__media {
  position: absolute;
  inset: 0px;
  z-index: -2;
}
.mhpc-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.mhpc-hero__overlay {
  position: absolute;
  inset: 0px;
  z-index: 0;
  background-color: var(--bs-black);
  opacity: 0.5;
  pointer-events: none;
}
.mhpc-hero__decorations {
  position: absolute;
  inset: 0px;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.mhpc-deco {
  position: absolute;
  display: block;
}
.mhpc-deco--tl-green {
  top: 0px;
  left: 6%;
  width: 80px;
  height: 80px;
  background-color: var(--mhpc-primary);
  border-radius: 0px 0px 160px 160px;
}

.mhpc-deco--tl-dot {
  top: 40px;
  left: 3%;
  width: 64px;
  height: 144px;
  border-radius: 510px;
  background-color: rgba(255, 255, 255, 0.08);
}
.mhpc-deco--tr-dark {
  top: -70px;
  right: 8%;
  width: 80px;
  height: 150px;
  border-radius: 500px;
  background-color: var(--mhpc-text-heading-1);
}
.mhpc-deco--tr-ring {
  top: -90px;
  right: -20px;
  width: 110px;
  height: 260px;
  border-radius: 500px;
  border: 2px solid rgba(255, 255, 255, 0.55);
}
.mhpc-deco--bl-ring {
  bottom: -46px;
  left: -38px;
  width: 110px;
  height: 170px;
  border-radius: 500px;
  border: 2px solid rgba(255, 255, 255, 0.55);
}
.mhpc-deco--br-pill {
  bottom: -114px;
  right: 7%;
  width: 60px;
  height: 169px;
  border-radius: 130px;
  background-color: var(--mhpc-primary);
}

@media (min-width: 768px) and (max-width:1200px) {

  div .mhpc-deco--tl-green {
    width: 210px;
    height: 290px;
  }
  div .mhpc-deco--tl-dot {
    width: 104px;
    height: 324px;
  }
 div  .mhpc-deco--tr-dark {
    width: 160px;
    height: 280px;
  }
  div .mhpc-deco--bl-ring {
    bottom: -126px;
    left: 22px;
    width: 200px;
    height: 350px;
  }
  div .mhpc-deco--br-pill {
    bottom: -114px;
    width: 90px;
    height: 199px;
  }
}


@media (min-width: 1200px) {
  .mhpc-deco--br-pill {
    bottom: -74px;
    width: 150px;
    height: 239px;
  }
  .mhpc-deco--tl-green {
    width: 180px;
    height: 210px;
  }
  .mhpc-deco--tl-dot {
    width: 104px;
    height: 234px;
  }
  .mhpc-deco--bl-ring {
    bottom: -86px;
    left: 52px;
    width: 140px;
    height: 300px;
  }
  .mhpc-deco--br-pill {
    width: 120px;
    height: 259px;
  }
}

.mhpc-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
}
.mhpc-hero__logo svg {
  display: block;
  width: 150px;
  height: auto;
}
.mhpc-hero__title {
  margin: 1.5rem 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.mhpc-hero__eyebrow {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--mhpc-text-inverse);
}
.mhpc-hero__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  font-weight: 500;
  line-height: 1.05;
  font-size: clamp(1.85rem, 10vw, 4.4rem);
}
.mhpc-hero__line {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0px 0.2em;
}
.mhpc-hero__word--green {
  color: var(--mhpc-primary);
}
.mhpc-hero__word--light {
  color: var(--mhpc-text-inverse);
}
.mhpc-hero__word--muted {
  color: var(--mhpc-text-disabled);
}
@media (max-width: 991.98px) {
  .mhpc-hero__title {
    gap: 0.5rem;
  }
  .mhpc-hero__eyebrow {
    font-size: 1.125rem;
    letter-spacing: 0.04em;
  }
}
@media (min-width: 992px) {
  .mhpc-hero__content {
    & svg {
      width: 280px;
    }
  }
  .mhpc-hero__eyebrow {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .mhpc-hero__content {
    & svg {
      width: 320px;
    }
  }
  .mhpc-hero__headline {
    font-size: 5rem;
  }
}
