.fa-activity-body {
  background: #f4f2ee;
}

.fa-activity-page {
  --fa-navy: #031c34;
  --fa-deep: #001a30;
  --fa-red: #e31e24;
  --fa-paper: #f4f2ee;
  --fa-line: #d7d8d7;
  color: var(--fa-navy);
  background: var(--fa-paper);
  font-family: 'Inter', Arial, sans-serif;
  overflow: hidden;
}

.fa-activity-page *,
.fa-activity-page *::before,
.fa-activity-page *::after {
  box-sizing: border-box;
}

.fa-activity-page img {
  display: block;
  width: 100%;
}

.fa-container {
  width: min(94%, 1520px);
  margin-inline: auto;
}

.fa-hero {
  position: relative;
  min-height: clamp(600px, 44vw, 740px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--fa-deep);
}

.fa-hero-image,
.fa-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fa-hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center 48%;
}

.fa-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 22, 41, .98) 0%, rgba(0, 25, 47, .9) 31%, rgba(0, 25, 47, .48) 56%, rgba(0, 25, 47, .08) 82%),
    linear-gradient(0deg, rgba(0, 18, 35, .55), transparent 55%);
}

.fa-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 76px;
}

.fa-hero-copy {
  max-width: 700px;
}

.fa-kicker {
  margin-bottom: 20px;
  color: var(--fa-red);
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fa-kicker span {
  width: 34px;
  height: 3px;
  display: block;
  margin-bottom: 12px;
  background: var(--fa-red);
}

.fa-hero h1 {
  max-width: 690px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(44px, 4.1vw, 68px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.fa-hero-copy > p {
  max-width: 640px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.58;
}

.fa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.fa-button {
  min-width: 215px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.fa-button:hover {
  transform: translateY(-2px);
}

.fa-button--red {
  color: #fff;
  background: var(--fa-red);
  border-color: var(--fa-red);
}

.fa-button--red:hover {
  color: #fff;
  background: #c81820;
  border-color: #c81820;
}

.fa-button--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .82);
  background: rgba(0, 24, 45, .25);
}

.fa-button--outline:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
}

.fa-process {
  position: relative;
  z-index: 2;
  color: #fff;
  background: linear-gradient(90deg, #00182d, #052d4f 52%, #00182d);
  border-top: 1px solid rgba(255, 255, 255, .09);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.fa-process-grid {
  min-height: 152px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.fa-process-item {
  min-height: 88px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 12px clamp(18px, 2vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, .27);
}

.fa-process-item:first-child {
  padding-left: 0;
}

.fa-process-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.fa-process-item svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fa-process-item h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.fa-process-item p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  line-height: 1.55;
}

.fa-cards-section {
  padding: clamp(32px, 3.4vw, 58px) 0 clamp(38px, 4vw, 70px);
  background: var(--fa-paper);
}

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

.fa-card {
  position: relative;
  aspect-ratio: 1.34 / 1;
  display: block;
  overflow: hidden;
  border-radius: 9px;
  color: #fff;
  background: var(--fa-deep);
  box-shadow: 0 8px 25px rgba(0, 23, 42, .07);
}

.fa-card img,
.fa-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fa-card img {
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1);
}

.fa-card-shade {
  background: linear-gradient(0deg, rgba(0, 20, 38, .98) 0%, rgba(0, 22, 41, .72) 22%, rgba(0, 22, 41, .05) 62%);
}

.fa-card-content {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 20px;
  bottom: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.fa-card-content b {
  color: var(--fa-red);
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 800;
  line-height: 1;
}

.fa-card-content strong {
  color: #fff;
  font-size: clamp(13px, 1.12vw, 17px);
  font-weight: 700;
  line-height: 1.25;
}

.fa-card-content i {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  transition: transform .3s ease;
}

.fa-card:hover {
  color: #fff;
}

.fa-card:hover img {
  transform: scale(1.045);
}

.fa-card:hover .fa-card-content i {
  transform: translateX(6px);
}

.fa-competency {
  background: #f6f5f2;
  border-top: 1px solid #e2e0dc;
  border-bottom: 1px solid #e2e0dc;
}

.fa-competency-grid {
  width: min(100%, 1680px);
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  margin-inline: auto;
}

.fa-competency-image {
  min-height: 600px;
  overflow: hidden;
}

.fa-competency-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fa-competency-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px clamp(48px, 6vw, 105px);
}

.fa-red-rule {
  width: 36px;
  height: 3px;
  margin-bottom: 17px;
  background: var(--fa-red);
}

.fa-competency h2,
.fa-final-copy h2 {
  margin: 0;
  color: var(--fa-navy);
  font-size: clamp(31px, 2.6vw, 44px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.13;
}

.fa-competency-list {
  margin-top: 28px;
}

.fa-competency-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--fa-line);
}

.fa-competency-list article:last-child {
  border-bottom: 0;
}

.fa-round-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #173a5b;
  border-radius: 50%;
}

.fa-round-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #173a5b;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fa-competency-list h3 {
  margin: 0 0 6px;
  color: var(--fa-navy);
  font-size: 16px;
  font-weight: 800;
}

.fa-competency-list p {
  max-width: 560px;
  margin: 0;
  color: #4f5e6c;
  font-size: 12px;
  line-height: 1.5;
}

.fa-text-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 16px;
  margin-top: 22px;
  color: var(--fa-navy);
  font-size: 14px;
  font-weight: 800;
}

.fa-text-link span {
  color: var(--fa-red);
  font-size: 25px;
  transition: transform .25s ease;
}

.fa-text-link:hover {
  color: var(--fa-red);
}

.fa-text-link:hover span {
  transform: translateX(5px);
}

.fa-final-cta {
  padding: 34px 0 38px;
  background: var(--fa-paper);
}

.fa-final-grid {
  min-height: 345px;
  display: grid;
  grid-template-columns: 1.62fr .88fr;
  gap: clamp(42px, 6vw, 100px);
  align-items: center;
}

.fa-final-image {
  height: 330px;
  overflow: hidden;
  border-radius: 12px;
}

.fa-final-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.fa-final-copy {
  padding-right: clamp(10px, 2vw, 35px);
}

.fa-final-copy p {
  max-width: 430px;
  margin: 22px 0 27px;
  color: #4f5e6c;
  font-size: 14px;
  line-height: 1.65;
}

.fa-final-copy .fa-button {
  min-width: 235px;
}

@media (max-width: 1180px) {
  .fa-process-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 20px;
  }

  .fa-process-item:nth-child(2) {
    border-right: 0;
  }

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

  .fa-competency-grid {
    grid-template-columns: .92fr 1.08fr;
  }
}

@media (max-width: 900px) {
  .fa-activity-body .vln-site-header {
    height: 72px;
  }

  .fa-activity-body .vln-hdr-inner {
    height: 72px;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    padding-inline: 16px;
  }

  .fa-activity-body .vln-hdr-group {
    display: none;
  }

  .fa-activity-body .vln-hdr-logo-img {
    height: 40px;
  }

  .fa-activity-body .vln-hdr-menu-toggle {
    position: absolute;
    right: 16px;
    display: grid;
    gap: 5px;
    padding: 10px;
    background: transparent;
    border: 0;
  }

  .fa-activity-body .vln-hdr-menu-toggle span {
    width: 23px;
    height: 2px;
    display: block;
    background: #fff;
  }

  .fa-hero {
    min-height: 690px;
  }

  .fa-hero-image {
    object-position: 60% center;
  }

  .fa-hero-overlay {
    background: linear-gradient(90deg, rgba(0, 22, 41, .97), rgba(0, 25, 47, .74) 68%, rgba(0, 25, 47, .35));
  }

  .fa-hero-copy {
    max-width: 620px;
  }

  .fa-competency-grid,
  .fa-final-grid {
    grid-template-columns: 1fr;
  }

  .fa-competency-image {
    min-height: 520px;
  }

  .fa-competency-copy {
    padding: 55px 6vw 65px;
  }

  .fa-final-grid {
    gap: 36px;
  }

  .fa-final-copy {
    padding: 0 0 20px;
  }
}

@media (max-width: 640px) {
  .fa-container {
    width: calc(100% - 32px);
  }

  .fa-hero {
    min-height: 720px;
  }

  .fa-hero-inner {
    padding-top: 92px;
  }

  .fa-hero h1 {
    font-size: clamp(39px, 11.5vw, 52px);
  }

  .fa-hero-copy > p {
    font-size: 14px;
  }

  .fa-hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .fa-button {
    width: 100%;
  }

  .fa-process-grid,
  .fa-cards-grid {
    grid-template-columns: 1fr;
  }

  .fa-process-grid {
    padding-block: 12px;
  }

  .fa-process-item,
  .fa-process-item:first-child,
  .fa-process-item:last-child {
    min-height: 112px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .fa-process-item:last-child {
    border-bottom: 0;
  }

  .fa-card {
    aspect-ratio: 1.25 / 1;
  }

  .fa-card-content {
    left: 18px;
    right: 16px;
    bottom: 18px;
    gap: 11px;
  }

  .fa-card-content strong {
    font-size: 13px;
  }

  .fa-competency-image {
    min-height: 390px;
  }

  .fa-competency-copy {
    padding: 44px 20px 54px;
  }

  .fa-competency-list article {
    grid-template-columns: 56px 1fr;
    gap: 15px;
  }

  .fa-round-icon {
    width: 54px;
    height: 54px;
  }

  .fa-final-image {
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fa-activity-page *,
  .fa-activity-page *::before,
  .fa-activity-page *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
