:root {
  --ink: #050505;
  --paper: #ffffff;
  --muted: #f5f5f5;
  --footer: #0e1a2b;
  --triangle-blue: #4775d1;
  --max: 1340px;
  --gutter: clamp(20px, 3.5vw, 50px);
  --frame-offset: max(0px, calc((100vw - 1440px) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
  height: 90px;
  inset: 0 0 auto;
  min-width: 1440px;
  padding: 0;
  position: fixed;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  z-index: 10;
}

.site-header::after {
  content: "";
  display: none;
  height: 207px;
  left: 0;
  position: absolute;
  top: 90px;
  width: 100%;
  z-index: 0;
}

.site-header:hover,
.site-header.always-solid,
.site-header.is-solid {
  background: white;
  border-bottom-color: #d9d9d9;
}

.brand {
  display: block;
  height: 39px;
  left: calc(var(--frame-offset) + 50px);
  position: absolute;
  top: 26px;
  width: 266px;
}

.brand-logo {
  height: 39px;
  inset: 0;
  position: absolute;
  transition: opacity 160ms ease;
  width: 266px;
}

.brand-logo-solid {
  opacity: 0;
}

.site-header:hover .brand-logo-clear,
.site-header.always-solid .brand-logo-clear,
.site-header.is-solid .brand-logo-clear {
  opacity: 0;
}

.site-header:hover .brand-logo-solid,
.site-header.always-solid .brand-logo-solid,
.site-header.is-solid .brand-logo-solid {
  opacity: 1;
}

.desktop-nav {
  display: contents;
}

.desktop-nav a {
  color: white;
  font-size: 15px;
  font-weight: 400;
  height: 90px;
  line-height: normal;
  padding-top: 36px;
  position: absolute;
  top: 0;
}

.nav-services::after,
.nav-industries::after {
  background: var(--triangle-blue);
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 62px;
  transition: opacity 140ms ease;
  width: 66px;
}

.nav-services::after {
  width: 58px;
}

.site-header:hover .desktop-nav a,
.site-header.always-solid .desktop-nav a,
.site-header.is-solid .desktop-nav a {
  color: black;
}

.desktop-nav a span {
  background: url("./assets/nav-chevron.svg") center / contain no-repeat;
  display: block;
  height: 6px;
  position: absolute;
  top: 42px;
  transform: rotate(180deg);
  width: 14px;
}

.site-header:hover .desktop-nav a span,
.site-header.always-solid .desktop-nav a span,
.site-header.is-solid .desktop-nav a span {
  background-image: url("./assets/nav-chevron-solid.svg");
}

.nav-services {
  left: calc(var(--frame-offset) + 547px);
  width: 110px;
}

.nav-services span {
  left: 70px;
}

.nav-industries {
  left: calc(var(--frame-offset) + 657px);
  width: 119px;
}

.nav-industries span {
  left: 79px;
}

.nav-about {
  left: calc(var(--frame-offset) + 776px);
  width: 92px;
}

.nav-about span {
  left: 52px;
}

.nav-careers {
  left: calc(var(--frame-offset) + 868px);
  width: 112px;
}

.nav-contact-mobile {
  display: none;
}

.desktop-nav .nav-about span,
.desktop-nav .nav-careers span {
  display: none !important;
}

.button {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-size: 15px;
  height: 42px;
  justify-content: center;
  min-width: 130px;
  padding: 0 28px;
  transition: background-color 180ms ease, color 180ms ease;
}

.button-light {
  color: white;
}

.site-header:hover .button-light,
.site-header.always-solid .button-light,
.site-header.is-solid .button-light {
  color: black;
}

.site-header > .button {
  height: 42px;
  left: calc(var(--frame-offset) + 1260px);
  min-width: 0;
  padding: 0;
  position: absolute;
  top: 24px;
  width: 130px;
}

.mobile-menu-toggle {
  display: none;
}

.site-header:not(.is-solid):not(:hover) .button-light:hover,
.site-header:not(.is-solid):not(:hover) .button-light:focus-visible {
  background: white;
  color: var(--ink);
}

.site-header:hover .button-light:hover,
.site-header:hover .button-light:focus-visible,
.site-header.always-solid .button-light:hover,
.site-header.always-solid .button-light:focus-visible,
.site-header.is-solid .button-light:hover,
.site-header.is-solid .button-light:focus-visible {
  background: black;
  color: white;
}

.nav-dropdown {
  background: white;
  border: 1px solid #d9d9d9;
  border-top: 0;
  border-radius: 0 0 9px 9px;
  color: black;
  height: 187px;
  left: calc(var(--frame-offset) + 51px);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 89px;
  transition: height 140ms ease;
  visibility: hidden;
  width: 1338px;
  z-index: 1;
}

.site-header.dropdown-open::after {
  display: block;
}

.nav-dropdown::after {
  background: var(--triangle-blue);
  bottom: 0;
  content: "";
  height: 10px;
  left: -1px;
  position: absolute;
  width: calc(100% + 2px);
}

.services-dropdown {
  height: 127px;
  width: 1338px;
}

.site-header.dropdown-open,
.site-header:has(.nav-services:hover),
.site-header:has(.nav-services:focus-visible),
.site-header:has(.services-dropdown:hover),
.site-header:has(.services-dropdown:focus-within),
.site-header:has(.nav-industries:hover),
.site-header:has(.nav-industries:focus-visible),
.site-header:has(.industries-dropdown:hover),
.site-header:has(.industries-dropdown:focus-within) {
  background: white;
  border-bottom-color: #d9d9d9;
}

.site-header.dropdown-open .brand-logo-clear,
.site-header:has(.nav-services:hover) .brand-logo-clear,
.site-header:has(.nav-services:focus-visible) .brand-logo-clear,
.site-header:has(.services-dropdown:hover) .brand-logo-clear,
.site-header:has(.services-dropdown:focus-within) .brand-logo-clear,
.site-header:has(.nav-industries:hover) .brand-logo-clear,
.site-header:has(.nav-industries:focus-visible) .brand-logo-clear,
.site-header:has(.industries-dropdown:hover) .brand-logo-clear,
.site-header:has(.industries-dropdown:focus-within) .brand-logo-clear {
  opacity: 0;
}

.site-header.dropdown-open .brand-logo-solid,
.site-header:has(.nav-services:hover) .brand-logo-solid,
.site-header:has(.nav-services:focus-visible) .brand-logo-solid,
.site-header:has(.services-dropdown:hover) .brand-logo-solid,
.site-header:has(.services-dropdown:focus-within) .brand-logo-solid,
.site-header:has(.nav-industries:hover) .brand-logo-solid,
.site-header:has(.nav-industries:focus-visible) .brand-logo-solid,
.site-header:has(.industries-dropdown:hover) .brand-logo-solid,
.site-header:has(.industries-dropdown:focus-within) .brand-logo-solid {
  opacity: 1;
}

.site-header.dropdown-open .desktop-nav a,
.site-header:has(.nav-services:hover) .desktop-nav a,
.site-header:has(.nav-services:focus-visible) .desktop-nav a,
.site-header:has(.services-dropdown:hover) .desktop-nav a,
.site-header:has(.services-dropdown:focus-within) .desktop-nav a,
.site-header:has(.nav-industries:hover) .desktop-nav a,
.site-header:has(.nav-industries:focus-visible) .desktop-nav a,
.site-header:has(.industries-dropdown:hover) .desktop-nav a,
.site-header:has(.industries-dropdown:focus-within) .desktop-nav a {
  color: black;
}

.site-header.dropdown-open-services .desktop-nav .nav-services,
.site-header:hover .desktop-nav .nav-services:hover,
.site-header .desktop-nav .nav-services:focus-visible,
.site-header:has(.nav-services:hover) .desktop-nav .nav-services,
.site-header:has(.nav-services:focus-visible) .desktop-nav .nav-services,
.site-header:has(.services-dropdown:hover) .desktop-nav .nav-services,
.site-header:has(.services-dropdown:focus-within) .desktop-nav .nav-services {
  color: var(--triangle-blue);
}

.site-header.dropdown-open-industries .desktop-nav .nav-industries,
.site-header:hover .desktop-nav .nav-industries:hover,
.site-header .desktop-nav .nav-industries:focus-visible,
.site-header:has(.nav-industries:hover) .desktop-nav .nav-industries,
.site-header:has(.nav-industries:focus-visible) .desktop-nav .nav-industries,
.site-header:has(.industries-dropdown:hover) .desktop-nav .nav-industries,
.site-header:has(.industries-dropdown:focus-within) .desktop-nav .nav-industries {
  color: var(--triangle-blue);
}

.site-header.dropdown-open-services .nav-services::after,
.site-header:has(.nav-services:hover) .nav-services::after,
.site-header:has(.nav-services:focus-visible) .nav-services::after,
.site-header:has(.services-dropdown:hover) .nav-services::after,
.site-header:has(.services-dropdown:focus-within) .nav-services::after {
  opacity: 1;
}

.site-header.dropdown-open-industries .nav-industries::after,
.site-header:has(.nav-industries:hover) .nav-industries::after,
.site-header:has(.nav-industries:focus-visible) .nav-industries::after,
.site-header:has(.industries-dropdown:hover) .nav-industries::after,
.site-header:has(.industries-dropdown:focus-within) .nav-industries::after {
  opacity: 1;
}

.site-header.dropdown-open .desktop-nav a span,
.site-header:has(.nav-services:hover) .desktop-nav a span,
.site-header:has(.nav-services:focus-visible) .desktop-nav a span,
.site-header:has(.services-dropdown:hover) .desktop-nav a span,
.site-header:has(.services-dropdown:focus-within) .desktop-nav a span,
.site-header:has(.nav-industries:hover) .desktop-nav a span,
.site-header:has(.nav-industries:focus-visible) .desktop-nav a span,
.site-header:has(.industries-dropdown:hover) .desktop-nav a span,
.site-header:has(.industries-dropdown:focus-within) .desktop-nav a span {
  background-image: url("./assets/nav-chevron-solid.svg");
}

.site-header.dropdown-open .button-light,
.site-header:has(.nav-services:hover) .button-light,
.site-header:has(.nav-services:focus-visible) .button-light,
.site-header:has(.services-dropdown:hover) .button-light,
.site-header:has(.services-dropdown:focus-within) .button-light,
.site-header:has(.nav-industries:hover) .button-light,
.site-header:has(.nav-industries:focus-visible) .button-light,
.site-header:has(.industries-dropdown:hover) .button-light,
.site-header:has(.industries-dropdown:focus-within) .button-light {
  color: black;
}

.site-header.dropdown-open-services .services-dropdown,
.site-header.dropdown-open-industries .industries-dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.services-dropdown .dropdown-title,
.services-dropdown a,
.services-dropdown button,
.industries-dropdown .dropdown-title,
.industries-dropdown a {
  line-height: normal;
  margin: 0;
  position: absolute;
  white-space: nowrap;
}

.services-dropdown .dropdown-title,
.industries-dropdown .dropdown-title {
  color: black;
  font-size: 24px;
  font-weight: 500;
  left: 121px;
  top: 16px;
}

.services-dropdown a,
.services-dropdown button,
.industries-dropdown a {
  background: transparent;
  border: 0;
  color: black;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  padding: 0;
  text-align: left;
}

.services-dropdown a:hover,
.services-dropdown a:focus-visible,
.services-dropdown button:hover,
.services-dropdown button:focus-visible,
.industries-dropdown a:hover,
.industries-dropdown a:focus-visible {
  color: var(--triangle-blue);
  outline: 0;
}

.services-dropdown .dropdown-title:hover,
.services-dropdown .dropdown-title:focus-visible,
.industries-dropdown .dropdown-title:hover,
.industries-dropdown .dropdown-title:focus-visible {
  color: var(--triangle-blue);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.item-financial-operations { left: 121px; top: 75px; }
.item-tax-structuring { left: 402px; top: 75px; }
.item-financial-systems { left: 666px; top: 75px; }
.item-advisory-growth { left: 931px; top: 75px; }

.item-agri { left: 121px; top: 75px; }
.item-auto { left: 121px; top: 107px; }
.item-construction { left: 121px; top: 139px; }
.item-consumer { left: 402px; top: 75px; }
.item-financial { left: 402px; top: 107px; }
.item-healthcare { left: 402px; top: 139px; }
.item-industrial { left: 618px; top: 75px; }
.item-manufacturing { left: 618px; top: 107px; }
.item-media { left: 618px; top: 139px; }
.item-oil { left: 931px; top: 75px; }
.item-retail { left: 931px; top: 107px; }
.item-tech { left: 931px; top: 139px; }
.item-logistics { left: 1030px; top: 75px; }
.item-real-estate { left: 1030px; top: 107px; }

.button-dark {
  color: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--ink);
  color: white;
}

.section-image {
  background: #a0b9ea;
  overflow: hidden;
  position: relative;
}

.hero {
  height: 709px;
  min-height: 709px;
}

.hero-slide {
  background: #a0b9ea;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
}

.hero-slide-builders {
  animation: heroBuilders 30s infinite;
}

.hero-slide-compliance {
  animation: heroCompliance 30s infinite;
}

.hero-slide-systems {
  animation: heroSystems 30s infinite;
  opacity: 1;
}

.hero-image {
  max-width: none;
  object-fit: cover;
  position: absolute;
}

.hero-slide-builders .hero-image {
  height: 1023px;
  left: 0;
  top: -157px;
  transform: scaleX(-1);
  width: max(1538px, 100vw);
}

.hero-slide-compliance .hero-image {
  height: 945px;
  left: -62px;
  top: -137px;
  width: max(1665px, calc(100vw + 62px));
}

.hero-slide-systems .hero-image {
  height: 782px;
  left: 0;
  object-fit: cover;
  top: -48px;
  width: 100%;
}

@keyframes heroBuilders {
  0%,
  28% {
    opacity: 0;
  }

  33%,
  61% {
    opacity: 1;
  }

  66%,
  100% {
    opacity: 0;
  }
}

@keyframes heroCompliance {
  0%,
  61% {
    opacity: 0;
  }

  66%,
  94% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes heroSystems {
  0%,
  28% {
    opacity: 1;
  }

  33%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-content {
  color: white;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  left: 50px;
  line-height: normal;
  margin: 0;
  position: absolute;
  top: 239px;
  width: 515px;
}

.hero h2 {
  font-size: 64px;
  font-weight: 700;
  left: 50px;
  line-height: normal;
  margin: 0;
  position: absolute;
  top: 311px;
  width: 515px;
}

.hero-slide-systems h2 {
  top: 312px;
  width: 636px;
}

.hero-content .text-link {
  gap: 0;
  left: 50px;
  position: absolute;
  top: 493px;
}

.hero-content .text-link span:first-child {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

.hero-content .text-link img {
  height: 16px;
  max-width: none;
  position: absolute;
  top: 7px;
  width: 41px;
}

.hero-slide-builders .text-link img {
  left: 162px;
}

.hero-slide-compliance .text-link img {
  left: 283px;
}

.hero-slide-systems .text-link img {
  left: 283px;
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-weight: 500;
  gap: 22px;
  line-height: 1;
}

.text-link-light {
  color: white;
}

.text-link span:first-child {
  font-size: 24px;
}

.text-link span:last-child {
  font-size: 34px;
  line-height: 0.7;
}

.about-section {
  background: white;
  height: 709px;
  margin: 0;
  max-width: none;
  min-height: 709px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.about-image {
  height: 500px;
  left: calc(var(--frame-offset) + 50px);
  overflow: hidden;
  position: absolute;
  top: 105px;
  width: 500px;
}

.about-image img {
  height: 100%;
  left: 0;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  width: 100%;
}

.about-copy {
  position: static;
}

.eyebrow {
  font-size: 16px;
  margin: 0 0 18px;
}

.about-copy .eyebrow {
  font-weight: 400;
  left: calc(var(--frame-offset) + 638px);
  line-height: normal;
  margin: 0;
  position: absolute;
  top: 173px;
  white-space: nowrap;
}

h2 {
  font-size: clamp(30px, 2.7vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.about-copy h2 {
  font-size: 36px;
  font-weight: 500;
  left: calc(var(--frame-offset) + 638px);
  line-height: normal;
  position: absolute;
  top: 198px;
  white-space: nowrap;
}

.about-copy p:last-child,
.careers-copy p {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.28;
  margin: 88px 0 0;
}

.about-copy p:last-child {
  font-size: 24px;
  font-weight: 400;
  left: calc(var(--frame-offset) + 638px);
  line-height: normal;
  margin: 0;
  position: absolute;
  top: 342px;
  width: 637px;
}

.services-section {
  background: white;
  height: 709px;
  margin: 0;
  max-width: none;
  min-height: 709px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.rule {
  border-top: 1px solid #d9d9d9;
  margin: 0 auto 34px;
  width: calc(100% - 54px);
}

.services-section > .rule {
  left: calc(var(--frame-offset) + 78px);
  margin: 0;
  position: absolute;
  top: 0;
  width: 1283px;
}

.services-section h2 {
  font-size: 36px;
  font-weight: 500;
  left: calc(var(--frame-offset) + 51px);
  line-height: normal;
  margin: 0;
  position: absolute;
  top: 42px;
}

.services-grid {
  display: block;
}

.service-card {
  background: #e3e3e3;
  color: white;
  height: 444px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 133px;
  width: 297px;
}

.service-card:nth-child(1) {
  left: calc(var(--frame-offset) + 51px);
}

.service-card:nth-child(2) {
  left: calc(var(--frame-offset) + 398px);
  width: 298px;
}

.service-card:nth-child(3) {
  left: calc(var(--frame-offset) + 745px);
}

.service-card:nth-child(4) {
  left: calc(var(--frame-offset) + 1092px);
}

.industry-panel img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 420ms ease;
  width: 100%;
}

.service-card img {
  max-width: none;
  object-fit: cover;
  position: absolute;
}

.service-card:nth-child(1) > img {
  height: 444px;
  left: 0;
  object-position: center center;
  top: 0;
  transform: none;
  width: 297px;
}

.service-card:nth-child(2) > img {
  height: 563px;
  left: -372px;
  top: -91px;
  width: 838px;
}

.service-card:nth-child(3) > img {
  height: 477px;
  left: -186px;
  top: -33px;
  transform: scaleX(-1);
  width: 700px;
}

.service-card:nth-child(4) > img {
  height: 517px;
  left: -194px;
  top: 0;
  width: 686px;
}

.service-card::after,
.industry-panel::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.62));
  content: "";
  inset: 0;
  position: absolute;
}

.service-card:nth-child(1)::before {
  background: black;
  content: "";
  filter: blur(22.45px);
  height: 77px;
  left: 0;
  opacity: 0.15;
  position: absolute;
  top: 367px;
  width: 297px;
  z-index: 1;
}

.service-card:hover img,
.industry-panel:hover img {
  transform: scale(1.035);
}

.service-card:nth-child(1):hover > img {
  transform: scale(1.035);
}

.service-card:nth-child(3):hover > img {
  transform: scaleX(-1) scale(1.035);
}

.card-title {
  display: block;
  font-size: 36px;
  font-weight: 500;
  left: 26px;
  line-height: normal;
  position: absolute;
  top: 288px;
  z-index: 2;
}

.service-card:nth-child(1) .card-title {
  width: 197px;
}

.service-card:nth-child(2) .card-title {
  width: 286px;
}

.service-card:nth-child(3) .card-title {
  width: 220px;
}

.service-card:nth-child(4) .card-title {
  width: 218px;
}

.service-card .text-link {
  gap: 0;
  left: 26px;
  position: absolute;
  top: 383px;
  z-index: 2;
}

.service-card .text-link span:first-child {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

.service-card .text-link img {
  height: 16px;
  left: 156px;
  max-width: none;
  position: absolute;
  top: 7px;
  width: 41px;
}

.industries-section {
  padding: 58px 0 78px;
}

.section-heading {
  align-items: center;
  display: grid;
  gap: 33px;
  grid-template-columns: minmax(80px, 470px) auto minmax(80px, 470px);
  margin: 0 auto 114px;
  max-width: var(--max);
  padding: 0 var(--gutter);
}

.section-heading span {
  border-top: 1px solid #d9d9d9;
}

.section-heading h2 {
  text-align: center;
}

.industry-panel {
  background: black;
  color: white;
  display: block;
  height: 660px;
  overflow: hidden;
  position: relative;
}

.industry-panel::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.63));
}

.panel-copy {
  bottom: 66px;
  display: grid;
  gap: 34px;
  left: 32px;
  max-width: 570px;
  position: absolute;
  z-index: 1;
}

.panel-title {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
}

.industry-construction > img {
  height: 100%;
  left: 0;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  top: 0;
  width: 100%;
}

.industry-construction .panel-copy {
  bottom: auto;
  display: block;
  gap: 0;
  left: 32px;
  max-width: none;
  top: 374px;
  width: 515px;
}

.industry-construction .panel-title {
  display: block;
  font-size: 64px;
  font-weight: 700;
  line-height: normal;
  width: 515px;
}

.industry-construction .text-link {
  gap: 0;
  left: 0;
  position: absolute;
  top: 189px;
}

.industry-construction .text-link span:first-child {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

.industry-construction .text-link img {
  height: 16px;
  left: 217px;
  max-width: none;
  position: absolute;
  top: 7px;
  width: 41px;
}

.industry-logistics > img {
  height: 1020px;
  left: -80px;
  max-width: none;
  min-width: calc(100vw + 720px);
  top: -291px;
  transform: scaleX(-1);
  width: max(2100px, calc(100vw + 720px));
}

.industry-logistics:hover > img {
  transform: scaleX(-1) scale(1.035);
}

.all-industries {
  align-items: center;
  column-gap: 70px;
  display: grid;
  grid-template-columns: minmax(280px, 420px) auto;
  justify-content: center;
  margin: 68px auto 0;
  padding: 0 var(--gutter);
}

.all-industries .eyebrow {
  grid-column: 1;
  margin: 0 0 14px;
}

.all-industries h2 {
  grid-column: 1;
}

.all-industries .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 199px;
}

.careers-section {
  column-gap: clamp(60px, 13vw, 240px);
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(320px, 637px);
  margin: 0 auto;
  max-width: var(--max);
  min-height: 494px;
  padding: 18px var(--gutter) 70px;
}

.careers-section .rule {
  grid-column: 1 / -1;
  margin-bottom: 136px;
}

.careers-copy p {
  margin: 0 0 32px;
}

.industries-page {
  background: white;
}

.industries-page-main {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1440px;
  min-height: 1361px;
  padding: 239px 50px 72px;
}

.industries-page-main h1 {
  color: black;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  margin: 0 0 54px;
}

.industries-explore-heading {
  align-items: center;
  display: grid;
  grid-template-columns: 470px max-content 470px;
  gap: 45px;
  margin-bottom: 108px;
}

.industries-explore-heading h2 {
  color: black;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
  white-space: nowrap;
}

.industries-explore-heading span {
  background: #e2e2e2;
  display: block;
  height: 1px;
  width: 470px;
}

.industry-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 409px);
  gap: 0 56px;
}

.industry-card {
  background: white;
  border-top: 1px solid #e6e6e6;
  color: black;
  display: block;
  height: 239px;
  position: relative;
  transition: background-color 160ms ease;
  width: 409px;
}

.industry-card::after {
  border-bottom: 7px solid transparent;
  border-left: 6px solid var(--triangle-blue);
  border-top: 7px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: 12px;
  top: 27px;
  width: 0;
}

.industry-card-title {
  color: black;
  display: block;
  font-size: 24px;
  font-weight: 600;
  left: 14px;
  line-height: normal;
  max-width: 354px;
  position: absolute;
  top: 18px;
  transition: color 160ms ease;
}

.industry-card-copy {
  color: #939393;
  display: block;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: 400;
  left: 14px;
  line-height: normal;
  position: absolute;
  top: 86px;
  width: 377px;
}

.industry-card:hover .industry-card-title,
.industry-card:focus-visible .industry-card-title {
  color: var(--triangle-blue);
}

.services-page {
  background: white;
}

.services-page-main {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1440px;
  min-height: 3875px;
  padding: 239px 50px 192px;
}

.services-page-main > h1 {
  color: black;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  margin: 0 0 61px;
}

.services-explore-heading {
  align-items: center;
  display: grid;
  gap: 53px;
  grid-template-columns: 470px max-content 470px;
  margin-bottom: 66px;
}

.services-explore-heading h2 {
  color: black;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
  white-space: nowrap;
}

.services-explore-heading span {
  background: #e2e2e2;
  display: block;
  height: 1px;
  width: 470px;
}

.service-category {
  margin: 0 0 169px 14px;
}

.service-category h2 {
  color: black;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  margin: 0 0 14px 5px;
  white-space: nowrap;
}

.service-category > p {
  color: black;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 51px 5px;
  white-space: nowrap;
}

.service-page-grid {
  display: grid;
  gap: 4px 42px;
  grid-template-columns: repeat(3, 409px);
}

.service-page-grid .service-list-card:nth-child(3n) {
  margin-left: 15px;
}

.service-list-card {
  background: white;
  border-top: 1px solid #e6e6e6;
  color: black;
  display: block;
  height: 239px;
  position: relative;
  transition: background-color 160ms ease;
  width: 409px;
}

.service-list-card::after {
  border-bottom: 7px solid transparent;
  border-left: 6px solid var(--triangle-blue);
  border-top: 7px solid transparent;
  content: "";
  height: 0;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 27px;
  width: 0;
}

.service-list-card-title {
  color: black;
  display: block;
  font-size: 24px;
  font-weight: 600;
  left: 14px;
  line-height: normal;
  max-width: 265px;
  position: absolute;
  top: 18px;
  transition: color 160ms ease;
}

.service-list-card-copy {
  color: #939393;
  display: block;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: 400;
  left: 14px;
  line-height: normal;
  position: absolute;
  top: 86px;
  width: 377px;
}

.service-list-card:hover .service-list-card-title,
.service-list-card:focus-visible .service-list-card-title {
  color: var(--triangle-blue);
}

.service-detail-capabilities .service-list-card {
  height: auto;
  min-height: 239px;
  overflow: hidden;
}

.service-capability-card::after {
  transition: transform 250ms ease;
}

.service-capability-card.is-open::after {
  transform: rotate(90deg);
}

.service-capability-toggle {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: block;
  font: inherit;
  height: 239px;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

.service-capability-toggle:focus-visible {
  outline: 2px solid var(--triangle-blue);
  outline-offset: -2px;
}

.service-capability-card:hover .service-list-card-title,
.service-capability-card:focus-within .service-list-card-title,
.service-capability-card.is-open .service-list-card-title {
  color: var(--triangle-blue);
}

.service-capability-detail {
  border-top: 1px solid #d7d7d7;
  color: #333;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 14px;
  transition: max-height 320ms ease, opacity 220ms ease, padding 320ms ease;
}

.service-capability-card.is-open .service-capability-detail {
  max-height: 520px;
  opacity: 1;
  padding-bottom: 28px;
  padding-top: 27px;
}

.service-capability-detail p {
  color: #333;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  margin: 0 0 15px;
  width: 352px;
}

.service-capability-detail ul {
  border-top: 1px solid #ececec;
  list-style: none;
  margin: 20px 0 0;
  padding: 18px 0 0;
}

.service-capability-detail li {
  color: #222;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 9px;
  padding-left: 15px;
  position: relative;
}

.service-capability-detail li::before {
  background: var(--triangle-blue);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 5px;
}

#tax-structuring {
  margin-bottom: 171px;
}

#financial-systems {
  margin-bottom: 169px;
}

#advisory-growth {
  margin-bottom: 0;
}

.service-detail-page {
  background: white;
}

.service-detail-main {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1440px;
  padding: 239px 50px 0;
}

.service-detail-hero {
  margin: 0 0 94px;
  max-width: 1185px;
}

.service-detail-hero h1 {
  color: black;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  margin: 0 0 32px;
}

.service-detail-hero p {
  color: black;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.32;
  margin: 0;
  max-width: 825px;
}

.service-detail-capabilities {
  margin: 0 0 118px 14px;
}

.service-detail-capabilities h2 {
  color: black;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: normal;
  margin: 0 0 49px 0;
}

.service-detail-content {
  border-top: 1px solid #e2e2e2;
  display: grid;
  gap: 72px;
  grid-template-columns: 409px minmax(0, 770px);
  margin: 0 0 104px;
  padding-top: 56px;
}

.service-detail-content h2,
.supported-industries h2 {
  color: black;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
}

.service-detail-copy p {
  color: black;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.33;
  margin: 0 0 31px;
}

.service-detail-copy p:last-child {
  margin-bottom: 0;
}

.supported-industries {
  border-top: 1px solid #e2e2e2;
  margin: 0 0 78px;
  padding-top: 56px;
}

.supported-industries h2 {
  margin-bottom: 43px;
}

.supported-industries-grid {
  display: grid;
  gap: 0 42px;
  grid-template-columns: repeat(3, 409px);
}

.supported-industries-grid a {
  align-items: center;
  border-top: 1px solid #e6e6e6;
  color: black;
  display: flex;
  font-size: 20px;
  font-weight: 600;
  height: 78px;
  line-height: normal;
  padding: 0 42px 0 14px;
  position: relative;
  transition: color 160ms ease;
}

.supported-industries-grid a::after {
  border-bottom: 7px solid transparent;
  border-left: 6px solid var(--triangle-blue);
  border-top: 7px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: 12px;
  top: 32px;
  width: 0;
}

.supported-industries-grid a:hover,
.supported-industries-grid a:focus-visible {
  color: var(--triangle-blue);
}

.service-detail-cta {
  margin-bottom: 154px;
}

.company-page {
  background: white;
}

.company-page-main {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1440px;
  padding: 239px 50px 0;
}

.company-hero {
  margin: 0 0 96px;
  max-width: 1120px;
}

.company-hero h1 {
  color: black;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  margin: 0 0 32px;
}

.company-hero p {
  color: black;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.32;
  margin: 0;
  max-width: 920px;
}

.company-split-section {
  border-top: 1px solid #e2e2e2;
  display: grid;
  gap: 72px;
  grid-template-columns: 409px minmax(0, 770px);
  margin: 0 0 104px;
  padding-top: 56px;
}

.company-split-section h2,
.company-list-section h2,
.company-ecosystem h2 {
  color: black;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
}

.company-split-copy p,
.company-ecosystem p {
  color: black;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.33;
  margin: 0 0 31px;
}

.company-split-copy p:last-child,
.company-ecosystem p:last-child {
  margin-bottom: 0;
}

.company-principles {
  border-top: 1px solid #ececec;
  display: grid;
  gap: 0 42px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 46px;
  padding-top: 26px;
}

.company-principle {
  border-top: 1px solid #e6e6e6;
  padding: 24px 42px 28px 14px;
  position: relative;
}

.company-principle::after {
  border-bottom: 7px solid transparent;
  border-left: 6px solid var(--triangle-blue);
  border-top: 7px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: 12px;
  top: 30px;
  width: 0;
}

.company-principle h3 {
  color: black;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 18px;
}

.company-principle p {
  color: #666;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}

.company-list-section {
  border-top: 1px solid #e2e2e2;
  margin: 0 0 104px;
  padding-top: 56px;
}

.company-list-section h2 {
  margin-bottom: 43px;
}

.company-list-grid {
  display: grid;
  gap: 0 42px;
  grid-template-columns: repeat(3, 409px);
}

.company-list-item {
  border-top: 1px solid #e6e6e6;
  min-height: 156px;
  padding: 24px 42px 28px 14px;
  position: relative;
}

.company-list-item::after {
  border-bottom: 7px solid transparent;
  border-left: 6px solid var(--triangle-blue);
  border-top: 7px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: 12px;
  top: 30px;
  width: 0;
}

.company-list-item h3 {
  color: black;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 18px;
}

.company-list-item p {
  color: #666;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.25;
  margin: 0;
}

.company-ecosystem {
  border-top: 1px solid #e2e2e2;
  display: grid;
  gap: 72px;
  grid-template-columns: 409px minmax(0, 770px);
  margin: 0 0 78px;
  padding-top: 56px;
}

.company-placeholder {
  background: #050505;
  height: 420px;
  margin: 0 0 104px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.policy-page-main {
  padding-bottom: 120px;
}

.policy-hero {
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 0;
  padding-bottom: 76px;
}

.policy-content {
  display: grid;
  grid-template-columns: minmax(0, 920px);
  padding-top: 54px;
}

.policy-content article {
  border-top: 1px solid #e6e6e6;
  padding: 35px 0 38px;
}

.policy-content article:first-child {
  border-top: 0;
  padding-top: 0;
}

.policy-content h2 {
  color: black;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.22;
  margin: 0 0 20px;
}

.policy-content h3 {
  color: black;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin: 26px 0 10px;
}

.policy-content h2 + h3 {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: black;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.48;
}

.policy-content p {
  margin: 0 0 18px;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content ul {
  margin: 0 0 24px;
  padding-left: 22px;
}

.policy-content li + li {
  margin-top: 8px;
}

.policy-content a {
  color: var(--triangle-blue);
}

.company-placeholder::after {
  background: linear-gradient(90deg, rgba(67, 116, 218, 0.32), rgba(255, 255, 255, 0));
  content: "";
  inset: 0;
  opacity: 0.34;
  position: absolute;
}

.company-image-placeholder img {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.82;
  position: absolute;
  top: 0;
  width: 100%;
}

.company-image-about img {
  object-position: center 50%;
  opacity: 0.9;
}

.company-image-careers img {
  object-position: center 48%;
  opacity: 0.9;
}

.careers-openings {
  border-top: 1px solid #e2e2e2;
  margin: 0 0 78px;
  padding-top: 56px;
}

.careers-openings h2 {
  color: black;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: normal;
  margin: 0 0 28px;
}

.careers-openings p {
  color: black;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.33;
  margin: 0;
  max-width: 760px;
}

.company-text-link {
  align-items: center;
  color: var(--triangle-blue);
  display: inline-flex;
  font-size: 22px;
  font-weight: 500;
  gap: 18px;
  margin-top: 32px;
}

.company-text-link::after {
  content: none;
}

.opportunities-list {
  border-top: 1px solid #e2e2e2;
  margin: 0 0 78px;
  padding-top: 56px;
}

.opportunities-list h2 {
  color: black;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: normal;
  margin: 0 0 43px;
}

.opportunity-card {
  border-top: 1px solid #e6e6e6;
  color: black;
  display: block;
  position: relative;
}

.opportunity-card::after {
  border-bottom: 7px solid transparent;
  border-left: 6px solid var(--triangle-blue);
  border-top: 7px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: 12px;
  top: 37px;
  width: 0;
}

.opportunity-card[open]::after {
  transform: rotate(90deg);
}

.opportunity-card-summary {
  cursor: pointer;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(280px, 409px) minmax(0, 700px) 180px;
  min-height: 178px;
  padding: 31px 42px 34px 14px;
}

.opportunity-card-summary::-webkit-details-marker {
  display: none;
}

.opportunity-card-summary::marker {
  content: "";
}

.opportunity-card h3 {
  color: black;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  transition: color 160ms ease;
}

.opportunity-card-summary:hover h3,
.opportunity-card[open] h3 {
  color: var(--triangle-blue);
}

.opportunity-card p,
.opportunity-detail li {
  color: #666;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.35;
  margin: 0;
}

.opportunity-meta {
  color: black;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 500;
  gap: 10px;
  line-height: 1.2;
}

.opportunity-detail {
  border-top: 1px solid #ececec;
  margin: 0 14px 38px;
  padding: 31px 0 0;
  width: 890px;
}

.opportunity-detail p {
  margin-bottom: 24px;
}

.opportunity-detail h4 {
  color: black;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin: 34px 0 18px;
}

.opportunity-detail h4:first-child {
  margin-top: 0;
}

.opportunity-detail ul {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.opportunity-detail li {
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
}

.opportunity-detail li::before {
  background: var(--triangle-blue);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 9px;
  width: 5px;
}

.opportunity-apply {
  align-items: center;
  color: var(--triangle-blue);
  display: inline-flex;
  font-size: 18px;
  font-weight: 500;
  gap: 18px;
}

.opportunity-apply::after {
  background: var(--triangle-blue);
  content: "";
  display: block;
  height: 2px;
  width: 72px;
}

.contact-page-main {
  padding-bottom: 0;
}

.contact-hero {
  margin-bottom: 104px;
}

.contact-layout {
  border-top: 1px solid #e2e2e2;
  display: grid;
  gap: 92px;
  grid-template-columns: 409px minmax(0, 760px);
  margin: 0 0 118px;
  padding-top: 56px;
}

.contact-details {
  display: grid;
  gap: 42px;
}

.contact-detail-group {
  border-top: 1px solid #e6e6e6;
  padding: 24px 14px 0;
  position: relative;
}

.contact-detail-group::after {
  border-bottom: 7px solid transparent;
  border-left: 6px solid var(--triangle-blue);
  border-top: 7px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: 12px;
  top: 30px;
  width: 0;
}

.contact-detail-group h2,
.contact-support h2,
.contact-closing h2 {
  color: black;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 18px;
}

.contact-detail-group p,
.contact-support p,
.contact-closing p {
  color: black;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}

.contact-detail-group a {
  color: var(--triangle-blue);
}

.contact-form {
  border-top: 1px solid #e6e6e6;
  display: grid;
  gap: 24px;
  padding-top: 24px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form-row {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form span {
  color: black;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-form em {
  color: #777;
  font-style: normal;
  font-weight: 400;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: white;
  border: 1px solid #d8d8d8;
  border-radius: 0;
  color: black;
  font: inherit;
  font-size: 18px;
  min-height: 58px;
  padding: 14px 16px;
  width: 100%;
}

.contact-form textarea {
  min-height: 172px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--triangle-blue);
  outline: 1px solid var(--triangle-blue);
}

.contact-form button {
  align-items: center;
  background: var(--triangle-blue);
  border: 0;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  font-weight: 500;
  height: 62px;
  justify-content: center;
  justify-self: start;
  padding: 0 42px;
}

.contact-form button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.contact-form-status {
  color: #1f5fd0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  margin: -4px 0 0;
}

.contact-form-status.is-error {
  color: #a33a2a;
}

.contact-support {
  border-top: 1px solid #e2e2e2;
  margin: 0 0 104px;
  padding-top: 56px;
}

.contact-support p {
  max-width: 850px;
}

.contact-industry-grid {
  display: grid;
  gap: 0 42px;
  grid-template-columns: repeat(3, 260px);
  margin-top: 43px;
}

.contact-industry-grid span {
  border-top: 1px solid #e6e6e6;
  color: black;
  display: block;
  font-size: 18px;
  font-weight: 600;
  padding: 22px 14px 24px;
  position: relative;
}

.contact-industry-grid span::after {
  border-bottom: 6px solid transparent;
  border-left: 5px solid var(--triangle-blue);
  border-top: 6px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: 12px;
  top: 27px;
  width: 0;
}

.contact-closing {
  border-top: 1px solid #e2e2e2;
  margin: 0 0 118px;
  padding-top: 56px;
}

.contact-closing p {
  max-width: 760px;
}

.industry-detail-hero {
  background: white;
  height: 709px;
  overflow: hidden;
  position: relative;
}

.industry-detail-hero > img {
  height: 1085px;
  left: -9px;
  max-width: none;
  min-width: calc(100vw + 120px);
  object-fit: cover;
  position: absolute;
  top: -231px;
  width: 1449px;
}

.automotive-page .industry-detail-hero > img {
  height: 1031px;
  left: -57px;
  top: -222px;
  width: 1638px;
}

.construction-page .industry-detail-hero {
  background: black;
}

.construction-page .industry-detail-hero > img {
  height: 709px;
  left: 0;
  object-fit: cover;
  object-position: center center;
  top: 0;
  width: 1440px;
}

.construction-page .industry-detail-hero h1 {
  left: 32px;
  top: 374px;
}

.consumer-products-page .industry-detail-hero > img {
  height: 1051px;
  left: 0;
  object-fit: cover;
  object-position: center center;
  top: -75px;
  width: 1576px;
}

.consumer-products-page .industry-detail-hero::before {
  background: black;
  content: "";
  filter: blur(44.75px);
  height: 709px;
  left: 0;
  opacity: 0.15;
  position: absolute;
  top: 0;
  width: 436px;
  z-index: 1;
}

.consumer-products-page .industry-detail-hero h1 {
  left: 32px;
  top: 374px;
  z-index: 2;
}

.financial-services-page .industry-detail-hero {
  background: black;
}

.financial-services-page .industry-detail-hero > img {
  height: 827px;
  left: -29px;
  object-fit: cover;
  top: 0;
  transform: scaleX(-1);
  width: 1469px;
}

.financial-services-page .industry-detail-hero h1 {
  left: 32px;
  top: 374px;
}

.healthcare-page .industry-detail-hero {
  background: black;
}

.healthcare-page .industry-detail-hero > img {
  height: 1023px;
  left: -11px;
  object-fit: cover;
  top: -72px;
  width: 1537px;
}

.healthcare-page .industry-detail-hero::before {
  background: black;
  border-radius: 50%;
  content: "";
  filter: blur(34px);
  height: 1426px;
  left: -95px;
  opacity: 0.26;
  pointer-events: none;
  position: absolute;
  top: -529px;
  width: 779px;
  z-index: 1;
}

.healthcare-page .industry-detail-hero h1 {
  left: calc(var(--frame-offset) + 50px);
  top: 456px;
  z-index: 2;
}

.industrial-machinery-page .industry-detail-hero {
  background: black;
}

.industrial-machinery-page .industry-detail-hero > img {
  height: 1024px;
  left: -25px;
  object-fit: cover;
  top: -232px;
  transform: scaleX(-1);
  width: 1535px;
}

.industrial-machinery-page .industry-detail-hero::before {
  background: black;
  border-radius: 50%;
  content: "";
  filter: blur(34px);
  height: 1426px;
  left: -95px;
  opacity: 0.26;
  pointer-events: none;
  position: absolute;
  top: -529px;
  width: 779px;
  z-index: 1;
}

.industrial-machinery-page .industry-detail-hero h1 {
  left: calc(var(--frame-offset) + 32px);
  top: 374px;
  z-index: 2;
}

.manufacturing-page .industry-detail-hero {
  background: black;
}

.manufacturing-page .industry-detail-hero > img {
  height: 1024px;
  left: -18px;
  object-fit: cover;
  top: -82px;
  width: 1536px;
}

.manufacturing-page .industry-detail-hero::before {
  background: black;
  border-radius: 50%;
  content: "";
  filter: blur(34px);
  height: 1426px;
  left: -95px;
  opacity: 0.26;
  pointer-events: none;
  position: absolute;
  top: -529px;
  width: 779px;
  z-index: 1;
}

.manufacturing-page .industry-detail-hero h1 {
  left: calc(var(--frame-offset) + 50px);
  top: 456px;
  z-index: 2;
}

.media-hospitality-page .industry-detail-hero {
  background: black;
}

.media-hospitality-page .industry-detail-hero > img {
  height: 1024px;
  left: 0;
  object-fit: cover;
  top: -189px;
  width: 1536px;
}

.media-hospitality-page .industry-detail-hero::before {
  background: black;
  border-radius: 50%;
  content: "";
  filter: blur(34px);
  height: 1426px;
  left: -95px;
  opacity: 0.26;
  pointer-events: none;
  position: absolute;
  top: -529px;
  width: 779px;
  z-index: 1;
}

.media-hospitality-page .industry-detail-hero h1 {
  left: calc(var(--frame-offset) + 32px);
  top: 374px;
  z-index: 2;
}

.oil-gas-page .industry-detail-hero {
  background: black;
}

.oil-gas-page .industry-detail-hero > img {
  height: 1024px;
  left: -48px;
  object-fit: cover;
  top: -96px;
  width: 1536px;
}

.oil-gas-page .industry-detail-hero::before {
  background: black;
  content: "";
  filter: blur(28.35px);
  height: 96px;
  left: -28px;
  opacity: 0.15;
  pointer-events: none;
  position: absolute;
  top: -16px;
  width: 1502px;
  z-index: 1;
}

.oil-gas-page .industry-detail-hero h1 {
  left: calc(var(--frame-offset) + 50px);
  top: 456px;
  z-index: 2;
}

.retail-page .industry-detail-hero {
  background: black;
}

.retail-page .industry-detail-hero > img {
  height: 1024px;
  left: -96px;
  object-fit: cover;
  top: -96px;
  width: 1536px;
}

.retail-page .industry-detail-hero::before {
  background: black;
  content: "";
  filter: blur(28.35px);
  height: 96px;
  left: -28px;
  opacity: 0.15;
  pointer-events: none;
  position: absolute;
  top: -16px;
  width: 1502px;
  z-index: 1;
}

.retail-page .industry-detail-hero h1 {
  left: calc(var(--frame-offset) + 50px);
  top: 456px;
  z-index: 2;
}

.real-estate-page .industry-detail-hero {
  background: black;
}

.real-estate-page .industry-detail-hero > img {
  height: 1023px;
  left: -49px;
  object-fit: cover;
  top: -252px;
  transform: scaleX(-1);
  width: 1538px;
}

.real-estate-page .industry-detail-hero::before {
  background: black;
  content: "";
  filter: blur(28.35px);
  height: 96px;
  left: -28px;
  opacity: 0.15;
  pointer-events: none;
  position: absolute;
  top: -16px;
  width: 1502px;
  z-index: 1;
}

.real-estate-page .industry-detail-hero h1 {
  left: calc(var(--frame-offset) + 50px);
  top: 456px;
  z-index: 2;
}

.technology-page .industry-detail-hero {
  background: black;
}

.technology-page .industry-detail-hero > img {
  height: 941px;
  left: -116px;
  object-fit: cover;
  top: -107px;
  width: 1672px;
}

.technology-page .industry-detail-hero h1 {
  left: calc(var(--frame-offset) + 50px);
  top: 456px;
  z-index: 2;
}

.transportation-logistics-page .industry-detail-hero {
  background: black;
}

.transportation-logistics-page .industry-detail-hero > img {
  height: 1020px;
  left: -80px;
  max-width: none;
  min-width: calc(100vw + 720px);
  object-fit: cover;
  top: -291px;
  transform: scaleX(-1);
  width: max(2100px, calc(100vw + 720px));
}

.transportation-logistics-page .industry-detail-hero h1 {
  left: calc(var(--frame-offset) + 32px);
  top: 374px;
  z-index: 2;
}

.industry-detail-hero h1 {
  color: white;
  font-size: 64px;
  font-weight: 700;
  left: calc(var(--frame-offset) + 50px);
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
  position: absolute;
  top: 456px;
  width: 515px;
  z-index: 1;
}

.industry-detail-page .industry-detail-hero h1 {
  left: calc(var(--frame-offset) + 50px);
  top: 456px;
}

.industry-intro {
  background: white;
  height: 709px;
  overflow: hidden;
  position: relative;
}

.industry-intro-image {
  height: 500px;
  left: calc(var(--frame-offset) + 50px);
  overflow: hidden;
  position: absolute;
  top: 105px;
  width: 500px;
}

.industry-intro-image img {
  height: 501px;
  left: -99px;
  max-width: none;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 668px;
}

.automotive-page .industry-intro-image img {
  height: 587px;
  left: -78px;
  top: -28px;
  width: 1011px;
}

.construction-page .industry-intro-image img {
  height: 500px;
  left: -132px;
  top: 0;
  width: 889px;
}

.consumer-products-page .industry-intro-image img {
  height: 557px;
  left: -170px;
  object-fit: cover;
  top: -9px;
  width: 835px;
}

.financial-services-page .industry-intro-image img {
  height: 543px;
  left: -274px;
  object-fit: cover;
  top: -22px;
  width: 966px;
}

.healthcare-page .industry-intro-image img {
  height: 500px;
  left: -187px;
  object-fit: cover;
  top: 0;
  width: 749px;
}

.industrial-machinery-page .industry-intro-image img {
  height: 500px;
  left: 0;
  object-fit: cover;
  top: 0;
  width: 500px;
}

.manufacturing-page .industry-intro-image img {
  height: 518px;
  left: -110px;
  object-fit: cover;
  top: -18px;
  width: 778px;
}

.media-hospitality-page .industry-intro-image img {
  height: 500px;
  left: -83px;
  object-fit: cover;
  top: 0;
  width: 751px;
}

.oil-gas-page .industry-intro-image img {
  height: 541px;
  left: -17px;
  object-fit: cover;
  top: -41px;
  width: 811px;
}

.retail-page .industry-intro-image img {
  height: 500px;
  left: -125px;
  object-fit: cover;
  top: 0;
  width: 750px;
}

.real-estate-page .industry-intro-image img {
  height: 500px;
  left: -58px;
  object-fit: cover;
  top: 0;
  width: 750px;
}

.technology-page .industry-intro-image img {
  height: 500px;
  left: -120px;
  object-fit: cover;
  top: 0;
  width: 889px;
}

.transportation-logistics-page .industry-intro-image img {
  height: 571px;
  left: -247px;
  object-fit: cover;
  top: -13px;
  width: 856px;
}

.industry-intro-copy {
  color: black;
  left: calc(var(--frame-offset) + 638px);
  position: absolute;
  top: 173px;
  width: 637px;
}

.industry-intro-copy p:first-child {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 8px;
}

.industry-intro-copy h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 91px;
}

.industry-intro-copy p:last-child {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.industry-help {
  background: white;
  height: 1025px;
  overflow: hidden;
  position: relative;
}

.industry-help-heading {
  align-items: center;
  display: grid;
  grid-template-columns: 515px max-content 515px;
  gap: 40px;
  left: calc(var(--frame-offset) + 50px);
  position: absolute;
  top: 37px;
}

.industry-help-heading h2 {
  color: black;
  font-size: 36px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  white-space: nowrap;
}

.industry-help-heading span {
  background: #e2e2e2;
  display: block;
  height: 1px;
  width: 515px;
}

.industry-help-intro {
  color: black;
  font-size: 24px;
  font-weight: 400;
  left: 50%;
  line-height: normal;
  margin: 0;
  position: absolute;
  text-align: center;
  top: 155px;
  transform: translateX(-50%);
  width: 1066px;
}

.industry-help-groups {
  left: calc(var(--frame-offset) + 187px);
  position: absolute;
  top: 379px;
  width: 1160px;
}

.industry-help-group {
  border-top: 1px solid #e2e2e2;
  min-height: 203px;
  padding-top: 39px;
}

.industry-help-group + .industry-help-group {
  margin-top: 6px;
}

.industry-help-group h3 {
  color: black;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 50px;
  width: 246px;
}

.industry-help-group ul {
  column-gap: 44px;
  display: grid;
  grid-template-columns: 200px 236px 220px 372px;
  list-style: none;
  margin: 0;
  padding: 0;
  row-gap: 28px;
}

.industry-help-group li {
  align-items: center;
  color: #52525b;
  display: inline-flex;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  gap: 8px;
  justify-content: flex-start;
  line-height: normal;
  position: relative;
  white-space: nowrap;
}

.industry-help-group li::after {
  border-bottom: 5px solid transparent;
  border-left: 4px solid var(--triangle-blue);
  border-top: 5px solid transparent;
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  height: 0;
  margin-left: 0;
  vertical-align: 1px;
  width: 0;
}

.industry-resource,
.industry-faq {
  background: white;
  border-top: 1px solid #e2e2e2;
  margin: 0 auto;
  padding: 78px 0 86px;
  width: min(1160px, calc(100% - (var(--gutter) * 2)));
}

.industry-resource {
  padding-top: 88px;
}

.section-kicker {
  color: black;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 18px;
}

.industry-resource h2,
.industry-faq h2 {
  color: black;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
  max-width: 760px;
}

.industry-resource-intro {
  color: black;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  margin: 34px 0 64px;
  max-width: 930px;
}

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

.industry-resource-grid article,
.industry-faq-list article {
  border-top: 1px solid #e2e2e2;
  padding-top: 28px;
}

.industry-resource-grid article:nth-child(n + 3) {
  margin-top: 54px;
}

.industry-resource-grid h3,
.industry-faq-list h3 {
  color: black;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.14;
  margin: 0 0 24px;
}

.industry-faq-list h3 {
  margin-bottom: 0;
}

.industry-faq-question {
  align-items: start;
  background: transparent;
  border: 0;
  color: black;
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 20px;
  grid-template-columns: 1fr 18px;
  padding: 0;
  text-align: left;
  width: 100%;
}

.industry-faq-question:hover,
.industry-faq-question:focus-visible {
  color: var(--triangle-blue);
}

.industry-faq-question:focus-visible {
  outline: 1px solid var(--triangle-blue);
  outline-offset: 8px;
}

.industry-faq-icon {
  border-bottom: 5px solid transparent;
  border-left: 6px solid var(--triangle-blue);
  border-top: 5px solid transparent;
  display: block;
  height: 0;
  margin-top: 8px;
  transform-origin: 35% 50%;
  transition: transform 220ms ease;
  width: 0;
}

.industry-faq-question[aria-expanded="true"] .industry-faq-icon {
  transform: rotate(90deg);
}

.industry-faq-answer {
  padding-top: 24px;
}

.industry-resource-grid p,
.industry-faq-list p {
  color: #52525b;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}

.industry-faq-list {
  display: grid;
  gap: 42px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 56px;
}

.industry-cta {
  background: white;
  border: 1px solid #e3e3e3;
  display: block;
  height: 203px;
  margin: 53px auto 154px;
  padding: 0;
  position: relative;
  width: 1103px;
}

.industry-cta > div {
  display: contents;
}

.industry-cta::after {
  background: #e3e3e3;
  content: "";
  height: 132px;
  left: 762px;
  position: absolute;
  top: 35px;
  width: 1px;
}

.industry-cta h2 {
  color: black;
  font-size: 24px;
  font-weight: 600;
  left: 64px;
  line-height: normal;
  margin: 0;
  position: absolute;
  top: 51px;
  white-space: nowrap;
}

.industry-cta p {
  color: black;
  font-size: 24px;
  font-weight: 400;
  left: 64px;
  line-height: normal;
  margin: 0;
  position: absolute;
  top: 92px;
  width: 683px;
}

.industry-cta a {
  align-items: center;
  background: var(--triangle-blue);
  color: white;
  display: flex;
  font-size: 22.204px;
  font-weight: 400;
  height: 62px;
  justify-content: center;
  left: 819px;
  line-height: normal;
  position: absolute;
  top: 70px;
  width: 225px;
}

.site-footer {
  background: var(--footer);
  border: 1px solid var(--footer);
  color: white;
  height: 455px;
  min-height: 455px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.footer-brand {
  display: contents;
}

.footer-brand img {
  height: 39px;
  left: calc(var(--frame-offset) + 49px);
  position: absolute;
  top: 49px;
  width: 266px;
}

.footer-brand p {
  height: 13px;
  font-size: 12px;
  font-style: italic;
  left: calc(var(--frame-offset) + 49px);
  line-height: normal;
  margin: 0;
  opacity: 0.75;
  position: absolute;
  top: 113px;
  width: 264px;
}

.footer-social a {
  display: block;
  position: absolute;
}

.footer-social img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.social-linkedin {
  height: 29px;
  left: calc(var(--frame-offset) + 35px);
  top: 179px;
  width: 54px;
}

.social-x {
  height: 23px;
  left: calc(var(--frame-offset) + 94px);
  top: 182px;
  width: 42px;
}

.social-youtube {
  height: 43px;
  left: calc(var(--frame-offset) + 136px);
  top: 172px;
  width: 80px;
}

.social-instagram {
  height: 25px;
  left: calc(var(--frame-offset) + 213px);
  top: 181px;
  width: 45px;
}

.social-facebook {
  height: 26px;
  left: calc(var(--frame-offset) + 270px);
  top: 180px;
  width: 47px;
}

.footer-column {
  display: block;
  position: absolute;
  top: 58px;
}

.footer-column[aria-label="Company links"] {
  left: calc(var(--frame-offset) + 698px);
}

.footer-column[aria-label="Vertical links"] {
  left: calc(var(--frame-offset) + 875px);
}

.footer-column[aria-label="Contact links"] {
  left: calc(var(--frame-offset) + 1105px);
}

.footer-column h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 22px;
}

.footer-column a {
  display: block;
  font-size: 16px;
  line-height: normal;
  margin: 0 0 16px;
  white-space: nowrap;
}

.footer-bottom {
  font-size: 12px;
}

.footer-bottom p {
  left: calc(var(--frame-offset) + 49px);
  line-height: normal;
  margin: 0;
  position: absolute;
  top: 420px;
  white-space: nowrap;
}

.footer-bottom nav {
  display: contents;
}

.footer-bottom a {
  font-size: 12px;
  line-height: normal;
  opacity: 0.95;
  position: absolute;
  top: 420px;
  white-space: nowrap;
}

.footer-bottom a:nth-child(1) {
  left: calc(var(--frame-offset) + 698px);
}

.footer-bottom a:nth-child(2) {
  left: calc(var(--frame-offset) + 800px);
}

.footer-bottom a:nth-child(3) {
  left: calc(var(--frame-offset) + 897px);
}

.footer-bottom a:nth-child(4) {
  left: calc(var(--frame-offset) + 1011px);
}

.footer-bottom a:nth-child(5) {
  left: calc(var(--frame-offset) + 1112px);
}

@media (max-width: 1020px) {
  .site-header {
    align-items: center;
    display: flex;
    height: 78px;
    justify-content: space-between;
    min-width: 0;
    padding: 0 var(--gutter);
  }

  .site-header:not(.always-solid):not(.is-solid):not(.mobile-menu-open):hover {
    background: transparent;
    border-bottom-color: transparent;
  }

  .site-header:not(.always-solid):not(.is-solid):not(.mobile-menu-open):hover .brand-logo-clear {
    opacity: 1;
  }

  .site-header:not(.always-solid):not(.is-solid):not(.mobile-menu-open):hover .brand-logo-solid {
    opacity: 0;
  }

  .site-header:not(.always-solid):not(.is-solid):not(.mobile-menu-open):hover .mobile-menu-toggle {
    color: white;
  }

  .desktop-nav {
    display: none;
  }

  .brand {
    height: 31px;
    left: auto;
    position: relative;
    top: auto;
    width: 214px;
    z-index: 12;
  }

  .brand-logo,
  .brand img {
    height: 31px;
    width: 214px;
  }

  .site-header > .button {
    display: none;
  }

  .mobile-menu-toggle {
    align-items: center;
    background: transparent;
    border: 1px solid currentColor;
    color: white;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    height: 42px;
    justify-content: center;
    margin-left: auto;
    padding: 0;
    position: relative;
    width: 48px;
    z-index: 12;
  }

  .site-header:hover .mobile-menu-toggle,
  .site-header.always-solid .mobile-menu-toggle,
  .site-header.is-solid .mobile-menu-toggle,
  .site-header.mobile-menu-open .mobile-menu-toggle {
    color: black;
  }

  .mobile-menu-toggle span {
    background: currentColor;
    display: block;
    height: 2px;
    transition: transform 160ms ease, opacity 160ms ease;
    width: 20px;
  }

  .site-header.mobile-menu-open {
    background: white;
    border-bottom-color: #d9d9d9;
  }

  .site-header.mobile-menu-open .brand-logo-clear {
    opacity: 0;
  }

  .site-header.mobile-menu-open .brand-logo-solid {
    opacity: 1;
  }

  .site-header.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header.mobile-menu-open .desktop-nav {
    background: white;
    border-bottom: 1px solid #d9d9d9;
    color: black;
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 0;
    max-height: calc(100vh - 78px);
    min-height: calc(100vh - 78px);
    overflow: auto;
    padding: 18px var(--gutter) 28px;
    position: absolute;
    right: 0;
    top: 78px;
    z-index: 11;
  }

  .site-header.mobile-menu-open .desktop-nav a {
    border-top: 1px solid #e6e6e6;
    color: black;
    display: block;
    font-size: 22px;
    font-weight: 500;
    height: auto;
    left: auto;
    line-height: 1.2;
    padding: 20px 0;
    position: relative;
    top: auto;
    width: 100%;
  }

  .site-header.mobile-menu-open .desktop-nav a::after {
    content: none;
  }

  .site-header.mobile-menu-open .desktop-nav a span {
    display: none;
  }

  .site-header.mobile-menu-open .desktop-nav .nav-about,
  .site-header.mobile-menu-open .desktop-nav .nav-careers {
    width: 100%;
  }

  .site-header.mobile-menu-open .desktop-nav .nav-contact-mobile {
    display: block;
  }

  .site-header .nav-dropdown,
  .site-header.mobile-menu-open .nav-dropdown,
  .site-header.mobile-menu-open::after {
    display: none;
  }

  .service-card .card-title {
    bottom: 90px;
    top: auto;
  }

  .service-card .text-link {
    bottom: 50px;
    top: auto;
  }

  .hero {
    min-height: 680px;
  }

  .about-section,
  .careers-section {
    grid-template-columns: 1fr;
  }

  .about-section {
    display: grid;
    gap: 36px;
    grid-template-columns: 1fr;
    height: auto;
    min-height: unset;
    padding: 76px var(--gutter);
  }

  .about-image {
    aspect-ratio: 1;
    height: auto;
    left: auto;
    max-width: 500px;
    position: relative;
    top: auto;
    width: 100%;
  }

  .about-image img {
    height: 100%;
    left: 0;
    object-position: 44% center;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .about-copy .eyebrow,
  .about-copy h2,
  .about-copy p:last-child {
    left: auto;
    position: static;
    top: auto;
    white-space: normal;
  }

  .about-copy h2 {
    margin-top: 18px;
  }

  .about-copy p:last-child {
    margin-top: 36px;
    width: auto;
  }

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

  .services-section {
    height: auto;
    min-height: unset;
    padding: 0 var(--gutter) 90px;
  }

  .services-section > .rule {
    left: auto;
    position: relative;
    top: auto;
    width: calc(100% - 54px);
  }

  .services-section h2 {
    left: var(--gutter);
    position: absolute;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    aspect-ratio: 297 / 444;
    height: auto;
    left: auto;
    position: relative;
    top: auto;
    width: auto;
  }

  .service-card:nth-child(1) > img,
  .service-card:nth-child(2) > img,
  .service-card:nth-child(3) > img,
  .service-card:nth-child(4) > img {
    height: 100%;
    left: 0;
    object-fit: cover;
    top: 0;
    transform: none;
    width: 100%;
  }

  .service-card:nth-child(3) > img {
    transform: scaleX(-1);
  }

  .service-card:nth-child(1):hover > img,
  .service-card:hover img {
    transform: scale(1.035);
  }

  .service-card:nth-child(3):hover > img {
    transform: scaleX(-1) scale(1.035);
  }

  .section-heading {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

  .section-heading span {
    display: none;
  }

  .site-footer {
    gap: 36px;
    grid-template-columns: 1fr 1fr;
  }

  .industries-page-main {
    padding: 190px var(--gutter) 72px;
  }

  .industries-page-main h1 {
    margin-bottom: 54px;
  }

  .industries-explore-heading {
    grid-template-columns: minmax(80px, 1fr) max-content minmax(80px, 1fr);
    gap: 24px;
    margin-bottom: 88px;
  }

  .industries-explore-heading span {
    width: 100%;
  }

  .industry-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 36px;
  }

  .industry-card {
    width: 100%;
  }

  .industry-card-copy {
    width: calc(100% - 44px);
  }

  .service-detail-main {
    padding: 190px var(--gutter) 0;
  }

  .company-page-main {
    padding: 190px var(--gutter) 0;
  }

  .service-detail-content {
    gap: 42px;
    grid-template-columns: minmax(280px, 409px) minmax(320px, 1fr);
  }

  .company-split-section,
  .company-ecosystem {
    gap: 42px;
    grid-template-columns: minmax(280px, 409px) minmax(320px, 1fr);
  }

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

  .opportunity-card-summary {
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  }

  .opportunity-meta {
    grid-column: 1 / -1;
  }

  .opportunity-detail {
    width: min(760px, calc(100% - 28px));
  }

  .contact-layout {
    gap: 54px;
    grid-template-columns: minmax(280px, 409px) minmax(320px, 1fr);
  }

  .contact-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 260px));
  }

  .service-detail-capabilities {
    margin-left: 0;
  }

  .service-detail-capabilities .service-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-capabilities .service-page-grid .service-list-card:nth-child(3n) {
    margin-left: 0;
  }

  .service-detail-capabilities .service-list-card {
    width: 100%;
  }

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

  .supported-industries-grid a {
    width: 100%;
  }

  .industry-detail-hero > img {
    left: 50%;
    object-position: center;
    transform: translateX(-50%);
  }

  .industry-intro {
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(280px, 500px) minmax(320px, 1fr);
    height: auto;
    min-height: 620px;
    padding: 105px var(--gutter);
  }

  .industry-intro-image,
  .industry-intro-copy {
    left: auto;
    position: relative;
    top: auto;
    width: 100%;
  }

  .industry-intro-image {
    aspect-ratio: 1;
    height: auto;
  }

  .industry-intro-copy h2 {
    margin-bottom: 64px;
  }

  .industry-help {
    height: auto;
    padding: 37px var(--gutter) 90px;
  }

  .industry-help-heading,
  .industry-help-intro,
  .industry-help-groups {
    left: auto;
    position: relative;
    top: auto;
    transform: none;
  }

  .industry-help-heading {
    grid-template-columns: minmax(80px, 1fr) max-content minmax(80px, 1fr);
    gap: 24px;
  }

  .industry-help-heading span {
    width: 100%;
  }

  .industry-help-intro {
    margin: 88px auto 110px;
    width: min(1066px, 100%);
  }

  .industry-help-groups {
    margin: 0 auto;
    width: min(1066px, 100%);
  }

  .industry-help-group ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-resource,
  .industry-faq {
    padding-bottom: 76px;
    padding-top: 72px;
    width: calc(100% - (var(--gutter) * 2));
  }

  .industry-resource-grid,
  .industry-faq-list {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .industry-resource-grid article:nth-child(n + 3) {
    margin-top: 0;
  }

  .industry-cta {
    width: calc(100% - (var(--gutter) * 2));
  }

  .industry-cta::after {
    left: 69%;
  }

  .industry-cta a {
    left: auto;
    right: 58px;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 72px;
    padding-top: 0;
  }

  .brand img {
    width: 182px;
  }

  .brand,
  .brand-logo,
  .brand img {
    height: 27px;
    width: 182px;
  }

  .mobile-menu-toggle {
    height: 40px;
    width: 46px;
  }

  .site-header.mobile-menu-open .desktop-nav {
    max-height: calc(100vh - 72px);
    min-height: calc(100vh - 72px);
    top: 72px;
  }

  .site-header.mobile-menu-open .desktop-nav a {
    font-size: 20px;
    padding: 18px 0;
  }

  .hero {
    height: 640px;
    min-height: 640px;
  }

  .hero-slide-builders .hero-image,
  .hero-slide-compliance .hero-image,
  .hero-slide-systems .hero-image {
    height: 760px;
    object-position: 62% top;
    top: -60px;
    width: 100%;
  }

  .hero-slide-builders .hero-image {
    left: 0;
  }

  .hero-slide-compliance .hero-image {
    left: -185px;
    width: 1180px;
  }

  .hero-slide-systems .hero-image {
    left: -420px;
    width: 1260px;
  }

  .hero h1,
  .hero h2,
  .hero-slide-systems h2 {
    font-size: clamp(48px, 13vw, 64px);
    left: var(--gutter);
    top: 210px;
    width: calc(100vw - (var(--gutter) * 2));
  }

  .hero h2 {
    top: 250px;
  }

  .hero-content .text-link {
    left: var(--gutter);
    top: 486px;
  }

  .hero-slide-builders .text-link img,
  .hero-slide-compliance .text-link img,
  .hero-slide-systems .text-link img {
    left: calc(100% + 28px);
  }

  .services-section,
  .careers-section {
    min-height: unset;
    padding-bottom: 76px;
    padding-top: 64px;
  }

  .about-section {
    gap: 34px;
    padding-bottom: 76px;
    padding-top: 64px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .services-section > .rule {
    margin-bottom: 28px;
  }

  .services-section h2 {
    left: auto;
    margin: 0 0 72px;
    position: relative;
    top: auto;
  }

  .service-card {
    aspect-ratio: 297 / 350;
  }

  .industry-panel {
    height: 520px;
  }

  .industry-logistics > img {
    height: 100%;
    left: -150px;
    min-width: 0;
    top: 0;
    transform: scaleX(-1);
    width: 780px;
  }

  .industry-construction > img {
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
  }

  .panel-copy {
    bottom: 44px;
    left: var(--gutter);
    right: var(--gutter);
  }

  .industry-construction .panel-copy {
    bottom: 44px;
    left: var(--gutter);
    right: var(--gutter);
    top: auto;
    width: auto;
  }

  .industry-construction .panel-title {
    font-size: clamp(48px, 13vw, 64px);
    line-height: 1.02;
    width: auto;
  }

  .industry-construction .text-link {
    margin-top: 34px;
    position: relative;
    top: auto;
  }

  .industry-construction .text-link img {
    left: calc(100% + 28px);
  }

  .industry-logistics:hover > img {
    transform: scaleX(-1) scale(1.035);
  }

  .all-industries {
    align-items: start;
    gap: 22px;
    grid-template-columns: 1fr;
    justify-content: start;
  }

  .industries-page-main {
    padding-bottom: 64px;
    padding-top: 150px;
  }

  .industries-page-main h1 {
    font-size: clamp(48px, 13vw, 64px);
    margin-bottom: 44px;
  }

  .services-page-main {
    max-width: 100%;
    min-height: 0;
    overflow: hidden;
    padding: 150px var(--gutter) 72px;
  }

  .services-page-main > h1 {
    font-size: clamp(48px, 13vw, 64px);
    margin-bottom: 44px;
  }

  .services-explore-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 56px;
  }

  .services-explore-heading h2 {
    font-size: 30px;
    white-space: normal;
  }

  .services-explore-heading span {
    width: 100%;
  }

  .service-category {
    margin: 0 0 76px;
  }

  .service-category h2 {
    font-size: 34px;
    line-height: 1.08;
    margin: 0 0 16px;
    white-space: normal;
  }

  .service-category > p {
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 34px;
    white-space: normal;
  }

  .service-page-grid {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .service-page-grid .service-list-card:nth-child(3n) {
    margin-left: 0;
  }

  .service-list-card {
    height: 218px;
    width: 100%;
  }

  .service-list-card-title {
    max-width: calc(100% - 54px);
  }

  .service-list-card-copy {
    width: calc(100% - 28px);
  }

  .industries-explore-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 56px;
  }

  .industries-explore-heading h2 {
    font-size: 30px;
  }

  .industries-explore-heading span {
    width: 100%;
  }

  .industry-cards-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    height: 226px;
  }

  .service-detail-main {
    padding-top: 150px;
  }

  .company-page-main {
    padding-top: 150px;
  }

  .service-detail-hero {
    margin-bottom: 56px;
  }

  .company-hero {
    margin-bottom: 56px;
  }

  .service-detail-hero h1 {
    font-size: clamp(48px, 13vw, 64px);
    margin-bottom: 24px;
  }

  .company-hero h1 {
    font-size: clamp(48px, 13vw, 64px);
    margin-bottom: 24px;
  }

  .service-detail-hero p,
  .service-detail-copy p,
  .company-hero p,
  .company-split-copy p,
  .company-ecosystem p,
  .careers-openings p {
    font-size: 20px;
  }

  .service-detail-capabilities {
    margin-bottom: 72px;
  }

  .service-detail-capabilities h2 {
    font-size: 30px;
    margin-bottom: 32px;
  }

  .service-detail-capabilities .service-page-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-capabilities .service-list-card {
    height: auto;
    min-height: 218px;
  }

  .service-capability-toggle {
    height: 218px;
  }

  .service-capability-detail p {
    width: 100%;
  }

  .service-detail-content {
    gap: 32px;
    grid-template-columns: 1fr;
    margin-bottom: 72px;
    padding-top: 42px;
  }

  .company-split-section,
  .company-ecosystem {
    gap: 32px;
    grid-template-columns: 1fr;
    margin-bottom: 72px;
    padding-top: 42px;
  }

  .service-detail-content h2,
  .supported-industries h2,
  .company-split-section h2,
  .company-list-section h2,
  .company-ecosystem h2,
  .careers-openings h2 {
    font-size: 30px;
  }

  .company-principles,
  .company-list-grid {
    grid-template-columns: 1fr;
  }

  .company-list-section,
  .careers-openings,
  .opportunities-list {
    margin-bottom: 72px;
    padding-top: 42px;
  }

  .opportunities-list h2 {
    font-size: 30px;
  }

  .opportunity-card-summary {
    gap: 20px;
    grid-template-columns: 1fr;
    padding-right: 42px;
  }

  .opportunity-detail {
    width: calc(100% - 28px);
  }

  .contact-layout {
    gap: 56px;
    grid-template-columns: 1fr;
    margin-bottom: 86px;
    padding-top: 42px;
  }

  .contact-detail-group p,
  .contact-support p,
  .contact-closing p {
    font-size: 18px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-industry-grid {
    grid-template-columns: 1fr;
  }

  .contact-support,
  .contact-closing {
    margin-bottom: 72px;
    padding-top: 42px;
  }

  .company-placeholder {
    height: 300px;
    margin-bottom: 72px;
  }

  .supported-industries {
    margin-bottom: 54px;
    padding-top: 42px;
  }

  .supported-industries-grid {
    grid-template-columns: 1fr;
  }

  .supported-industries-grid a {
    font-size: 22px;
    height: 76px;
  }

  .supported-industries-grid a::after {
    top: 31px;
  }

  .industry-detail-hero {
    height: 640px;
  }

  .industry-detail-hero > img {
    height: 760px;
    top: -80px;
    width: 1015px;
  }

  .industry-detail-hero h1 {
    font-size: clamp(48px, 13vw, 64px);
    left: var(--gutter);
    top: 420px;
    width: calc(100vw - (var(--gutter) * 2));
  }

  .industry-detail-page .industry-detail-hero h1 {
    bottom: 70px;
    font-size: clamp(46px, 12.5vw, 58px);
    left: var(--gutter);
    line-height: 1.02;
    top: auto;
    width: calc(100vw - (var(--gutter) * 2));
  }

  .oil-gas-page .industry-detail-hero > img {
    left: 62%;
  }

  .technology-page .industry-detail-hero > img {
    left: 58%;
  }

  .transportation-logistics-page .industry-detail-hero > img {
    height: 640px;
    left: -170px;
    min-width: 0;
    top: 0;
    transform: scaleX(-1);
    width: 820px;
  }

  .industry-intro {
    grid-template-columns: 1fr;
    padding-bottom: 76px;
    padding-top: 76px;
  }

  .manufacturing-page .industry-intro-image img {
    height: 427px;
    left: -78px;
    top: -14px;
    width: 640px;
  }

  .media-hospitality-page .industry-intro-image img {
    height: 500px;
    left: -160px;
    top: 0;
    width: 751px;
  }

  .transportation-logistics-page .industry-intro-image img {
    height: 467px;
    left: -280px;
    top: -50px;
    width: 700px;
  }

  .industry-intro-copy p:last-child {
    font-size: 20px;
  }

  .industry-help-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .industry-help-heading h2 {
    font-size: 30px;
  }

  .industry-help-intro {
    font-size: 20px;
    margin-bottom: 72px;
    margin-top: 52px;
  }

  .industry-help-group ul {
    grid-template-columns: 1fr;
  }

  .industry-resource,
  .industry-faq {
    padding-bottom: 64px;
    padding-top: 62px;
  }

  .industry-resource h2,
  .industry-faq h2 {
    font-size: 30px;
  }

  .industry-resource-intro {
    font-size: 20px;
    margin-bottom: 48px;
  }

  .industry-resource-grid,
  .industry-faq-list {
    grid-template-columns: 1fr;
  }

  .industry-resource-grid h3,
  .industry-faq-list h3 {
    font-size: 23px;
  }

  .industry-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    height: auto;
    margin-bottom: 76px;
    margin-top: 34px;
    padding: 34px;
  }

  .industry-cta > div {
    border-bottom: 1px solid #d9d9d9;
    display: block;
    padding-bottom: 28px;
  }

  .industry-cta::after {
    display: none;
  }

  .industry-cta h2,
  .industry-cta p,
  .industry-cta a {
    left: auto;
    position: static;
    top: auto;
  }

  .industry-cta p {
    font-size: 20px;
    width: auto;
  }

  .industry-cta a {
    justify-self: start;
  }

  .all-industries .button {
    grid-column: 1;
    grid-row: auto;
    width: max-content;
  }

  .careers-section {
    gap: 34px;
  }

  .careers-section .rule {
    margin-bottom: 24px;
  }

  .site-footer {
    display: grid;
    gap: 36px;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 455px;
    padding: 49px var(--gutter) 26px;
  }

  .footer-brand {
    display: block;
  }

  .footer-brand img,
  .footer-brand p,
  .footer-column,
  .footer-column[aria-label="Company links"],
  .footer-column[aria-label="Vertical links"],
  .footer-column[aria-label="Contact links"],
  .footer-bottom p,
  .footer-bottom a {
    left: auto;
    position: static;
    top: auto;
  }

  .footer-brand img {
    height: 27px;
    width: 182px;
  }

  .footer-brand p {
    margin-top: 25px;
  }

  .footer-social {
    display: flex;
    gap: 18px;
  }

  .footer-social a {
    height: 28px;
    left: auto;
    position: static;
    top: auto;
    width: 40px;
  }

  .footer-social .social-youtube {
    width: 52px;
  }

  .footer-column h2 {
    margin-bottom: 18px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom {
    align-items: start;
  }

  .footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-top: 26px;
  }
}
