.tc31acy_h4x9p {
  --tc31acy_ink: #08131f;
  --tc31acy_muted: #5d6b7a;
  --tc31acy_surface_dark: #071827;
  --tc31acy_hairline: #d8e0eb;
  --tc31acy_pill: 999px;
  --tc31acy_shadow_soft: 0 20px 56px rgba(15, 23, 42, .12);
  box-sizing: border-box;
  position: relative;
  min-height: 100vh;
  margin: var(--margin_tb) 0;
  padding-top: 1px;
  color: #fff;
  background: var(--tc31acy_surface_dark);
  overflow: visible;
  isolation: isolate;
}

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

.tc31acy_h4x9p__stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.tc31acy_h4x9p__wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tc31acy_h4x9p__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 520ms ease, transform 760ms ease;
}

.tc31acy_h4x9p__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.tc31acy_h4x9p__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tc31acy_h4x9p__image.custom_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tc31acy_h4x9p__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 24, 39, .46), rgba(7, 24, 39, .58)),
    linear-gradient(90deg, rgba(7, 24, 39, .32), rgba(7, 24, 39, .08));
}

.tc31acy_h4x9p__content {
  position: relative;
  z-index: 2;
  width: var(--custom-content-max-width);
  max-width: calc(100% - var(--padding_lr) - var(--padding_lr));
  min-height: 100vh;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding-bottom: 48px;
}

.tc31acy_h4x9p__copy {
  display: grid;
  gap: 16px;
  justify-items: center;
  animation: tc31acy_h4x9p_copy_in 700ms ease both;
}

.tc31acy_h4x9p__copy.is-replaying {
  animation: none;
}

.tc31acy_h4x9p__tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--tc31acy_pill);
  padding: 12px 24px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: .8px;
  line-height: 1.15;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.tc31acy_h4x9p__title {
  max-width: none;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.tc31acy_h4x9p__lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .75);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
}

.tc31acy_h4x9p__tabs {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(40px, 9vh, 128px);
  display: flex;
  gap: 10px;
  padding: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--tc31acy_pill);
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(16px);
}

.tc31acy_h4x9p__tab {
  border: 0;
  border-radius: var(--tc31acy_pill);
  padding: 11px 18px;
  color: #fff;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tc31acy_h4x9p__tab.is-active,
.tc31acy_h4x9p__tab:hover,
.tc31acy_h4x9p__tab:focus-visible {
  color: var(--tc31acy_ink);
  background: #fff;
  transform: translateY(-1px);
  outline: 0;
}

@keyframes tc31acy_h4x9p_copy_in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 821px) {
  .tc31acy_h4x9p__tag {
    max-width: calc(100vw - var(--padding_lr) - var(--padding_lr));
    white-space: nowrap;
    font-size: clamp(24px, 2.45vw, 34px);
  }

  .tc31acy_h4x9p__title {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .tc31acy_h4x9p__content {
    width: 100%;
    max-width: calc(100% - var(--padding_lr) - var(--padding_lr));
    padding: 118px 0 150px;
    align-content: center;
  }

  .tc31acy_h4x9p__tag {
    font-size: clamp(21px, 5vw, 30px);
    border-radius: 34px;
  }

  .tc31acy_h4x9p__tabs {
    bottom: clamp(72px, 13vh, 110px);
    width: min(460px, calc(100% - var(--padding_lr) - var(--padding_lr)));
    justify-content: center;
  }

  .tc31acy_h4x9p__tab {
    flex: 1 1 0;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
  }

}

@media (max-width: 767px) {
  .tc31acy_h4x9p {
    --padding_lr: 2rem;
  }
}

@media (max-width: 560px) {
  .tc31acy_h4x9p {
    min-height: 844px;
  }

  .tc31acy_h4x9p__stage {
    min-height: 844px;
  }

  .tc31acy_h4x9p__content {
    width: 100%;
    max-width: calc(100% - var(--padding_lr) - var(--padding_lr));
    padding: 96px 0 240px;
  }

  .tc31acy_h4x9p__tag {
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 24px;
    font-size: 20px;
    line-height: 1.25;
    text-align: left;
  }

  .tc31acy_h4x9p__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .tc31acy_h4x9p__lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .tc31acy_h4x9p__tabs {
    bottom: 154px;
    display: grid;
    grid-template-columns: 1fr;
    width: calc(100% - var(--padding_lr) - var(--padding_lr));
    border-radius: 24px;
  }

  .tc31acy_h4x9p__tab {
    min-height: 42px;
  }
}

.rtlAr .tc31acy_h4x9p__tag {
  text-align: right;
}

@media (prefers-reduced-motion: reduce) {
  .tc31acy_h4x9p__slide,
  .tc31acy_h4x9p__tab {
    transition: none;
  }

  .tc31acy_h4x9p__copy {
    animation: none;
  }
}
