@charset "UTF-8";
:root {
  --ink: #171b1c;
  --muted: #53615e;
  --light: #e6e6e6;
  --green: #11ad82;
  --green-bright: #24d8a7;
  --dark: #052b22;
  --dark-2: #031d18;
  --line: #d9e5e0;
  --paper: #ffffff;
  --soft: #f3f5f4;
  --shadow: 0 18px 50px rgba(3, 29, 24, .18);
  --primary: var(--green);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "helvetica-neue-lt-pro", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.45;
  font-size: 1.15rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 1.5rem;
  color: inherit;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

h1, .h1 {
  font-size: 60px;
}

h2, .h2 {
  font-size: 48px;
}

h3, .h3 {
  font-size: 40px;
}

h4, .h4 {
  font-size: 36px;
}

h5, .h5 {
  font-size: 26px;
}

h6, .h6 {
  font-size: 22px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease, text-decoration-color 0.22s ease;
}

img,
video {
  display: block;
  max-width: 100%;
}

p {
  margin: 0;
  margin-bottom: 1.4rem;
}

.text-primary {
  color: var(--primary);
}

.pt-0 {
  padding-top: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

u {
  text-decoration: underline;
  text-underline-offset: 14px;
}

ul {
  padding-left: 1rem;
}

.cta {
  border-top: 1px solid var(--light);
}

.section-logo-bg:before {
  content: "";
  display: block;
  width: 550px;
  height: 550px;
  background: url(../images/logo-icon.svg);
  position: absolute;
  top: -300px;
  right: -100px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
  opacity: 0.1;
  transform-origin: center;
  animation: section-logo-rotate 180s linear infinite;
}
.section-logo-bg.alt:before {
  top: -200px;
  right: -20px;
}

@keyframes section-logo-rotate {
  to {
    transform: rotate(1turn);
  }
}
@media (prefers-reduced-motion: reduce) {
  .section-logo-bg:before {
    animation: none;
  }
}
.container {
  width: min(100% - 48px, 1700px);
  margin-inline: auto;
  padding-left: 4vw;
  padding-right: 4vw;
}

.narrow {
  width: min(100% - 48px, 1080px);
}

.section-pad {
  padding: 10vh 0;
}

.page-header {
  padding: 10vh 0 11vh;
}
.page-header p:last-child {
  margin-bottom: 0;
}

.legal-page {
  background: #fff;
}
.legal-page h1 {
  margin: 0 0 24px;
}
.legal-page .lead {
  width: min(780px, 100%);
  margin: 0 0 48px;
  color: #252c2e;
  font-size: 1.18rem;
  line-height: 1.58;
  font-weight: 600;
}

.legal-content {
  display: grid;
  gap: 22px;
}
.legal-content h3 {
  margin: 18px 0 0;
  font-size: 2rem;
}
.legal-content p {
  margin: 0;
  color: #222a28;
  line-height: 1.68;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 229, 224, 0.7);
}
.site-header a.brand {
  width: 175px;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 18px;
  pointer-events: none;
}

.site-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
  flex: 0 0 auto;
}
.brand-logo {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  margin-left: auto;
  font-size: 1rem;
}

.nav-item {
  display: flex;
  align-items: center;
  min-height: 100%;
}
.nav-item::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 26px;
  display: none;
}
.nav-item:hover::before, .nav-item:focus-within::before {
  display: block;
}

.nav-trigger {
  color: #111;
  position: relative;
  font-weight: 600;
}

.nav-action > .nav-trigger::after {
  display: none;
}

.nav-trigger::after,
.site-footer nav a::after,
.insight-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.site-footer nav a,
.insight-grid a {
  position: relative;
  width: fit-content;
}

.nav-item:hover > .nav-trigger,
.nav-item:focus-within > .nav-trigger,
.nav-item.is-open > .nav-trigger,
.nav-trigger:hover,
.nav-trigger:focus-visible,
.site-footer nav a:hover,
.site-footer nav a:focus-visible,
.insight-grid a:hover,
.insight-grid a:focus-visible {
  color: var(--green);
}

.nav-action:hover > .btn,
.nav-action:focus-within > .btn,
.nav-action > .btn:hover,
.nav-action > .btn:focus-visible {
  color: #fff;
}

.nav-item:hover > .nav-trigger::after,
.nav-item:focus-within > .nav-trigger::after,
.nav-item.is-open > .nav-trigger::after,
.nav-trigger:hover::after,
.nav-trigger:focus-visible::after,
.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after,
.insight-grid a:hover::after,
.insight-grid a:focus-visible::after {
  transform: scaleX(1);
}

.mega-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  z-index: 18;
  padding: 30px 0;
  background: #fff;
  border-top: 1px solid rgba(217, 229, 224, 0.72);
  box-shadow: 0 28px 60px rgba(3, 29, 24, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.28s ease, visibility 0.24s ease;
}
.nav-item:hover > .mega-menu, .nav-item:focus-within > .mega-menu, .nav-item.is-open > .mega-menu, .mega-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-grid {
  display: grid;
  gap: 16px;
  width: min(100%, 1620px);
  margin-inline: auto;
}
.mega-grid-six {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.mega-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mega-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mega-card {
  display: grid;
  align-content: start;
  min-height: 108px;
  padding: 24px;
  border: 1px solid var(--light);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(3, 29, 24, 0.03);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}
.mega-card:hover, .mega-card:focus-visible {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(3, 29, 24, 0.1);
}
.mega-card::after {
  display: none;
}
.mega-card strong {
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
}
.mega-card span {
  margin-top: 12px;
  color: #656b68;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 22px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17, 173, 130, 0.22);
  color: white;
}

.btn-solid {
  background: var(--primary);
  color: #fff;
}
.btn-solid:hover, .btn-solid:focus-visible {
  background: #0f9974;
  border-color: #0f9974;
}

.btn-outline {
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover, .btn-outline:focus-visible {
  color: #fff;
  background: var(--primary);
}

.hero {
  position: relative;
  min-height: min(680px, 100vh - 82px);
  isolation: isolate;
  overflow: hidden;
  background: var(--dark-2);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 78% 36%, rgba(36, 216, 167, 0.42), transparent 32%), linear-gradient(90deg, rgba(0, 18, 16, 0.82), rgba(0, 40, 32, 0.46) 54%, rgba(0, 18, 16, 0.2));
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle at 20% 80%, rgba(36, 216, 167, 0.23), transparent 22%), linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  z-index: -3;
}

.hero-fallback {
  z-index: -4;
  background: #333333;
  animation: drift 16s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08) translate3d(-24px, 10px, 0);
  }
}
.hero-content {
  min-height: inherit;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 26px;
  color: #fff;
}

.hero h1 {
  width: min(620px, 100%);
  margin: 0 0 34px;
}

.subpage-hero {
  position: relative;
  isolation: isolate;
  min-height: 490px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--dark-2);
}
.subpage-hero::before, .subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.subpage-hero::after {
  background: radial-gradient(circle at 74% 34%, rgba(36, 216, 167, 0.32), transparent 30%), linear-gradient(90deg, rgba(0, 18, 16, 0.78), rgba(0, 25, 21, 0.34) 54%, rgba(0, 18, 16, 0.12));
}
.subpage-hero .eyebrow {
  text-align: left;
}
.subpage-hero h1 {
  width: min(720px, 100%);
}
.subpage-hero p:last-child {
  width: min(560px, 100%);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(350px, 100%);
  height: 52px;
  background: var(--green);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}
.search-bar:hover, .search-bar:focus-within {
  background: #0f9974;
  box-shadow: 0 18px 42px rgba(17, 173, 130, 0.28);
  transform: translateY(-1px);
}
.search-bar input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 18px;
  outline: 0;
  font-size: inherit;
}
.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.86);
}
.search-bar button {
  width: 56px;
  height: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.search-bar-button {
  padding: 0 18px 0 22px;
  color: #fff;
}
.search-bar-button::after {
  display: none;
}
.search-bar-button span:first-child {
  font-size: 1.2rem;
  font-weight: 400;
}
.search-bar-button span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 100%;
  font-size: 2rem;
  line-height: 1;
}

.intro {
  position: relative;
  overflow: hidden;
}
.intro::after {
  content: "";
  position: absolute;
  left: -28px;
  bottom: 18px;
  width: 190px;
  height: 190px;
  opacity: 0.32;
  background-image: radial-gradient(var(--green) 2px, transparent 2px);
  background-size: 22px 22px;
}
.intro h2 {
  max-width: 900px;
  margin: 0 0 74px;
}

.cta h2,
.services h2,
.testimonials h2,
.insights h2 {
  margin: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.lead {
  margin-top: 0;
  font-size: 26px;
  line-height: 1.35;
  font-weight: 500;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.story-section {
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: clamp(44px, 10vw, 150px);
  align-items: center;
}

.story-copy h2,
.section-copy h2 {
  margin: 0 0 26px;
}

.story-copy p {
  max-width: 650px;
}

.quote-card {
  border: 1px solid var(--green);
  border-radius: 12px;
  padding: 2rem;
}
.quote-card p {
  margin: 0;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 500;
}
.quote-card span {
  color: var(--green);
}

.values-section {
  position: relative;
  overflow: hidden;
  background: var(--soft);
}
.values-section::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 42%;
  width: 300px;
  height: 190px;
  opacity: 0.22;
  background-image: radial-gradient(var(--green) 4px, transparent 4px);
  background-size: 24px 24px;
  transform: rotate(18deg);
}

.section-copy.insight-section-heading {
  width: 100%;
}

.experience-section {
  background: #fff;
}

.vacancies-section {
  padding-bottom: 5rem;
}

.candidate-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  min-height: 620px;
}

.candidate-hero--heading-only {
  padding-bottom: clamp(48px, 7vh, 78px);
}
.candidate-hero--heading-only .container {
  display: flex;
  justify-content: center;
}
.candidate-hero--heading-only .candidate-copy {
  width: min(980px, 100%);
  margin-inline: auto;
  text-align: center;
}
.candidate-hero--heading-only .lead {
  width: min(840px, 100%);
  margin-inline: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.28;
  font-weight: 600;
}

.candidate-copy h1,
.candidate-feature-heading h1,
.benefits-header h1 {
  margin: 0 0 24px;
}

.candidate-copy .lead,
.feature-copy .lead {
  margin: 0 0 34px;
  color: #242b2c;
  font-size: 1.2rem;
  line-height: 1.45;
}
.candidate-copy p:not(.lead),
.feature-copy p:not(.lead) {
  margin: 0 0 22px;
  font-size: 1.04rem;
  line-height: 1.62;
}

.candidate-hero--heading-only .candidate-copy .lead {
  margin-inline: auto;
  margin-bottom: 0;
  text-align: center;
}

.candidate-copy .btn {
  margin-top: 16px;
}

.candidate-image-wrap {
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
}
.candidate-image-wrap img {
  width: 100%;
}

.candidate-story {
  padding-bottom: clamp(64px, 8vh, 108px);
}

.candidate-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.candidate-story-copy {
  width: min(780px, 100%);
}
.candidate-story-copy h2 {
  margin: 0 0 26px;
}
.candidate-story-copy p {
  margin: 0 0 22px;
  color: #242b2c;
  font-size: 1.06rem;
  line-height: 1.65;
}
.candidate-story-copy p:last-child {
  margin-bottom: 0;
}

.candidate-story-image {
  justify-self: center;
  width: min(100%, 520px);
}
.candidate-story-image img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  border-radius: 8px;
}

.career-badge {
  position: absolute;
  right: -38px;
  top: -22px;
  display: grid;
  place-items: center;
  width: 160px;
  aspect-ratio: 1;
  padding: 24px;
  color: #fff;
  background: var(--green);
  clip-path: polygon(50% 0%, 58% 8%, 69% 4%, 75% 15%, 87% 15%, 91% 27%, 100% 35%, 96% 47%, 100% 58%, 91% 66%, 90% 79%, 77% 83%, 70% 94%, 58% 91%, 50% 100%, 42% 91%, 30% 94%, 23% 83%, 10% 79%, 9% 66%, 0% 58%, 4% 47%, 0% 35%, 9% 27%, 13% 15%, 25% 15%, 31% 4%, 42% 8%);
  font-size: 1.35rem;
  line-height: 1.12;
  font-weight: 820;
  text-align: center;
}

.candidate-feature-heading {
  width: min(780px, 100%);
  margin-bottom: 92px;
}
.candidate-feature-heading h2 {
  margin: 0 0 22px;
}
.candidate-feature-heading p {
  margin: 0;
  color: #242b2c;
  font-size: 1.16rem;
  line-height: 1.5;
  font-weight: 600;
}

.candidate-feature--embedded {
  padding-top: clamp(56px, 7vh, 92px);
  border-top: 1px solid rgba(28, 165, 116, 0.16);
}
.candidate-feature--embedded .candidate-feature-heading {
  width: min(980px, 100%);
  margin-bottom: clamp(34px, 5vw, 58px);
}
.candidate-feature--embedded .feature-media-grid {
  grid-template-columns: minmax(300px, 560px) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 82px);
}
.candidate-feature--embedded .feature-media-grid > img {
  aspect-ratio: 1.32;
  border-radius: 8px;
}
.candidate-feature--embedded .feature-copy {
  max-width: 760px;
}

.feature-media-grid {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  gap: clamp(54px, 8vw, 90px);
  align-items: center;
}
.feature-media-grid > img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: 12px;
}

.feature-copy h2 {
  margin: 0 0 22px;
}

.benefits-header .section-copy {
  margin-bottom: 0;
}

.contractor-support-section {
  padding-bottom: 1rem;
}

.contractor-hero-grid .section-copy {
  width: min(760px, 100%);
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contractor-quick-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(28, 165, 116, 0.24);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(24, 52, 43, 0.07);
  margin-top: -24px;
  margin-bottom: 72px;
}
.contractor-quick-card h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
}

.contractor-quick-copy {
  display: grid;
  gap: 18px;
}

.contractor-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.contractor-quick-actions .btn {
  min-height: 42px;
  padding-inline: 20px;
}

.contractor-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.contractor-meta-list li {
  position: relative;
  padding-left: 26px;
  color: #404846;
  font-size: 0.96rem;
  line-height: 1.45;
}
.contractor-meta-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(28, 165, 116, 0.12);
}

.contractor-benefits-intro {
  margin-bottom: 2rem;
}

.contractor-care-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  padding: clamp(42px, 6vw, 72px);
  border: 1px solid rgba(36, 216, 167, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  margin-bottom: 72px;
}

.contractor-care-copy {
  max-width: 650px;
}
.contractor-care-copy .section-kicker {
  color: var(--green-bright);
}
.contractor-care-copy h2 {
  margin: 0 0 20px;
  color: #fff;
}
.contractor-care-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.62;
}

.contractor-care-actions {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.care-action-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 6px;
  background: #fff;
}
.care-action-card + .care-action-card {
  border-top: 1px solid var(--light);
  border-radius: 0 0 6px 6px;
}
.care-action-card .benefit-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  border-radius: 50%;
}
.care-action-card h5 {
  margin: 0 0 12px;
}
.care-action-card p {
  margin: 0;
  color: #404846;
  font-size: 1rem;
  line-height: 1.6;
}

.contractor-benefits-intro .section-copy {
  width: min(760px, 100%);
  margin-bottom: clamp(58px, 6vw, 84px);
}

.contractor-benefit-grid {
  align-items: stretch;
}

.benefit-arrows {
  display: flex;
  gap: 12px;
  padding-top: 50px;
}
.benefit-arrows button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--green);
  background: #f4f5f4;
  font-size: 1.35rem;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}
.benefit-arrows button + button {
  color: #fff;
  background: var(--green);
}
.benefit-arrows button:hover, .benefit-arrows button:focus-visible {
  transform: translateY(-1px);
}
.benefit-arrows button:focus-visible {
  outline: 3px solid rgba(17, 173, 130, 0.28);
  outline-offset: 4px;
}
.benefit-arrows button:disabled {
  color: #95aaa4;
  background: #f4f5f4;
  cursor: default;
  opacity: 0.58;
  transform: none;
}

.benefit-rail-wrap {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
  overflow: hidden;
}

.benefit-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-bottom: 5rem;
}
.benefit-rail::-webkit-scrollbar {
  display: none;
}
.benefit-rail:focus-visible {
  outline: 3px solid rgba(17, 173, 130, 0.28);
  outline-offset: 4px;
}

.benefit-card {
  display: grid;
  align-content: start;
  padding: 30px;
  border: 1px solid var(--light);
  border-radius: 8px;
  background: #fff;
  scroll-snap-align: start;
}
.benefit-card h2,
.benefit-card h5 {
  margin: 0 0 18px;
}
.benefit-card p {
  margin: 0;
  color: #404846;
  font-size: 1rem;
  line-height: 1.6;
}
.benefit-card p + p,
.benefit-card p + .btn {
  margin-top: 18px;
}
.benefit-card ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 16px 0;
  color: #404846;
  font-size: 0.98rem;
  line-height: 1.5;
}

.benefit-icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  position: relative;
  margin-bottom: 1rem;
}
.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.care-action-card .benefit-icon svg {
  fill: none;
  stroke: var(--green);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.employer-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: center;
}

.employer-hero-copy h1 {
  margin: 0 0 24px;
}
.employer-hero-copy .lead {
  margin: 0 0 30px;
  color: #252c2e;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 500;
}
.employer-hero-copy p:not(.lead) {
  margin: 0 0 28px;
  font-size: 1.06rem;
  line-height: 1.65;
}

.employer-hero-media {
  position: relative;
  justify-self: center;
  width: min(100%, 480px);
}

.employer-main-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
}

.employer-inset-image {
  position: absolute;
  left: -80px;
  top: 44%;
  width: 215px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid #ff7b86;
  border-radius: 50%;
}

.employer-approach {
  background: #fff;
}

.employer-approach-heading {
  margin-bottom: 100px;
}

.approach-header-copy {
  width: min(920px, 100%);
  margin-inline: auto;
  text-align: center;
}
.approach-header-copy p {
  margin-inline: auto;
}

.page-header:has(.approach-header-copy) .container {
  display: flex;
  justify-content: center;
}

.approach-grid {
  display: grid;
  gap: 68px;
}

.approach-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5.5vw;
  align-items: center;
}
.approach-row.is-reversed .approach-image {
  grid-column: 2;
}
.approach-row.is-reversed .approach-copy {
  grid-column: 1;
  grid-row: 1;
}

.approach-image {
  margin: 0;
}
.approach-image img {
  width: 100%;
  aspect-ratio: 1.92;
  object-fit: cover;
  border-radius: 12px;
}

.approach-copy {
  width: min(600px, 100%);
}
.approach-copy h2 {
  margin: 0 0 18px;
}
.approach-copy p {
  margin: 0;
}

.employer-tech {
  background: var(--soft);
}

.employer-tech-heading {
  width: min(820px, 100%);
  margin-bottom: 44px;
}
.employer-tech-heading p {
  margin: 0;
  color: #222a28;
  font-size: 1.05rem;
  line-height: 1.65;
}

.employer-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.employer-tech-card {
  min-height: 250px;
  padding: 32px;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: #fff;
}
.employer-tech-card h4 {
  margin-bottom: 14px;
}
.employer-tech-card p {
  margin: 0;
  color: #222a28;
  line-height: 1.58;
}

.employer-tech-icon {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--green);
  border: 2px solid currentColor;
  border-radius: 14px;
}
.employer-tech-icon::before, .employer-tech-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 999px;
}
.employer-tech-icon::before {
  left: 12px;
  right: 12px;
  top: 17px;
  height: 2px;
  box-shadow: 0 8px 0 currentColor;
}
.employer-tech-icon::after {
  right: 9px;
  bottom: 8px;
  width: 8px;
  height: 8px;
}

.post-job-hero-grid {
  display: block;
}

.post-job-copy {
  width: min(760px, 100%);
}
.post-job-copy h1 {
  margin: 0 0 22px;
}
.post-job-copy .lead {
  margin: 0 0 22px;
  color: #252c2e;
  font-size: 1.22rem;
  line-height: 1.45;
  font-weight: 760;
}
.post-job-copy p:not(.lead):last-child {
  margin: 0;
  color: #222a28;
  font-size: 1.05rem;
  line-height: 1.62;
}

.post-job-card {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 30px;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: #fff;
}
.post-job-card h4 {
  margin: 0 0 18px;
}
.post-job-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}
.post-job-card li {
  color: #222a28;
  line-height: 1.45;
}

.post-job-section {
  background: #fff;
}

.post-job-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 940px) minmax(280px, 360px);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.post-job-form {
  max-width: 900px;
}

.contact-page-heading h1 {
  margin: 0 0 24px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(56px, 10vw, 130px);
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 26px;
}
.contact-form .btn {
  grid-column: 1/-1;
  justify-self: start;
  margin-top: 4px;
}

.contact-page-section {
  padding-top: 0;
}
.contact-page-section .frm_forms {
  width: 100%;
}
.contact-page-section .frm-show-form,
.contact-page-section .frm_form_fields,
.contact-page-section fieldset,
.contact-page-section .frm_fields_container {
  min-width: 0;
}
.contact-page-section .frm-show-form {
  margin: 0;
}
.contact-page-section fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.contact-page-section .frm_screen_reader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact-page-section .frm_fields_container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 26px;
}
.contact-page-section .frm_fields_container > div:has(.frm_verify) {
  display: none;
}
.contact-page-section .frm_form_field {
  display: grid;
  align-content: start;
  min-width: 0;
  gap: 9px;
}
.contact-page-section .frm_form_field.frm_full, .contact-page-section .frm_form_field:has(.frm_submit) {
  grid-column: 1/-1;
}
.contact-page-section .frm_hidden_container .frm_primary_label {
  color: transparent;
  pointer-events: none;
  user-select: none;
}
.contact-page-section .frm_hidden_container .frm_required {
  color: transparent;
}
.contact-page-section .frm_primary_label {
  color: var(--ink);
  font-weight: 760;
  line-height: 1.25;
}
.contact-page-section .frm_required {
  color: var(--green);
}
.contact-page-section input,
.contact-page-section select,
.contact-page-section textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.contact-page-section input::placeholder,
.contact-page-section select::placeholder,
.contact-page-section textarea::placeholder {
  color: #a8afac;
}
.contact-page-section input:focus,
.contact-page-section select:focus,
.contact-page-section textarea:focus {
  outline: 0;
}
.contact-page-section input:focus-visible,
.contact-page-section select:focus-visible,
.contact-page-section textarea:focus-visible {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(17, 173, 130, 0.12);
}
.contact-page-section input[aria-invalid=true],
.contact-page-section select[aria-invalid=true],
.contact-page-section textarea[aria-invalid=true] {
  border-color: #c94f3d;
  background: #fff;
}
.contact-page-section input,
.contact-page-section select {
  height: 54px;
  padding: 0 18px;
}
.contact-page-section textarea {
  min-height: 150px;
  padding: 18px;
  resize: vertical;
}
.contact-page-section .frm_error_style,
.contact-page-section .frm_error {
  color: #8f2619;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.35;
}
.contact-page-section .frm_error_style {
  grid-column: 1/-1;
  margin: 0 0 22px;
  padding: 14px 16px;
  border-left: 4px solid #c94f3d;
  border-radius: 7px;
  background: #fff1ee;
}
.contact-page-section .frm_submit {
  display: flex;
  align-items: center;
  margin-top: 4px;
}
.contact-page-section .frm_button_submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 28px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.contact-page-section .frm_button_submit:hover, .contact-page-section .frm_button_submit:focus-visible {
  border-color: #0f9974;
  background: #0f9974;
  color: #fff;
  box-shadow: 0 12px 28px rgba(17, 173, 130, 0.22);
  transform: translateY(-2px);
  outline: 0;
}

.form-field {
  display: grid;
  gap: 9px;
}
.form-field label {
  font-weight: 760;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbcbcb;
  border-radius: 7px;
  padding: 0 18px;
  background-color: #ffffff;
  color: var(--ink);
  font: inherit;
}
.form-field input::placeholder,
.form-field select::placeholder,
.form-field textarea::placeholder {
  color: #b8bcba;
}
.form-field input,
.form-field select {
  height: 54px;
}
.form-field input[type=file] {
  display: flex;
  align-items: center;
  height: auto;
  min-height: 54px;
  padding: 14px 18px;
  cursor: pointer;
}
.form-field textarea {
  min-height: 150px;
  padding-top: 18px;
  resize: vertical;
}

.form-field-full {
  grid-column: 1/-1;
}

.contact-info-card {
  padding: 34px;
  border: 1px solid var(--green);
  border-radius: 12px;
}
.contact-info-card p {
  margin: 0 0 28px;
  color: #1d2523;
  line-height: 1.45;
}
.contact-info-card p:last-child {
  margin-bottom: 0;
}
.contact-info-card a,
.contact-info-card strong {
  display: inline-block;
  margin-top: 6px;
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 820;
}

.lets-talk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 450px);
  gap: clamp(56px, 12vw, 160px);
  align-items: center;
  min-height: 560px;
}

.lets-talk-copy h1 {
  margin: 0 0 18px;
}
.lets-talk-copy .lead {
  margin: 0 0 24px;
  color: #252c2e;
  font-size: 1.2rem;
  font-weight: 780;
}
.lets-talk-copy p:not(.lead):last-child {
  width: min(620px, 100%);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.58;
}

.lets-talk-media {
  position: relative;
  justify-self: center;
  width: min(100%, 420px);
}

.lets-talk-main-image {
  display: block;
  width: 100%;
}

.lets-talk-inset-image {
  position: absolute;
  left: -34px;
  top: 50%;
  width: 150px;
  aspect-ratio: 0.86;
  border: 8px solid #ffd4dc;
  border-radius: 999px 999px 0 0;
  object-fit: cover;
  background: #ffd4dc;
  transform: translateY(-20%);
}

.locations-heading {
  width: min(760px, 100%);
}
.locations-heading p:last-child {
  margin: 0;
  color: #222a28;
  font-size: 1.08rem;
  line-height: 1.6;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.location-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 28px;
  align-items: stretch;
}
.location-card h4 {
  margin-bottom: 12px;
}
.location-card address {
  margin-bottom: 30px;
  color: #222a28;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.6;
}
.location-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}
.location-card dl div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
}
.location-card dt {
  color: var(--green);
  font-weight: 800;
}
.location-card dd {
  margin: 0;
}
.location-card a {
  color: var(--ink);
  font-weight: 600;
  overflow-wrap: anywhere;
}
.location-card a:hover, .location-card a:focus-visible {
  color: var(--green);
}

.location-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.location-card-map {
  min-width: 0;
}

.location-map {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  aspect-ratio: 1.35;
  border-radius: 10px;
  background: var(--soft);
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-map-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.insights-page-hero {
  color: #fff;
  background: radial-gradient(circle at 82% 28%, rgba(36, 216, 167, 0.18), transparent 32%), linear-gradient(110deg, #031d18 0%, #052b22 58%, #06261f 100%);
}
.insights-page-hero h1 {
  width: min(860px, 100%);
  margin-bottom: 22px;
}
.insights-page-hero p:last-child {
  width: min(680px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.58;
}

.insights-listing {
  background: #fff;
}

.insight-hero {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  background: var(--dark-2);
}
.insight-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(3, 29, 24, 0.94), rgba(3, 29, 24, 0.82) 42%, rgba(3, 29, 24, 0.36)), url("../images/insights-hero-building.jpg") center right/cover no-repeat;
  filter: saturate(0.76);
}
.insight-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -42%;
  z-index: -1;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(36, 216, 167, 0.1);
}
.insight-hero h1 {
  width: min(820px, 100%);
  margin: 0 0 8px;
}
.insight-hero strong {
  display: block;
  margin-bottom: 20px;
  color: var(--green);
  font-size: clamp(2.35rem, 4.7vw, 4rem);
  line-height: 1;
  font-weight: 840;
}
.insight-hero p:last-child {
  width: min(620px, 100%);
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
}

.insight-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  align-items: center;
  min-height: inherit;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.insight-hero-visual {
  position: relative;
  height: 100%;
  min-height: 430px;
}

.chart-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 42%;
  background: linear-gradient(135deg, transparent 7%, rgba(36, 216, 167, 0.9) 7% 8%, transparent 8% 20%, rgba(36, 216, 167, 0.75) 20% 21%, transparent 21% 34%, rgba(36, 216, 167, 0.9) 34% 35%, transparent 35% 48%, rgba(36, 216, 167, 0.75) 48% 49%, transparent 49% 62%, rgba(36, 216, 167, 0.9) 62% 63%, transparent 63% 77%, rgba(36, 216, 167, 0.75) 77% 78%, transparent 78%), radial-gradient(circle, var(--green-bright) 0 5px, transparent 6px);
  background-size: 100% 100%, 92px 64px;
  opacity: 0.78;
}
.chart-line-a {
  top: 32%;
}
.chart-line-b {
  top: 42%;
  opacity: 0.42;
  filter: grayscale(1) brightness(2);
  transform: translateY(-18px) scaleX(0.92);
}

.chart-bars {
  position: absolute;
  right: 20px;
  bottom: 50px;
  width: 185px;
  height: 120px;
  opacity: 0.35;
  background: linear-gradient(to right, transparent 0 8%, rgba(36, 216, 167, 0.65) 8% 15%, transparent 15% 23%, rgba(36, 216, 167, 0.65) 23% 30%, transparent 30% 38%, rgba(36, 216, 167, 0.65) 38% 45%, transparent 45% 53%, rgba(36, 216, 167, 0.65) 53% 60%, transparent 60% 68%, rgba(36, 216, 167, 0.65) 68% 75%, transparent 75% 83%, rgba(36, 216, 167, 0.65) 83% 90%, transparent 90%);
  clip-path: polygon(0 70%, 100% 24%, 100% 100%, 0% 100%);
}

.insight-outlook {
  background: #fff;
}

.insight-section-heading {
  margin-bottom: 56px;
}
.insight-section-heading h2 {
  margin: 0 0 10px;
}
.insight-section-heading p {
  margin: 0;
  color: #1d2523;
}

.insight-outlook-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.insight-panel {
  min-height: 320px;
  padding: 34px 30px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #f3f3f3;
}
.insight-panel.is-highlight {
  border-color: var(--green);
  background: #fff;
}
.insight-panel.is-highlight .insight-stats strong {
  color: var(--green);
}
.insight-panel:not(.is-highlight) .insight-list li::before {
  background: #d7dcda;
}
.insight-panel h3 {
  margin: 0 0 28px;
}

.insight-stats {
  display: flex;
  gap: clamp(28px, 5vw, 70px);
  margin-bottom: 34px;
}
.insight-stats p {
  margin: 0;
}
.insight-stats strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(2rem, 3.6vw, 2.65rem);
  line-height: 1;
  font-weight: 840;
}
.insight-stats span,
.insight-stats small {
  display: block;
  font-size: 0.92rem;
}
.insight-stats small {
  color: #ff2e2e;
}

.insight-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 22px;
  align-items: center;
  margin-bottom: 26px;
  padding: 24px;
  color: #8d1111;
  background: #fff3f2;
  border: 1px solid #ffd0cd;
  border-radius: 12px;
}
.insight-callout strong,
.insight-callout span {
  display: block;
  font-size: 0.92rem;
}
.insight-callout strong {
  margin-bottom: 4px;
  font-size: clamp(2rem, 3.6vw, 2.65rem);
  line-height: 1;
  font-weight: 840;
}
.insight-callout p {
  grid-column: 2;
  margin: 0;
  font-size: 0.92rem;
}

.insight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
}
.insight-tags span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 22px;
  padding: 3px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 0.75rem;
  font-weight: 720;
}

.insight-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 22px;
  padding: 3px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 0.75rem;
  font-weight: 720;
}
.insight-pill.is-danger {
  color: #ac1010;
  background: #ffe6e6;
}

.insight-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.insight-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.98rem;
  line-height: 1.55;
}
.insight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.insight-list strong {
  display: block;
  margin-bottom: 2px;
}
.insight-list span {
  display: block;
}

.insight-card-band {
  background: #fff;
}
.insight-card-band h2 {
  margin: 0 0 34px;
}
.insight-card-band-soft {
  background: var(--soft);
}
.insight-card-band-green {
  color: #fff;
  background: var(--green);
}
.insight-card-band-green .insight-info-card {
  border: 0;
}
.insight-card-band-white .insight-info-card {
  background: #f4f4f4;
  border: 0;
}

.insight-card-grid {
  display: grid;
  gap: 22px;
}

.insight-card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.insight-info-card {
  min-height: 170px;
  padding: 30px;
  border: 1px solid #d9e5e0;
  border-radius: 12px;
  background: #fff;
}
.insight-info-card h3 {
  margin: 0 0 14px;
}
.insight-info-card p {
  margin: 0;
  color: #202827;
  font-size: 0.98rem;
  line-height: 1.55;
}
.insight-info-card .insight-list {
  margin-top: 8px;
}
.insight-info-card .insight-pill {
  margin-top: 20px;
}

.insight-icon {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.section-copy {
  width: min(760px, 100%);
}
.section-copy p:not(.eyebrow) {
  margin: 0;
}

.vacancies-copy {
  margin-bottom: 34px;
}
.vacancies-copy h1 {
  margin: 0 0 28px;
}

.job-detail-header {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.page-header:has(.job-detail-header) {
  padding-top: 5px;
  padding-bottom: 22px;
}

.job-detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}
.job-detail-back-link::before {
  content: "‹";
  color: var(--green);
  font-size: 1.45em;
  line-height: 1;
}
.job-detail-back-link:hover, .job-detail-back-link:focus-visible {
  color: var(--green);
  text-decoration: none;
}

.job-detail-back-link[hidden] {
  display: none;
}

.vacancy-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 250px));
  gap: 18px;
  margin-bottom: 64px;
}
.vacancy-filters label {
  display: block;
}
.vacancy-filters select {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 7px;
  padding: 0 16px;
  color: #111;
  background: #f3f4f4;
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.job-card {
  min-height: 196px;
  padding: 22px;
  border: 1px solid #b9c2be;
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}
.job-card:hover, .job-card:focus-within {
  border-color: var(--green);
  box-shadow: 0 16px 34px rgba(3, 29, 24, 0.08);
  transform: translateY(-2px);
}
.job-card h2 {
  margin: 0 0 14px;
}
.job-card p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 9px 0 0;
  color: #18211f;
  line-height: 1.35;
}
.job-card p span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #111;
  line-height: 1;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.job-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 0.75rem;
}
.job-tags span + span {
  background: #20282a;
}

.reusable-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-top: 2.3rem;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outline-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: #fff;
}
.outline-card h5 {
  margin: 0 0 16px;
}
.outline-card p {
  margin: 0;
  line-height: 1.55;
}

.value-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  color: var(--green);
}
.value-icon svg {
  width: 100%;
  height: 100%;
}

/* Jobs Widget */
.ja-job-search {
  margin-top: -3rem;
}

#ja-jobs-widget {
  position: relative;
}

.ja-loading {
  position: absolute;
  top: 10px;
  right: 10px;
}

.ja-loading.left {
  left: 10px;
  right: auto;
}

/* Forms */
.ja-form {
  margin-bottom: 3em;
}

.ja-form .ja-field-container {
  margin-bottom: 0.5em;
}

.ja-form .ja-field-container:before,
.ja-form .ja-field-container:after {
  content: "";
  display: table;
}

.ja-form .ja-field-container:after {
  clear: both;
}

.ja-form .ja-field-container {
  zoom: 1;
}

.ja-form .ja-field-container label {
  display: block;
  float: left;
  width: 100px;
  padding-top: 6px;
}

.ja-form .ja-field-container .ja-field {
  float: left;
}

.ja-form .ja-field-container select {
  width: 240px;
  padding: 2px;
}

.ja-form .ja-field-container textarea {
  width: 230px;
  padding: 3px 4px;
}

.ja-form .ja-field-container input[type=text],
.ja-form .ja-field-container input[type=password],
.ja-form .ja-field-container input[type=datetime],
.ja-form .ja-field-container input[type=datetime-local],
.ja-form .ja-field-container input[type=date],
.ja-form .ja-field-container input[type=month],
.ja-form .ja-field-container input[type=time],
.ja-form .ja-field-container input[type=week],
.ja-form .ja-field-container input[type=number],
.ja-form .ja-field-container input[type=email],
.ja-form .ja-field-container input[type=url],
.ja-form .ja-field-container input[type=search],
.ja-form .ja-field-container input[type=tel],
.ja-form .ja-field-container input[type=color] {
  width: 230px;
  padding: 3px 4px;
}

.ja-form .ja-field-container .checkbox:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.ja-form .ja-field-container .checkbox {
  display: block;
  margin-left: 95px;
}

.ja-form .ja-field-container .checkbox br {
  clear: left;
}

.ja-form .ja-field-container .checkbox input {
  width: 15px;
  height: 19px;
  float: left;
}

.ja-form .ja-field-container .checkbox label {
  height: 21px;
  width: auto;
  line-height: 21px;
  float: left;
  padding: 2px 12px 0 5px;
}

.ja-form .ja-submit {
  margin-top: 1em;
  margin-left: 100px;
  vertical-align: middle;
}

.ja-form .ja-submit .ja-loading {
  position: relative;
  top: 0;
  left: 0;
  margin-left: 10px;
  vertical-align: middle;
}

.ja-button {
  font-size: 1em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #dcdcdc;
  padding: 4px 18px;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #f9f9f9), color-stop(100%, #e9e9e9));
  background: -moz-linear-gradient(center top, #f9f9f9 5%, #e9e9e9 100%);
  background: -ms-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
  background-color: #f9f9f9;
  color: #333333;
  display: inline-block;
  text-shadow: 1px 1px 1px #ffffff;
  -webkit-box-shadow: inset 1px 1px 0px 0px #ffffff;
  -moz-box-shadow: inset 1px 1px 0px 0px #ffffff;
  box-shadow: inset 1px 1px 0px 0px #ffffff;
}

.ja-button:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #e9e9e9), color-stop(100%, #f9f9f9));
  background: -moz-linear-gradient(center top, #e9e9e9 5%, #f9f9f9 100%);
  background: -ms-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9');
  background-color: #e9e9e9;
  cursor: pointer !important;
}

.ja-button:active {
  position: relative;
  top: 1px;
}

.ja-form .ja-field-container .error {
  color: #990000;
  border-color: #990000;
}

.ja-form .ja-field-container .validation-error {
  display: block;
  clear: both;
  margin-top: 5px;
  color: #aa0000;
}

.ja-form .ja-error-container {
  color: #aa0000;
  margin-top: 2em;
  margin-left: 100px;
}

.ja-form .ja-error-container p {
  margin-bottom: 0;
}

/* End forms */
/* Job list */
.ja-job-list {
  margin-bottom: 3em;
}

.ja-job-list .job {
  margin-bottom: 1em;
  padding: 0.5em;
}

.ja-job-list .job.alt {
  background-color: #f5f5f5;
}

.ja-job-list .job.hot {
  background-color: #fffdfd;
}

.ja-job-list .job .meta {
  margin-bottom: 1em;
}

.ja-job-list .job .meta:before,
.ja-job-list .job .meta:after {
  content: "";
  display: table;
}

.ja-job-list .job .meta:after {
  clear: both;
}

.ja-job-list .job .meta {
  zoom: 1;
}

.ja-job-list .job .meta p {
  font-size: 0.9em;
  margin-bottom: 0.5em;
}

.ja-job-list .job .meta .classifications {
  float: left;
  list-style: none;
  width: 50%;
  margin: 0 0 0.5em 0;
}

.ja-job-list .job .meta .classifications li {
  display: inline;
  margin-right: 0.5em;
}

.ja-job-list .job .meta .date-posted {
  float: right;
  width: 50%;
  text-align: right;
}

.ja-job-list .job .meta .salary {
  clear: left;
  float: left;
}

.ja-job-list .job .meta .reference {
  float: right;
  text-align: right;
}

.ja-job-list .job .view-details {
  font-size: 0.9em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #dcdcdc;
  padding: 4px 10px;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #f9f9f9), color-stop(100%, #e9e9e9));
  background: -moz-linear-gradient(center top, #f9f9f9 5%, #e9e9e9 100%);
  background: -ms-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
  background-color: #f9f9f9;
  color: #333333;
  display: inline-block;
  text-shadow: 1px 1px 1px #ffffff;
  -webkit-box-shadow: inset 1px 1px 0px 0px #ffffff;
  -moz-box-shadow: inset 1px 1px 0px 0px #ffffff;
  box-shadow: inset 1px 1px 0px 0px #ffffff;
}

.ja-job-list .job .view-details:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #e9e9e9), color-stop(100%, #f9f9f9));
  background: -moz-linear-gradient(center top, #e9e9e9 5%, #f9f9f9 100%);
  background: -ms-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9');
  background-color: #e9e9e9;
  cursor: pointer !important;
}

.ja-job-list .job .view-details:active {
  position: relative;
  top: 1px;
}

/* End job list */
/* Pager */
.ja-pager-container:before,
.ja-pager-container:after {
  content: "";
  display: table;
}

.ja-pager-container:after {
  clear: both;
}

.ja-pager-container {
  zoom: 1;
}

.ja-pager {
  float: left;
  font-size: 0.9em;
}

.ja-pager:before,
.ja-pager:after {
  content: "";
  display: table;
}

.ja-pager:after {
  clear: both;
}

.ja-pager {
  zoom: 1;
}

.ja-pager span,
.ja-pager a {
  display: block;
  float: left;
  line-height: 23px;
  padding: 0 8px;
  margin-right: 3px;
  color: #333;
  background-color: #f3f3f3;
  border: solid 1px #ddd;
}

.ja-pager a:hover,
.ja-pager .current-page {
  color: #fff;
  background-color: #bbb;
  border-color: #999;
  text-decoration: none;
}

.ja-pager-summary {
  float: right;
  line-height: 25px;
  font-size: 0.9em;
}

/* End pager */
/* Job details */
.ja-job-details .meta {
  margin-bottom: 1em;
}

.ja-job-details .meta:before,
.ja-job-details .meta:after {
  content: "";
  display: table;
}

.ja-job-details .meta:after {
  clear: both;
}

.ja-job-details .meta {
  zoom: 1;
}

.ja-job-details .meta p {
  font-size: 0.9em;
  margin-bottom: 0.5em;
}

.ja-job-details .meta .classifications {
  float: left;
  width: 50%;
  list-style: none;
  margin: 0 0 0.5em 0;
}

.ja-job-details .meta .classifications li {
  display: inline;
  margin-right: 0.5em;
}

.ja-job-details .meta .date-posted {
  clear: right;
  float: right;
  width: 50%;
  text-align: right;
}

.ja-job-details .meta .salary {
  clear: left;
  float: left;
}

.ja-job-details .meta .reference {
  float: right;
  text-align: right;
}

.ja-job-details .apply {
  margin: 2em 0 0.5em 0;
  text-align: center;
}

.ja-job-details .apply .back-link {
  font-size: 0.9em;
  margin-right: 1em;
}

/* End job details */
/* Application form iframe (external app forms) */
.ja-apply-iframe iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.ja-apply-iframe .apply {
  margin: 2em 0 0.5em 0;
  text-align: center;
}

.ja-apply-iframe .apply .back-link {
  font-size: 0.9em;
}

/* End application form iframe */
/* Application form */
.ja-job-apply .ja-submit .back-link {
  font-size: 0.9em;
  margin-left: 1em;
}

/* End application form */
/* Powered by JobAdder */
.powered-by-jobadder {
  color: #bbb;
  font-size: 0.9em;
  text-align: center;
  margin: 2em 0 1em 0;
}

.powered-by-jobadder a {
  color: #bbb;
}

.powered-by-jobadder a:hover {
  color: #aaa;
}

/* End powered by JobAdder */
/* Theme overrides for the live JobAdder embed */
.vacancies-section .is-static-preview {
  display: none;
}

#ja-jobs-widget {
  color: var(--ink);
  font-family: inherit;
}
#ja-jobs-widget .ja-loading {
  top: 0;
  right: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
#ja-jobs-widget .ja-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 18px;
  width: 100%;
  margin: 0 0 3rem;
}
#ja-jobs-widget .ja-form .ja-field-container {
  margin: 0;
}
#ja-jobs-widget .ja-form .ja-field-container label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#ja-jobs-widget .ja-form .ja-field-container .ja-field,
#ja-jobs-widget .ja-form .ja-submit {
  float: none;
  margin: 0;
}
#ja-jobs-widget .ja-form .ja-field-container .ja-field,
#ja-jobs-widget .ja-form .ja-submit,
#ja-jobs-widget .ja-form .ja-submit .ja-button {
  width: 100%;
}
#ja-jobs-widget .ja-form .ja-field-container select,
#ja-jobs-widget .ja-form .ja-field-container input[type=text],
#ja-jobs-widget .ja-form .ja-field-container input[type=search] {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 7px;
  padding: 0 16px;
  color: #111;
  background: #f3f4f4;
  font: inherit;
}
#ja-jobs-widget .ja-button {
  min-height: 48px;
  border: 1px solid var(--green);
  border-radius: 7px;
  padding: 12px 22px;
  color: #fff;
  background: var(--green);
  box-shadow: none;
  filter: none;
  font: inherit;
  font-weight: 500;
  line-height: 1.2;
  text-shadow: none;
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
#ja-jobs-widget .ja-button:hover,
#ja-jobs-widget .ja-button:focus-visible {
  border-color: var(--dark);
  color: #fff;
  background: var(--dark);
  text-decoration: none;
  transform: translateY(-1px);
}
#ja-jobs-widget .ja-button:active {
  top: auto;
  transform: translateY(0);
}
#ja-jobs-widget .ja-job-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
}
#ja-jobs-widget .ja-job-list .job,
#ja-jobs-widget .ja-job-list .job.alt,
#ja-jobs-widget .ja-job-list .job.hot {
  display: flex;
  min-height: 196px;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 22px;
  border: 1px solid #b9c2be;
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}
#ja-jobs-widget .ja-job-list .job:hover,
#ja-jobs-widget .ja-job-list .job:focus-within {
  border-color: var(--green);
  box-shadow: 0 16px 34px rgba(3, 29, 24, 0.08);
  transform: translateY(-2px);
}
#ja-jobs-widget .ja-job-list .job .title {
  order: 2;
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.15;
}
#ja-jobs-widget .ja-job-list .job .title a {
  color: inherit;
}
#ja-jobs-widget .ja-job-list .job .title a:hover,
#ja-jobs-widget .ja-job-list .job .title a:focus-visible {
  color: var(--green);
  text-decoration: none;
}
#ja-jobs-widget .ja-job-list .job .meta {
  display: contents;
  order: 1;
}
#ja-jobs-widget .ja-job-list .job .meta p,
#ja-jobs-widget .ja-job-list .job .meta .classifications,
#ja-jobs-widget .ja-job-list .job .meta .date-posted,
#ja-jobs-widget .ja-job-list .job .meta .salary,
#ja-jobs-widget .ja-job-list .job .meta .reference {
  float: none;
  clear: none;
  width: auto;
  margin: 0;
  text-align: left;
}
#ja-jobs-widget .ja-job-list .job .meta .classifications {
  display: flex;
  order: 1;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  padding: 0;
  margin: 0 0 14px;
}
#ja-jobs-widget .ja-job-list .job .meta .classifications li,
#ja-jobs-widget .ja-job-list .job .meta p {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin: 0;
  padding: 3px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 0.75rem;
  line-height: 1.25;
}
#ja-jobs-widget .ja-job-list .job .meta .reference {
  background: #20282a;
}
#ja-jobs-widget .ja-job-list .job .meta .classifications li:empty,
#ja-jobs-widget .ja-job-list .job .meta p:empty,
#ja-jobs-widget .ja-job-list .job .meta p:has(> span:only-child:empty),
#ja-jobs-widget .ja-job-list .job .meta .salary:empty,
#ja-jobs-widget .ja-job-list .job .meta .date-posted:empty,
#ja-jobs-widget .ja-job-list .job .meta .reference:empty {
  display: none;
}
#ja-jobs-widget .ja-job-list .job .meta .salary {
  order: 3;
  background: #f3f4f4;
  color: #18211f;
}
#ja-jobs-widget .ja-job-list .job .meta .date-posted {
  display: block;
  order: 3;
  width: 100%;
  min-height: 0;
  margin-top: 8px;
  padding: 0;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.9rem;
  line-height: 1.35;
}
#ja-jobs-widget .ja-job-list .job .meta .reference {
  order: 3;
  margin-top: 8px;
}
#ja-jobs-widget .ja-job-list .job .summary {
  order: 4;
  margin: 5px 0 14px;
  color: #18211f;
  line-height: 1.45;
}
#ja-jobs-widget .ja-job-list .job .summary p {
  margin: 0;
}
#ja-jobs-widget .ja-job-list .job .view-details {
  order: 5;
  min-height: 0;
  margin-top: auto;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding: 0 0 3px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  filter: none;
  font: inherit;
  font-weight: 500;
  line-height: 1.2;
  text-shadow: none;
  font-size: 16px;
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
#ja-jobs-widget .ja-job-list .job .view-details:hover,
#ja-jobs-widget .ja-job-list .job .view-details:focus-visible {
  color: var(--green);
  background: transparent;
  text-decoration: none;
  transform: translateY(-1px);
}
#ja-jobs-widget .ja-job-list .job .view-details:active {
  top: auto;
  transform: translateY(0);
}
#ja-jobs-widget .ja-pager-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 4rem;
}
#ja-jobs-widget .ja-pager,
#ja-jobs-widget .ja-pager-summary {
  float: none;
}
#ja-jobs-widget .ja-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
#ja-jobs-widget .ja-pager span,
#ja-jobs-widget .ja-pager a {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  float: none;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 10px;
  color: var(--ink);
  background: #fff;
  line-height: 1;
}
#ja-jobs-widget .ja-pager a:hover,
#ja-jobs-widget .ja-pager .current-page {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}
#ja-jobs-widget .ja-pager-summary,
#ja-jobs-widget .powered-by-jobadder {
  color: var(--muted);
  font-size: 0.9rem;
}
#ja-jobs-widget .ja-job-details,
#ja-jobs-widget .ja-apply-iframe,
#ja-jobs-widget .ja-job-apply,
#ja-jobs-widget .ja-job-list-container .no-jobs-content {
  max-width: 960px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid #b9c2be;
  border-radius: 14px;
  background: #fff;
}
#ja-jobs-widget .ja-job-details .title {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.1;
}
#ja-jobs-widget .ja-job-details .meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 12px 28px;
  margin: 0 0 34px;
}
#ja-jobs-widget .ja-job-details .meta::before,
#ja-jobs-widget .ja-job-details .meta::after {
  content: none;
  display: none;
}
#ja-jobs-widget .ja-job-details .meta .classifications {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}
#ja-jobs-widget .ja-job-details .meta .classifications li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.2;
}
#ja-jobs-widget .ja-job-details .meta .classifications li::before,
#ja-jobs-widget .ja-job-details .meta .date-posted::before {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 17px;
  line-height: 1;
}
#ja-jobs-widget .ja-job-details .meta .classifications li:nth-child(1)::before {
  content: "◧";
}
#ja-jobs-widget .ja-job-details .meta .classifications li:nth-child(2)::before {
  content: "⌖";
}
#ja-jobs-widget .ja-job-details .meta .classifications li:nth-child(3)::before {
  content: "▣";
}
#ja-jobs-widget .ja-job-details .meta p,
#ja-jobs-widget .ja-job-details .meta .date-posted,
#ja-jobs-widget .ja-job-details .meta .salary,
#ja-jobs-widget .ja-job-details .meta .reference {
  float: none;
  clear: none;
  width: auto;
  margin: 0;
  text-align: left;
}
#ja-jobs-widget .ja-job-details .meta .date-posted {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-self: end;
  color: var(--ink);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.2;
  white-space: nowrap;
}
#ja-jobs-widget .ja-job-details .meta .date-posted::before {
  content: "◷";
}
#ja-jobs-widget .ja-job-details .meta .salary:empty,
#ja-jobs-widget .ja-job-details .meta .reference:empty {
  display: none;
}
#ja-jobs-widget .ja-job-details .meta p,
#ja-jobs-widget .ja-job-details .description,
#ja-jobs-widget .ja-job-details .bullet-points {
  color: #18211f;
}
#ja-jobs-widget .ja-job-details .bullet-points {
  margin: 0 0 28px;
  padding-left: 1.25em;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.45;
}
#ja-jobs-widget .ja-job-details .bullet-points li {
  margin: 0 0 6px;
  padding-left: 0.15em;
}
#ja-jobs-widget .ja-job-details .description {
  max-width: 820px;
  margin: 0 0 36px;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
}
#ja-jobs-widget .ja-job-details .description strong {
  font-weight: 700;
}
#ja-jobs-widget .ja-job-details .apply {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 22px 36px;
  margin: 0;
  text-align: left;
}
#ja-jobs-widget .ja-job-details .apply .back-link,
#ja-jobs-widget .ja-apply-iframe .apply .back-link,
#ja-jobs-widget .ja-job-apply .ja-submit .back-link {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.2;
}
#ja-jobs-widget .ja-job-details .apply .back-link {
  display: none;
}
#ja-jobs-widget .ja-job-details .apply .back-link:hover,
#ja-jobs-widget .ja-job-details .apply .back-link:focus-visible,
#ja-jobs-widget .ja-apply-iframe .apply .back-link:hover,
#ja-jobs-widget .ja-apply-iframe .apply .back-link:focus-visible,
#ja-jobs-widget .ja-job-apply .ja-submit .back-link:hover,
#ja-jobs-widget .ja-job-apply .ja-submit .back-link:focus-visible {
  color: var(--green);
  border-color: currentColor;
  text-decoration: none;
}
#ja-jobs-widget .ja-job-details .apply .ja-button {
  min-height: 48px;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: clamp(17px, 1.8vw, 21px);
}

.services {
  color: #fff;
  background: var(--dark);
}
.services h2 {
  text-align: center;
}
.services .eyebrow {
  text-align: center;
}

.accordion-container {
  width: min(100% - 96px, 1880px);
}

.section-intro {
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--primary);
}

.section-intro {
  width: min(780px, 100%);
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.74);
}

.tab-panel {
  position: relative;
  width: 100%;
  margin-top: 2rem;
}

.service-tabs {
  display: grid;
  gap: clamp(18px, 1.5vw, 34px);
  padding-bottom: clamp(18px, 5vh, 20px);
}

.service-tab {
  position: sticky;
  top: clamp(76px, 10vh, 112px);
  width: 100%;
  min-height: clamp(415px, 26vh, 220px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(320px, 34vw, 570px);
  align-items: center;
  align-content: center;
  column-gap: clamp(32px, 5vw, 96px);
  row-gap: 12px;
  padding: 3rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: #fff;
  background: var(--dark-2);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, border-color 0.4s ease-out, box-shadow 0.4s ease-out;
  font-size: inherit;
}
.service-tab span, .service-tab strong, .service-tab img {
  transition: all 0.25s ease;
  opacity: 0.4;
}
.service-tab:nth-child(1) {
  z-index: 1;
}
.service-tab:nth-child(2) {
  z-index: 2;
}
.service-tab:nth-child(3) {
  z-index: 3;
}
.service-tab:nth-child(4) {
  z-index: 4;
}
.service-tab:nth-child(5) {
  z-index: 5;
}
.service-tab:nth-child(6) {
  z-index: 6;
}
.service-tab span {
  display: block;
  grid-column: 1;
  font-size: 40px;
  line-height: 1.16;
  letter-spacing: 0;
  transition: color 0.24s ease, transform 0.28s ease, opacity 0.25s ease;
}
.service-tab span:hover {
  color: var(--primary);
}
.service-tab strong {
  display: block;
  grid-column: 1;
  width: min(660px, 100%);
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
  opacity: 0.82;
  visibility: visible;
  font-size: inherit;
  line-height: 1.5;
  font-weight: 500;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  transform: translateY(6px);
}
.service-tab.active {
  border-color: rgba(36, 216, 167, 0.26);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}
.service-tab.active span,
.service-tab.active strong,
.service-tab.active img {
  opacity: 1;
}
.service-tab.active span {
  color: var(--green-bright);
}
.service-tab.active strong {
  opacity: 1;
  transform: translateY(0);
}
.service-tab.active .tab-float {
  opacity: 1;
  filter: saturate(0.96);
  transform: translate3d(0, 0, 0) scale(1);
}

.tab-float {
  position: relative;
  grid-column: 2;
  grid-row: 1/span 2;
  justify-self: end;
  align-self: center;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1.8;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  pointer-events: none;
  opacity: 0.82;
  transform: translate3d(18px, 0, 0) scale(0.96);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, filter 0.4s ease-out;
}

@media (max-width: 1100px) {
  .service-tab {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 40vw);
    column-gap: 28px;
    padding: 48px 32px;
  }
  .service-tab span {
    font-size: 34px;
  }
  .tab-float {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .service-tab {
    position: relative;
    top: auto;
    transform: none;
    transition: none;
  }
  .service-tab strong,
  .service-tab .tab-float {
    transform: none;
    transition: none;
  }
}
.cta {
  text-align: center;
}
.cta h2 {
  margin-bottom: 24px;
}

.testimonials {
  position: relative;
  background: var(--soft);
  overflow: hidden;
  padding-bottom: 50px;
}
.testimonials h2 {
  text-align: center;
}
.testimonials .container {
  position: relative;
}

.quote-mark {
  position: absolute;
  right: 0;
  top: -58px;
  color: rgba(0, 0, 0, 0.04);
  font-size: 14rem;
  line-height: 1;
  font-weight: 900;
}

.testimonial-widget {
  position: relative;
  min-height: 260px;
}
.testimonial-widget .testimonial-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 260px;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
  background: var(--soft);
  transition: opacity 0.24s ease, visibility 0.24s ease;
}
.testimonial-widget.is-loaded .testimonial-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.testimonial-spinner {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(17, 173, 130, 0.18);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: testimonial-spin 0.8s linear infinite;
}

@keyframes testimonial-spin {
  to {
    transform: rotate(1turn);
  }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-spinner {
    animation: none;
  }
}
.testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.testimonial-card {
  min-height: 180px;
  padding: 28px;
  border-radius: 12px;
  background: #fff;
}
.testimonial-card h3 {
  margin: 12px 0 10px;
}
.testimonial-card p {
  margin: 0;
  color: #273230;
}

.stars {
  color: #f3bd12;
  letter-spacing: 2px;
  font-size: 0.95rem;
}
.stars span {
  float: right;
  color: #4285f4;
  font-weight: 800;
  letter-spacing: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
}
.slider-dots span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--green);
  border-radius: 50%;
}
.slider-dots span:first-child {
  background: var(--green);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.insight-grid article {
  position: relative;
}
.insight-grid article img {
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.insight-grid article h6 {
  margin-bottom: 0.5rem;
}
.insight-grid article h3 {
  margin: 12px 0 10px;
}
.insight-grid article a {
  position: static;
  color: var(--green);
  font-size: 0.94rem;
  font-weight: 500;
}
.insight-grid article a::after {
  max-width: 80px;
}
.insight-grid article a::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
}

.subpage-hero {
  position: relative;
  isolation: isolate;
  min-height: 570px;
}

.about-subpage-hero {
  position: relative;
  isolation: isolate;
  min-height: 570px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 74% 38%, rgba(36, 216, 167, 0.18), transparent 34%), linear-gradient(110deg, #031d18 0%, #052b22 56%, #06261f 100%);
}
.about-subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle, rgba(36, 216, 167, 0.17) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.38;
}
.about-subpage-hero .container {
  position: relative;
  z-index: 2;
}
.about-subpage-hero h1 {
  width: min(680px, 100%);
  margin-bottom: 24px;
}
.about-subpage-hero h1 span {
  color: var(--green-bright);
}
.about-subpage-hero p:last-child {
  width: min(590px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.58;
}

.team-hero-network {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.82;
  pointer-events: none;
}

.about-page-section {
  position: relative;
  overflow: hidden;
}
.about-page-section .container {
  position: relative;
  z-index: 1;
}

.about-section-copy {
  width: min(820px, 100%);
  margin-bottom: 42px;
}
.about-section-copy p {
  margin: 0;
  color: #222a28;
  line-height: 1.65;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-card {
  min-height: 240px;
  padding: 32px;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: #fff;
}
.about-card h5 {
  margin-bottom: 8px;
}
.about-card p {
  margin: 0 0 12px;
}

.about-card-icon {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--green);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.about-split {
  color: #fff;
  background: #1f2927;
}
.about-split h2 span {
  color: var(--green-bright);
}

.about-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 70px;
  align-items: self-start;
}

.about-split-copy p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.64;
}

.about-quote {
  padding: 2rem;
  border-radius: 12px;
  background: var(--primary);
}
.about-quote p {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1.18;
  font-weight: 500;
}

.about-cta-band h2 span {
  color: var(--green-bright);
}

.team-intro {
  background: #fff;
}

.team-intro-copy {
  width: min(820px, 100%);
  margin-bottom: 44px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.team-card {
  display: flex;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}
.team-card:hover, .team-card:focus-visible {
  border-color: var(--green);
  box-shadow: 0 18px 38px rgba(3, 29, 24, 0.1);
  transform: translateY(-2px);
  outline: 0;
}
.team-card h5 {
  margin-bottom: 8px;
}
.team-card p {
  margin: 0 0 12px;
}

.team-bio-trigger {
  align-self: flex-start;
  margin-top: auto;
  padding: 0;
  border: 0;
  color: var(--green);
  background: transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.team-bio-trigger:hover, .team-bio-trigger:focus-visible {
  color: var(--dark);
}

.team-photo {
  width: 100%;
  aspect-ratio: 0.9;
  margin-bottom: 22px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--soft);
}

.team-role {
  margin: -6px 0 16px;
  color: var(--green);
  font-weight: 500;
}

.team-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}
.team-modal[hidden] {
  display: none;
}

.team-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 29, 24, 0.72);
  backdrop-filter: blur(6px);
}

.team-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(760px, 100vh - 48px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.team-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.team-modal-close:hover, .team-modal-close:focus-visible {
  border-color: var(--green);
  color: var(--green);
}

.team-modal-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 48px);
  align-items: start;
}

.team-modal-grid--no-photo {
  grid-template-columns: minmax(0, 1fr);
}

.team-modal-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
  background: var(--soft);
}
.team-modal-photo[hidden] {
  display: none;
}

.team-modal-copy h3 {
  margin-bottom: 18px;
}

.team-modal-bio p {
  margin: 0 0 16px;
  color: #273230;
  line-height: 1.65;
}
.team-modal-bio p:last-child {
  margin-bottom: 0;
}

body.team-modal-open {
  overflow: hidden;
}

.contact-strip {
  padding: 36px 0;
  border-top: 1px solid var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
}
.contact-grid a:not(.btn) {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
  transition: transform 0.24s ease, color 0.24s ease;
}
.contact-grid a:not(.btn):hover, .contact-grid a:not(.btn):focus-visible {
  color: var(--green);
  transform: translateY(-2px);
}
.contact-grid span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  padding: 12px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}
.contact-grid strong {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
}
.contact-grid small {
  color: var(--green);
}

.site-footer {
  color: #fff;
  background: var(--dark-2);
  padding: 80px 0 10px;
  font-size: 1rem;
}
.site-footer h6 {
  font-weight: 400;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 96px);
}

.footer-brand {
  width: 200px;
}
.footer-brand .brand-logo {
  margin-bottom: 1.6rem;
  filter: brightness(0) invert(1);
}

.site-footer p {
  width: min(270px, 100%);
  color: rgba(255, 255, 255, 0.72);
}
.site-footer h2 {
  margin: 0 0 20px;
}
.site-footer nav {
  display: grid;
  align-content: start;
  gap: 12px;
}
.site-footer nav a {
  color: rgba(255, 255, 255, 0.72);
}

.legal {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 74px;
  font-size: 0.86rem;
  border-top: 1px solid rgba(255, 255, 255, 0.0705882353);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.legal a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal a:hover, .legal a:focus-visible {
  color: var(--green-bright);
}

@media (max-width: 1200px) {
  h1,
  .h1,
  .hero h1 {
    font-size: 52px;
  }
  h2,
  .h2 {
    font-size: 42px;
  }
  h3,
  .h3 {
    font-size: 38px;
  }
  h4,
  .h4 {
    font-size: 31px;
  }
  h5,
  .h5 {
    font-size: 24px;
  }
  h6,
  .h6 {
    font-size: 20px;
  }
  .service-tab span {
    font-size: 34px;
  }
}
@media (max-width: 900px) {
  body {
    font-size: 1rem;
  }
  .site-header {
    position: sticky;
    height: auto;
    flex-wrap: wrap;
    padding: 18px 24px;
  }
  .site-header-wrapper {
    height: auto;
    flex-wrap: wrap;
    gap: 16px 22px;
  }
  .site-header a.brand,
  .brand {
    width: 138px;
  }
  .primary-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    overflow: visible;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .primary-nav::-webkit-scrollbar {
    display: none;
  }
  .nav-item {
    min-height: 44px;
    flex: 0 0 auto;
  }
  .mega-menu {
    top: 100%;
    padding: 32px 24px;
    max-height: min(72vh, 620px);
    overflow-y: auto;
  }
  .mega-grid,
  .mega-grid-six,
  .mega-grid-three,
  .mega-grid-four {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: none;
    margin-inline: auto;
  }
  .mega-card {
    min-height: 132px;
    padding: 24px;
  }
  .mega-card strong {
    font-size: 1.25rem;
  }
  .mega-card span {
    font-size: 1rem;
    margin-top: 10px;
  }
  .hero {
    min-height: 560px;
  }
  .hero h1,
  h1,
  .h1 {
    font-size: 48px;
  }
  h2,
  .h2 {
    font-size: 40px;
  }
  h3,
  .h3 {
    font-size: 30px;
  }
  h4,
  .h4 {
    font-size: 26px;
  }
  h5,
  .h5 {
    font-size: 22px;
  }
  .intro-grid,
  .story-grid,
  .candidate-hero-grid,
  .candidate-story-grid,
  .feature-media-grid,
  .contractor-hero-grid,
  .employer-hero-grid,
  .approach-grid,
  .contact-page-grid,
  .post-job-hero-grid,
  .post-job-content-grid,
  .insight-hero-grid,
  .insight-outlook-grid,
  .insight-card-grid-2,
  .testimonial-grid,
  .insight-grid,
  .contact-grid,
  .contractor-care-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .value-grid,
  .experience-grid,
  .job-grid,
  #ja-jobs-widget .ja-job-list,
  .insight-card-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .benefit-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contractor-quick-card {
    grid-template-columns: 1fr;
  }
  .vacancy-filters,
  #ja-jobs-widget .ja-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quote-card {
    max-width: 520px;
  }
  .candidate-hero-grid {
    min-height: 0;
  }
  .candidate-image-wrap {
    order: -1;
    width: min(100%, 380px);
  }
  .career-badge {
    right: -12px;
    width: 132px;
    font-size: 1.05rem;
  }
  .candidate-feature-heading {
    margin-bottom: 52px;
  }
  .benefits-header {
    flex-direction: column;
  }
  .employer-hero-grid {
    min-height: 0;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .employer-hero-media {
    order: -1;
    width: min(100%, 360px);
  }
  .employer-inset-image {
    left: -20px;
    width: 160px;
  }
  .employer-approach-heading {
    margin-bottom: 52px;
  }
  .approach-row {
    grid-template-columns: 1fr;
  }
  .approach-row.is-reversed .approach-image,
  .approach-row.is-reversed .approach-copy {
    grid-column: auto;
    grid-row: auto;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-page-section .frm_fields_container {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lets-talk-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .lets-talk-media {
    order: -1;
    width: min(100%, 340px);
  }
  .insight-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .insight-hero-visual {
    display: none;
  }
  .insight-card-band-green .insight-info-card {
    color: var(--ink);
  }
  .benefit-arrows {
    padding-top: 0;
  }
  .services-heading,
  .accordion-container {
    width: min(100% - 48px, 1280px);
  }
  .service-tab {
    top: 72px;
    min-height: min(560px, 100svh - 96px);
    padding: 30px;
  }
  .service-tab::after {
    inset: 0;
  }
  .service-tab span {
    font-size: 30px;
  }
  .service-tab strong {
    font-size: 1rem;
  }
  .tab-float {
    position: static;
    width: 100%;
    max-height: none;
    margin-top: 24px;
    opacity: 0.86;
    visibility: visible;
    transform: translateY(8px) scale(0.98);
  }
  .service-tab.active .tab-float {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .contact-grid .btn {
    justify-self: start;
  }
  .about-card-grid,
  .team-grid,
  .employer-tech-grid,
  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .about-subpage-hero {
    min-height: 420px;
  }
  .testimonial-card,
  .insight-panel,
  .insight-info-card,
  .outline-card,
  .benefit-card {
    min-height: 0;
  }
  .location-card {
    grid-template-columns: 1fr;
  }
  .location-map {
    min-height: 260px;
  }
}
@media (max-width: 560px) {
  .container,
  .narrow,
  .hero-content {
    width: 100%;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-content {
    padding-left: 0;
    padding-right: 0;
  }
  .section-pad {
    padding-top: 6vh;
    padding-bottom: 6vh;
  }
  .page-header {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  .eyebrow,
  .section-heading,
  .section-copy,
  .services-heading,
  .candidate-feature-heading,
  .benefits-header,
  .testimonials h2,
  .cta,
  .cta h2 {
    text-align: left;
  }
  .approach-header-copy {
    text-align: center;
  }
  h1,
  .h1,
  .hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }
  h2,
  .h2 {
    font-size: 34px;
    line-height: 1.1;
  }
  h3,
  .h3 {
    font-size: 30px;
  }
  h4,
  .h4 {
    font-size: 25px;
  }
  h5,
  .h5,
  h6,
  .h6 {
    font-size: 21px;
  }
  .lead {
    font-size: 20px;
  }
  u {
    text-underline-offset: 4px;
  }
  .brand-name {
    font-size: 1.65rem;
  }
  .site-header {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 3px;
    padding-top: 14px;
  }
  .site-header-wrapper {
    gap: 12px;
  }
  .site-header a.brand,
  .brand {
    width: 135px;
  }
  .nav-action {
    margin-left: auto;
  }
  .nav-action > .btn {
    min-height: 32px;
    padding-inline: 16px;
    font-size: 0.9rem;
  }
  .section-logo-bg:before {
    width: 350px;
    height: 549px;
  }
  .primary-nav {
    gap: 18px;
    font-size: 0.88rem;
  }
  .mega-grid, .mega-grid-six, .mega-grid-three, .mega-grid-four {
    gap: 0;
  }
  .nav-trigger {
    font-size: 4vw;
  }
  .mega-menu {
    padding: 0;
    pading-top: 4px;
    max-height: none;
    box-shadow: none;
    height: 100vh;
  }
  .mega-card {
    min-height: 0;
    padding: 18px;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
  }
  .mega-card strong {
    font-size: 1rem;
  }
  .mega-card span {
    font-size: 0.9rem;
    margin-top: 5px;
  }
  .hero {
    min-height: 300px;
  }
  .hero h1 {
    margin-bottom: 1.5rem;
  }
  .hero-content {
    padding-top: 24px;
    padding-bottom: 38px;
    justify-content: end;
  }
  .subpage-hero {
    min-height: 380px;
  }
  .intro h2 {
    margin-bottom: 16px;
  }
  .services .eyebrow {
    text-align: left;
  }
  .services h2 {
    text-align: left;
  }
  .section-intro {
    text-align: left;
    margin-top: 16px;
  }
  .service-tab {
    padding: 27px;
    border-radius: 12px;
  }
  .job-grid,
  .vacancy-filters,
  #ja-jobs-widget .ja-job-list,
  #ja-jobs-widget .ja-form {
    grid-template-columns: 1fr;
  }
  #ja-jobs-widget .ja-form {
    margin-bottom: 36px;
  }
  #ja-jobs-widget .ja-pager-container {
    align-items: flex-start;
    flex-direction: column;
  }
  #ja-jobs-widget .ja-job-details,
  #ja-jobs-widget .ja-apply-iframe,
  #ja-jobs-widget .ja-job-apply,
  #ja-jobs-widget .ja-job-list-container .no-jobs-content {
    padding: 22px;
  }
  #ja-jobs-widget .ja-job-details .meta {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 34px;
  }
  #ja-jobs-widget .ja-job-details .meta .date-posted {
    justify-self: start;
  }
  #ja-jobs-widget .ja-job-details .apply {
    align-items: flex-start;
    flex-direction: column;
  }
  .intro::after,
  .values-section::after,
  .about-page-section::after {
    opacity: 0.12;
  }
  .insight-hero strong {
    font-size: 2rem;
  }
  .insight-panel,
  .insight-info-card {
    padding: 24px;
  }
  .insight-stats {
    flex-direction: column;
    gap: 18px;
  }
  .insight-callout {
    grid-template-columns: 1fr;
  }
  .insight-callout p {
    grid-column: auto;
  }
  .employer-hero-media {
    width: min(100%, 280px);
  }
  .employer-inset-image {
    width: 118px;
    border-width: 6px;
  }
  .employer-hero-grid {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .post-job-card {
    position: static;
    padding: 24px;
  }
  .approach-grid {
    gap: 48px;
  }
  .approach-row {
    gap: 22px;
  }
  .contact-info-card {
    padding: 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid a:not(.btn) {
    grid-template-columns: 40px minmax(0, 1fr);
  }
  .contact-grid strong {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }
  .lets-talk-grid {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .lets-talk-media {
    width: min(100%, 260px);
  }
  .lets-talk-inset-image {
    left: -16px;
    width: 96px;
    border-width: 6px;
  }
  .candidate-image-wrap {
    width: min(100%, 310px);
  }
  .career-badge {
    width: 112px;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 0.9rem;
  }
  .benefit-rail {
    grid-template-columns: 1fr;
  }
  .contractor-care-actions {
    grid-template-columns: 1fr;
  }
  .care-action-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .contractor-quick-actions {
    display: grid;
    justify-content: stretch;
  }
  .contractor-quick-actions .btn {
    width: 100%;
  }
  .benefit-card {
    min-height: 0;
  }
  .value-grid,
  .experience-grid,
  .job-grid,
  .vacancy-filters,
  .insight-card-grid-4,
  .about-card-grid,
  .team-grid,
  .employer-tech-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .about-subpage-hero {
    min-height: 360px;
  }
  div#carousel_double > div > div {
    padding: 0 !important;
  }
  .about-card,
  .team-card,
  .about-quote,
  .employer-tech-card,
  .location-card {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .location-map {
    min-height: 220px;
  }
  .team-modal {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .team-modal-panel {
    max-height: calc(100vh - 48px);
    padding: 24px;
  }
  .team-modal-grid {
    grid-template-columns: 1fr;
  }
  .team-modal-photo {
    max-width: 280px;
  }
  .outline-card {
    min-height: 0;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .quote-card,
  .about-quote {
    padding: 24px;
  }
  .quote-card p,
  .about-quote p {
    font-size: 1.55rem;
  }
  .testimonial-grid {
    gap: 18px;
  }
  .quote-mark {
    display: none;
  }
  .footer-grid {
    gap: 24px;
  }
  .contact-strip {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .site-footer {
    padding-top: 24px;
  }
  .site-footer h6 {
    margin-bottom: 6px;
  }
  .site-footer nav {
    margin-bottom: 0.9rem;
  }
  .site-footer p {
    width: 100%;
  }
  .legal {
    margin-top: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "helvetica-neue-lt-pro", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
}

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