:root {
  --blue: #032c59;
  --deep-blue: #07335f;
  --footer-blue: #0c1326;
  --green: #029246;
  --soft-blue: #f3f9ff;
  --line: #c3d8ee;
  --text: #111111;
  --muted: #565656;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 29px;
  letter-spacing: 0px;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

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

p {
  text-transform: none;
}

.container {
  width: min(1600px, calc(100% - 80px));
  margin: 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 256px;
  height: 65px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  font-size: 17px;
  line-height: 21px;
  letter-spacing: 0px;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: #05783c;
  border-color: #05783c;
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(2, 146, 70, 0.35);
  outline-offset: 3px;
}

.button--outline {
  background: transparent;
  border-color: var(--white);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue);
}

.button--wide {
  width: 378px;
}

.default-page__hero {
  padding: 72px 0;
  background: #d9d9d9;
}

.default-page__hero h1 {
  margin: 0;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 60px;
  line-height: 75px;
  letter-spacing: 0px;
  font-weight: 600;
  text-transform: capitalize;
}

.default-page__content {
  padding: 90px 0 100px;
  background: var(--white);
}

.default-page__inner {
  max-width: 100%;
}

.default-page__inner h2 {
  margin: 42px 0 16px;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 44px;
  letter-spacing: 0px;
  font-weight: 600;
}

.default-page__inner h2:first-child {
  margin-top: 0;
}

.default-page__inner p,
.default-page__inner li {
  color: var(--text);
  font-size: 17px;
  line-height: 32px;
  font-weight: 400;
}

.default-page__inner p {
  margin: 0 0 18px;
}

.default-page__inner ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.default-page__inner a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--white);
}

.top-strip {
  height: 45px;
  background: var(--soft-blue);
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
  color: var(--blue);
  font-size: 17px;
  line-height: 29px;
  letter-spacing: 0px;
  font-weight: 500;
}

.top-contact {
  display: flex;
  gap: 0;
}

.top-info {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: color 180ms ease;
}

.top-info.top-info--location {
  gap: 6px;
}

.top-contact .top-info + .top-info {
  position: relative;
  margin-left: 18px;
  padding-left: 18px;
}

.top-contact .top-info + .top-info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 17px;
  background: var(--line);
  transform: translateY(-50%);
}

a.top-info:hover,
a.top-info:focus-visible {
  color: var(--green);
}

.top-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  color: var(--green);
}

.top-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.top-strip p {
  margin: 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  height: 110px;
}

.brand {
  flex: 0 0 143px;
}

.brand img {
  width: 143px;
  height: auto;
  mix-blend-mode: multiply;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 55px;
  flex: 1;
  color: var(--text);
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0px;
  font-weight: 500;
  text-transform: capitalize;
  margin-right: 45px;
}

.primary-nav .menu-item {
  position: relative;
  display: flex;
  align-items: center;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 0;
  transition: color 180ms ease;
  font-size: 17px;
  font-weight: 600;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav .active {
  color: var(--green);
}

.primary-nav .mobile-menu-button {
  display: none;
}

.has-submenu {
  margin-bottom: -18px;
  padding-right: 4px;
  padding-bottom: 18px;
}

.has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 22px;
}

.submenu-arrow {
  width: 8px;
  height: 8px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.sub-menu {
  position: absolute;
  top: calc(100% - 18px);
  left: 50%;
  z-index: 30;
  display: grid;
  gap: 4px;
  width: 310px;
  padding: 14px;
  border: 1px solid rgba(3, 44, 89, 0.1);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(3, 44, 89, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}

.has-submenu:hover .sub-menu,
.has-submenu:focus-within .sub-menu,
.has-submenu.is-open .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.sub-menu .menu-item {
  display: block;
}

.sub-menu a {
  display: flex;
  width: 100%;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 21px;
  text-transform: none;
}

.sub-menu a:hover,
.sub-menu a:focus-visible,
.sub-menu .active {
  background: var(--soft-blue);
  color: var(--green);
}

.button--nav {
  flex: 0 0 256px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  margin-left: auto;
}

.button--client-login {
  width: auto;
  min-width: 158px;
  height: 65px;
  gap: 8px;
  padding: 0 24px;
  border-color: var(--green);
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  font-size: 17px;
  line-height: 20px;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(2, 146, 70, 0.18);
}

.button--client-login:hover,
.button--client-login:focus-visible {
  border-color: #05783c;
  background: #05783c;
  color: var(--white);
}

.button--client-login svg {
  display: block;
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
}

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

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

.client-login-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.client-login-modal[hidden] {
  display: none;
}

.client-login-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.client-login-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(640px, 100%);
  min-height: 365px;
  padding: 72px 54px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.client-login-modal__dialog h2 {
  margin: 0;
  color: #0c4893;
  font-family: "Inter", Arial, sans-serif;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0;
  font-weight: 700;
}

.client-login-modal__close {
  position: absolute;
  top: 19px;
  right: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #00a99d;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.client-login-modal__close:hover,
.client-login-modal__close:focus-visible {
  color: var(--green);
}

body.client-login-modal-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  background: var(--blue);
}

.hero__image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 167px;
  padding-bottom: 80px;
  color: var(--white);
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--green);
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 687px;
  margin: 13px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 60px;
  line-height: 76px;
  letter-spacing: 0px;
  font-weight: 600;
  text-transform: capitalize;
}

.hero__lead {
  margin: 30px 0 0;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0px;
  font-weight: 600;
}

.hero__copy {
  max-width: 583px;
  margin: 25px 0 0;
  color: var(--white);
  font-size: 17px;
  line-height: 33px;
  letter-spacing: 0px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 23px;
  margin-top: 37px;
}

.section-blue {
  background: var(--soft-blue);
}

.expertise {
  padding-top: 100px;
  padding-bottom: 100px;
}

.expertise .section-label {
  text-align: center;
  font-weight: 600;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 49px;
}

.service-card {
  min-height: 600px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-card:hover,
.service-card:focus-within {
  background: var(--white);
  border-color: var(--white);
}

.service-card:hover img,
.service-card:focus-within img {
  transform: scale(1.04);
}

.service-card:hover a,
.service-card:focus-within a {
  color: var(--green);
}

.service-card__body {
  padding: 31px 30px 19px;
}

.card-number {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 17px;
  line-height: 21px;
  letter-spacing: 1.7px;
  font-weight: 600;
}

.card-number::after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 1px;
  margin-left: 13px;
  vertical-align: middle;
  background: var(--green);
}

.service-card h2 {
  max-width: 449px;
  min-height: 126px;
  margin: 0;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: 0px;
  font-weight: 600;
  text-transform: capitalize;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: #28338a;
  font-size: 17px;
  line-height: 21px;
  letter-spacing: 0px;
  font-weight: 600;
  text-transform: capitalize;
}

.service-card a svg {
  flex: 0 0 auto;
  width: 16px;
  height: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card img {
    transition: none;
  }

  .service-card:hover,
  .service-card:focus-within {
    transform: none;
  }

  .service-card:hover img,
  .service-card:focus-within img {
    transform: none;
  }
}

.approach {
  padding-top: 100px;
  padding-bottom: 100px;
}

.approach__grid {
  display: grid;
  grid-template-columns: minmax(0, 785px) minmax(0, 689px);
  gap: 80px;
  align-items: flex-start;
}

.approach__grid > img {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  object-fit: cover;
}

.approach__content {
  padding-top: 50px;
}

.approach h2,
.section-heading h2,
.industries h2,
.final-cta h2 {
  margin: 0;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 45px;
  line-height: 50px;
  letter-spacing: 0px;
  font-weight: 600;
  text-transform: capitalize;
}

.approach__content > p {
  margin: 24px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 32px;
  letter-spacing: 0px;
  font-weight: 400;
}

.approach-steps {
  display: grid;
  grid-template-columns: 28% 28% 29%;
  gap: 33px;
  margin-top: 47px;
}

.approach-steps div:nth-child(1)::before {
  content: "";
  display: block;
  height: 3px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--green) 0 30%, #e7e7e7 30% 100%);
}

.approach-steps div:nth-child(2)::before {
  content: "";
  display: block;
  height: 3px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--green) 0 53%, #e7e7e7 45% 100%);
}

.approach-steps div:nth-child(3)::before {
  content: "";
  display: block;
  height: 3px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--green) 0 100%);
}

.approach-steps span {
  display: block;
  color: var(--green);
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.approach-steps strong {
  display: block;
  max-width: 136px;
  margin-top: 11px;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0px;
  font-weight: 600;
  text-transform: capitalize;
}

.why-tcs {
  padding-top: 91px;
  padding-bottom: 100px;
  color: var(--white);
  background: #032C59;
}

.section-heading {
  max-width: 918px;
  margin: 0 auto;
  text-align: center;
}

.section-heading--light h2,
.section-heading--light h3,
.section-heading--light p {
  color: var(--white);
}

.section-heading h3 {
  margin: 27px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 32px;
  letter-spacing: 0px;
  font-weight: 600;
  text-transform: capitalize;
}

.section-heading p {
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 29px;
  letter-spacing: 0px;
  font-weight: 400;
}

.why-grid {
  display: grid;
  grid-template-columns: 355px 414px 460px 371px;
  gap: 0;
  margin-top: 61px;
}

.why-grid article {
  position: relative;
  min-height: 262px;
}

.why-grid article + article {
  padding-left: 70px;
}

.why-grid article + article::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 262px;
  background: rgb(255 255 255 / 14%);
}

.icon-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
}

.icon-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-grid h3 {
  margin: 10px 0 5px;
  color: var(--white);
  font-size: 20px;
  line-height: 42px;
  letter-spacing: 0px;
  font-weight: 600;
  text-transform: capitalize;
}

.why-grid p {
  width: 282px;
  max-width: 100%;
  margin: 8px 0 0;
  color: var(--white);
  font-size: 17px;
  line-height: 29px;
  letter-spacing: 0px;
  font-weight: 400;
}

.why-grid article:nth-child(2) p {
  width: 269px;
}

.why-grid article:nth-child(3) p {
  width: 290px;
}

.why-grid article:nth-child(4) p {
  width: 299px;
}

.center-action {
  margin-top: 49px;
  text-align: center;
}

.industries {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #f4f9ff;
}

.industries__grid {
  display: grid;
  grid-template-columns: 563px 1fr;
  gap: 30px;
  align-items: end;
  justify-content: start;
  justify-items: end;
  align-content: stretch;
}

.industries h2 {
  max-width: 533px;
  font-size: 45px;
  line-height: 54px;
}

.industries__heading {
  justify-self: start;
  padding: 0 0 8px 0;
}

.industries__content {
  position: relative;
  justify-self: end;
  max-width: 700px;
  padding-left: 24px;
}

.industries__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 2px;
  height: 137px;
  background: var(--green);
}

.industries p {
  max-width: 538px;
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0px;
  font-weight: 400;
}

.industry-list {
  display: grid;
  grid-column: 1 / -1;
  justify-self: stretch;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 33px;
  row-gap: 27px;
  width: 100%;
  margin-top: 26px;
}

.industry-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 61px;
  padding: 0 0 17px;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-size: 20px;
  line-height: 42px;
  letter-spacing: 0px;
  font-weight: 600;
  text-transform: capitalize;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.industry-list span::before {
  content: none;
}

.industry-list img {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.industry-list__more {
  padding-left: 0;
}

.industry-list span:hover {
  color: var(--green);
  border-color: var(--green);
}

.final-cta {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

.final-cta h2 {
  max-width: 949px;
  margin: 0 auto;
}

.final-cta p {
  max-width: 877px;
  margin: 25px auto 35px;
  color: var(--muted);
  font-size: 17px;
  line-height: 33px;
  letter-spacing: 0px;
  font-weight: 400;
}

.home .final-cta p {
  max-width: 100%;
  margin: 29px auto 35px;
}

.site-footer {
  padding-top: 90px;
  padding-bottom: 28px;
  color: var(--white);
  background: var(--footer-blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 396px 210px 322px 300px;
  justify-content: start;
  gap: 129px;
}

.footer-brand img {
  width: 181px;
  height: auto;
  background: transparent;
}

.site-footer .footer-logo-link {
  display: block;
  margin: 0px 0 0 0;
}

.site-footer .footer-logo-link img {
  margin: 0 0 18px 0;
}

.site-footer .footer-brand p {
  max-width: 384px;
  margin: 4px 0 0;
  font-size: 17px;
  line-height: 33px;
  letter-spacing: 0px;
  font-weight: 400;
}

.footer-brand strong {
  display: block;
  margin-top: 11px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 33px;
  letter-spacing: 0px;
  font-weight: 700;
  text-transform: capitalize;
}

.site-footer h2 {
  margin: -17px 0 25px;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 45px;
  letter-spacing: 0.4px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 20px;
  color: var(--white);
  font-size: 17px;
  line-height: 31px;
  letter-spacing: 0px;
  font-weight: 400;
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--green);
}

.site-footer a.active,
.site-footer .is-active > a {
  color: var(--green);
}

.footer-contact .top-info {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.footer-contact .top-icon {
  flex-basis: 24px;
  width: 24px;
  height: 24px;
  margin-top: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 59px;
  padding-top: 25px;
  border-top: 1px solid #0E335B;
}

.footer-bottom p {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}

.site-footer .footer-bottom a,
.site-footer p {
  display: inline;
}

.site-footer .footer-policy-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.site-footer .footer-policy-links a,
.site-footer .footer-policy-links span {
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}

.service-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--blue);
}

.service-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(91deg, rgba(3, 44, 89, 1) 14%, rgba(3, 44, 89, 0.82) 22%, rgba(3, 44, 89, 0) 66%);
}

.service-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 178px;
  padding-bottom: 120px;
  color: var(--white);
}

.service-hero h1 {
  max-width: 566px;
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 60px;
  line-height: 75px;
  letter-spacing: 0px;
  font-weight: 600;
  text-transform: capitalize;
}

.page-id-122 .service-hero h1 {
  max-width: 594px;
}

.service-intro,
.service-section {
  padding-top: 100px;
  padding-bottom: 96px;
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 782px) 1fr;
  gap: 62px;
  align-items: flex-start;
}

section.service-intro.section-blue .service-copy {
  padding-top: 41px;
}

section.service-intro.section-blue .service-copy p {
  margin: 23px 0 50px;
}

section.service-intro.section-blue .service-split h2 {
  width: 90%;
}

.service-split--reverse {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.service-split--reverse h2 {
  width: 80%;
}

.container.service-split.service-split--reverse h2 {
  width: 79%;
  padding-top: 11px;
}

.container.service-split.service-split--reverse .service-copy p {
  margin: 13px 0 0 0px;
}

.service-split--reverse .service-copy {
  order: 1;
}

.service-split--reverse .service-media {
  order: 2;
}

.service-media {
  overflow: hidden;
  border-radius: 15px;
}

.service-media img {
  width: 100%;
  object-fit: cover;
  height: 430px;
}

.service-section--wotc .service-media img {
  height: 600px;
}

.service-section--wotc .container.service-split.service-split--reverse .service-copy {
  max-width: 785px;
}

.service-section--wotc .container.service-split.service-split--reverse .service-copy h2 {
  width: 76.5%;
  padding-top: 11px;
  line-height: 59px;
}

.service-section--wotc .container.service-split.service-split--reverse .service-copy > p:first-of-type {
  max-width: 785px;
  margin: 25px 0 0;
}

.service-section--wotc .container.service-split.service-split--reverse .service-copy .small-label {
  margin: 23px 0 0;
  line-height: 17px;
}

.service-section--wotc .container.service-split.service-split--reverse .service-copy > p:nth-of-type(3) {
  max-width: 785px;
  margin: 35px 0 0;
}

.service-section--wotc .container.service-split.service-split--reverse .service-copy > p:nth-of-type(4) {
  max-width: 785px;
  margin: 4px 0 0;
}

.service-section--state-incentives .service-media img {
  height: 509px;
}

section.service-section.service-section--state-incentives.section-blue .service-copy {
  padding-top: 32px;
}

.service-section--state-incentives .container.service-split {
  gap: 46px;
}

.service-section--credit-monitoring .service-media img {
  height: 540px;
}

.service-section--credit-monitoring .service-copy {
  padding-top: 23px;
}

.service-section--hiring-process .service-media img {
  height: 500px;
}

.service-section--hiring-process .service-copy {
  padding-top: 25px;
}

.service-section--hiring-process .container.service-split {
  gap: 54px;
}

section.service-intro.manufacturing-section--intro.section-blue .container.service-split {
  gap: 54px;
}

.service-copy.manufacturing-intro-copy h2 {
  width: 96% !important;
}

.service-copy.manufacturing-intro-copy {
  padding-top: 21px !important;
}

.service-copy.manufacturing-intro-copy p {
  margin: 20px 0 20px !important;
}

.manufacturing-section--intro .service-media img {
  height: 500px;
}

.manufacturing-section--specialized .service-media img {
  height: 496px;
}

.manufacturing-section--specialized .service-split--reverse {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 31px;
}

.manufacturing-section--specialized h2 {
  padding-top: 31px !important;
}

.manufacturing-section--savings .service-media img {
  height: 391px;
}

.manufacturing-section--savings .service-split {
  gap: 55px;
}

.manufacturing-section--savings .service-copy {
  padding-top: 28px;
}

.manufacturing-section--savings .service-copy h2 {
  width: 80%;
}

.manufacturing-section--beyond .service-media img {
  height: 373px;
}

.manufacturing-section--beyond.section-blue .service-split--reverse {
  gap: 28px;
}

.manufacturing-section--beyond.section-blue .service-copy {
  padding-top: 18px;
}

.workers-hero h1 {
  max-width: 941px;
}

.workers-section--intro .service-media img {
  height: 457px;
}

.workers-section--intro .service-copy {
  padding-top: 29px !important;
}

.workers-section--intro .container.service-split {
  gap: 54px;
}

.workers-section--intro .service-copy p {
  margin: 16px 0 9px !important;
}

.workers-section--premium .service-media img {
  height: 620px;
}

.workers-section--premium .container.service-split {
  gap: 33px;
}

section.service-section.workers-section--premium .service-copy {
  padding-top: 20px;
}

.workers-section--code-rule .service-media img {
  height: 645px;
}

.workers-section--code-rule .service-copy {
  padding-top: 35px;
}

.workers-section--code-rule .container.service-split {
  gap: 58px;
}

.workers-section--expertise .service-media img {
  height: 391px;
}

.workers-section--expertise .service-copy {
  padding-top: 24px;
}

section.service-section.workers-section--expertise {
  border-bottom: 1px solid #c3d8ee;
}

.partnership-hero {
  padding-top: 72px;
  padding-bottom: 72px;
  background: #d9d9d9;
  min-height: 220px;
}

.partnership-hero h1,
.partnership-heading h2 {
  margin: 0;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  text-transform: capitalize;
}

.partnership-hero h1 {
  font-size: 60px;
  line-height: 75px;
  text-align: left;
}

.partnership-overview {
  padding-top: 87px;
  padding-bottom: 89px;
}

.partnership-heading {
  max-width: 1169px;
  margin: 0 auto -6px;
  text-align: center;
}

.partnership-heading h2 {
  font-size: 45px;
  line-height: 53px;
}

.partnership-heading p {
  max-width: 1056px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 33px;
}

.partnership-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 52px;
}

.partnership-card-grid article {
  min-height: 363px;
  padding: 20px 30px 18px 30px;
  border: 1px solid #c3d8ee;
  border-radius: 15px;
  background: var(--soft-blue);
}

.partnership-card-grid h3 {
  margin: 0;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
}

.partnership-card-grid strong {
  display: block;
  margin-top: 22px;
  color: var(--green);
  font-size: 17px;
  line-height: 33px;
  font-weight: 600;
}

.partnership-card-grid p {
  margin: 19px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 29px;
}

.partnership-inquiry {
  padding-top: 93px;
  padding-bottom: 100px;
  background: var(--white);
}

.partnership-inquiry p {
  max-width: 636px;
  margin: 13px auto 0;
}

.partnership-form h3 {
  margin: 0 0 40px;
  color: var(--text);
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  text-align: center;
}

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

.form-grid label {
  display: grid;
  gap: 14px;
  color: var(--blue);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #b5b5b5;
  border-radius: 5px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  line-height: 24px;
}

.form-grid input,
.form-grid select {
  height: 52px;
  padding: 0 20px;
}

.form-grid textarea {
  min-height: 166px;
  resize: vertical;
  padding: 20px;
}

.form-grid__full {
  grid-column: 1 / -1;
}

.partnership-form__submit {
  width: 100%;
  height: 65px;
  margin-top: 30px;
  border: 0;
  cursor: pointer;
}

.contact-hero {
  padding-top: 67px;
  padding-bottom: 68px;
  background: #d9d9d9;
  min-height: 220px;
}

.contact-hero h1 {
  margin: 0;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 60px;
  line-height: 75px;
  font-weight: 600;
  text-transform: capitalize;
}

.contact-section {
  padding-top: 94px;
  padding-bottom: 100px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 679px) minmax(0, 861px);
  gap: 60px;
  align-items: start;
}

.contact-copy {
  padding-top: 5px;
}

.contact-copy h2 {
  max-width: 520px;
  margin: 0 0 22px;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 45px;
  line-height: 53px;
  font-weight: 600;
  text-transform: capitalize;
}

.contact-copy p {
  margin: 0 0 9px;
  color: var(--text);
  font-size: 17px;
  line-height: 32px;
  font-weight: 400;
}

.contact-copy em {
  font-style: italic;
}

.contact-copy strong {
  font-weight: 600;
}

.contact-form {
  padding: 16px 50px 33px 50px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 20px 70px rgba(3, 44, 89, 0.11);
}

.contact-form__submit {
  width: 100%;
  height: 65px;
  margin-top: 30px;
  border: 0;
  cursor: pointer;
}

.gravity-form-shell .gform_wrapper.gravity-theme {
  font-family: "Inter", Arial, sans-serif;
}

.gravity-form-shell .gform_wrapper.gravity-theme .gform_page_footer {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.gravity-form-shell .gform_wrapper.gravity-theme .gform_next_button,
.gravity-form-shell .gform_wrapper.gravity-theme .gform_previous_button,
.gravity-form-shell .gform_wrapper.gravity-theme .gform_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 56px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
}

.gravity-form-shell .gform_wrapper.gravity-theme .gform_previous_button {
  background: transparent;
  color: var(--green);
}

.gravity-form-shell .gform_wrapper.gravity-theme input,
.gravity-form-shell .gform_wrapper.gravity-theme select,
.gravity-form-shell .gform_wrapper.gravity-theme textarea {
  min-height: 58px;
  border: 1px solid #c3d8ee;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
}

.gravity-form-shell .gform_wrapper.gravity-theme textarea {
  min-height: 140px;
}

.contact-form .gform_wrapper.gravity-theme {
  margin: 0;
}

.contact-form .gform_wrapper.gravity-theme .gform_fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 26px;
}

.contact-form .gform_wrapper.gravity-theme .gfield {
  grid-column: span 1;
}

.contact-form .gform_wrapper.gravity-theme .gfield--width-full {
  grid-column: 1 / -1;
}

.contact-form .gform_wrapper.gravity-theme .gfield_label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.contact-form .gform_wrapper.gravity-theme .gfield_required {
  display: none;
}

.contact-form .gform_wrapper.gravity-theme input,
.contact-form .gform_wrapper.gravity-theme select,
.contact-form .gform_wrapper.gravity-theme textarea {
  width: 100%;
  border: 1px solid #0000004a !important;
  border-radius: 7px !important;
  box-shadow: none !important;
  color: #565656;
  font-family: inherit;
  font-size: 14px;
  line-height: 24px;
}

.contact-form .gform_wrapper.gravity-theme input,
.contact-form .gform_wrapper.gravity-theme select {
  min-height: 52px !important;
  padding: 15px 20px !important;
}

.contact-form .gform_wrapper.gravity-theme input::placeholder,
.contact-form .gform_wrapper.gravity-theme textarea::placeholder {
  color: #565656;
  font-size: 14px;
}

.contact-form .gform_wrapper.gravity-theme textarea {
  height: 166px !important;
  min-height: 166px !important;
  padding: 15px 20px !important;
  resize: vertical;
}

.contact-form .gform_wrapper.gravity-theme .gform_footer {
  margin-top: 31px;
  padding: 0;
}

.contact-form .gform_wrapper.gravity-theme .gform_button {
  width: 100%;
  min-height: 65px;
  border-color: var(--green) !important;
  border-radius: 10px;
  background: var(--green);
  font-size: 17px;
  line-height: 21px;
  font-weight: 500;
}

.contact-form .gform_wrapper.gravity-theme .gform_button:hover,
.contact-form .gform_wrapper.gravity-theme .gform_button:focus-visible {
  border-color: var(--blue) !important;
  background: var(--blue);
}

#gform_1 .gform_fields {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 29px !important;
  row-gap: 0px !important;
}

#gform_1 .gfield {
  min-width: 0;
}

#gform_1 .gfield--width-half {
  grid-column: span 1 !important;
  width: 100% !important;
}

#gform_1 .gfield--width-full {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

#gform_1 label.gfield_label.gform-field-label {
  margin: 0 0 0px !important;
  color: var(--blue) !important;
  font-size: 16px !important;
  line-height: 23px !important;
  font-weight: 600 !important;
}

#gform_1 .gfield_required {
  display: none !important;
}

.contact-form .gform_wrapper.gravity-theme .gform_validation_errors,
#gform_1_validation_container {
  margin: 0 0 10px !important;
  padding: 18px 20px !important;
  border: 1px solid #ffb3a8 !important;
  border-radius: 3px !important;
  background: #fffafa !important;
  box-shadow: none !important;
}

.contact-form .gform_wrapper.gravity-theme .gform_validation_errors h2,
#gform_1_validation_container h2 {
  margin: 0 !important;
  color: #df1b12 !important;
  font-family: "Inter", sans-serif !important;
  font-size: 15px !important;
  line-height: 24px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.contact-form .gform_wrapper.gravity-theme .gform_validation_errors .gform-icon,
#gform_1_validation_container .gform-icon {
  color: #ff8a7a !important;
}

.contact-form .gform_wrapper.gravity-theme .gfield_error,
#gform_1 .gfield_error {
  margin-bottom: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.contact-form .gform_wrapper.gravity-theme .validation_message,
#gform_1 .validation_message,
#gform_1 .gfield_validation_message {
  margin: 8px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #df1b12 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 400 !important;
}

body .gform_legacy_markup_wrapper .top_label div.ginput_container {
  margin-top: 6px;
}

.gform_legacy_markup_wrapper li.gfield.gfield_error,
.gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  border-top: none;
  border-bottom: none;
  box-sizing: border-box;
}

#gform_1 input,
#gform_1 select,
#gform_1 textarea {
  width: 100% !important;
  max-width: 100% !important;
  border: 1px solid #0000004a !important;
  border-radius: 7px !important;
  box-shadow: none !important;
  color: #565656 !important;
  font-size: 14px !important;
  line-height: 24px !important;
}

#gform_1 input,
#gform_1 select {
  min-height: 48px !important;
  padding: 14px 20px !important;
}

#gform_1 input::placeholder,
#gform_1 textarea::placeholder {
  color: #565656 !important;
  font-size: 14px !important;
}

#gform_1 textarea {
  height: 166px !important;
  min-height: 166px !important;
  padding: 15px 20px !important;
}

#gform_1 .gform_footer {
  margin-top: 23px !important;
  padding: 0 !important;
}

input#gform_submit_button_1 {
  width: 100% !important;
  min-height: 65px !important;
  border-color: var(--green) !important;
  border-radius: 10px !important;
  background: var(--green) !important;
  color: var(--white) !important;
  font-size: 17px !important;
  line-height: 21px !important;
  font-weight: 500 !important;
}

button#gform_submit_button_1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 65px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  font-size: 17px;
  line-height: 21px;
  letter-spacing: 0px;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

input#gform_submit_button_1:hover,
input#gform_submit_button_1:focus-visible,
button#gform_submit_button_1:hover,
button#gform_submit_button_1:focus-visible {
  border-color: var(--blue) !important;
  background: var(--blue) !important;
}

@media only screen and (min-width: 641px) {
  .contact-form .gform_legacy_markup_wrapper ul.gform_fields li.gfield,
  .contact-form #gform_1 ul.gform_fields li.gfield {
    padding-right: 0;
  }
}

.partnership-form {
  max-width: 1327px;
  margin: 50px auto 0;
  padding: 21px 50px 50px 50px;
  box-shadow: 0 20px 70px rgba(3, 44, 89, 0.11);
  border-radius: 20px;
  background: var(--white);
}

.partnership-form .gform_wrapper.gravity-theme {
  margin: 0;
}

.partnership-form .gform_wrapper.gravity-theme .gform_description {
  display: block;
  margin: 0 0 40px;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: #000000;
  text-align: center;
}

p.gform_description {
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: #000000;
  text-align: center;
  width: 100% !important;
  margin: 14px auto 25px;
  max-width: 100% !important;
}

.partnership-form .gform-theme--foundation .gform_fields,
.partnership-form .gform_wrapper.gravity-theme .gform_fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: var(--gf-form-gap-x);
  column-gap: 30px;
  row-gap: 25px;
}

.partnership-form .gform_wrapper.gravity-theme .gfield {
  grid-column: span 1;
}

.partnership-form .gform_wrapper.gravity-theme .gfield--width-full {
  grid-column: 1 / -1;
}

.partnership-form .gform_wrapper.gravity-theme .gfield_label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.partnership-form .gform_wrapper.gravity-theme input,
.partnership-form .gform_wrapper.gravity-theme select,
.partnership-form .gform_wrapper.gravity-theme textarea {
  min-height: 52px;
  border: 1px solid #b5b5b5;
  border-radius: 5px;
  color: var(--text);
  font-size: 14px;
  line-height: 24px;
  background: var(--white);
}

.partnership-form .gform_wrapper.gravity-theme input,
.partnership-form .gform_wrapper.gravity-theme select {
  height: 52px;
  padding: 0 16px;
}

#gform_2 input {
  border: 1px solid #0000004a !important;
  border-radius: 7px !important;
  padding: 15px 20px !important;
  min-height: 52px !important;
  box-shadow: none !important;
}

#gform_2 input::placeholder {
  color: #565656;
  font-size: 14px;
}

#gform_2 select {
  border: 1px solid #0000004a !important;
  border-radius: 7px !important;
  padding: 6px 21px !important;
  min-height: 52px !important;
  box-shadow: none !important;
  color: #565656 !important;
}

#gform_2 .gform-theme--foundation .gfield textarea {
  inline-size: 100%;
  border: 1px solid #0000004a !important;
  border-radius: 7px !important;
  padding: 15px 15px !important;
  min-height: 52px !important;
  box-shadow: none !important;
  color: #565656 !important;
}

textarea#input_2_7 {
  border: 1px solid #0000004a !important;
  border-radius: 7px !important;
  padding: 15px 20px !important;
  height: 166px !important;
  box-shadow: none !important;
  color: #565656 !important;
}

#gform_2 .gform_fields {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

#gform_2 .gfield--width-half {
  grid-column: span 1 !important;
  width: 100% !important;
}

#gform_2 .gfield--width-full {
  grid-column: 1 / -1 !important;
}

#gform_2 .ginput_container {
  width: 100%;
}

input#gform_submit_button_2,
button#gform_submit_button_2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 65px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  font-size: 17px;
  line-height: 21px;
  letter-spacing: 0px;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

#gform_2 .gform_footer.top_label {
  margin-top: 32px;
}

input#gform_submit_button_2:hover,
button#gform_submit_button_2:hover {
  background-color: #032C59;
  border-color: #032C59 !important;
}

#gform_2 label.gfield_label.gform-field-label {
  color: #032C59;
  font-size: 16px;
  font-weight: 600;
}

#gform_2 span.gfield_required.gfield_required_text {
  display: none;
}

.partnership-form .gform_wrapper.gravity-theme textarea {
  min-height: 166px;
  padding: 14px 16px;
  resize: vertical;
}

.partnership-form .gform_wrapper.gravity-theme .gform_footer {
  margin: 30px 0 0;
  padding: 0;
}

.partnership-form .gform_wrapper.gravity-theme .gform_button {
  width: 100%;
  height: 65px;
  min-height: 65px;
  margin: 0;
  border-radius: 10px;
  font-size: 17px;
  line-height: 21px;
}

.service-copy h2,
.rely-section h2,
.service-cta h2 {
  margin: 0;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 45px;
  line-height: 55px;
  letter-spacing: 0px;
  font-weight: 600;
  text-transform: capitalize;
}

.service-copy p {
  margin: 15px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 32px;
  letter-spacing: 0px;
  font-weight: 400;
}

.service-subtitle {
  color: var(--blue) !important;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px !important;
  line-height: 35px !important;
  font-weight: 600 !important;
}

.service-subtitle p {
  color: var(--blue) !important;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px !important;
  line-height: 35px !important;
  font-weight: 600 !important;
  text-transform: capitalize;
  margin: 17px 0 22px 0 !important;
}

.service-copy strong {
  font-weight: 600;
}

.small-label {
  font-size: 17px;
  line-height: 25px;
}

.check-list {
  display: grid;
  gap: 20px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 29px;
}

.hiring-page .service-split--reverse .check-list--columns {
  grid-template-columns: repeat(3, max-content);
  gap: 22px 34px;
  align-items: center;
}

.hiring-page .service-split--reverse .check-list--columns li:nth-child(5) {
  grid-column: 2 / span 2;
}

.hiring-page .service-split--reverse .check-list--columns li:nth-child(6) {
  grid-column: 1 / -1;
}

.service-section--wotc .check-list--columns {
  display: flex;
  gap: 23px 34px;
  margin-top: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.hiring-page .service-section--wotc .check-list--columns {
  gap: 23px 34px;
  margin-top: 30px;
  align-items: center;
}

.service-section--wotc .check-list--columns li {
  padding-left: 29px;
  font-size: 17px;
  line-height: 25px;
  font-weight: 600;
  white-space: nowrap;
  width: 40%;
}

.service-section--wotc .check-list--columns li::before {
  top: 2px;
  width: 20px;
  height: 20px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 600;
  text-transform: capitalize;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0C4.486 0 0 4.486 0 10C0 15.514 4.486 20 10 20C15.514 20 20 15.514 20 10C20 4.486 15.514 0 10 0ZM10 18.1818C5.48848 18.1818 1.81818 14.5115 1.81818 10C1.81818 5.48855 5.48848 1.81818 10 1.81818C14.5115 1.81818 18.1818 5.48855 18.1818 10C18.1818 14.5115 14.5115 18.1818 10 18.1818Z' fill='%23029246'/%3E%3Cpath d='M13.5364 6.67784L8.68642 11.5088L6.46359 9.29464C6.12882 8.96117 5.58594 8.96112 5.25112 9.29458C4.91629 9.6281 4.91629 10.1688 5.25112 10.5023L8.08016 13.3204C8.24093 13.4806 8.45899 13.5706 8.68636 13.5706H8.68642C8.91379 13.5706 9.13184 13.4806 9.29263 13.3205L14.7489 7.88564C15.0837 7.55212 15.0837 7.01142 14.7489 6.6779C14.4141 6.34438 13.8712 6.34433 13.5364 6.67784Z' fill='%23029246'/%3E%3C/svg%3E") center / contain no-repeat;
}

.rely-section {
  padding-top: 89px;
  padding-bottom: 94px;
  background: #032C59;
}

.rely-section h2 {
  color: var(--white);
  text-align: center;
}

.rely-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 38px;
}

.rely-grid article {
  min-height: 305px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: #ffffff2b;
}

.rely-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: var(--green);
}

.rely-grid span img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.rely-grid h3 {
  margin: 17px 0 0;
  color: var(--white);
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
  font-weight: 600;
}

.rely-grid p {
  margin: 20px 0 0;
  color: var(--white);
  font-size: 16px;
  line-height: 29px;
  letter-spacing: 0px;
  font-weight: 400;
}

.process-section {
  padding-top: 100px;
  padding-bottom: 133px;
  color: var(--white);
  background: var(--blue);
  text-align: center;
}

.process-section h2,
.manufacturing-types h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 45px;
  line-height: 54px;
  letter-spacing: 0px;
  font-weight: 600;
  text-transform: capitalize;
}

.process-section > .container > p {
  max-width: 918px;
  margin: 12px auto 0;
  font-size: 17px;
  line-height: 29px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-top: 41px;
  text-align: left;
}

.process-grid article {
  min-height: 303px;
  padding: 25px 25px 16px 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.process-grid article:hover,
.process-grid article:focus-within {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.16);
}

.process-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-card__top span {
  color: rgba(255, 255, 255, 0.22);
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}

.process-card__top img {
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: var(--green);
}

.process-grid h3 {
  margin: 14px 0 0;
  color: var(--white);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  min-height: 59px;
}

.process-grid p {
  margin: 14px 0 0;
  color: var(--white);
  font-size: 17px;
  line-height: 27px;
}

.manufacturing-types {
  padding-top: 105px;
  padding-bottom: 89px;
  text-align: center;
  border-bottom: 1px solid #c3d8ee;
}

.manufacturing-types h2 {
  color: var(--blue);
}

.manufacturing-types__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 37px;
  row-gap: 11px;
  margin-top: 32px;
  text-align: left;
}

.manufacturing-types__grid span {
  display: flex;
  align-items: center;
  min-height: 80px;
  gap: 14px;
  padding-top: 17px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
  align-content: center;
}

.manufacturing-types__grid img {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 8px;
  object-fit: contain;
}

.manufacturing-types > .container > p {
  margin: 39px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 32px;
}

.service-cta {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

.service-cta h2 {
  max-width: 100%;
  margin: 0 auto;
  font-size: 45px;
  line-height: 59px;
}

.service-cta p {
  max-width: 1230px;
  margin: 25px auto 7px;
  color: var(--muted);
  font-size: 17px;
  line-height: 33px;
  letter-spacing: 0px;
  font-weight: 400;
}

.service-cta p + p {
  margin-top: 0;
}

.service-cta .button {
  width: 378px;
  height: 65px;
  margin-top: 12px;
  font-size: 17px;
  line-height: 21px;
}

.page-id-122 .service-cta .button {
  margin-top: 23px;
}

.page-id-123 .service-cta .button {
  width: 253px;
  margin-top: 20px;
}

.thank-you-template {
  min-height: 100vh;
  background: #f4f9ff;
}

.thank-you-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 20px;
}

.thank-you-panel {
  width: min(720px, 100%);
  padding: 56px 40px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 20px 70px rgba(3, 44, 89, 0.11);
  text-align: center;
}

.thank-you-panel__mark {
  display: inline-grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.thank-you-panel h1 {
  margin: 0;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  line-height: 62px;
  font-weight: 600;
}

.thank-you-panel p {
  max-width: 520px;
  margin: 18px auto 30px;
  color: var(--text);
  font-size: 17px;
  line-height: 29px;
}

@media (max-width: 1366px) {
  .footer-grid {
    gap: 99px;
  }
}

@media (max-width: 1280px) {
  .container {
    width: min(1600px, calc(100% - 100px));
  }

  .primary-nav {
    gap: 24px;
    margin-right: 24px;
  }

  .button--nav {
    flex-basis: 220px;
    width: 220px;
  }

  .button--client-login {
    min-width: 145px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 15px;
  }

  .approach__grid,
  .industries__grid {
    gap: 60px;
  }

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

  .why-grid article + article {
    padding-left: 30px;
  }

  .why-grid article + article::after {
    height: 100%;
  }

  .footer-grid {
    grid-template-columns: 1.15fr 0.75fr 1fr 0.9fr;
    gap: 44px;
  }

  .process-grid {
    gap: 22px;
  }

  .service-split {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    gap: 27px;
  }
}

@media (max-width: 1200px) {
  .service-section--wotc .check-list--columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1080px) {
  .footer-grid {
    gap: 27px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .container {
    width: calc(100% - 40px);
    gap: 20px;
  }

  .default-page__hero {
    padding: 52px 0;
  }

  .default-page__hero h1 {
    font-size: 44px;
    line-height: 56px;
  }

  .default-page__content {
    padding: 60px 0 70px;
  }

  .default-page__inner h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .hero {
    min-height: 600px;
  }

  .top-strip {
    height: auto;
  }

  .top-strip__inner {
    height: auto;
    min-height: 45px;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    line-height: 22px;
  }

  .nav-bar {
    flex-wrap: wrap;
    height: auto;
    gap: 22px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .primary-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 15px;
    line-height: 20px;
  }

  .button--nav {
    margin-left: auto;
  }

  .top-strip {
    display: none;
  }

  .nav-bar {
    display: grid;
    grid-template-columns: 120px 48px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand {
    flex-basis: 120px;
  }

  .brand img {
    width: 120px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    position: relative;
    z-index: 35;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid #d8e8f7;
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
  }

  .menu-toggle__line {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
    transition: background 180ms ease, transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle__line:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-toggle__line:nth-child(3) {
    transform: translateY(7px);
  }

  .menu-open .menu-toggle {
    position: fixed;
    top: 24px;
    right: 28px;
    border-color: rgba(255, 255, 255, 0.25);
    background: transparent;
  }

  .menu-open .menu-toggle__line {
    background: var(--white);
  }

  .menu-open .menu-toggle__line:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle__line:nth-child(3) {
    transform: rotate(-45deg);
  }

  .button--nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .primary-nav {
    display: grid;
    grid-template-columns: 1fr;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    align-content: start;
    gap: 0;
    width: min(425px, 88vw);
    max-height: none;
    overflow-y: auto;
    padding: 92px 40px 40px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(145deg, rgba(3, 44, 89, 0.98), rgba(7, 51, 95, 0.96));
    box-shadow: -22px 0 70px rgba(3, 44, 89, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav .menu-item {
    display: grid;
    width: 100%;
  }

  .primary-nav .has-submenu {
    margin-bottom: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .primary-nav .has-submenu::after {
    display: none;
  }

  .primary-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(2, 146, 70, 0.12), transparent 45%),
      radial-gradient(circle at 100% 12%, rgba(255, 255, 255, 0.12), transparent 32%);
    pointer-events: none;
  }

  .menu-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-menu-contact {
    display: grid;
    order: 2;
    gap: 16px;
    margin-top: 28px;
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
  }

  .mobile-menu-contact a,
  .mobile-menu-contact p,
  .mobile-menu-contact .top-info {
    display: flex;
    align-items: center;
    margin: 0;
    color: var(--white);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    font-weight: 500;
  }

  .mobile-menu-contact .top-icon {
    flex-basis: 18px;
    width: 18px;
    height: 18px;
  }

  .primary-nav > .menu-item > a {
    display: flex;
    align-items: center;
    order: 1;
    position: relative;
    min-height: auto;
    padding: 0 0 24px;
    border-radius: 0;
    color: var(--white);
    background: transparent;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
  }

  .primary-nav > .menu-item > .active {
    color: var(--white);
    background: transparent;
  }

  .primary-nav > .menu-item > .active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 14px;
    width: 34px;
    height: 1px;
    background: var(--green);
  }

  .primary-nav .submenu-arrow {
    margin-left: auto;
  }

  .primary-nav .sub-menu {
    order: 2;
    position: static;
    display: grid;
    gap: 6px;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 220ms ease, margin 220ms ease, opacity 180ms ease;
  }

  .primary-nav .has-submenu.is-open .sub-menu {
    max-height: 360px;
    margin: -8px 0 20px;
    padding-top: 12px;
    padding-bottom: 12px;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav .has-submenu.is-open .submenu-arrow {
    margin-top: 3px;
    transform: rotate(225deg);
  }

  .primary-nav .sub-menu a {
    padding: 8px 10px;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.86);
    background: transparent;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
  }

  .primary-nav .sub-menu a:hover,
  .primary-nav .sub-menu a:focus-visible,
  .primary-nav .sub-menu .active {
    color: var(--white);
    background: transparent;
  }

  .primary-nav > .mobile-menu-button {
    display: inline-flex;
    justify-content: center;
    order: 3;
    width: 100%;
    height: 56px;
    margin-top: 28px;
    padding: 0 18px;
    color: var(--white);
    background: var(--green);
    font-size: 15px;
    line-height: 20px;
    text-align: center;
  }

  .primary-nav > .mobile-menu-button:not(.button--client-login):hover,
  .primary-nav > .mobile-menu-button:not(.button--client-login):focus-visible {
    border-color: #05783c;
    background: #05783c;
    color: var(--white);
  }

  .primary-nav > .button--client-login.mobile-menu-button {
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
  }

  .primary-nav > .button--client-login.mobile-menu-button:hover,
  .primary-nav > .button--client-login.mobile-menu-button:focus-visible {
    border-color: #05783c;
    background: #05783c;
    color: var(--white);
  }

  .contact-grid {
    gap: 30px;
  }

  .service-hero {
    min-height: 420px;
  }

  .hero__content {
    padding-top: 110px;
    padding-bottom: 70px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: 44px;
    line-height: 56px;
  }

  .approach h2,
  .section-heading h2,
  .industries h2,
  .final-cta h2,
  .service-copy h2,
  .rely-section h2,
  .service-cta h2,
  .process-section h2,
  .manufacturing-types h2,
  .partnership-heading h2 {
    font-size: 38px;
    line-height: 47px;
  }

  .hero h1,
  .service-hero h1,
  .partnership-hero h1,
  .contact-hero h1 {
    font-size: 44px;
    line-height: 56px;
  }

  .contact-copy h2 {
    font-size: 38px;
    line-height: 47px;
  }

  .service-card h2 {
    font-size: 38px;
    line-height: 47px;
  }

  .expertise,
  .approach,
  .why-tcs,
  .industries,
  .final-cta,
  .service-intro,
  .service-section,
  .rely-section,
  .service-cta,
  .process-section,
  .manufacturing-types,
  .partnership-overview,
  .partnership-inquiry {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .service-grid,
  .approach__grid,
  .industries__grid,
  .service-split,
  .service-split--reverse {
    grid-template-columns: 1fr;
  }

  section.service-intro.manufacturing-section--intro.section-blue .container.service-split {
    gap: 30px;
  }

  .service-copy.manufacturing-intro-copy {
    padding-top: 0 !important;
  }

  .manufacturing-section--specialized .service-split--reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .manufacturing-section--specialized h2 {
    padding-top: 0 !important;
    width: 100% !important;
  }

  .manufacturing-section--savings .service-split {
    gap: 30px;
  }

  .manufacturing-section--savings .service-copy {
    padding-top: 0;
  }

  .manufacturing-section--beyond.section-blue .service-copy {
    padding-top: 0;
  }

  .workers-section--intro .service-copy {
    padding-top: 0 !important;
  }

  .workers-section--intro .container.service-split {
    gap: 30px;
  }

  section.service-section.workers-section--premium .service-copy {
    padding-top: 0;
  }

  .workers-section--code-rule .container.service-split {
    gap: 30px;
  }

  .workers-section--code-rule .service-copy {
    padding-top: 0;
  }

  .workers-section--expertise .service-copy {
    padding-top: 0;
  }

  .service-split .service-media,
  .service-split--reverse .service-media {
    order: -1;
  }

  .service-split .service-copy,
  .service-split--reverse .service-copy {
    order: 0;
  }

  .service-media img,
  .service-section--wotc .service-media img,
  .service-section--state-incentives .service-media img,
  .service-section--credit-monitoring .service-media img,
  .service-section--hiring-process .service-media img,
  .manufacturing-section--intro .service-media img,
  .manufacturing-section--specialized .service-media img,
  .manufacturing-section--savings .service-media img,
  .manufacturing-section--beyond .service-media img,
  .workers-section--intro .service-media img,
  .workers-section--premium .service-media img,
  .workers-section--code-rule .service-media img,
  .workers-section--expertise .service-media img {
    height: 380px;
  }

  .industries__heading {
    padding-top: 0;
  }

  .industries h2 {
    max-width: 100%;
  }

  .industries p {
    max-width: 100%;
  }

  .industries__content {
    max-width: none;
    justify-self: flex-start;
  }

  .industries__content::before {
    height: 107px;
  }

  .industry-list {
    width: auto;
    margin-left: 0;
  }

  .service-card {
    min-height: 0;
  }

  .service-card h2 {
    min-height: 0;
  }

  .approach__grid > img {
    height: 420px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rely-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .manufacturing-types__grid,
  .partnership-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid h3 {
    margin-top: 20px;
    font-size: 18px;
    line-height: 27px;
    min-height: auto;
  }

  .partnership-hero {
    padding-top: 52px;
    padding-bottom: 52px;
    min-height: 100%;
  }

  .partnership-form {
    padding: 34px;
  }

  .manufacturing-types__grid img {
    margin-top: 0;
  }

  .why-grid article + article {
    padding-left: 0;
  }

  .why-grid article + article::after {
    display: none;
  }

  .why-grid p {
    width: 100%;
  }

  .why-grid article:nth-child(2) p {
    width: 100%;
  }

  .why-grid article:nth-child(3) p {
    width: 100%;
  }

  .why-grid article:nth-child(4) p {
    width: 100%;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 990px) {
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 27px;
  }

  .default-page__hero {
    padding: 84px 0 34px;
  }

  .default-page__hero h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .default-page__content {
    padding: 40px 0 30px;
  }

  .default-page__inner h2 {
    margin: 30px 0 12px;
    font-size: 24px;
    line-height: 32px;
  }

  .default-page__inner p,
  .default-page__inner li {
    font-size: 15px;
    line-height: 28px;
  }

  .service-subtitle p {
    font-size: 20px !important;
    line-height: 30px !important;
  }

  .hero {
    min-height: 100%;
  }

  .approach-steps {
    grid-template-columns: 1fr;
  }

  .approach__content {
    padding-top: 10px;
  }

  .why-grid article {
    position: relative;
    min-height: 100%;
  }

  .container {
    width: calc(100% - 40px);
  }

  .top-strip {
    display: none;
  }

  .nav-bar {
    display: grid;
    grid-template-columns: 120px 48px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand {
    flex-basis: 120px;
  }

  .brand img {
    width: 120px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    position: relative;
    z-index: 35;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid #d8e8f7;
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
  }

  .menu-toggle__line {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
    transition: background 180ms ease, transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle__line:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-toggle__line:nth-child(3) {
    transform: translateY(7px);
  }

  .menu-open .menu-toggle__line:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle {
    position: fixed;
    top: 24px;
    right: 28px;
    border-color: rgba(255, 255, 255, 0.25);
    background: transparent;
  }

  .menu-open .menu-toggle__line {
    background: var(--white);
  }

  .menu-open .menu-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle__line:nth-child(3) {
    transform: rotate(-45deg);
  }

  .button,
  .button--nav {
    width: 100%;
    height: 50px;
    font-size: 15px;
    line-height: 20px;
  }

  .button--nav {
    display: none;
  }

  .primary-nav {
    display: grid;
    grid-template-columns: 1fr;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    align-content: start;
    gap: 0;
    width: min(425px, 88vw);
    max-height: none;
    overflow-y: auto;
    padding: 92px 40px 40px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(145deg, rgba(3, 44, 89, 0.98), rgba(7, 51, 95, 0.96));
    box-shadow: -22px 0 70px rgba(3, 44, 89, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav .menu-item {
    display: grid;
    width: 100%;
  }

  .primary-nav .has-submenu {
    margin-bottom: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .primary-nav .has-submenu::after {
    display: none;
  }

  .primary-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(2, 146, 70, 0.12), transparent 45%),
      radial-gradient(circle at 100% 12%, rgba(255, 255, 255, 0.12), transparent 32%);
    pointer-events: none;
  }

  .menu-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-menu-contact {
    display: grid;
    order: 2;
    gap: 16px;
    margin-top: 28px;
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
  }

  .mobile-menu-contact a,
  .mobile-menu-contact p,
  .mobile-menu-contact .top-info {
    display: flex;
    align-items: center;
    margin: 0;
    color: var(--white);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    font-weight: 500;
  }

  .mobile-menu-contact .top-icon {
    flex-basis: 18px;
    width: 18px;
    height: 18px;
  }

  .primary-nav > .menu-item > a {
    display: flex;
    align-items: center;
    order: 1;
    position: relative;
    min-height: auto;
    padding: 0 0 24px;
    border-radius: 0;
    color: var(--white);
    background: transparent;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
  }

  .primary-nav > .menu-item > .active {
    color: var(--white);
    background: transparent;
  }

  .primary-nav > .menu-item > .active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 14px;
    width: 34px;
    height: 1px;
    background: var(--green);
  }

  .primary-nav .submenu-arrow {
    margin-left: auto;
  }

  .primary-nav .sub-menu {
    order: 2;
    position: static;
    display: grid;
    gap: 6px;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 220ms ease, margin 220ms ease, opacity 180ms ease;
  }

  .primary-nav .has-submenu.is-open .sub-menu {
    max-height: 360px;
    margin: -8px 0 20px;
    padding-top: 12px;
    padding-bottom: 12px;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav .has-submenu.is-open .submenu-arrow {
    margin-top: 3px;
    transform: rotate(225deg);
  }

  .primary-nav .sub-menu a {
    padding: 8px 10px;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.86);
    background: transparent;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
  }

  .primary-nav .sub-menu a:hover,
  .primary-nav .sub-menu a:focus-visible,
  .primary-nav .sub-menu .active {
    color: var(--white);
    background: transparent;
  }

  .primary-nav > .mobile-menu-button {
    display: inline-flex;
    justify-content: center;
    order: 3;
    width: 100%;
    height: 56px;
    margin-top: 28px;
    padding: 0 18px;
    color: var(--white);
    background: var(--green);
    font-size: 15px;
    line-height: 20px;
    text-align: center;
  }

  .hero__image {
    background-image: linear-gradient(90deg, rgba(3, 44, 89, 1) 0%, rgba(3, 44, 89, 0.92) 26%, rgba(3, 44, 89, 0.15) 95%, rgba(3, 44, 89, 0) 100%), url("https://dev.wordpress-developer.us/tcs/wp-content/uploads/2026/09/raw-image-7.png") !important;
    background-position: 60% center;
  }

  .hero__content {
    padding-top: 52px;
    padding-bottom: 44px;
  }

  .eyebrow,
  .section-label {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.2px;
  }

  .hero h1,
  .service-hero h1,
  .partnership-hero h1,
  .contact-hero h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .hero h1 {
    margin-top: 16px;
  }

  .approach h2,
  .section-heading h2,
  .industries h2,
  .final-cta h2,
  .service-copy h2,
  .rely-section h2,
  .service-cta h2,
  .process-section h2,
  .manufacturing-types h2,
  .partnership-heading h2 {
    font-size: 28px;
    line-height: 36px !important;
  }

  .hero__lead {
    margin-top: 14px;
    font-size: 18px;
    line-height: 24px;
  }

  .hero__copy {
    margin-top: 12px;
  }

  .hero__copy,
  .approach__content > p,
  .section-heading p,
  .why-grid p,
  .industries p,
  .final-cta p,
  .service-copy p,
  .service-cta p,
  .partnership-heading p,
  .partnership-card-grid p,
  .contact-copy p,
  .site-footer a,
  .site-footer p {
    font-size: 16px;
    line-height: 28px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .expertise,
  .approach,
  .why-tcs,
  .industries,
  .final-cta,
  .service-intro,
  .service-section,
  .rely-section,
  .service-cta,
  .process-section,
  .manufacturing-types,
  .partnership-overview,
  .partnership-inquiry,
  .contact-section {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .partnership-hero,
  .contact-hero {
    padding-top: 84px;
    padding-bottom: 34px;
  }

  .contact-hero h1 {
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-copy {
    padding-top: 0;
    text-align: center;
  }

  .contact-copy h2 {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-size: 28px;
    line-height: 36px;
  }

  .service-grid {
    gap: 22px;
    margin-top: 30px;
  }

  .service-card img {
    height: 250px;
  }

  .service-card__body {
    padding: 28px 22px 26px;
  }

  .service-card h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .approach__grid > img {
    height: 280px;
  }

  .service-hero {
    min-height: 360px;
  }

  .service-hero__shade {
    background: linear-gradient(91deg, rgba(3, 44, 89, 1) 14%, rgba(3, 44, 89, 0.82) 32%, rgba(3, 44, 89, 0) 118%);
  }

  .service-hero__content {
    padding-top: 135px;
    padding-bottom: 90px;
  }

  .service-media img,
  .service-section--wotc .service-media img,
  .service-section--state-incentives .service-media img,
  .service-section--credit-monitoring .service-media img,
  .service-section--hiring-process .service-media img,
  .manufacturing-section--intro .service-media img,
  .manufacturing-section--specialized .service-media img,
  .manufacturing-section--savings .service-media img,
  .manufacturing-section--beyond .service-media img,
  .workers-section--intro .service-media img,
  .workers-section--premium .service-media img,
  .workers-section--code-rule .service-media img,
  .workers-section--expertise .service-media img {
    height: 270px;
  }

  .check-list--columns,
  .rely-grid,
  .process-grid,
  .manufacturing-types__grid,
  .partnership-card-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hiring-page .service-split--reverse .check-list--columns {
    grid-template-columns: 1fr;
  }

  .hiring-page .service-split--reverse .check-list--columns li:nth-child(5),
  .hiring-page .service-split--reverse .check-list--columns li:nth-child(6) {
    grid-column: auto;
  }

  .service-section--wotc .check-list--columns li {
    white-space: normal;
  }

  .service-section--wotc .check-list--columns {
    grid-template-columns: 1fr;
  }

  .manufacturing-section--savings .service-copy h2 {
    width: 100%;
  }

  .container.service-split.service-split--reverse h2 {
    width: 100%;
    padding-top: 11px;
  }

  .rely-grid article {
    min-height: 0;
  }

  .process-grid {
    gap: 16px;
    margin-top: 30px;
  }

  .process-grid article {
    min-height: 0;
    padding: 20px;
    border-radius: 12px;
  }

  .process-card__top {
    padding-bottom: 12px;
  }

  .process-card__top span {
    font-size: 30px;
    line-height: 34px;
  }

  .process-card__top img {
    width: 44px;
    height: 44px;
    padding: 10px;
  }

  .process-grid h3 {
    margin-top: 20px;
    font-size: 18px;
    line-height: 27px;
  }

  .process-grid p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 25px;
  }

  .manufacturing-types__grid {
    gap: 0;
    margin-top: 30px;
  }

  .manufacturing-types__grid span {
    min-height: 0;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 16px;
    line-height: 24px;
  }

  .manufacturing-types__grid img {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
  }

  .manufacturing-types > .container > p {
    margin-top: 30px;
  }

  .partnership-card-grid {
    gap: 16px;
    margin-top: 30px;
  }

  .partnership-card-grid article {
    min-height: 0;
    padding: 22px;
    border-radius: 12px;
  }

  .partnership-card-grid h3 {
    font-size: 22px;
    line-height: 31px;
  }

  .partnership-card-grid strong,
  .partnership-card-grid p {
    margin-top: 18px;
  }

  .partnership-form {
    margin-top: 30px;
    padding: 22px;
  }

  .partnership-form .gform_wrapper.gravity-theme .gform_description {
    margin-bottom: 26px;
    font-size: 22px;
    line-height: 31px;
    white-space: normal;
  }

  .partnership-form .gform_wrapper.gravity-theme .gform_fields {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .partnership-form .gform_wrapper.gravity-theme .gfield {
    grid-column: 1 / -1;
  }

  .partnership-form .gform_wrapper.gravity-theme .gform_footer {
    margin-top: 22px;
  }

  .partnership-form .gform_wrapper.gravity-theme .gform_button {
    height: 58px;
    min-height: 58px;
    font-size: 15px;
  }

  .contact-form {
    padding: 22px;
  }

  .partnership-form h3 {
    margin-bottom: 26px;
    font-size: 22px;
    line-height: 31px;
  }

  .form-grid {
    gap: 18px;
  }

  .partnership-form__submit {
    height: 58px;
    margin-top: 22px;
    font-size: 15px;
  }

  .contact-form__submit {
    height: 58px;
    margin-top: 22px;
    font-size: 15px;
  }

  .service-cta .button {
    height: 58px;
    margin-top: 18px;
    font-size: 15px;
  }

  .button--wide {
    width: 100%;
  }

  .why-grid,
  .industry-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  section.service-intro.section-blue .service-copy p {
    margin: 23px 0 20px;
  }

  section.service-intro.section-blue .service-copy {
    padding-top: 0;
  }

  section.service-section.service-section--state-incentives.section-blue .service-copy {
    padding-top: 0;
  }

  .service-section--credit-monitoring .service-copy {
    padding-top: 0;
  }

  .service-section--hiring-process .service-copy {
    padding-top: 0;
  }

  .service-section--wotc .container.service-split.service-split--reverse .service-copy h2 {
    width: 100%;
    padding-top: 11px;
    line-height: normal;
  }

  .approach-steps {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .approach-steps strong {
    max-width: 100%;
  }

  .service-section--wotc .check-list--columns li {
    flex: 0 1 auto;
    width: 100%;
  }

  .section-heading h3 {
    font-size: 21px;
    line-height: 30px;
  }

  .why-grid {
    margin-top: 45px;
  }

  .center-action {
    margin-top: 45px;
  }

  .industries__grid {
    gap: 30px;
  }

  .industries__content::before {
    height: 100%;
  }

  .industry-list {
    gap: 0;
  }

  .footer-grid {
    gap: 34px;
  }

  .site-footer {
    padding-top: 42px;
    padding-bottom: 24px;
  }

  .footer-grid {
    gap: 0;
  }

  .footer-grid > div {
    padding-top: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .footer-grid > div:first-child {
    padding-top: 0;
  }

  .footer-brand img {
    width: 150px;
  }

  .footer-brand p {
    margin-top: 22px;
    font-size: 15px;
    line-height: 27px;
  }

  .footer-brand strong {
    margin-top: 16px;
    font-size: 18px;
    line-height: 28px;
  }

  .site-footer h2 {
    margin-bottom: 14px;
    font-size: 19px;
    line-height: 28px;
    letter-spacing: 1.2px;
  }

  .site-footer a,
  .site-footer p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    text-align: center;
  }

  .site-footer .footer-policy-links {
    justify-content: center;
    width: 100%;
  }

  .footer-bottom p {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 1024px) {
  body.menu-open {
    overflow: hidden;
  }

  .primary-nav {
    top: 0;
    width: min(380px, 86vw);
    padding: 104px 28px 34px;
    background: rgba(3, 44, 89, 0.98);
    box-shadow: -20px 0 60px rgba(3, 44, 89, 0.28);
  }

  .admin-bar .primary-nav {
    top: 32px;
    right: 0 !important;
    margin-right: 0;
  }

  .menu-open .menu-toggle {
    top: 24px;
    right: 28px;
  }

  .admin-bar.menu-open .menu-toggle {
    top: 56px;
  }

  .primary-nav > .menu-item > a {
    padding: 0 0 20px;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
  }

  .primary-nav > .menu-item > .active::after {
    bottom: 10px;
  }

  .primary-nav .sub-menu {
    position: static;
    display: grid;
    gap: 6px;
    left: auto;
    width: 100%;
    max-width: 100%;
    padding: 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    transform: none;
  }

  .primary-nav .sub-menu {
    margin: 0;
  }

  .primary-nav .has-submenu.is-open .sub-menu {
    max-height: 360px;
    margin: -8px 0 20px;
    padding-top: 12px;
    padding-bottom: 12px;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav .sub-menu .menu-item {
    min-width: 0;
  }

  .primary-nav .sub-menu a {
    min-width: 0;
    padding: 8px 10px;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.86);
    background: transparent;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
  }

  .primary-nav .sub-menu a:hover,
  .primary-nav .sub-menu a:focus-visible,
  .primary-nav .sub-menu .active {
    color: var(--white);
    background: transparent;
  }

  .mobile-menu-contact {
    gap: 13px;
    margin-top: 24px;
    padding-top: 24px;
  }

  .mobile-menu-contact a,
  .mobile-menu-contact p,
  .mobile-menu-contact .top-info {
    font-size: 14px;
    line-height: 22px;
  }

  .primary-nav > .mobile-menu-button {
    height: 52px;
    margin-top: 24px;
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 767px) {
  .primary-nav {
    left: 0;
    width: 100vw;
    padding: 104px 28px 34px;
    box-shadow: none;
  }

  .admin-bar .primary-nav {
    top: 46px;
  }

  .admin-bar.menu-open .menu-toggle {
    top: 70px;
  }
}

@media (max-width: 1024px) {
  .primary-nav {
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .primary-nav *,
  .primary-nav *::before,
  .primary-nav *::after {
    box-sizing: border-box;
  }

  .primary-nav .menu-item,
  .primary-nav .has-submenu {
    min-width: 0;
    overflow: visible;
  }

  .primary-nav .sub-menu,
  .primary-nav .has-submenu.is-open .sub-menu {
    position: static !important;
    left: auto !important;
    display: grid;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    padding: 0 0 0 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none !important;
  }

  .primary-nav .sub-menu {
    max-height: 0 !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    will-change: max-height, opacity, padding, margin;
    transition: max-height 280ms ease, opacity 220ms ease, padding 280ms ease, margin 280ms ease;
  }

  .primary-nav .has-submenu.is-open .sub-menu {
    max-height: 420px !important;
    margin: -4px 0 18px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav .sub-menu a {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 7px 0;
    color: rgba(255, 255, 255, 0.86);
    background: transparent;
    white-space: normal;
    overflow-wrap: break-word;
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
  }

  .primary-nav .sub-menu a:hover,
  .primary-nav .sub-menu a:focus-visible,
  .primary-nav .sub-menu .active {
    color: var(--white);
    background: transparent;
  }
}

@media (max-width: 767px) {
  .partnership-form {
    width: 100%;
    margin-top: 28px;
    padding: 26px 16px 24px;
    border-radius: 14px;
  }

  p.gform_description,
  .partnership-form .gform_wrapper.gravity-theme .gform_description {
    margin: 0 auto 24px !important;
    font-size: 24px;
    line-height: 32px;
  }

  .partnership-form .gform-theme--foundation .gform_fields,
  .partnership-form .gform_wrapper.gravity-theme .gform_fields,
  #gform_2 .gform_fields {
    grid-template-columns: 1fr !important;
    column-gap: 0;
    row-gap: 18px;
  }

  .partnership-form .gform_wrapper.gravity-theme .gfield,
  .partnership-form .gform_wrapper.gravity-theme .gfield--width-half,
  .partnership-form .gform_wrapper.gravity-theme .gfield--width-full,
  #gform_2 .gfield--width-half,
  #gform_2 .gfield--width-full {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-width: 0;
  }

  #gform_2 label.gfield_label.gform-field-label {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 20px;
  }

  #gform_2 input,
  #gform_2 select,
  textarea#input_2_7 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 14px;
  }

  textarea#input_2_7 {
    height: 150px !important;
  }

  #gform_2 .gform_footer.top_label {
    margin-top: 20px;
  }

  input#gform_submit_button_2 {
    min-height: 58px !important;
    font-size: 15px;
    white-space: normal;
  }

  .thank-you-panel h1 {
    font-size: 32px;
    line-height: 42px;
  }
}

@media (max-width: 1024px) {
  .contact-form {
    padding: 34px;
  }

  .contact-form .gform_wrapper.gravity-theme .gform_fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 22px;
  }

  .contact-form .gform_wrapper.gravity-theme .gfield_label {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .contact-form {
    padding: 26px 16px 24px;
    border-radius: 14px;
  }

  .contact-form .gform_wrapper.gravity-theme .gform_fields {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 18px;
  }

  #gform_1 .gform_fields {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
    row-gap: 0 !important;
  }

  .contact-form .gform_wrapper.gravity-theme .gfield,
  .contact-form .gform_wrapper.gravity-theme .gfield--width-half,
  .contact-form .gform_wrapper.gravity-theme .gfield--width-full {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-width: 0;
  }

  #gform_1 .gfield,
  #gform_1 .gfield--width-half,
  #gform_1 .gfield--width-full {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-width: 0;
  }

  .contact-form .gform_wrapper.gravity-theme .gfield_label {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 20px;
  }

  #gform_1 label.gfield_label.gform-field-label {
    margin-bottom: 8px !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .contact-form .gform_wrapper.gravity-theme input,
  .contact-form .gform_wrapper.gravity-theme select,
  .contact-form .gform_wrapper.gravity-theme textarea {
    max-width: 100%;
    font-size: 14px;
  }

  .contact-form .gform_wrapper.gravity-theme textarea {
    height: 150px !important;
    min-height: 150px !important;
  }

  #gform_1 textarea {
    height: 150px !important;
    min-height: 150px !important;
  }

  .contact-form .gform_wrapper.gravity-theme .gform_footer {
    margin-top: 20px;
  }

  #gform_1 .gform_footer {
    margin-top: 20px !important;
  }

  .gform_legacy_markup_wrapper {
    margin-bottom: 0;
    margin-top: 0;
    max-width: 100%;
  }

  .contact-form .gform_wrapper.gravity-theme .gform_button {
    min-height: 58px;
    font-size: 15px;
    white-space: normal;
  }

  input#gform_submit_button_1 {
    min-height: 58px !important;
    font-size: 15px !important;
    white-space: normal;
  }

  button#gform_submit_button_1 {
    min-height: 58px;
    font-size: 15px;
    white-space: normal;
  }

  .approach-steps {
    grid-template-columns: 1fr;
  }

  .service-cta .button {
    height: 58px;
    margin-top: 18px;
    font-size: 15px;
    padding: 15px 16px !important;
    width: auto;
  }

  .service-hero {
    min-height: 250px;
  }

  .service-hero__content {
    padding-top: 74px;
    padding-bottom: 50px;
  }

  .client-login-modal {
    padding: 18px;
  }

  .client-login-modal__dialog {
    min-height: 260px;
    padding: 62px 24px;
    border-radius: 12px;
  }

  .client-login-modal__dialog h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
