:root {
  --ftkr-navy-950: #061a35;
  --ftkr-navy-900: #0a2344;
  --ftkr-navy-800: #13365f;
  --ftkr-blue-700: #0754a6;
  --ftkr-blue-600: #0b64c0;
  --ftkr-blue-100: #dceafb;
  --ftkr-slate-700: #3c4e62;
  --ftkr-slate-600: #526479;
  --ftkr-slate-300: #cbd5df;
  --ftkr-slate-200: #dfe6ed;
  --ftkr-slate-100: #edf2f6;
  --ftkr-slate-050: #f6f8fa;
  --ftkr-white: #ffffff;
  --ftkr-max-width: 1320px;
  --ftkr-header-height: 98px;
  --ftkr-shadow: 0 18px 48px rgb(7 32 63 / 9%);
  --ftkr-font-sans: "Manrope", "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ftkr-navy-950);
  background: var(--ftkr-white);
  font-family: var(--ftkr-font-sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--ftkr-blue-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--ftkr-navy-950);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--ftkr-white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ftkr-blue-700);
}

.ftkr-skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--ftkr-white);
  background: var(--ftkr-navy-950);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 120ms ease;
}

.ftkr-skip-link:focus {
  color: var(--ftkr-white);
  transform: translateY(0);
}

.page {
  min-height: 100vh;
}

.root,
.cmp-container,
.cmp-experiencefragment,
.xf-content-height,
.ftkr-main {
  width: 100%;
}

.aem-Grid {
  display: block;
  width: 100%;
}

.aem-Grid::before,
.aem-Grid::after {
  display: table;
  content: "";
}

.aem-Grid::after {
  clear: both;
}

.aem-GridColumn {
  float: left;
  clear: none;
  min-height: 1px;
}

.aem-GridColumn--default--1 { width: 8.333333%; }
.aem-GridColumn--default--2 { width: 16.666667%; }
.aem-GridColumn--default--3 { width: 25%; }
.aem-GridColumn--default--4 { width: 33.333333%; }
.aem-GridColumn--default--5 { width: 41.666667%; }
.aem-GridColumn--default--6 { width: 50%; }
.aem-GridColumn--default--7 { width: 58.333333%; }
.aem-GridColumn--default--8 { width: 66.666667%; }
.aem-GridColumn--default--9 { width: 75%; }
.aem-GridColumn--default--10 { width: 83.333333%; }
.aem-GridColumn--default--11 { width: 91.666667%; }
.aem-GridColumn--default--12 { width: 100%; }

.aem-GridColumn--offset--default--0 { margin-left: 0; }
.aem-GridColumn--offset--default--1 { margin-left: 8.333333%; }
.aem-GridColumn--offset--default--2 { margin-left: 16.666667%; }
.aem-GridColumn--offset--default--3 { margin-left: 25%; }
.aem-GridColumn--offset--default--4 { margin-left: 33.333333%; }
.aem-GridColumn--offset--default--5 { margin-left: 41.666667%; }
.aem-GridColumn--offset--default--6 { margin-left: 50%; }

.ftkr-shell {
  width: min(calc(100% - 3rem), var(--ftkr-max-width));
  margin-inline: auto;
}

.cmp-header {
  position: relative;
  z-index: 100;
  height: var(--ftkr-header-height);
  border-bottom: 1px solid var(--ftkr-slate-200);
  background: rgb(255 255 255 / 97%);
}

.cmp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.cmp-header__logo {
  flex: 0 1 360px;
}

.cmp-header__logo-link {
  display: block;
}

.cmp-header__logo img {
  width: 360px;
  height: auto;
}

.cmp-navigation__group {
  display: flex;
  align-items: stretch;
  gap: clamp(1.25rem, 3vw, 3.3rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.cmp-navigation__item-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  color: var(--ftkr-navy-950);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
}

.cmp-navigation__item-link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--ftkr-blue-600);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.cmp-navigation__item-link:hover,
.cmp-navigation__item-link[aria-current="page"] {
  color: var(--ftkr-blue-700);
}

.cmp-navigation__item-link:hover::after,
.cmp-navigation__item-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.cmp-header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--ftkr-slate-300);
  border-radius: 0;
  color: var(--ftkr-navy-950);
  background: var(--ftkr-white);
  cursor: pointer;
}

.cmp-header__menu-icon,
.cmp-header__menu-icon::before,
.cmp-header__menu-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 150ms ease, opacity 150ms ease;
}

.cmp-header__menu-icon {
  position: relative;
}

.cmp-header__menu-icon::before {
  position: absolute;
  top: -7px;
}

.cmp-header__menu-icon::after {
  position: absolute;
  top: 7px;
}

.cmp-header__menu-toggle[aria-expanded="true"] .cmp-header__menu-icon {
  background: transparent;
}

.cmp-header__menu-toggle[aria-expanded="true"] .cmp-header__menu-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.cmp-header__menu-toggle[aria-expanded="true"] .cmp-header__menu-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

.cmp-teaser--hero {
  min-height: calc(100vh - var(--ftkr-header-height) - 104px);
  border-bottom: 1px solid var(--ftkr-slate-200);
  background: var(--ftkr-white);
}

.cmp-teaser--hero .cmp-teaser__content {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  min-height: calc(100vh - var(--ftkr-header-height) - 104px);
}

.cmp-teaser--hero .cmp-teaser__copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(2.5rem, 6vw, 7rem) clamp(4.5rem, 8vw, 8rem) max(1.5rem, calc((100vw - var(--ftkr-max-width)) / 2));
  background: var(--ftkr-white);
}

.cmp-teaser--hero .cmp-teaser__copy::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -150px;
  bottom: 0;
  width: 180px;
  background: linear-gradient(90deg, var(--ftkr-white) 15%, rgb(255 255 255 / 0%));
  content: "";
}

.cmp-teaser--hero .cmp-teaser__copy-inner {
  max-width: 590px;
}

.cmp-teaser--hero .cmp-teaser__eyebrow,
.ftkr-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 1.7rem;
  color: var(--ftkr-blue-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cmp-teaser--hero .cmp-teaser__eyebrow::before,
.ftkr-eyebrow::before {
  width: 44px;
  height: 2px;
  background: currentColor;
  content: "";
}

.cmp-teaser--hero .cmp-teaser__title {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.6rem, 4.6vw, 5.2rem);
  font-weight: 430;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.cmp-teaser--hero .cmp-teaser__description {
  max-width: 50ch;
  margin: 2rem 0 2.2rem;
  color: var(--ftkr-slate-700);
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
  line-height: 1.75;
}

.cmp-teaser--hero .cmp-teaser__image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ftkr-slate-100);
}

.cmp-teaser--hero .cmp-image,
.cmp-teaser--hero .cmp-image__image {
  width: 100%;
  height: 100%;
}

.cmp-teaser--hero .cmp-image__image {
  object-fit: cover;
  object-position: 52% center;
  filter: grayscale(100%) brightness(1.12);
  opacity: 0.55;
}

.cmp-button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 1.1rem;
  padding: 0.1rem 0 0.42rem;
  border: 0;
  border-bottom: 2px solid var(--ftkr-blue-600);
  color: var(--ftkr-blue-700);
  background: transparent;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.cmp-button:hover {
  border-color: var(--ftkr-navy-950);
  color: var(--ftkr-navy-950);
}

.cmp-button__icon {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 150ms ease;
}

.cmp-button:hover .cmp-button__icon {
  transform: translateX(5px);
}

.ftkr-section {
  padding-block: clamp(4.75rem, 8vw, 8rem);
}

.ftkr-section--tight {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.ftkr-section--muted {
  background: var(--ftkr-slate-050);
}

.ftkr-section--navy {
  color: var(--ftkr-white);
  background: var(--ftkr-navy-950);
}

.ftkr-section__heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(300px, 1.25fr);
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.cmp-title__text {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.45rem);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.cmp-text,
.cmp-text p {
  color: var(--ftkr-slate-700);
}

.cmp-text p {
  max-width: 68ch;
  margin-block: 0 1.25rem;
}

.cmp-text p:last-child {
  margin-bottom: 0;
}

.ftkr-section--navy .cmp-text,
.ftkr-section--navy .cmp-text p {
  color: #d5dfeb;
}

.ftkr-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ftkr-slate-300);
  border-left: 1px solid var(--ftkr-slate-300);
}

.ftkr-card {
  min-height: 270px;
  padding: clamp(2rem, 3vw, 3rem);
  border-right: 1px solid var(--ftkr-slate-300);
  border-bottom: 1px solid var(--ftkr-slate-300);
  background: var(--ftkr-white);
}

.ftkr-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
}

.ftkr-card p {
  margin: 0;
  color: var(--ftkr-slate-700);
  font-size: 0.96rem;
}

.ftkr-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
  gap: 0;
}

.ftkr-split__image {
  min-height: 570px;
}

.ftkr-split__image .cmp-image {
  width: 100%;
  height: 100%;
}

.ftkr-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ftkr-split__content {
  display: flex;
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem);
  background: var(--ftkr-slate-050);
}

.ftkr-split__content-inner {
  max-width: 560px;
}

.ftkr-split__content .cmp-title__text {
  margin-bottom: 1.7rem;
}

.ftkr-split__content .cmp-button {
  margin-top: 1rem;
}

.ftkr-program-band {
  position: relative;
  overflow: hidden;
}

.ftkr-program-band::after {
  position: absolute;
  top: -30%;
  right: -5%;
  width: min(700px, 50vw);
  height: 150%;
  background: url('/content/dam/ftkr/graphics/ftkr-corporate-technical-field-01.png') center / cover no-repeat;
  content: "";
  opacity: 0.09;
  mix-blend-mode: screen;
}

.ftkr-program-band .ftkr-shell {
  position: relative;
  z-index: 1;
}

.ftkr-program-band .cmp-title__text {
  max-width: 16ch;
  margin-bottom: 1.7rem;
}

.ftkr-program-band .cmp-text {
  max-width: 760px;
}

.cmp-footer {
  border-top: 1px solid var(--ftkr-slate-200);
  background: var(--ftkr-white);
}

.cmp-footer__primary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  padding-block: 3.5rem 2.2rem;
}

.cmp-footer__brand {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cmp-footer__descriptor {
  margin: 0;
  color: var(--ftkr-slate-600);
  font-size: 0.9rem;
}

.cmp-footer__navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cmp-footer__navigation a {
  color: var(--ftkr-navy-950);
  font-size: 0.86rem;
  text-decoration: none;
}

.cmp-footer__navigation a:hover {
  color: var(--ftkr-blue-700);
  text-decoration: underline;
}

.cmp-footer__legal {
  padding-block: 1.25rem 2.2rem;
  border-top: 1px solid var(--ftkr-slate-200);
  color: var(--ftkr-slate-600);
  font-size: 0.82rem;
}

.cmp-footer__legal p {
  margin: 0;
}

.cmp-breadcrumb {
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--ftkr-slate-200);
  background: var(--ftkr-white);
}

.cmp-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-block: 0;
  padding: 0;
  list-style: none;
  color: var(--ftkr-slate-600);
  font-size: 0.78rem;
}

.cmp-breadcrumb__item + .cmp-breadcrumb__item::before {
  margin-right: 0.65rem;
  color: #8795a5;
  content: "/";
}

.cmp-breadcrumb__item-link {
  color: var(--ftkr-slate-700);
  text-decoration: none;
}

.cmp-breadcrumb__item-link:hover {
  text-decoration: underline;
}

.ftkr-page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 8.5rem);
  color: var(--ftkr-white);
  background: var(--ftkr-navy-950);
}

.ftkr-page-hero--image {
  min-height: 510px;
  display: flex;
  align-items: flex-end;
}

.ftkr-page-hero--image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgb(5 25 51 / 94%) 0%, rgb(5 25 51 / 77%) 43%, rgb(5 25 51 / 18%) 100%);
  content: "";
}

.ftkr-page-hero__media,
.ftkr-page-hero__media .cmp-image,
.ftkr-page-hero__media .cmp-image__image {
  width: 100%;
  height: 100%;
}

.ftkr-page-hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.ftkr-page-hero__media .cmp-image__image {
  object-fit: cover;
  object-position: center;
}

.ftkr-page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.ftkr-page-hero__kicker {
  margin: 0 0 1.5rem;
  color: #9ec8f6;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ftkr-page-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 430;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

/* Balance Manrope's lighter T cap where the large FT letterforms meet. */
.cmp-teaser--hero .cmp-teaser__title .ftkr-heading-optical-t,
.ftkr-page-hero h1 .ftkr-heading-optical-t {
  font-weight: 460;
}

.ftkr-page-hero p {
  max-width: 62ch;
  margin: 1.7rem 0 0;
  color: #d5dfeb;
  font-size: clamp(1.02rem, 1.4vw, 1.23rem);
}

.ftkr-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(300px, 1.3fr);
  gap: clamp(2rem, 8vw, 8rem);
}

.ftkr-intro .cmp-text {
  font-size: 1.08rem;
}

.ftkr-capability-list {
  border-top: 1px solid var(--ftkr-slate-300);
}

.ftkr-capability {
  display: grid;
  grid-template-columns: 16px minmax(240px, 0.75fr) minmax(300px, 1.25fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  padding-block: clamp(2.4rem, 4vw, 4rem);
  border-bottom: 1px solid var(--ftkr-slate-300);
}

.ftkr-capability__index {
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0.55rem;
  background: var(--ftkr-blue-700);
  transform: rotate(45deg);
}

.ftkr-capability h2,
.ftkr-capability h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 560;
  line-height: 1.25;
}

.ftkr-capability p {
  margin: 0;
  color: var(--ftkr-slate-700);
}

.ftkr-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--ftkr-slate-300);
  border: 1px solid var(--ftkr-slate-300);
}

.ftkr-value {
  padding: clamp(2.3rem, 5vw, 4.5rem);
  background: var(--ftkr-white);
}

.ftkr-value h2,
.ftkr-value h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 520;
  letter-spacing: -0.025em;
}

.ftkr-value p {
  margin: 0;
  color: var(--ftkr-slate-700);
}

.ftkr-employment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--ftkr-slate-300);
  background: var(--ftkr-slate-300);
}

.ftkr-employment-grid li {
  min-height: 132px;
  display: flex;
  align-items: flex-end;
  padding: 1.6rem;
  background: var(--ftkr-white);
  font-weight: 650;
}

.ftkr-employment-grid li:last-child {
  border-top: 1px solid var(--ftkr-slate-300);
}

.ftkr-notice {
  padding: clamp(2rem, 5vw, 4rem);
  border-left: 4px solid var(--ftkr-blue-600);
  background: var(--ftkr-slate-050);
}

.ftkr-notice h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-weight: 540;
}

.ftkr-notice p {
  max-width: 65ch;
  margin: 0;
  color: var(--ftkr-slate-700);
}

.ftkr-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ftkr-slate-300);
  border-left: 1px solid var(--ftkr-slate-300);
}

.ftkr-contact-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--ftkr-slate-300);
  border-bottom: 1px solid var(--ftkr-slate-300);
}

.ftkr-contact-card h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 600;
}

.ftkr-contact-card p {
  margin: 0 0 1.4rem;
  color: var(--ftkr-slate-700);
}

.ftkr-contact-card a {
  overflow-wrap: anywhere;
  font-weight: 700;
}

.ftkr-prose {
  max-width: 820px;
}

.ftkr-prose h2 {
  margin: 3.25rem 0 1rem;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  font-weight: 560;
  letter-spacing: -0.02em;
}

.ftkr-prose h2:first-child {
  margin-top: 0;
}

.ftkr-prose h3 {
  margin: 2rem 0 0.7rem;
  font-size: 1.15rem;
}

.ftkr-prose p,
.ftkr-prose li {
  color: var(--ftkr-slate-700);
}

.ftkr-prose ul {
  padding-left: 1.35rem;
}

.ftkr-prose address {
  font-style: normal;
}

.ftkr-status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  color: var(--ftkr-slate-700);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ftkr-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ftkr-blue-600);
  content: "";
}

.ftkr-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  padding: clamp(2.7rem, 6vw, 5rem);
  color: var(--ftkr-white);
  background: var(--ftkr-navy-950);
}

.ftkr-callout h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 480;
  letter-spacing: -0.03em;
}

.ftkr-callout p {
  max-width: 63ch;
  margin: 0;
  color: #d5dfeb;
}

.ftkr-callout .cmp-button {
  color: var(--ftkr-white);
  border-color: #79b7f6;
  white-space: nowrap;
}

.ftkr-callout .cmp-button:hover {
  color: #9ec8f6;
  border-color: #9ec8f6;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .aem-GridColumn--tablet--1 { width: 8.333333%; }
  .aem-GridColumn--tablet--2 { width: 16.666667%; }
  .aem-GridColumn--tablet--3 { width: 25%; }
  .aem-GridColumn--tablet--4 { width: 33.333333%; }
  .aem-GridColumn--tablet--5 { width: 41.666667%; }
  .aem-GridColumn--tablet--6 { width: 50%; }
  .aem-GridColumn--tablet--7 { width: 58.333333%; }
  .aem-GridColumn--tablet--8 { width: 66.666667%; }
  .aem-GridColumn--tablet--9 { width: 75%; }
  .aem-GridColumn--tablet--10 { width: 83.333333%; }
  .aem-GridColumn--tablet--11 { width: 91.666667%; }
  .aem-GridColumn--tablet--12 { width: 100%; }
  .aem-GridColumn--tablet--hide { display: none; }
  .aem-GridColumn--offset--tablet--0 { margin-left: 0; }
  .aem-GridColumn--offset--tablet--1 { margin-left: 8.333333%; }
  .aem-GridColumn--offset--tablet--2 { margin-left: 16.666667%; }
  .aem-GridColumn--offset--tablet--3 { margin-left: 25%; }
  .aem-GridColumn--offset--tablet--4 { margin-left: 33.333333%; }
  .aem-GridColumn--offset--tablet--5 { margin-left: 41.666667%; }
  .aem-GridColumn--offset--tablet--6 { margin-left: 50%; }
}

@media (max-width: 767px) {
  .aem-GridColumn--phone--1 { width: 8.333333%; }
  .aem-GridColumn--phone--2 { width: 16.666667%; }
  .aem-GridColumn--phone--3 { width: 25%; }
  .aem-GridColumn--phone--4 { width: 33.333333%; }
  .aem-GridColumn--phone--5 { width: 41.666667%; }
  .aem-GridColumn--phone--6 { width: 50%; }
  .aem-GridColumn--phone--7 { width: 58.333333%; }
  .aem-GridColumn--phone--8 { width: 66.666667%; }
  .aem-GridColumn--phone--9 { width: 75%; }
  .aem-GridColumn--phone--10 { width: 83.333333%; }
  .aem-GridColumn--phone--11 { width: 91.666667%; }
  .aem-GridColumn--phone--12 { width: 100%; }
  .aem-GridColumn--phone--hide { display: none; }
  .aem-GridColumn--offset--phone--0 { margin-left: 0; }
  .aem-GridColumn--offset--phone--1 { margin-left: 8.333333%; }
  .aem-GridColumn--offset--phone--2 { margin-left: 16.666667%; }
  .aem-GridColumn--offset--phone--3 { margin-left: 25%; }
  .aem-GridColumn--offset--phone--4 { margin-left: 33.333333%; }
  .aem-GridColumn--offset--phone--5 { margin-left: 41.666667%; }
  .aem-GridColumn--offset--phone--6 { margin-left: 50%; }
}

@media (max-width: 980px) {
  :root {
    --ftkr-header-height: 84px;
  }

  .ftkr-shell {
    width: min(calc(100% - 2.2rem), var(--ftkr-max-width));
  }

  .cmp-header__logo {
    flex-basis: 280px;
  }

  .cmp-header__logo img {
    width: 280px;
  }

  .cmp-header__menu-toggle {
    display: inline-flex;
  }

  .cmp-header__navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    border-top: 1px solid var(--ftkr-slate-200);
    border-bottom: 1px solid var(--ftkr-slate-300);
    background: var(--ftkr-white);
    box-shadow: var(--ftkr-shadow);
  }

  .cmp-header__navigation[data-open="true"] {
    display: block;
  }

  .cmp-navigation__group {
    display: block;
    width: min(calc(100% - 2.2rem), var(--ftkr-max-width));
    margin-inline: auto;
    padding-block: 0.75rem 1rem;
  }

  .cmp-navigation__item-link {
    min-height: 54px;
    border-bottom: 1px solid var(--ftkr-slate-200);
  }

  .cmp-navigation__item:last-child .cmp-navigation__item-link {
    border-bottom: 0;
  }

  .cmp-navigation__item-link::after {
    right: auto;
    width: 46px;
  }

  .cmp-teaser--hero,
  .cmp-teaser--hero .cmp-teaser__content {
    min-height: auto;
  }

  .cmp-teaser--hero .cmp-teaser__content {
    grid-template-columns: 1fr;
  }

  .cmp-teaser--hero .cmp-teaser__copy {
    padding: 5rem max(1.1rem, calc((100vw - var(--ftkr-max-width)) / 2));
  }

  .cmp-teaser--hero .cmp-teaser__copy::after {
    display: none;
  }

  .cmp-teaser--hero .cmp-teaser__title {
    max-width: 16ch;
  }

  .cmp-teaser--hero .cmp-teaser__image {
    min-height: min(65vw, 620px);
  }

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

  .ftkr-card-grid .ftkr-card:last-child {
    grid-column: 1 / -1;
  }

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

  .ftkr-split__image {
    min-height: min(68vw, 600px);
  }

  .ftkr-capability {
    grid-template-columns: 16px minmax(220px, 0.85fr) minmax(280px, 1.15fr);
    gap: 1.5rem;
  }
}

@media (max-width: 680px) {
  .cmp-header__logo {
    flex-basis: 220px;
  }

  .cmp-header__logo img {
    width: 220px;
  }

  .cmp-teaser--hero .cmp-teaser__copy {
    padding-block: 4rem;
  }

  .cmp-teaser--hero .cmp-teaser__image {
    min-height: 420px;
  }

  .ftkr-section__heading,
  .ftkr-intro,
  .ftkr-capability,
  .ftkr-callout,
  .cmp-footer__primary {
    grid-template-columns: 1fr;
  }

  .ftkr-card-grid,
  .ftkr-value-grid,
  .ftkr-employment-grid,
  .ftkr-contact-grid {
    grid-template-columns: 1fr;
  }

  .ftkr-card-grid .ftkr-card:last-child {
    grid-column: auto;
  }

  .ftkr-card {
    min-height: 240px;
  }

  .ftkr-capability__index {
    margin-top: 0.45rem;
  }

  .cmp-footer__navigation {
    justify-content: flex-start;
  }

  .ftkr-page-hero--image {
    min-height: 500px;
  }

  .ftkr-page-hero--image::before {
    background: linear-gradient(0deg, rgb(5 25 51 / 96%) 0%, rgb(5 25 51 / 66%) 70%, rgb(5 25 51 / 35%) 100%);
  }

  .ftkr-callout {
    gap: 1.7rem;
  }
}

@media (max-width: 440px) {
  .cmp-header__logo {
    flex-basis: 182px;
  }

  .cmp-header__logo img {
    width: 182px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .cmp-header__menu-toggle,
  .ftkr-skip-link {
    display: none !important;
  }

  .cmp-header {
    height: auto;
  }

  .cmp-header__navigation {
    display: none;
  }

  a {
    color: inherit;
  }
}
