:root {
  --fc-blue: #0b5aa6;
  --fc-blue-dark: #08477f;
  --fc-gold: #f2b84b;
  --fc-gold-dark: #d99a24;
  --fc-teal: #168b87;
  --fc-ink: #1f2a30;
  --fc-copy: #45535b;
  --fc-muted: #69777f;
  --fc-line: #dbe2e6;
  --fc-soft: #f3f6f7;
  --fc-white: #ffffff;
  --fc-container: 1240px;
  --fc-shadow: 0 12px 28px rgba(31, 42, 48, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--fc-copy);
  background: var(--fc-white);
  font-family: Arial, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

body,
button,
input,
textarea {
  font-family: Arial, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--fc-blue);
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(11, 90, 166, 0.35);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--fc-ink);
  line-height: 1.18;
  font-weight: 750;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 22px;
}

.fc-container {
  width: min(calc(100% - 48px), var(--fc-container));
  margin-inline: auto;
}

.fc-skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--fc-white);
  background: var(--fc-blue);
  transform: translateY(-160%);
}

.fc-skip-link:focus {
  transform: translateY(0);
}

.fc-eyebrow {
  margin-bottom: 10px;
  color: var(--fc-blue);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
}

.fc-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--fc-blue);
  border-radius: 4px;
  color: var(--fc-white);
  background: var(--fc-blue);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 750;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.fc-button:hover {
  color: var(--fc-white);
  background: var(--fc-blue-dark);
  border-color: var(--fc-blue-dark);
  transform: translateY(-1px);
}

.fc-button--compact {
  min-height: 44px;
  padding: 9px 15px;
}

.fc-button--gold {
  color: var(--fc-ink);
  background: var(--fc-gold);
  border-color: var(--fc-gold);
}

.fc-button--gold:hover {
  color: var(--fc-ink);
  background: var(--fc-gold-dark);
  border-color: var(--fc-gold-dark);
}

.fc-button--secondary {
  color: var(--fc-blue);
  background: transparent;
}

.fc-button--secondary:hover {
  color: var(--fc-white);
  background: var(--fc-blue);
}

.fc-button--outline-light {
  color: var(--fc-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.fc-button--outline-light:hover {
  color: var(--fc-ink);
  background: var(--fc-white);
  border-color: var(--fc-white);
}

.fc-icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 44px;
  border: 1px solid var(--fc-line);
  border-radius: 4px;
  color: var(--fc-ink);
  background: var(--fc-white);
}

.fc-icon-button:hover {
  color: var(--fc-blue);
  border-color: var(--fc-blue);
}

.fc-icon-button--light {
  color: var(--fc-white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(31, 42, 48, 0.35);
}

.fc-icon-button--light:hover {
  color: var(--fc-ink);
  background: var(--fc-white);
  border-color: var(--fc-white);
}

.fc-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--fc-blue);
  font-weight: 750;
}

.fc-text-link i {
  font-size: 12px;
  transition: transform 180ms ease;
}

.fc-text-link:hover i {
  transform: translateX(3px);
}

.fc-contact-bar {
  color: var(--fc-white);
  background: var(--fc-ink);
  font-size: 13px;
}

.fc-contact-bar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.fc-contact-bar p {
  margin: 0;
  color: #dce3e6;
}

.fc-contact-bar__links {
  display: flex;
  gap: 24px;
}

.fc-contact-bar__links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
}

.fc-contact-bar__links a:hover {
  color: var(--fc-gold);
}

.fc-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: var(--fc-white);
  border-bottom: 1px solid var(--fc-line);
}

.fc-site-header__inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 28px;
}

.fc-brand {
  display: flex;
  width: 225px;
  min-width: 180px;
  align-items: center;
}

.fc-brand img {
  width: auto;
  max-width: 100%;
  height: 58px;
  object-fit: contain;
}

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

.fc-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fc-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.fc-nav__list > li {
  position: relative;
  display: flex;
  align-items: center;
}

.fc-nav__list > li > a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 11px;
  color: var(--fc-ink);
  font-size: 14px;
  font-weight: 700;
}

.fc-nav__list > li > a:hover,
.fc-nav__item.is-current > a {
  color: var(--fc-blue);
}

.fc-nav__submenu-toggle {
  width: 32px;
  height: 44px;
  margin-left: -8px;
  border: 0;
  color: var(--fc-muted);
  background: transparent;
  font-size: 10px;
}

.fc-nav__submenu {
  position: absolute;
  z-index: 10;
  top: calc(100% + 1px);
  left: 0;
  display: grid;
  visibility: hidden;
  width: 270px;
  padding: 10px !important;
  background: var(--fc-white);
  border: 1px solid var(--fc-line);
  border-top: 3px solid var(--fc-blue);
  box-shadow: var(--fc-shadow);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.fc-nav__submenu--wide {
  width: 360px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fc-nav__submenu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid var(--fc-soft);
  color: var(--fc-copy);
  font-size: 14px;
}

.fc-nav__submenu a:hover {
  color: var(--fc-blue);
  background: var(--fc-soft);
}

.fc-nav__item:hover > .fc-nav__submenu,
.fc-nav__item:focus-within > .fc-nav__submenu,
.fc-nav__item.is-submenu-open > .fc-nav__submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.fc-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.fc-header-search {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 22px 0;
  background: var(--fc-white);
  border-bottom: 1px solid var(--fc-line);
  box-shadow: var(--fc-shadow);
}

.fc-search-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--fc-ink);
  font-size: 14px;
  font-weight: 700;
}

.fc-search-form__controls {
  display: flex;
  gap: 10px;
}

.fc-search-form input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid #bec9ce;
  border-radius: 4px;
  color: var(--fc-ink);
  background: var(--fc-white);
}

.fc-search-form input:focus,
.fc-form input:focus,
.fc-form textarea:focus {
  border-color: var(--fc-blue);
  outline: 3px solid rgba(11, 90, 166, 0.14);
}

.fc-hero {
  position: relative;
  height: min(680px, calc(100svh - 160px));
  min-height: 450px;
  overflow: hidden;
  color: var(--fc-white);
  background: var(--fc-ink);
}

.fc-hero__track,
.fc-hero__slide {
  position: absolute;
  inset: 0;
}

.fc-hero__slide {
  visibility: hidden;
  opacity: 0;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.fc-hero__slide.is-active {
  visibility: visible;
  opacity: 1;
}

.fc-hero__slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(18, 28, 34, 0.6);
}

.fc-hero__slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-hero__content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  max-width: var(--fc-container);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: min(44%, 520px);
}

.fc-hero__eyebrow {
  margin-bottom: 16px;
  padding-left: 42px;
  color: var(--fc-gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.fc-hero__eyebrow::before {
  position: absolute;
  width: 30px;
  height: 2px;
  margin-top: 11px;
  margin-left: -42px;
  content: "";
  background: var(--fc-gold);
}

.fc-hero h1,
.fc-hero h2 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--fc-white);
  font-size: 58px;
}

.fc-hero__text {
  max-width: 660px;
  margin-bottom: 28px;
  color: #edf2f4;
  font-size: 19px;
  line-height: 1.6;
}

.fc-hero__actions,
.fc-cta-band__actions,
.fc-product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fc-hero__controls {
  position: absolute;
  z-index: 4;
  right: max(24px, calc((100% - var(--fc-container)) / 2));
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fc-hero__dots {
  display: flex;
  gap: 8px;
}

.fc-hero__dot {
  width: 28px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.fc-hero__dot::after {
  display: block;
  width: 100%;
  height: 3px;
  content: "";
  background: rgba(255, 255, 255, 0.5);
}

.fc-hero__dot.is-active::after {
  background: var(--fc-gold);
}

.fc-proof-band {
  border-bottom: 1px solid var(--fc-line);
  background: var(--fc-white);
}

.fc-proof-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fc-proof-band__grid > div {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 16px;
  padding: 20px 30px;
  border-right: 1px solid var(--fc-line);
}

.fc-proof-band__grid > div:last-child {
  border-right: 0;
}

.fc-proof-band i {
  width: 42px;
  color: var(--fc-teal);
  font-size: 28px;
  text-align: center;
}

.fc-proof-band p {
  display: grid;
  margin: 0;
  line-height: 1.45;
}

.fc-proof-band strong {
  color: var(--fc-ink);
}

.fc-proof-band span {
  color: var(--fc-muted);
  font-size: 14px;
}

.fc-section {
  padding: 88px 0;
}

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

.fc-section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.fc-section-heading h2 {
  margin-bottom: 0;
}

.fc-section-heading--split {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.fc-section-heading--split > div {
  max-width: 720px;
}

.fc-section-heading--split > p {
  max-width: 430px;
  margin-bottom: 4px;
}

.fc-section-heading--compact {
  margin-bottom: 28px;
}

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

.fc-category-grid,
.fc-product-grid,
.fc-project-grid,
.fc-insight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.fc-category-card,
.fc-product-card,
.fc-insight-card {
  min-width: 0;
  background: var(--fc-white);
  border: 1px solid var(--fc-line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fc-category-card:hover,
.fc-product-card:hover,
.fc-insight-card:hover {
  border-color: #9bb8cc;
  box-shadow: var(--fc-shadow);
  transform: translateY(-3px);
}

.fc-category-card__image,
.fc-product-card__image,
.fc-insight-card > a {
  display: block;
  overflow: hidden;
  background: #e8edef;
}

.fc-category-card__image {
  aspect-ratio: 4 / 3;
}

.fc-category-card__image img,
.fc-product-card__image img,
.fc-insight-card > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.fc-category-card:hover img,
.fc-product-card:hover img,
.fc-insight-card:hover img,
.fc-project-card:hover img {
  transform: scale(1.025);
}

.fc-category-card__body,
.fc-product-card__body,
.fc-insight-card > div {
  padding: 22px;
}

.fc-category-card h3,
.fc-product-card h3,
.fc-insight-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.fc-category-card__count,
.fc-product-card__body > p:first-child,
.fc-project-card div > p,
.fc-search-list article > p:first-child {
  margin-bottom: 7px;
  color: var(--fc-teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fc-product-card__image {
  aspect-ratio: 1 / 1;
}

.fc-product-card__summary {
  margin-bottom: 10px;
  color: var(--fc-muted);
  font-size: 14px;
  line-height: 1.55;
}

.fc-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--fc-line);
  border-left: 1px solid var(--fc-line);
}

.fc-application-item {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--fc-white);
  border-right: 1px solid var(--fc-line);
  border-bottom: 1px solid var(--fc-line);
  color: var(--fc-ink);
  font-weight: 750;
}

.fc-application-item:hover {
  color: var(--fc-blue);
  background: #eef5f9;
}

.fc-application-item img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  object-fit: contain;
}

.fc-company-band {
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  background: var(--fc-soft);
}

.fc-company-band__image {
  min-height: 560px;
}

.fc-company-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-company-band__content {
  display: flex;
  max-width: 680px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 64px;
}

.fc-company-band__content > p:not(.fc-eyebrow) {
  font-size: 17px;
}

.fc-facts {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0 30px;
  background: var(--fc-line);
  border: 1px solid var(--fc-line);
}

.fc-facts > div {
  padding: 18px;
  background: var(--fc-white);
}

.fc-facts dt {
  color: var(--fc-blue);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
}

.fc-facts dd {
  margin: 5px 0 0;
  color: var(--fc-muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.fc-project-grid--featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fc-project-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--fc-ink);
  border-radius: 6px;
}

.fc-project-card > a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.fc-project-card > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.fc-project-card > div {
  padding: 20px;
  background: var(--fc-white);
  border: 1px solid var(--fc-line);
  border-top: 0;
}

.fc-project-card h2,
.fc-project-card h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.fc-project-card .fc-text-link {
  margin-top: 10px;
}

.fc-process {
  padding: 86px 0;
  color: #dce3e6;
  background: var(--fc-ink);
}

.fc-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #526067;
}

.fc-process__steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 28px 20px 0 0;
  border-right: 1px solid #526067;
}

.fc-process__steps li + li {
  padding-left: 20px;
}

.fc-process__steps li:last-child {
  border-right: 0;
}

.fc-process__steps > li > span {
  color: var(--fc-gold);
  font-size: 20px;
  font-weight: 800;
}

.fc-process__steps h3 {
  margin-bottom: 10px;
  color: var(--fc-white);
  font-size: 18px;
}

.fc-process__steps p {
  margin-bottom: 0;
  color: #c7d0d4;
  font-size: 14px;
}

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

.fc-insight-card > a {
  aspect-ratio: 3 / 2;
}

.fc-insight-card time,
.fc-article-row time,
.fc-article-detail time {
  display: block;
  margin-bottom: 8px;
  color: var(--fc-muted);
  font-size: 13px;
}

.fc-insight-card p {
  color: var(--fc-muted);
  font-size: 14px;
}

.fc-page-hero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  color: var(--fc-white);
  background-position: center;
  background-size: cover;
}

.fc-page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(22, 34, 40, 0.66);
}

.fc-page-hero__content {
  position: relative;
  z-index: 1;
}

.fc-page-hero .fc-eyebrow {
  color: var(--fc-gold);
}

.fc-page-hero h1 {
  margin-bottom: 18px;
  color: var(--fc-white);
  font-size: 46px;
}

.fc-breadcrumbs,
.fc-breadcrumbs a {
  color: #e8eef0;
  font-size: 14px;
}

.fc-breadcrumbs a:hover {
  color: var(--fc-gold);
}

.fc-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding: 14px;
  background: var(--fc-soft);
  border: 1px solid var(--fc-line);
}

.fc-filter-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 14px;
  color: var(--fc-copy);
  background: var(--fc-white);
  border: 1px solid var(--fc-line);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

.fc-filter-nav a:hover,
.fc-filter-nav a.is-current {
  color: var(--fc-white);
  background: var(--fc-blue);
  border-color: var(--fc-blue);
}

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

.fc-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.fc-pagination a,
.fc-pagination span {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  margin: 3px;
  place-items: center;
  padding: 8px 12px;
  color: var(--fc-copy);
  background: var(--fc-white);
  border: 1px solid var(--fc-line);
}

.fc-pagination a:hover,
.fc-pagination .active,
.fc-pagination .current {
  color: var(--fc-white);
  background: var(--fc-blue);
  border-color: var(--fc-blue);
}

.fc-content-layout,
.fc-reading-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 52px;
  align-items: start;
}

.fc-article-list {
  border-top: 1px solid var(--fc-line);
}

.fc-article-row {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--fc-line);
}

.fc-article-row--text {
  grid-template-columns: 1fr;
}

.fc-article-row__image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 4px;
  background: var(--fc-soft);
}

.fc-article-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-article-row h2 {
  margin-bottom: 10px;
  font-size: 25px;
}

.fc-article-row p {
  margin-bottom: 8px;
  color: var(--fc-muted);
}

.fc-sidebar,
.fc-project-contact {
  position: sticky;
  top: 104px;
  padding: 26px;
  background: var(--fc-soft);
  border: 1px solid var(--fc-line);
  border-radius: 6px;
}

.fc-sidebar h2,
.fc-project-contact h2 {
  font-size: 22px;
}

.fc-sidebar ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--fc-line);
}

.fc-sidebar li {
  border-bottom: 1px solid var(--fc-line);
}

.fc-sidebar li a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--fc-ink);
  font-weight: 700;
}

.fc-sidebar li a:hover {
  color: var(--fc-blue);
}

.fc-detail-breadcrumb {
  padding: 16px 0;
  background: var(--fc-soft);
  border-bottom: 1px solid var(--fc-line);
  font-size: 13px;
}

.fc-detail-breadcrumb a {
  color: var(--fc-blue);
}

.fc-product-detail {
  padding: 62px 0 70px;
}

.fc-product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  gap: 62px;
  align-items: start;
}

.fc-gallery,
.fc-product-detail__summary {
  min-width: 0;
}

.fc-gallery__main,
.fc-case-gallery__main {
  overflow: hidden;
  background: var(--fc-soft);
  border: 1px solid var(--fc-line);
  border-radius: 6px;
}

.fc-gallery__main {
  aspect-ratio: 1 / 1;
}

.fc-gallery__main img,
.fc-case-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fc-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.fc-gallery__thumbs button {
  min-width: 0;
  aspect-ratio: 1 / 1;
  padding: 2px;
  overflow: hidden;
  border: 1px solid var(--fc-line);
  border-radius: 4px;
  background: var(--fc-white);
}

.fc-gallery__thumbs button:hover,
.fc-gallery__thumbs button.is-active {
  border-color: var(--fc-blue);
  box-shadow: inset 0 0 0 1px var(--fc-blue);
}

.fc-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-product-detail__summary {
  padding-top: 8px;
}

.fc-product-detail__summary h1 {
  margin-bottom: 20px;
  font-size: 42px;
}

.fc-product-detail__intro {
  margin-bottom: 26px;
  color: var(--fc-copy);
  font-size: 17px;
}

.fc-product-meta {
  margin: 0 0 28px;
  border-top: 1px solid var(--fc-line);
}

.fc-product-meta > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--fc-line);
}

.fc-product-meta dt {
  color: var(--fc-muted);
  font-size: 13px;
  font-weight: 700;
}

.fc-product-meta dd {
  margin: 0;
  color: var(--fc-ink);
  font-size: 14px;
  font-weight: 700;
}

.fc-response-note {
  display: flex;
  gap: 9px;
  margin-top: 18px;
  color: var(--fc-muted);
  font-size: 13px;
}

.fc-response-note i {
  margin-top: 5px;
  color: var(--fc-teal);
}

.fc-detail-tabs {
  padding: 0 0 74px;
}

.fc-tab-list {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--fc-line);
}

.fc-tab-list button {
  min-height: 52px;
  padding: 12px 20px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--fc-muted);
  background: transparent;
  font-weight: 750;
}

.fc-tab-list button[aria-selected="true"] {
  color: var(--fc-blue);
  border-bottom-color: var(--fc-blue);
}

.fc-tab-panel {
  padding-top: 38px;
}

.fc-inquiry-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: 52px;
  padding: 34px;
  background: var(--fc-soft);
  border: 1px solid var(--fc-line);
}

.fc-inquiry-layout h2 {
  font-size: 30px;
}

.fc-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.fc-form label {
  display: block;
  min-width: 0;
  color: var(--fc-ink);
  font-size: 14px;
  font-weight: 700;
}

.fc-form label > span:first-child {
  display: block;
  margin-bottom: 7px;
}

.fc-form input,
.fc-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--fc-ink);
  background: var(--fc-white);
  border: 1px solid #bbc6cb;
  border-radius: 4px;
}

.fc-form textarea {
  min-height: 150px;
  resize: vertical;
}

.fc-form__full {
  grid-column: 1 / -1;
}

.fc-captcha {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.fc-captcha img {
  width: 130px;
  height: 48px;
  object-fit: cover;
  border: 1px solid var(--fc-line);
}

.fc-richtext {
  min-width: 0;
  color: var(--fc-copy);
  font-size: 16px;
  line-height: 1.75;
}

.fc-richtext > :first-child {
  margin-top: 0;
}

.fc-richtext > :last-child {
  margin-bottom: 0;
}

.fc-richtext h2 {
  margin: 42px 0 16px;
  font-size: 30px;
}

.fc-richtext h3 {
  margin: 32px 0 14px;
  font-size: 23px;
}

.fc-richtext h4,
.fc-richtext h5,
.fc-richtext h6 {
  margin: 26px 0 12px;
  font-size: 19px;
}

.fc-richtext p,
.fc-richtext ul,
.fc-richtext ol {
  margin-bottom: 18px;
}

.fc-richtext li + li {
  margin-top: 7px;
}

.fc-richtext a {
  color: var(--fc-blue);
  text-decoration: underline;
}

.fc-richtext img {
  width: auto;
  height: auto;
  margin: 26px auto;
  border-radius: 4px;
}

.fc-richtext table {
  display: block;
  width: 100%;
  margin: 24px 0;
  overflow-x: auto;
  border-collapse: collapse;
  -webkit-overflow-scrolling: touch;
}

.fc-richtext th,
.fc-richtext td {
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid var(--fc-line);
  text-align: left;
  vertical-align: top;
}

.fc-richtext th {
  color: var(--fc-ink);
  background: #eaf0f3;
}

.fc-richtext blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  color: var(--fc-ink);
  background: var(--fc-soft);
  border-left: 4px solid var(--fc-teal);
}

.fc-case-detail,
.fc-article-detail {
  padding: 64px 0 84px;
}

.fc-case-detail__header,
.fc-article-detail__header {
  max-width: 920px;
  margin-bottom: 36px;
  text-align: center;
}

.fc-case-detail__header h1,
.fc-article-detail__header h1 {
  margin-bottom: 18px;
  font-size: 46px;
}

.fc-case-detail__header > p:last-child {
  color: var(--fc-muted);
  font-size: 18px;
}

.fc-case-gallery {
  margin-bottom: 56px;
}

.fc-case-gallery__main {
  aspect-ratio: 3 / 2;
}

.fc-case-gallery .fc-gallery__thumbs {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.fc-case-gallery .fc-gallery__thumbs button {
  aspect-ratio: 4 / 3;
}

.fc-reading-layout .fc-richtext {
  max-width: 840px;
}

.fc-article-detail__cover {
  max-width: 1100px;
  margin-bottom: 54px;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--fc-soft);
}

.fc-article-detail__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 58px;
  align-items: center;
  margin-bottom: 72px;
}

.fc-about-intro__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
}

.fc-about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-facts--light {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 500px;
}

.fc-richtext--about {
  max-width: 980px;
}

.fc-richtext--about > div,
.fc-richtext--about > section {
  padding: 36px 0;
  border-top: 1px solid var(--fc-line);
}

.fc-values-band {
  padding: 78px 0;
  background: var(--fc-soft);
  border-top: 1px solid var(--fc-line);
}

.fc-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--fc-line);
  border: 1px solid var(--fc-line);
}

.fc-value-grid > div {
  padding: 30px;
  background: var(--fc-white);
}

.fc-value-grid i {
  margin-bottom: 20px;
  color: var(--fc-teal);
  font-size: 30px;
}

.fc-value-grid h3 {
  font-size: 20px;
}

.fc-value-grid p {
  margin-bottom: 0;
}

.fc-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 70px;
  align-items: start;
}

.fc-contact-layout > div > h2,
.fc-contact-form-wrap h2 {
  font-size: 34px;
}

.fc-contact-methods {
  display: grid;
  gap: 0;
  margin: 30px 0;
  border-top: 1px solid var(--fc-line);
}

.fc-contact-methods > a,
.fc-contact-methods > div {
  display: grid;
  min-height: 78px;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--fc-line);
  color: var(--fc-ink);
  font-weight: 700;
}

.fc-contact-methods i {
  color: var(--fc-teal);
  font-size: 22px;
  text-align: center;
}

.fc-contact-methods small {
  display: block;
  color: var(--fc-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.fc-contact-import {
  padding-top: 20px;
  border-top: 1px solid var(--fc-line);
  font-size: 14px;
}

.fc-contact-form-wrap {
  padding: 34px;
  background: var(--fc-soft);
  border: 1px solid var(--fc-line);
  border-radius: 6px;
}

.fc-search-hero {
  padding: 66px 0;
  color: var(--fc-white);
  background: var(--fc-ink);
}

.fc-search-hero .fc-eyebrow {
  color: var(--fc-gold);
}

.fc-search-hero h1 {
  margin-bottom: 0;
  color: var(--fc-white);
  font-size: 42px;
}

.fc-search-form--page {
  max-width: 850px;
  margin-bottom: 46px;
}

.fc-search-list {
  border-top: 1px solid var(--fc-line);
}

.fc-search-list article {
  padding: 28px 0;
  border-bottom: 1px solid var(--fc-line);
}

.fc-search-list h2 {
  margin-bottom: 10px;
  font-size: 25px;
}

.fc-inquiry-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 50px;
}

.fc-inquiry-products article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--fc-line);
}

.fc-inquiry-products img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.fc-inquiry-products h2 {
  font-size: 17px;
}

.fc-inquiry-products button {
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  color: #a43b30;
  background: transparent;
}

.fc-cta-band {
  padding: 56px 0;
  color: var(--fc-white);
  background: var(--fc-blue);
}

.fc-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.fc-cta-band .fc-eyebrow {
  color: var(--fc-gold);
}

.fc-cta-band h2 {
  margin-bottom: 8px;
  color: var(--fc-white);
  font-size: 32px;
}

.fc-cta-band p:last-child {
  margin-bottom: 0;
  color: #e4f0f8;
}

.fc-footer {
  color: #ced7db;
  background: var(--fc-ink);
}

.fc-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.7fr 1.1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 52px;
}

.fc-footer__brand img {
  width: auto;
  height: 58px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.fc-footer__brand p {
  max-width: 360px;
}

.fc-footer h2 {
  margin-bottom: 18px;
  color: var(--fc-white);
  font-size: 17px;
}

.fc-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fc-footer li + li {
  margin-top: 8px;
}

.fc-footer a:hover {
  color: var(--fc-gold);
}

.fc-footer address {
  display: grid;
  gap: 13px;
  font-style: normal;
}

.fc-footer address a,
.fc-footer address p {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  margin: 0;
}

.fc-footer address i {
  margin-top: 5px;
  color: var(--fc-gold);
}

.fc-footer__bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #435159;
  font-size: 13px;
}

.fc-footer__bottom p {
  margin: 0;
}

.fc-cookie {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: min(420px, calc(100% - 40px));
  gap: 14px;
  padding: 20px;
  background: var(--fc-white);
  border: 1px solid var(--fc-line);
  border-radius: 6px;
  box-shadow: var(--fc-shadow);
}

.fc-cookie__content {
  color: var(--fc-copy);
  font-size: 14px;
}

.cookies_none {
  display: none !important;
}

@media (max-width: 1160px) {
  .fc-site-header__inner {
    gap: 15px;
  }

  .fc-brand {
    width: 180px;
  }

  .fc-nav__list > li > a {
    padding-inline: 8px;
    font-size: 13px;
  }

  .fc-header-actions .fc-button span {
    display: none;
  }

  .fc-header-actions .fc-button {
    width: 44px;
    padding: 0;
  }

  .fc-hero__content {
    padding-right: 34%;
  }

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

  .fc-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .fc-footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 940px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 33px;
  }

  .fc-contact-bar {
    display: none;
  }

  .fc-site-header__inner {
    min-height: 70px;
  }

  .fc-brand img {
    height: 50px;
  }

  .fc-menu-toggle {
    display: inline-grid;
  }

  .fc-nav {
    position: fixed;
    z-index: 110;
    top: 70px;
    right: 0;
    bottom: 0;
    visibility: hidden;
    width: min(420px, 100%);
    margin: 0;
    overflow-y: auto;
    background: var(--fc-white);
    border-left: 1px solid var(--fc-line);
    box-shadow: var(--fc-shadow);
    transform: translateX(100%);
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .fc-nav.is-open {
    visibility: visible;
    transform: translateX(0);
  }

  .fc-nav__list {
    display: block;
    padding: 14px 20px 40px !important;
  }

  .fc-nav__list > li {
    display: grid;
    grid-template-columns: 1fr 44px;
    border-bottom: 1px solid var(--fc-line);
  }

  .fc-nav__list > li > a {
    min-height: 52px;
    padding: 0;
    font-size: 15px;
  }

  .fc-nav__submenu-toggle {
    width: 44px;
    margin: 0;
  }

  .fc-nav__submenu,
  .fc-nav__submenu--wide {
    position: static;
    grid-column: 1 / -1;
    display: none;
    visibility: visible;
    width: auto;
    grid-template-columns: 1fr;
    padding: 0 0 10px 14px !important;
    border: 0;
    border-left: 2px solid var(--fc-blue);
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .fc-nav__item.is-submenu-open > .fc-nav__submenu {
    display: grid;
  }

  .fc-header-search {
    position: fixed;
    top: 70px;
  }

  .fc-hero {
    height: min(630px, calc(100svh - 118px));
    min-height: 450px;
  }

  .fc-hero__content {
    padding-right: 15%;
  }

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

  .fc-proof-band__grid {
    grid-template-columns: 1fr;
  }

  .fc-proof-band__grid > div {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid var(--fc-line);
  }

  .fc-proof-band__grid > div:last-child {
    border-bottom: 0;
  }

  .fc-section {
    padding: 70px 0;
  }

  .fc-section-heading--split {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

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

  .fc-company-band {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .fc-company-band__image {
    min-height: 420px;
    max-height: 560px;
  }

  .fc-company-band__content {
    max-width: none;
    padding: 56px 48px;
  }

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

  .fc-process__steps li {
    padding-bottom: 28px;
    border-bottom: 1px solid #526067;
  }

  .fc-process__steps li:nth-child(2n) {
    border-right: 0;
  }

  .fc-content-layout,
  .fc-reading-layout,
  .fc-product-detail__grid,
  .fc-contact-layout,
  .fc-about-intro {
    grid-template-columns: 1fr;
  }

  .fc-sidebar,
  .fc-project-contact {
    position: static;
  }

  .fc-product-detail__grid {
    gap: 40px;
  }

  .fc-gallery {
    max-width: 720px;
  }

  .fc-inquiry-layout {
    grid-template-columns: 1fr;
  }

  .fc-contact-layout {
    gap: 48px;
  }

  .fc-cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
}

@media (max-width: 720px) {
  .fc-container {
    width: min(calc(100% - 32px), var(--fc-container));
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .fc-site-header__inner {
    gap: 8px;
  }

  .fc-brand {
    width: 156px;
    min-width: 132px;
  }

  .fc-header-actions .fc-button {
    display: none;
  }

  .fc-hero {
    height: min(610px, calc(100svh - 118px));
    min-height: 440px;
  }

  .fc-hero__content {
    justify-content: flex-end;
    padding-right: 16px;
    padding-bottom: 94px;
  }

  .fc-hero h1,
  .fc-hero h2 {
    margin-bottom: 14px;
    font-size: 39px;
  }

  .fc-hero__eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .fc-hero__text {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .fc-hero__controls {
    right: 16px;
    bottom: 16px;
  }

  .fc-hero__controls > .fc-icon-button {
    display: none;
  }

  .fc-proof-band__grid > div {
    padding-inline: 18px;
  }

  .fc-section {
    padding: 58px 0;
  }

  .fc-category-grid,
  .fc-product-grid,
  .fc-product-grid--catalog,
  .fc-project-grid,
  .fc-project-grid--featured,
  .fc-insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .fc-category-card__body,
  .fc-product-card__body,
  .fc-insight-card > div {
    padding: 16px;
  }

  .fc-category-card h3,
  .fc-product-card h3,
  .fc-insight-card h3,
  .fc-project-card h2,
  .fc-project-card h3 {
    font-size: 17px;
  }

  .fc-product-card__summary {
    display: none;
  }

  .fc-application-item {
    min-height: 104px;
    padding: 14px;
    gap: 10px;
    font-size: 14px;
  }

  .fc-application-item img {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .fc-company-band__image {
    min-height: 320px;
  }

  .fc-company-band__content {
    padding: 48px 24px;
  }

  .fc-facts {
    grid-template-columns: 1fr;
  }

  .fc-facts--light {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fc-process {
    padding: 58px 0;
  }

  .fc-process__steps {
    grid-template-columns: 1fr;
  }

  .fc-process__steps li,
  .fc-process__steps li + li {
    padding: 22px 0;
    border-right: 0;
  }

  .fc-page-hero {
    min-height: 270px;
  }

  .fc-page-hero h1 {
    font-size: 38px;
  }

  .fc-filter-nav {
    flex-wrap: nowrap;
    margin-inline: -16px;
    padding-inline: 16px;
    overflow-x: auto;
    border-right: 0;
    border-left: 0;
  }

  .fc-filter-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .fc-article-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fc-article-row__image {
    max-width: 420px;
  }

  .fc-product-detail {
    padding: 36px 0 52px;
  }

  .fc-product-detail__summary h1 {
    font-size: 35px;
  }

  .fc-gallery__thumbs,
  .fc-case-gallery .fc-gallery__thumbs {
    display: flex;
    overflow-x: auto;
  }

  .fc-gallery__thumbs button,
  .fc-case-gallery .fc-gallery__thumbs button {
    width: 74px;
    min-width: 74px;
  }

  .fc-tab-list {
    overflow-x: auto;
  }

  .fc-tab-list button {
    flex: 0 0 auto;
  }

  .fc-inquiry-layout,
  .fc-contact-form-wrap {
    padding: 24px 18px;
  }

  .fc-form__grid {
    grid-template-columns: 1fr;
  }

  .fc-form__full {
    grid-column: auto;
  }

  .fc-case-detail,
  .fc-article-detail {
    padding: 46px 0 60px;
  }

  .fc-case-detail__header h1,
  .fc-article-detail__header h1 {
    font-size: 36px;
  }

  .fc-case-gallery,
  .fc-article-detail__cover {
    margin-bottom: 36px;
  }

  .fc-richtext h2 {
    font-size: 27px;
  }

  .fc-value-grid {
    grid-template-columns: 1fr;
  }

  .fc-search-hero {
    padding: 48px 0;
  }

  .fc-search-hero h1 {
    font-size: 34px;
  }

  .fc-search-form__controls {
    align-items: stretch;
    flex-direction: column;
  }

  .fc-inquiry-page {
    grid-template-columns: 1fr;
  }

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

  .fc-footer__brand,
  .fc-footer__contact {
    grid-column: 1 / -1;
  }

  .fc-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }
}

@media (max-width: 480px) {
  .fc-brand {
    width: 138px;
  }

  .fc-header-actions {
    margin-left: auto;
  }

  .fc-hero {
    min-height: 430px;
  }

  .fc-hero h1,
  .fc-hero h2 {
    font-size: 34px;
  }

  .fc-hero__actions .fc-button {
    width: 100%;
  }

  .fc-hero__actions .fc-button--outline-light {
    display: none;
  }

  .fc-category-grid,
  .fc-product-grid,
  .fc-product-grid--catalog,
  .fc-project-grid,
  .fc-project-grid--featured,
  .fc-insight-grid,
  .fc-application-grid {
    grid-template-columns: 1fr;
  }

  .fc-application-item {
    min-height: 88px;
  }

  .fc-product-detail__actions .fc-button,
  .fc-cta-band__actions .fc-button {
    width: 100%;
  }

  .fc-product-meta > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .fc-facts--light {
    grid-template-columns: 1fr;
  }

  .fc-captcha {
    align-items: flex-start;
    flex-direction: column;
  }

  .fc-footer__grid {
    grid-template-columns: 1fr;
  }

  .fc-footer__brand,
  .fc-footer__contact {
    grid-column: auto;
  }
}

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

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