:root {
  --color-white: #fff;
  --color-black: #000;
  --color-gray-100: #eee;
  --color-gray-200: #e3ecef;
  --color-gray-300: #9faab7;
  --color-blue-100: #41ccf2;
  --color-blue-200: #576a81;
  --color-blue-300: #0d2a4b;
  --color-red: #ef2149;

  --circle-color: var(--color-red);
  --header-logo-color: var(--color-white);

  --font-display: "Zilla Slab", serif;
  --font-body: "Red Hat Text", sans-serif;

  --weight-normal: 400;
  --weight-medium: 500;

  --radius-sm: 5px;
  --radius-rg: 15px;
  --radius-lg: 36px;

  --container-wide-size: 1420px;
  --container-standard-size: 1400px;
  --container-standard-gutter: calc(
    (100vw - var(--container-standard-size)) / 2
  );
  --container-narrow-size: 1340px;

  --spacing: 150px;

  --duration: 300ms;
}

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

html,
body {
  font-size: 16px !important;
}

body {
  font-family: var(--font-body);
  font-weight: var(--weight-normal);
  color: var(--color-black);
  background-color: var(--color-white);
}

*:focus {
  color: var(--color-red) !important;
  outline: none !important;
}

*:focus-visible {
  outline: 2px dashed var(--color-red) !important;
  outline-offset: 2px;
}

a:hover,
a:active {
  color: var(--color-red) !important;
}

sup {
  top: -0.25em;
}

:is(h1, h2, h3, h4, h5, h6) {
  color: inherit;
}

.ast-scroll-top-icon {
  display: none !important;
}

.hs-web-interactive-inline {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.hs-cta-trigger-button {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.splide__pagination {
  position: relative;
  margin-top: 22px;
  gap: 14px;
}

.splide__pagination__page {
  width: 6px;
  height: 6px;
  background: var(--color-gray-300);
  opacity: 1;
  transition: background var(--duration) ease-in-out;
}

.splide__pagination__page.is-active {
  background: var(--color-black);
  outline: 2px solid var(--color-black) !important;
  outline-offset: 2px;
  transform: none;
}

.splide__pagination__page:focus {
  background-color: var(--color-black);
}

.splide__pagination__page:hover {
  background: var(--color-red);
}

.type-h1 {
  font-size: 4.5rem;
}

.type-h2 {
  font-size: 4rem;
}

.type-h3 {
  font-size: 2.5rem;
}

.type-h4 {
  font-size: 2.25rem;
}

.type-h5 {
  font-size: 2rem;
}

.type-h6 {
  font-size: 1.5rem;
}

.type-body {
  font-size: 1.125rem;
}

.type-body-medium {
  font-size: 0.9375rem;
}

.type-body-small {
  font-size: 0.875rem;
}

.leading-none {
  line-height: 1;
}

.font-display {
  font-family: var(--font-display) !important;
}

.font-body {
  font-family: var(--font-body) !important;
}

.font-normal {
  font-weight: var(--weight-normal);
}

.font-medium {
  font-weight: var(--weight-medium);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z-negative {
  z-index: -1;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.block {
  display: block;
}

.flex-col {
  flex-direction: column;
}

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

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.m-0 {
  margin: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

.w-34 {
  width: 34px;
}

.w-24 {
  width: 24px;
}

.h-full {
  height: 100%;
}

.h-24 {
  height: 24px;
}

.list-none {
  list-style: none;
}

.overflow-hidden {
  overflow: hidden;
}

.invisible {
  visibility: hidden;
}

.text-center {
  text-align: center;
}

.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-rg {
  border-radius: var(--radius-rg);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.container-1340 {
  max-width: var(--container-narrow-size);
}

.container-1400 {
  max-width: var(--container-standard-size);
}

.container-1420 {
  max-width: var(--container-wide-size);
}

.text-white {
  color: var(--color-white);
}

.text-black {
  color: var(--color-black);
}

.text-blue-200 {
  color: var(--color-blue-200);
}

.text-blue-300 {
  color: var(--color-blue-300);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-blue {
  background-color: var(--color-blue-300);
}

.border-t-gray-200 {
  border-top: 1px solid var(--color-gray-200);
}

.border-b-gray-200 {
  border-bottom: 1px solid var(--color-gray-200);
}

.transition-colors {
  transition: color var(--duration) ease-in-out;
}

.section-spacing {
  padding: var(--spacing) 0;
}

.section-spacing.bg-white + .section-spacing.bg-white,
.section-spacing.bg-blue + .section-spacing.bg-blue {
  padding-top: 0;
}

.wysiwyg-content a {
  color: var(--color-red);
  text-decoration: underline;
  text-decoration-color: var(--color-red);
  text-decoration-thickness: 1px;
}

.wysiwyg-content p:first-of-type {
  margin-top: 0;
}

.wysiwyg-content p:last-of-type {
  margin-bottom: 0;
}

.fstec-video-toggle {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  border: none;
  aspect-ratio: 1;
  transition: color var(--duration) ease-in-out,
    background-color var(--duration) ease-in-out;
}

.fstec-video-toggle .fstec-play-icon {
  display: none;
}

.fstec-video-toggle.is-paused .fstec-pause-icon {
  display: none;
}

.fstec-video-toggle.is-paused .fstec-play-icon {
  display: block;
}

.fstec-video-toggle--light {
  color: var(--color-blue-300);
  background-color: var(--color-white);
}

.fstec-video-toggle--light:hover,
.fstec-video-toggle--light:focus {
  color: var(--color-white) !important;
  background-color: var(--color-blue-300);
}

.fstec-video-toggle--dark {
  color: var(--color-white);
  background-color: var(--color-blue-300);
}

.fstec-video-toggle--dark:hover {
  background-color: var(--color-red);
}

.fstec-header {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  padding: 24px 0;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0);
  transition: padding var(--duration) ease-in-out,
    background-color var(--duration) ease-in-out,
    border-bottom var(--duration) ease-in-out;
}

.fstec-header--pinned {
  --header-logo-color: var(--color-blue-300);
  padding: 12px 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
}

.fstec-header__logo {
  width: 69px;
  height: 46px;
  color: var(--header-logo-color);
}

.fstec-footer {
  padding: 32px 0;
}

.fstec-footer__content {
  gap: 34px;
}

.fstec-footer__logo {
  display: block;
  width: 69px;
  height: 45px;
}

.fstec-footer__links {
  gap: 40px;
}

.fstec-footer__bottom {
  padding-top: 34px;
}

.fstec-footer__social-links {
  gap: 30px;
}

.fstec-circle-arrow {
  width: 43px;
  height: 42px;
}

.fstec-circle {
  color: var(--circle-color);
  transition: color var(--duration) ease-in-out;
}

.fstec-button {
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  gap: 20px;
  border-radius: 36px;
  border: none;
  line-height: 1.125;
  text-align: left;
  padding: 6px 6px 6px 25px;
}

.fstec-button--light {
  color: var(--color-blue-300) !important;
  background-color: var(--color-white);
}

.fstec-button--light:hover,
.fstec-button--light:focus {
  --circle-color: var(--color-blue-300);
}

.fstec-button--dark {
  color: var(--color-white) !important;
  background-color: var(--color-blue-300);
}

.fstec-button--dark:hover,
.fstec-button--dark:focus {
  --circle-color: var(--color-blue-100);
  background-color: var(--color-blue-300);
}

.fstec-hero {
  padding: clamp(224px, 4vw, 226px) 0 clamp(254px, 20vw, 360px);
}

.fstec-hero__content {
  gap: 10px;
}

.fstec-hero__headline {
  text-wrap: balance;
}

.fstec-hero__marquee {
  bottom: 0;
  left: 0;
  height: 127px;
  background-color: rgba(13, 42, 75, 0.9);
}

.fstec-hero__marquee-item {
  left: 0;
  padding: 0 50px;
  text-transform: uppercase;
}

.fstec-hero__marquee-item::before {
  position: absolute;
  top: 50%;
  right: -4px;
  width: 4px;
  height: 4px;
  background-color: var(--color-blue-100);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  content: "";
}

.fstec-hero__video-wrap {
  inset: 0;
}

.fstec-hero__video {
  object-fit: cover;
}

.fstec-hero__video-toggle {
  bottom: 147px;
  left: calc(var(--container-standard-gutter) + 20px);
}

.fstec-hero__modal-button {
  max-width: max-content;
  margin-top: 40px;
}

.fstec-hero__modal-button-text {
  font-size: 1rem;
}

.fstec-intro__content {
  row-gap: 20px;
}

.fstec-intro__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.fstec-intro__headline {
  max-width: 12ch;
}

.fstec-intro__copy {
  max-width: 45ch;
}

.fstec-intro__video-wrap {
  max-width: 1080px;
}

.fstec-intro__video-toggle {
  bottom: 40px;
  left: calc(var(--container-standard-gutter) + 30px);
}

.fstec-intro__list {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(66px, 10vw, 130px);
  max-width: max-content;
}

.fstec-intro__list-item {
  row-gap: 35px;
}

.fstec-intro__sub-list {
  row-gap: 16px;
}

.fstec-intro__sub-list-item {
  grid-template-columns: 24px 1fr;
  gap: 16px;
  max-width: 27ch;
  line-height: 1.33;
}

.fstec-intro__blur {
  top: 50%;
  left: 0;
  width: 534px;
  height: 1358px;
  transform: translateY(-50%);
  pointer-events: none;
}

.fstec-intro__blur--mobile {
  display: none;
}

.fstec-logos {
  padding-top: 64px;
}

.fstec-logos__content {
  row-gap: 50px;
}

.fstec-logos__headline {
  font-family: var(--font-body) !important;
  font-size: 1rem;
}

.fstec-logos__marquee {
  height: 94px;
}

.fstec-logos__marquee-item {
  left: 0;
  padding: 0 70px;
}

.fstec-logos__logo {
  display: block;
  width: 90px;
}

.fstec-three-column__content-wrap {
  row-gap: 70px;
  padding: 68px 42px 0;
}

.fstec-three-column__bg {
  top: 0;
  left: 0;
}

.fstec-three-column__bg--mobile {
  display: none;
}

.fstec-three-column__content {
  gap: clamp(36px, 8vw, 140px);
  align-items: start;
}

.fstec-three-column__headline {
  max-width: 11ch;
}

.fstec-three-column__copy {
  max-width: 27ch;
}

.fstec-three-column__cta {
  justify-self: end;
  min-width: max-content;
}

.fstec-three-column__grid {
  grid-template-columns: repeat(3, 1fr);
}

.fstec-three-column__grid-item {
  row-gap: 14px;
  padding: 76px 0;
}

.fstec-three-column__grid-item-title {
  max-width: 30ch;
}

.fstec-three-column__grid-item-icon {
  max-width: 120px;
}

.fstec-three-column__grid-item-copy {
  max-width: 20ch;
  line-height: 1.3125;
}

.fstec-three-column__grid-item:not(:last-of-type) {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.fstec-stacked-content__content-wrap {
  row-gap: 152px;
}

.fstec-stacked-content__top-content {
  row-gap: 36px;
}

.fstec-stacked-content__headline {
  max-width: 16ch;
}

.fstec-stacked-content__copy {
  max-width: 54ch;
}

.fstec-stacked-content__bottom-content {
  row-gap: 32px;
}

.fstec-stacked-content__eyebrow {
  max-width: 34ch;
}

.fstec-stacked-content__cta-headline {
  max-width: 14ch;
  font-size: 3rem;
  text-transform: uppercase;
}

.fstec-stacked-content__bg {
  bottom: 0;
  left: 50%;
  max-width: 1440px;
  width: 1440px;
  height: 641px;
  transform: translateX(-50%);
  pointer-events: none;
}

.fstec-carousel__track {
  border: 1px solid var(--color-gray-200);
}

.fstec-carousel__slide-content {
  row-gap: 20px;
  padding: 68px 20px;
}

.fstec-carousel__slide-image {
  max-width: 142px;
}

.fstec-carousel__slide-copy {
  max-width: 24ch;
}

.fstec-carousel__slide-copy {
  max-width: 34ch;
  line-height: 1.26;
}

.fstec-carousel__bg {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.fstec-carousel__bg--mobile {
  display: none;
}

.fstec-features__content-wrap {
  grid-template-columns: 1.4fr 1fr;
  gap: 80px 104px;
}

.fstec-features__content {
  row-gap: 40px;
}

.fstec-features__headline {
  max-width: 14ch;
}

.fstec-features__copy {
  max-width: 46ch;
}

.fstec-features__list {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 12px;
}

.fstec-features__list-item {
  row-gap: 20px;
  padding: 30px 38px;
  border: 1px solid var(--color-gray-100);
}

.fstec-features__sub-list-item {
  padding: 22px 0 22px 30px;
  border-top: 1px solid var(--color-gray-100);
}

.fstec-features__sub-list-item--red::before {
  background-color: var(--color-red);
}

.fstec-features__sub-list-item--blue::before {
  background-color: var(--color-blue-100);
}

.fstec-features__sub-list-item::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  content: "";
}

.fstec-features__outer-video-wrap {
  max-width: 427px;
}

.fstec-features__video-wrap {
  max-width: 427px;
  aspect-ratio: 427 / 476;
}

.fstec-features__video-container {
  inset: 0;
}

.fstec-features__video-container--top {
  clip-path: url(#cp-top);
}

.fstec-features__video-container--left {
  clip-path: url(#cp-left);
}

.fstec-features__video-container--right {
  clip-path: url(#cp-right);
}

.fstec-features__video-left,
.fstec-features__video-right {
  bottom: -2px;
  height: 80%;
}

.fstec-features__video-left {
  right: 0;
}

.fstec-features__video-toggle {
  top: calc(100% + 48px);
  left: 50%;
  transform: translateX(-50%);
}

.fstec-features__bg {
  top: 50%;
  left: 50%;
  max-width: unset;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.fstec-features__blur-bg {
  top: calc(50% + 100px);
  right: -150px;
  transform: translateY(-50%);
  pointer-events: none;
}

@media (max-width: 1420px) {
  .container-1420 {
    padding: 0 20px;
  }
}

@media (max-width: 1400px) {
  .container-1400,
  .container-1340 {
    padding: 0 20px;
  }

  .fstec-hero__video-toggle,
  .fstec-intro__video-toggle {
    left: 20px;
  }
}

@media (max-width: 1341px) {
  .fstec-logos__border {
    max-width: calc(100% - 40px);
    width: calc(100% - 40px);
  }
}

@media (max-width: 1079px) {
  :root {
    --spacing: 58px;
  }

  .type-h1 {
    font-size: 2.5rem;
  }

  .type-h2 {
    font-size: 2rem;
  }

  .type-h6 {
    font-size: 1.25rem;
  }

  .fstec-logos {
    padding-top: 35px;
  }

  .fstec-logos__content {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .fstec-logos__list {
    justify-content: space-between;
    width: 100%;
  }

  .fstec-stacked-content__bg {
    max-width: 663px;
    width: 663px;
    height: 310px;
  }

  .fstec-carousel__slide-content {
    padding: 40px;
  }

  .fstec-carousel__slide-copy {
    font-size: 1.5rem;
  }

  .fstec-features__content-wrap {
    grid-template-columns: 1fr;
    padding-bottom: 46px;
  }

  .fstec-features__list-item {
    padding: 32px 30px;
  }

  .fstec-features__list-item-title {
    font-size: 1.5rem;
  }

  .fstec-features__outer-video-wrap {
    width: 100%;
    margin: auto;
  }

  .fstec-intro__content {
    row-gap: 54px;
  }

  .fstec-intro__video-toggle {
    bottom: 0;
  }

  .fstec-intro__blur {
    width: 198px;
    height: 508px;
  }

  .fstec-intro__blur--desktop {
    display: none;
  }

  .fstec-intro__blur--mobile {
    display: block;
  }
}

@media (max-width: 767px) {
  .fstec-header {
    padding: 10px 0;
  }

  .fstec-header__logo {
    width: 66px;
    height: 44px;
  }

  .fstec-header__cta .fstec-button {
    grid-template-columns: 1fr;
    padding: 12px 16px;
  }

  .fstec-header__cta .fstec-circle-arrow {
    display: none;
  }

  .fstec-hero__subheadline,
  .fstec-hero__marquee-item {
    font-size: 1.25rem;
  }

  .fstec-hero__marquee {
    height: 73px;
  }

  .fstec-hero__marquee-item {
    padding: 0 20px;
  }

  .fstec-hero__video-toggle {
    bottom: 93px;
  }

  .fstec-logos__marquee {
    height: 54px;
  }

  .fstec-logos__marquee-item {
    left: 0;
    padding: 0 24px;
  }

  .fstec-logos__logo {
    width: 48px;
  }

  .fstec-intro__grid,
  .fstec-three-column__grid,
  .fstec-features__list,
  .fstec-intro__list {
    grid-template-columns: 1fr;
  }

  .fstec-intro__video {
    aspect-ratio: 1;
    object-fit: cover;
  }

  .fstec-three-column__content-wrap {
    gap: 10px;
    padding: 56px 28px 0;
  }

  .fstec-three-column__content {
    flex-direction: column;
  }

  .fstec-three-column__cta {
    margin: auto;
  }

  .fstec-three-column__grid-item {
    padding: 60px 0;
  }

  .fstec-three-column__grid-item:not(:last-of-type) {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .fstec-three-column__bg--desktop {
    display: none;
  }

  .fstec-three-column__bg--mobile {
    display: block;
  }

  .fstec-stacked-content__content-wrap {
    row-gap: 80px;
  }

  .fstec-stacked-content__cta-headline {
    font-size: 2rem;
  }

  .fstec-carousel__bg {
    top: 0;
  }

  .fstec-carousel__bg--desktop {
    display: none;
  }

  .fstec-carousel__bg--mobile {
    display: block;
  }

  .fstec-features__outer-video-wrap {
    max-width: 254px;
  }

  .fstec-features__video-wrap {
    max-width: 254px;
  }

  .fstec-features__video-toggle {
    top: calc(100% + 20px);
  }

  .fstec-features__bg {
    max-width: 333px;
  }

  .fstec-features__blur-bg {
    top: 50%;
    left: 50%;
    right: unset;
    transform: translate(-50%, -50%);
  }

  .fstec-stacked-content .fstec-button {
    grid-template-columns: 1fr 66px;
  }

  .fstec-stacked-content .fstec-circle-arrow {
    width: 66px;
    height: 66px;
  }

  .fstec-footer__top,
  .fstec-footer_bottom {
    flex-direction: column;
  }

  .fstec-footer__top {
    row-gap: 36px;
  }

  .fstec-footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
  }

  .fstec-footer__bottom {
    flex-direction: column;
    row-gap: 38px;
  }
}
