/* [project]/src/modules/home/components/hero-carousel/full-screen-scroll-fx.css [app-client] (css) */
.fx {
  background: var(--fx-page-bg);
  color: #000;
  width: 100%;
  font-family: var(--fx-font);
  letter-spacing: -.02em;
  --fx-section-height: 80vh;
  overflow: hidden;
}

.fx-debug {
  z-index: 9999;
  color: #000;
  background: #fffc;
  border-radius: 4px;
  padding: 6px 8px;
  font: 12px / 1 monospace;
  position: fixed;
  bottom: 10px;
  right: 10px;
}

.fx-fixed-section {
  height: var(--fx-section-height);
  position: relative;
}

.fx-fixed {
  height: var(--fx-section-height);
  background: var(--fx-page-bg);
  flex-direction: column;
  width: 100%;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.fx-grid {
  justify-content: space-between;
  align-items: center;
  gap: var(--fx-gap);
  padding: 0 var(--fx-grid-px);
  z-index: 2;
  flex-direction: column;
  height: 100%;
  display: flex;
  position: relative;
}

.fx-bgs {
  background: var(--fx-stage-bg);
  z-index: 1;
  position: absolute;
  inset: 0;
}

.fx-bg {
  position: absolute;
  inset: 0;
}

.fx-bg-layer {
  will-change: transform, opacity;
  position: absolute;
  inset: 0;
}

.fx-bg-img {
  -o-object-fit: cover;
  object-fit: cover;
  filter: brightness(.8);
  will-change: transform;
  width: 100%;
  height: 120%;
  position: absolute;
  inset: -10% 0;
}

.fx-bg-overlay {
  background: var(--fx-overlay);
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.fx-header {
  text-align: center;
  color: var(--fx-text);
  padding-top: 6vh;
  font-size: clamp(1rem, 3vw, 2rem);
  line-height: 1;
}

.fx-header > * {
  display: block;
}

.fx-content {
  width: 100%;
  padding: 0 var(--fx-grid-px);
  pointer-events: none;
  flex-grow: 1;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  display: grid;
}

.fx-content .fx-item {
  pointer-events: auto;
}

.fx-left, .fx-right {
  align-content: center;
  height: auto;
  display: grid;
  overflow: hidden;
}

.fx-left {
  justify-items: start;
}

.fx-right {
  justify-items: end;
}

.fx-track {
  will-change: transform;
}

.fx-item {
  color: var(--fx-text);
  letter-spacing: .06em;
  margin: calc(var(--fx-row-gap) / 2) 0;
  opacity: .35;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  font-size: clamp(.85rem, 1.8vw, 1.3rem);
  font-weight: 600;
  line-height: 1;
  transition: opacity .3s, transform .3s;
  position: relative;
}

.fx-left-item.active, .fx-right-item.active {
  opacity: 1;
}

.fx-left-item.active {
  padding-left: 16px;
  transform: translateX(10px);
}

.fx-right-item.active {
  padding-right: 16px;
  transform: translateX(-10px);
}

.fx-left-item.active:before, .fx-right-item.active:after {
  content: "";
  background: var(--fx-text);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.fx-left-item.active:before {
  left: 0;
}

.fx-right-item.active:after {
  right: 0;
}

.fx-center {
  text-align: center;
  place-items: center;
  height: auto;
  display: grid;
  overflow: hidden;
}

.fx-featured {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.fx-featured.active {
  opacity: 1;
  visibility: visible;
}

.fx-featured-title {
  color: var(--fx-text);
  letter-spacing: .02em;
  text-transform: none;
  margin: 0;
  font-size: clamp(1.6rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
}

.fx-featured-subtitle {
  color: var(--fx-text);
  letter-spacing: .04em;
  opacity: .8;
  text-transform: none;
  max-width: 480px;
  margin: 1rem auto 0;
  font-size: clamp(.9rem, 1.8vw, 1.2rem);
  font-weight: 300;
  line-height: 1.6;
}

.fx-word-mask {
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
}

.fx-word {
  vertical-align: middle;
  display: inline-block;
}

.fx-footer {
  text-align: center;
  z-index: 3;
  padding-bottom: 5vh;
  position: relative;
  bottom: 0;
}

.fx-footer-title {
  color: var(--fx-text);
  letter-spacing: .01em;
  font-size: clamp(1.4rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.2;
}

.fx-progress {
  background: #f5f5f547;
  width: 200px;
  height: 2px;
  margin: 1rem auto 0;
  position: relative;
}

.fx-progress-fill {
  background: var(--fx-text);
  width: 0%;
  height: 100%;
  transition: width .3s;
  position: absolute;
  inset: 0 auto 0 0;
}

.fx-progress-numbers {
  color: var(--fx-text);
  justify-content: space-between;
  font-size: .8rem;
  display: flex;
  position: absolute;
  inset: auto 0 100%;
}

.fx-end {
  place-items: center;
  height: 0;
  display: grid;
}

.fx-fin {
  color: #111;
  transform: rotate(90deg);
}

@media (width <= 900px) {
  .fx-content {
    grid-template-columns: 1fr;
    place-items: center;
    row-gap: 3vh;
  }

  .fx-left, .fx-right, .fx-center {
    height: auto;
  }

  .fx-left, .fx-right {
    justify-items: center;
    display: none;
  }

  .fx-track {
    transform: none !important;
  }
}


/*# sourceMappingURL=src_modules_home_components_hero-carousel_full-screen-scroll-fx_5968bd03.css.map*/