.home-intro {
  position: relative;
  background-color: var(--color-grey);
  overflow: hidden;
}
.home-intro__wave {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.home-intro__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: var(--section-pad-v);
  padding-bottom: 3rem;
  gap: 1.5rem;
}
.home-intro__logo-mark {
  width: 2rem;
  height: 2rem;
  color: var(--color-navy);
}
.home-intro__logo-mark svg {
  width: 100%;
  height: 100%;
}
.home-intro__heading {
  font-size: var(--font-size-h3-fluid);
  color: var(--color-navy);
  margin: 0;
  line-height: 1.15;
  font-weight: 600;
}
.home-intro__body {
  font-size: var(--font-size-body);
  color: var(--color-navy);
  line-height: var(--lh-body);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.home-intro__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.1875rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
}
.home-intro__award-badges {
  display: flex;
  align-items: center;
  gap: inherit;
}
.home-intro__award-badges img {
  height: 5rem;
  width: auto;
  object-fit: contain;
}
.home-intro__team-photo {
  position: relative;
  height: 90vh;
  overflow: hidden;
}
.home-intro__team-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, var(--color-grey), transparent);
  z-index: 1;
  height: 300px;
}
.home-intro__team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 80%;
  display: block;
}
@media (width <= 46.875rem) {
  .home-intro__badges {
    flex-direction: column;
    gap: 1.5rem;
  }
  .home-intro__team-photo {
    height: 280px;
  }
}

/*# sourceMappingURL=intro.css.map */
