@charset "UTF-8";
.hlc_content_slider {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  background: #002236;
  color: #ffffff;
  overflow: visible;
  width: 100%;
  max-width: none;
}

/* Full-bleed breakout when nested in a centered page column */
.component.content:has(.hlc_content_slider),
.component.content:has(.hlc_content_slider) .component-content {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

.hlc_content_slider_inner,
.hlc_content_slider_track,
.hlc_content_slider_viewport {
  width: 100%;
  max-width: none;
}

.hlc_content_slider_inner {
  position: relative;
  margin: 0;
  overflow: visible;
}

/* Slides must span full viewport — not Bootstrap/Tailwind .container width */
.hlc_content_slider_slide.container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.hlc_content_slider_track {
  position: relative;
}

/*
 * Desktop sticky stack: each slide pins at top: 0 when it reaches the viewport top;
 * the next slide (higher z-index) scrolls up over the pinned slide.
 */
@media only screen and (min-width: 992px) {
  .hlc_content_slider {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .hlc_content_slider_track,
  .hlc_content_slider_viewport {
    position: relative;
    overflow: visible;
    height: auto;
    width: 100%;
  }
  .hlc_content_slider_scroll_spacer {
    display: none !important;
  }
  .hlc_content_slider_slide {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    z-index: var(--hlc-stack-index, 1);
    transform: none;
    transition: none;
    overflow: hidden;
    background: #002236;
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.35);
    margin: 0;
    margin-bottom: 0;
  }
  .hlc_content_slider_slide:last-child {
    margin-bottom: 0;
  }
  .hlc_content_slider_slide:first-child {
    box-shadow: none;
  }
  /* At viewport top (sticky engaged) */
  .hlc_content_slider_slide.is-pinned {
    top: 0;
  }
  .hlc_content_slider_slide.is-current {
    z-index: var(--hlc-stack-index, 1);
  }
}
@media only screen and (max-height: 750px) {
  .hlc_content_slider_slide::first-child {
    margin-bottom: 240px;
  }
}
.hlc_content_slider_slide::before {
  position: absolute;
  inset: 0;
  content: "";
  height: 10px;
  left: -100%;
  width: 300%;
  box-shadow: 0px -10px 12.5px 0px rgba(0, 0, 0, 0.5);
}

.hlc_content_slider_slide_inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100%;
  height: 100%;
}

.hlc_content_slider_copy {
  order: 1;
  padding: 15rem 0;
  background: #002236;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 52svh;
}

/* Horizontal entrance — first slide only */
.hlc_content_slider_slide:first-child .hlc_content_slider_copy {
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1), opacity 1200ms ease;
  transform: translateX(-600px);
  opacity: 0;
  will-change: transform, opacity;
  padding-right: 30px;
}

.hlc_content_slider_slide:not(:first-child) .hlc_content_slider_copy {
  transform: none;
  opacity: 1;
  transition: none;
}

.hlc_content_slider_media {
  order: 2;
  position: relative;
  min-height: 48svh;
  background: #0f3248;
  overflow: hidden;
}

.hlc_content_slider_bg_media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.hlc_content_slider_copy_label,
.hlc_content_slider_tile_label {
  display: inline-flex;
  align-items: end;
  gap: 1rem;
  font-family: "roobert_medium";
  letter-spacing: 0.01em;
  height: 60px;
  font-size: 2rem;
  line-height: 1.1;
}

@media only screen and (max-width: 991px) {
  .hlc_content_slider_copy_label,
  .hlc_content_slider_tile_label {
    height: 27px;
  }
}
.hlc_content_slider_copy_label {
  margin: 0 0 16px;
}

.hlc_content_slider_copy_label::before {
  content: "";
  width: 1px;
  height: 27px;
  background: #fff;
}

.hlc_content_slider_title {
  margin: 0 0 3rem;
  font-family: "roobert_medium";
  font-weight: 750;
  font-size: 35px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.hlc_content_slider_title em {
  color: #bff355;
}

.hlc_content_slider_desc {
  margin: 0 0 3rem;
  font-family: "roobert_regular";
  font-size: 2rem;
  line-height: 1.45;
  color: #ffffff;
  overflow-wrap: anywhere;
}

.hlc_content_slider_desc p {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 500;
  font-family: "roobert_regular";
}

.hlc_content_slider_tile {
  position: absolute;
  left: 2.4rem;
  right: 2.4rem;
  bottom: 2.4rem;
  max-width: 44rem;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: background-color 240ms ease;
  backdrop-filter: blur(50px);
}

.hlc_content_slider_slide:first-child .hlc_content_slider_tile {
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1), opacity 1200ms ease, background-color 240ms ease;
  transform: translateX(600px);
  opacity: 0;
  will-change: transform, opacity;
}

.hlc_content_slider_slide:not(:first-child) .hlc_content_slider_tile {
  transform: none;
  opacity: 1;
  transition: background-color 240ms ease;
}

.hlc_content_slider_tile:hover,
.hlc_content_slider_tile:focus-visible {
  text-decoration: none;
}

.hlc_content_slider_tile:focus-visible {
  outline: 2px solid #bff355;
  outline-offset: 2px;
}

.hlc_content_slider_tile_label {
  font-family: "roobert_medium";
  font-size: 1.8rem;
  font-weight: 750;
  line-height: 1.35;
  color: #002236;
}

.hlc_content_slider_tile_desc {
  margin: 0;
  font-family: "roobert_regular";
  line-height: 1.45;
  font-size: 1.8rem;
  overflow-wrap: anywhere;
}

.hlc_content_slider_tile_media {
  position: relative;
  overflow: hidden;
  display: block;
}

.hlc_content_slider_tile_media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 320ms ease;
}

.hlc_content_slider_tile:hover .hlc_content_slider_tile_media img,
.hlc_content_slider_tile:focus-visible .hlc_content_slider_tile_media img {
  transform: scale(1.08);
}

.hlc_content_slider_tile:hover .hlc_content_slider_tile_media::before,
.hlc_content_slider_tile:focus-visible .hlc_content_slider_tile_media::before {
  transform: rotate(45deg);
}

.hlc_content_slider_tile_media::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64px;
  height: 64px;
  background-image: url(../images/Common/cta-transform-arrow.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: center;
  transition: transform 0.3s ease;
  z-index: 3;
}

.hlc_content_slider_tile_media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2.4rem;
  height: 2.4rem;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
  z-index: 2;
}

.hlc_content_slider_tile:hover .hlc_content_slider_tile_media::after,
.hlc_content_slider_tile:focus-visible .hlc_content_slider_tile_media::after {
  transform: rotate(45deg);
}

.hlc_content_slider_progress {
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  z-index: 3;
}

.hlc_content_slider_copy_label,
.hlc_content_slider_title,
.hlc_content_slider_desc,
.hlc_content_slider_cta {
  max-width: 363px;
}

/* First slide only: play horizontal entrance when .has-animated is set */
.hlc_content_slider_slide:first-child.has-animated .hlc_content_slider_copy,
.hlc_content_slider_slide:first-child.has-animated .hlc_content_slider_tile {
  transform: translateX(0);
  opacity: 1;
}

.hlc_content_slider_slide:first-child.has-animated .hlc_content_slider_copy {
  transition-delay: 400ms;
}

.hlc_content_slider_slide:first-child.has-animated .hlc_content_slider_tile {
  transition-delay: 800ms;
}

/* Guard for initial load state */
.hlc_content_slider.is-initializing .hlc_content_slider_slide:first-child .hlc_content_slider_copy {
  transform: translateX(-600px);
  opacity: 0;
  transition: none;
}

.hlc_content_slider.is-initializing .hlc_content_slider_slide:first-child .hlc_content_slider_tile {
  transform: translateX(600px);
  opacity: 0;
  transition: none;
}

/* Short desktop viewports: tighten layout so insights tile stays in view. */
@media only screen and (min-width: 992px) and (max-height: 750px) {
  .hlc_content_slider_copy_label {
    margin-bottom: 12px;
    /* font-size: 20px; */
  }
  .hlc_content_slider_title {
    /* font-size: 3rem; */
    line-height: 1.1;
    margin: 0 0 16px;
  }
  .hlc_content_slider_desc {
    margin: 0 0 1.6rem;
    /* font-size: 1.5rem; */
  }
  .hlc_content_slider_desc p {
    /* font-size: 1.6rem; */
    line-height: 1.25;
  }
  .hlc_content_slider_tile {
    bottom: 16px;
    min-height: 0;
    padding: 1.6rem 0 0 1.6rem;
    width: min(786px, 100% - 40px);
  }
  .hlc_content_slider_tile_label {
    margin-bottom: 12px;
    /* font-size: 1.4rem; */
  }
  .hlc_content_slider_tile_desc {
    /* font-size: 1.6rem; */
    line-height: 1.25;
    margin-bottom: 0;
  }
  .hlc_content_slider_tile_media {
    height: 220px;
  }
}
@media only screen and (min-width: 992px) {
  .hlc_content_slider_slide_inner {
    grid-template-columns: minmax(320px, 31.39%) minmax(0, 1fr);
    width: 100%;
    /* max-width: none; */
  }
  .hlc_content_slider_copy {
    min-height: 100%;
    height: 100%;
    justify-content: flex-start;
    /* padding: clamp(4rem, 12vh, 8rem) clamp(2rem, 4vw, 5rem); */
    box-sizing: border-box;
  }
  .hlc_content_slider_media {
    min-height: 100%;
    height: 100%;
    width: 70vw;
    max-width: none;
  }
  .hlc_content_slider_copy_label {
    border-left: 1px solid #ffffff;
    padding: 28px 0 0 16px;
    font-size: 2rem;
    line-height: 1.1;
    margin: 0 0 40px;
  }
  .hlc_content_slider_copy_label::before {
    display: none;
  }
  .hlc_content_slider_title {
    font-size: 4.375rem;
    line-height: 1.15;
    margin: 0 0 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 767px) {
  .hlc_content_slider_title {
    font-size: 3.75rem;
    line-height: 1.15;
  }
}
@media only screen and (min-width: 992px) {
  .hlc_content_slider_desc {
    font-size: 2rem;
    line-height: 1.3;
    max-width: 343px;
    margin: 0 0 8rem;
  }
}
@media only screen and (min-width: 992px) {
  .hlc_content_slider_tile {
    left: 20px;
    bottom: 120px;
    width: 786px;
    max-width: none;
    min-height: 393px;
    padding: 5rem 0 0 5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(50px);
    color: #002236;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 353px;
    column-gap: 40px;
    row-gap: 0;
    align-items: start;
  }
}
@media only screen and (min-width: 992px) {
  .hlc_content_slider_tile_label {
    grid-column: 1;
    font-size: 1.8rem;
    font-weight: 400;
    font-family: "roobert_medium";
    line-height: 1.1;
    color: #002236;
    max-height: max-content;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .hlc_content_slider_tile_desc {
    grid-column: 1;
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 500;
    font-family: "roobert_regular";
    max-width: 313px;
    color: #002236;
    padding-right: 40px;
    grid-row: 2/span 3;
  }
}
@media only screen and (min-width: 992px) {
  .hlc_content_slider .cta-fill-arrow {
    margin-top: auto;
  }
}
@media only screen and (min-width: 992px) {
  .hlc_content_slider_tile_media {
    grid-column: 2;
    grid-row: 1/span 2;
    height: 353px;
    border-left: 6px solid #bff355;
  }
}
@media only screen and (min-width: 992px) {
  .hlc_content_slider_tile_media {
    border-top: 6px solid transparent;
    border-image: linear-gradient(90deg, #bff355 0%, #9fe3d9 50%, #b4e4ff 100%) 1;
  }
}
@media only screen and (min-width: 992px) {
  .hlc_content_slider_tile_media img {
    height: 100%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 992px) {
  .hlc_content_slider_tile_media::after {
    right: 0;
    bottom: 0;
    width: 64px;
    height: 64px;
    background-color: #bff355;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 32px;
    transform: none;
  }
}
@media only screen and (min-width: 992px) {
  .hlc_content_slider_tile:hover .hlc_content_slider_tile_media::after,
  .hlc_content_slider_tile:focus-visible .hlc_content_slider_tile_media::after {
    transform: none;
  }
}
@media only screen and (min-width: 1100px) {
  .hlc_content_slider_slide_inner {
    grid-template-columns: 30.95% 69.05%;
  }
  .hlc_content_slider_tile {
    width: 623px;
  }
  .hlc_content_slider_tile_desc {
    max-width: auto;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1100px) {
  .hlc_content_slider_tile {
    display: flex;
    max-width: 527px !important;
  }
  .hlc_content_slider_tile_desc {
    margin-bottom: 40px;
    padding-right: 40px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .hlc_content_slider_slide_inner {
    grid-template-columns: 30.95% 69.05%;
  }
  .hlc_content_slider_tile {
    width: 746px;
  }
}
@media only screen and (min-width: 1300px) {
  .hlc_content_slider_slide_inner {
    grid-template-columns: minmax(383px, 31.39%) minmax(806px, 68.61%);
  }
  .hlc_content_slider_tile {
    width: 786px;
  }
}
@media only screen and (max-width: 991px) {
  .hlc_content_slider {
    overflow: visible;
  }
  .hlc_content_slider_viewport {
    display: block;
  }
  .hlc_content_slider_scroll_spacer {
    display: none !important;
    height: 0 !important;
  }
  .hlc_content_slider_viewport,
  .hlc_content_slider_track,
  .hlc_content_slider_slide_inner {
    height: auto;
    min-height: 0;
  }
  .hlc_content_slider_viewport {
    position: relative;
    top: auto;
    overflow: visible;
  }
  .hlc_content_slider_track {
    height: auto;
  }
  .hlc_content_slider_slide {
    position: -webkit-sticky;
    position: sticky;
    top: -90px !important;
    inset: auto;
    width: auto;
    min-height: 0;
    height: auto;
    transform: none !important;
    transition: none;
    padding: 0;
    z-index: var(--hlc-stack-index, 1);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
  }
  .hlc_content_slider_slide.is-pinned {
    top: -90px !important;
  }
  .hlc_content_slider_slide:first-child {
    box-shadow: none;
  }
  /* Force immediate visibility on mobile - no horizontal motion */
  .hlc_content_slider_copy,
  .hlc_content_slider_tile {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .hlc_content_slider_copy {
    padding: 5rem 15px;
    min-height: auto;
    justify-content: flex-start;
  }
  .hlc_content_slider_media {
    min-height: 381px;
    background: #002236;
    padding: 4rem 15px;
  }
  .hlc_content_slider_tile {
    position: static;
    margin: 0;
    max-width: none;
  }
  .hlc_content_slider_title {
    font-size: 4.375rem;
    line-height: 1.3;
    font-weight: 400;
  }
  .hlc_content_slider_desc {
    font-size: 1.8rem;
  }
  .hlc_content_slider_tile_desc {
    font-size: 20px;
    color: #002236;
  }
  .hlc_content_slider_progress {
    right: 1.2rem;
    top: auto;
    bottom: 2rem;
    transform: none;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    letter-spacing: 0.04em;
  }
}
@media only screen and (max-width: 992px) {
  .hlc_content_slider_tile {
    border-left: 3px solid #bff355;
    border-top: 3px solid transparent;
    height: 100%;
    border-image: linear-gradient(90deg, #bff355 0%, #9fe3d9 50%, #b4e4ff 100%) 1;
  }
  .hlc_content_slider_tile .hlc_content_slider_tile_media {
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    display: flex;
    bottom: 0;
    right: 0;
    position: absolute;
    background: #bff355;
  }
  .hlc_content_slider_tile .hlc_content_slider_tile_media::after {
    width: 32px;
    height: 32px;
    right: unset;
    bottom: unset;
  }
  .hlc_content_slider_tile_media img {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hlc_content_slider_slide,
  .hlc_content_slider_slide:first-child .hlc_content_slider_copy,
  .hlc_content_slider_slide:first-child .hlc_content_slider_tile,
  .hlc_content_slider_tile_media img,
  .hlc_content_slider_tile_media::before,
  .hlc_content_slider_tile_media::after {
    transition: none !important;
  }
  .hlc_content_slider_slide:first-child .hlc_content_slider_copy,
  .hlc_content_slider_slide:first-child .hlc_content_slider_tile {
    transform: none !important;
    opacity: 1 !important;
  }
}
