.hero.container.\-2xl {
  --home-section-shell-gap: 1rem;
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 1536px;
  margin-inline: auto;
  padding-inline: 0;
}
.hero {
  --hero-cover-bg-desktop: none;
  --hero-cover-bg-mobile: var(--hero-cover-bg-desktop);
  --banner-description-color: hsl(0, 0%, 35%);
}

.hero:has([data-banner-variant=light].-active) {
  --color-primary: hsl(356, 85%, 57%);
  --color-surface: hsl(0, 0%, 100%);
  --banner-description-color: hsl(0, 0%, 35%);
  background-color: hsl(0, 0%, 100%);
}

.hero:has([data-banner-variant=brand].-active) {
  --color-primary: hsl(26, 100%, 94%);
  --color-surface: hsl(356, 85%, 57%);
  --banner-description-color: var(--color-primary);
  background-color: hsl(356, 85%, 57%);
}

.hero:has([data-banner-variant=cover].-active) {
  --color-primary: hsl(26, 100%, 94%);
  --color-surface: hsl(356, 85%, 57%);
  --banner-description-color: var(--color-primary);
  background-color: hsl(356, 85%, 57%);
  background-image: var(--hero-cover-bg-desktop);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero:has([data-banner-variant=cover].-active)::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  background: linear-gradient(270deg, rgba(217, 217, 217, 0) 2.37%, rgba(0, 0, 0, 0.38) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.hero:has([data-banner-variant=cover].-active)::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 50%;
  background: linear-gradient(270deg, rgba(217, 217, 217, 0) 2.37%, rgba(0, 0, 0, 0.38) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  transform: scaleX(-1);
  z-index: 0;
}

.hero:has([data-banner-variant=cover].-active) > .header:not(.-sticky),
.hero:has([data-banner-variant=cover].-active) > .banner {
  position: relative;
  z-index: 1;
}

.hero:has([data-banner-variant=cover].-active) > .banner {
  background-color: transparent;
}

.hero:has([data-banner-variant=brand].-active) > .header:not(.-sticky) .header__logo-img--default,
.hero:has([data-banner-variant=cover].-active) > .header:not(.-sticky) .header__logo-img--default {
  display: none;
}
.hero:has([data-banner-variant=brand].-active) > .header:not(.-sticky) .header__logo-img--peach,
.hero:has([data-banner-variant=cover].-active) > .header:not(.-sticky) .header__logo-img--peach {
  display: block;
}
.hero:has([data-banner-variant=brand].-active) > .header:not(.-sticky) .header__qr-decoration,
.hero:has([data-banner-variant=cover].-active) > .header:not(.-sticky) .header__qr-decoration {
  filter: brightness(0) invert(1);
}

.hero > .header {
  position: relative;
  z-index: 2;
  overflow: visible;
  width: 100%;
  padding-inline: 30px;
}

.hero > .header.-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 13000;
  background-color: hsl(0, 0%, 100%);
  --color-primary: hsl(356, 85%, 57%);
  --color-surface: hsl(0, 0%, 100%);
}

.hero > .header.-menu-open {
  z-index: 13000;
}

.hero > .banner {
  width: 100%;
}
.banner {
  --banner-mobile-content-inline: 32px;
  --banner-mobile-title-size: 38;
  --banner-mobile-title-line: 54;
  --banner-mobile-title-max-width: 280px;
  --banner-mobile-cta-width: 220px;
  --banner-mobile-cta-height: 56px;
  --banner-mobile-cta-size: 16;
  --banner-mobile-cta-line: 28;
  --banner-mobile-cta-icon-size: 24px;
  --banner-mobile-gap-title-cta: 36px;
  --banner-mobile-gap-cta-pagination: 48px;
  --banner-mobile-pagination-height: 16px;
  --banner-mobile-pagination-bottom: 32px;
  --banner-mobile-brand-content-top: 120px;
  --banner-mobile-brand-shape-top: 24px;
  position: relative;
  overflow: hidden;
  background-color: var(--color-surface);
}
.banner.-cursor-active {
  cursor: none;
}
.banner.-cursor-active:has(.banner__pagination:hover, .banner__navigation:hover, .banner__cta:hover) {
  cursor: auto;
}
.banner.-cursor-active:has(.banner__pagination:hover, .banner__navigation:hover, .banner__cta:hover) .banner__cursor {
  opacity: 0 !important;
}
.banner img {
  -webkit-user-drag: none;
}
.banner__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 40px;
}
.banner__pagination {
  --slider-pagination-color: var(--color-primary);
  --slider-pagination-gap: 12px;
  --slider-pagination-icon-width: 23px;
  --slider-pagination-icon-height: 24px;
  margin-bottom: 45px;
  margin-left: 1rem;
}
.banner__navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding-inline: 40px;
  z-index: 10;
}
.banner__slides {
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.banner__slides-wrapper {
  display: grid;
}
.banner__brand-mobile-shape {
  display: none;
  pointer-events: none;
}
.banner__brand-content-pagination {
  display: none;
}
.banner__brand-content-pagination > .banner__pagination {
  position: static;
  left: auto;
  bottom: auto;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.banner__slide {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms ease, visibility 400ms ease;
}
.banner__slide.-active {
  opacity: 1;
  visibility: visible;
}
.banner__slide--cover {
  grid-template-columns: 1fr 1fr;
}
.banner__slide--cover .banner__content {
  grid-column: 1/2;
}
.banner__slide--cover .banner__visual {
  display: none;
}
.banner__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 45px;
}
.banner__text {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.banner__title-svg {
  display: block;
  width: 100%;
  height: auto;
}
.banner__seo-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.banner__description {
  --font-size: 21.6px;
  --font-size-rem: 1.35rem;
  --line-height: 32px;
  --line-height-rem: 2rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 500;
  color: var(--banner-description-color);
  max-width: 451px;
}
.banner__cta {
  background-color: var(--color-primary);
  color: var(--color-surface);
  --font-size: 21.6px;
  --font-size-rem: 1.35rem;
  --line-height: 21.6px;
  --line-height-rem: 1.35rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 500;
  gap: 25px;
  padding: 20px 27px;
  align-self: flex-start;
  text-transform: none;
  text-decoration: none;
  transition: opacity 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.banner__cta:hover {
  opacity: 0.9;
}
.banner__cta-icon {
  --ola-mark-icon-width: 34px;
}
.banner__slide--light .banner__cta-icon {
  --ola-mark-icon-filter: brightness(0) invert(1);
}
.banner__visual {
  position: relative;
  align-self: stretch;
  min-height: 400px;
}
.banner__visual--brand {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
.banner__brand-shapes {
  display: block;
  width: 100%;
  height: auto;
}
.banner__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--color-primary);
  pointer-events: none;
}
.banner__picture {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.banner__image-card-area {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  box-sizing: border-box;
  pointer-events: none;
  visibility: hidden;
}
.banner__image-card-area-media {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
}
.banner__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  -webkit-user-drag: none;
  pointer-events: none;
}
.banner__cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 111px;
  height: 111px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  will-change: transform;
  color: var(--color-primary);
}
.banner__cursor svg {
  width: 100%;
  height: 100%;
  display: block;
}
.-cursor-active .banner__cursor {
  opacity: 1;
}
@media screen and (min-width: 1280px) {
  .hero > .header {
    padding-block: 30px;
  }
  .hero > .banner {
    width: auto;
    margin-inline: 32px;
    padding-top: 140px;
  }
  .banner__slide--brand {
    grid-template-columns: 1fr 1fr;
  }
  .banner__slide--brand .banner__content {
    grid-column: 1/2;
  }
  .banner__slide--brand .banner__visual--brand {
    grid-column: 2/3;
    grid-row: auto;
    padding-top: 0;
  }
}
@media screen and (max-width: 1535px) {
  .hero.container.\-2xl {
    width: auto;
    margin-inline: var(--home-section-shell-gap);
  }
}
@media screen and (max-width: 1279px) {
  .banner__slide {
    gap: 40px;
  }
  .banner__slide--light .banner__content {
    margin-bottom: 72px;
  }
}
@media screen and (max-width: 1023px) {
  .hero > .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background-color: transparent;
  }
  .hero:has([data-banner-variant=light].-active) > .header .header__qr-decoration {
    filter: brightness(0) invert(1);
  }
  .hero:has([data-banner-variant=cover].-active) {
    background-image: var(--hero-cover-bg-mobile, var(--hero-cover-bg-desktop));
  }
  .hero:has([data-banner-variant=cover].-active)::before {
    inset: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 3.87%, rgba(0, 0, 0, 0.58) 88.96%);
    mix-blend-mode: multiply;
    transform: none;
  }
  .hero:has([data-banner-variant=cover].-active)::after {
    content: none;
  }
  .hero > .header .header__logo-img {
    width: auto;
    max-width: none;
    height: 30px;
  }
  .hero:has([data-banner-variant=light].-active) > .header:not(.-sticky) .header__logo-img--default {
    display: none;
  }
  .hero:has([data-banner-variant=light].-active) > .header:not(.-sticky) .header__logo-img--peach {
    display: block;
  }
  .hero:has([data-banner-variant=light].-active) {
    --color-primary: hsl(26, 100%, 94%);
    --color-surface: hsl(356, 85%, 57%);
    --banner-description-color: var(--color-primary);
    background-color: hsl(356, 85%, 57%);
  }
  .hero:has([data-banner-variant=light].-active) .banner__cta-icon {
    --ola-mark-icon-filter: none;
  }
  .hero:has([data-banner-variant=cover].-active) > .header:not(.-sticky) {
    position: absolute;
    z-index: 5;
  }
  .banner {
    --banner-mobile-min-height: 800px;
    min-height: var(--banner-mobile-min-height);
  }
  .banner__inner {
    grid-template-columns: 1fr;
    position: relative;
  }
  .banner__pagination {
    --slider-pagination-gap: 6px;
    --slider-pagination-icon-width: 16.859px;
    --slider-pagination-icon-height: 16.859px;
    left: var(--banner-mobile-content-inline);
    bottom: var(--banner-mobile-pagination-bottom);
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    z-index: 3;
  }
  .banner__navigation {
    top: auto;
    transform: none;
    bottom: calc(var(--banner-mobile-pagination-bottom) - 16px);
    left: auto;
    right: var(--banner-mobile-content-inline);
    padding-inline: 0;
    justify-content: flex-end;
    gap: 8px;
  }
  .banner__navigation .slider-navigation__button {
    width: 48px;
    height: 48px;
  }
  .banner__navigation .slider-navigation__button img {
    width: 100%;
    height: 100%;
  }
  .banner__slides {
    order: 1;
    height: auto;
    min-height: var(--banner-mobile-min-height);
    max-height: none;
  }
  .banner__slide {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: var(--banner-mobile-min-height);
    position: relative;
    align-items: stretch;
  }
  .banner__slide--cover {
    grid-template-columns: 1fr;
  }
  .banner__slide--cover .banner__content {
    grid-column: auto;
  }
  .banner__slide--light .banner__content {
    margin-bottom: 0;
    padding-bottom: calc(var(--banner-mobile-pagination-bottom) + var(--banner-mobile-pagination-height) + var(--banner-mobile-gap-cta-pagination) + 24px);
  }
  .banner__content {
    align-items: flex-start;
    gap: var(--banner-mobile-gap-title-cta);
    justify-content: flex-end;
    margin-bottom: 0;
    min-height: var(--banner-mobile-min-height);
    padding-bottom: calc(var(--banner-mobile-pagination-bottom) + var(--banner-mobile-pagination-height) + var(--banner-mobile-gap-cta-pagination));
    padding-inline: var(--banner-mobile-content-inline);
    position: relative;
    z-index: 2;
  }
  .banner__text {
    gap: 0;
  }
  .banner__title {
    max-width: var(--banner-mobile-title-max-width);
  }
  .banner__description {
    display: none;
  }
  .banner__cta {
    background-color: var(--color-primary);
    color: var(--color-surface);
    font-size: calc(var(--banner-mobile-cta-size) / 16 * 1rem);
    line-height: calc(var(--banner-mobile-cta-line) / 16 * 1rem);
    gap: 17px;
    height: var(--banner-mobile-cta-height);
    justify-content: flex-start;
    min-height: var(--banner-mobile-cta-height);
    padding: 0 22px;
    width: var(--banner-mobile-cta-width);
  }
  .banner__cta-icon {
    --ola-mark-icon-width: var(--banner-mobile-cta-icon-size);
  }
  .banner__visual {
    inset: 0;
    min-height: 100%;
    position: absolute;
    z-index: 1;
  }
  .banner__overlay {
    display: none;
  }
  .banner__image-card-area {
    display: none;
  }
  .banner__image {
    object-fit: cover;
    object-position: center left;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__inner {
    align-items: flex-start;
    gap: 0;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__slides {
    order: 1;
    height: auto;
    max-height: none;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__slide {
    min-height: auto;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__slide .banner__content {
    min-height: auto;
    padding-bottom: 0;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__slide--brand {
    min-height: auto;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__slide--brand .banner__content {
    gap: var(--banner-mobile-gap-title-cta);
    justify-content: flex-start;
    min-height: auto;
    padding-top: var(--banner-mobile-brand-content-top);
    padding-bottom: 0;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__slide--brand .banner__text {
    gap: 18px;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__slide--brand .banner__description {
    display: block;
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 24px;
    --line-height-rem: 1.5rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
    max-width: 310px;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__slide--brand .banner__visual--brand {
    display: none;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__slide {
    min-height: var(--banner-mobile-min-height);
  }
  .hero:has([data-banner-variant=brand].-active) .banner__slide .banner__content {
    min-height: auto;
    padding-bottom: 0;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__slide--brand {
    min-height: var(--banner-mobile-min-height);
    grid-template-rows: auto 1fr;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__slide--brand .banner__content {
    gap: var(--banner-mobile-gap-title-cta);
    justify-content: flex-start;
    padding-top: var(--banner-mobile-brand-content-top);
    padding-bottom: 0;
    grid-row: 1;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__slide--brand .banner__description {
    display: block;
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 24px;
    --line-height-rem: 1.5rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
    max-width: 310px;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__slide--brand .banner__visual--brand {
    display: flex;
    position: relative;
    inset: auto;
    z-index: 1;
    min-height: 0;
    align-items: flex-end;
    justify-content: center;
    padding: 0 16px 16px;
    grid-row: 2;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__inner > [data-slider-pagination] {
    display: block;
  }
  .hero:has([data-banner-variant=brand].-active) .banner__brand-content-pagination {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .banner__text {
    gap: 16px;
  }
  .banner__cta {
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 16px;
    --line-height-rem: 1rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
    padding: 16px 20px;
  }
  .banner__cta-icon {
    --ola-mark-icon-width: 24px;
  }
}
.ola-card {
  --ola-card-bg: var(--color-surface);
  --ola-card-accent: hsl(356, 85%, 57%);
  --ola-card-hole: #f9d5b9;
  --ola-card-copy: #595959;
  padding: 200px 0 104px;
  background-color: var(--ola-card-bg);
}
.ola-card__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  margin-bottom: 58px;
}
.ola-card__card {
  grid-column: 2;
  position: relative;
  width: 250px;
  height: 390px;
  border: 2.207px solid var(--ola-card-accent);
  border-radius: 23.178px;
}
.ola-card__logo {
  position: absolute;
  top: 44.5px;
  left: 30px;
  width: 128.094px;
  height: 39.285px;
  object-fit: contain;
}
.ola-card__troy {
  position: absolute;
  right: 38px;
  bottom: 34px;
  width: 106.341px;
  height: 48.971px;
}
.ola-card__troy-logo {
  display: block;
  width: 100%;
  height: 100%;
}
.ola-card__wifi {
  grid-column: 3;
  justify-self: end;
  width: 227.527px;
  height: 227.528px;
  margin-top: 16px;
}
.ola-card__wifi-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.ola-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  text-align: center;
}
.ola-card__title {
  margin: 0;
  color: var(--ola-card-accent);
  --font-size: 83.586px;
  --font-size-rem: 5.224125rem;
  --line-height: 103.369px;
  --line-height-rem: 6.4605625rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 700;
  text-wrap: balance;
}
.ola-card__title-line {
  display: block;
}
.ola-card__title-holes {
  color: var(--ola-card-hole);
}
.ola-card__title-hole {
  color: inherit;
}
.ola-card__mobile-break {
  display: none;
}
.ola-card__fill {
  display: none;
}
.ola-card__description {
  margin: 0;
  max-width: 616px;
  color: var(--ola-card-copy);
  --font-size: 18px;
  --font-size-rem: 1.125rem;
  --line-height: 32px;
  --line-height-rem: 2rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .ola-card {
    padding: 40px 0 21px;
  }
  .ola-card__top {
    display: flex;
    justify-content: center;
    margin-bottom: 38px;
  }
  .ola-card__card {
    width: clamp(180px, 56vw, 250px);
    height: auto;
    aspect-ratio: 250/390;
    border-radius: 9.2712%;
    overflow: hidden;
    isolation: isolate;
    --ola-card-fill-progress: 0;
  }
  .ola-card__fill {
    position: absolute;
    inset: 0;
    display: block;
    pointer-events: none;
    z-index: 1;
    background-image: url("/assets/image/olatl-card.webp");
    background-size: cover;
    background-position: center;
    clip-path: inset(0 0 calc((1 - var(--ola-card-fill-progress, 0)) * 100%) 0);
    will-change: clip-path;
  }
  .ola-card__logo {
    top: 11.4103%;
    left: 12%;
    width: 51.2376%;
    height: auto;
    aspect-ratio: 128.094/39.285;
  }
  .ola-card__troy {
    right: 15.2%;
    bottom: 8.7179%;
    width: 42.5364%;
    height: auto;
    aspect-ratio: 106.341/48.971;
  }
  .ola-card__wifi {
    display: none;
  }
  .ola-card__content {
    gap: 16px;
  }
  .ola-card__title {
    max-width: 340px;
    --font-size: 47px;
    --font-size-rem: 2.9375rem;
    --line-height: 63.4px;
    --line-height-rem: 3.9625rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .ola-card__mobile-break {
    display: block;
  }
  .ola-card__description {
    max-width: 299px;
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 30px;
    --line-height-rem: 1.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
}
.feature-slider {
  --feature-slider-surface: hsl(26, 100%, 94%);
  --feature-slider-brand-primary: hsl(356, 85%, 57%);
  --feature-slider-active-card-bg: var(--feature-slider-brand-primary);
  --feature-slider-text-dark: hsl(0, 0%, 35%);
  --feature-slider-text-light: hsl(0, 0%, 100%);
  --feature-slider-card-bg: hsl(0, 0%, 100%);
  --feature-slider-card-width: 710px;
  --feature-slider-card-height-passive: 366px;
  --feature-slider-card-height-active: 389px;
  --feature-slider-card-gap: 27px;
  --feature-slider-card-radius-active: 22px;
  --feature-slider-edge-peek: 160px;
  --color-primary: var(--feature-slider-brand-primary);
  --color-surface: var(--feature-slider-surface);
  --banner-mobile-cta-width: 220px;
  --banner-mobile-cta-height: 56px;
  --banner-mobile-cta-size: 16;
  --banner-mobile-cta-line: 28;
  --banner-mobile-cta-icon-size: 24px;
  position: relative;
  overflow: hidden;
  padding: 41px 0 84px;
  background-color: var(--feature-slider-surface);
}
.feature-slider.-dragging {
  user-select: none;
  -webkit-user-select: none;
}
.feature-slider__container.container.\-2xl {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 0;
  position: relative;
}
.feature-slider__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 16px;
  padding-inline: clamp(16px, 4vw, 120px);
}
.feature-slider__pagination {
  --slider-pagination-color: var(--feature-slider-brand-primary);
  --slider-pagination-gap: 6px;
  --slider-pagination-icon-width: 23px;
  --slider-pagination-icon-height: 24px;
  display: inline-flex;
}
.feature-slider__pagination-proxy {
  display: none;
}
.feature-slider__viewport {
  overflow: hidden;
  width: 100%;
  min-height: var(--feature-slider-card-height-active);
}
.feature-slider__carousel {
  overflow: visible;
}
.feature-slider__track {
  align-items: flex-end;
  touch-action: pan-y;
  min-height: var(--feature-slider-card-height-active);
}
.feature-slider__navigation {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin-top: 25.5px;
  padding-inline: 4px;
  pointer-events: none;
}
.feature-slider__footer {
  display: flex;
  justify-content: center;
  margin-top: 25.5px;
  padding-inline: 16px;
}
.feature-slider__cta {
  --font-size: 21px;
  --font-size-rem: 1.3125rem;
  --line-height: 21px;
  --line-height-rem: 1.3125rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  background-color: transparent;
  color: var(--feature-slider-brand-primary);
  border: 1px solid var(--feature-slider-brand-primary);
  gap: 25px;
  max-width: 100%;
  text-decoration: none;
  transition: opacity 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95), background-color 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.feature-slider__cta.banner__cta:hover, .feature-slider__cta:hover, .feature-slider__cta:focus-visible {
  opacity: 1;
  background-color: var(--feature-slider-brand-primary);
  color: var(--feature-slider-surface);
}
.feature-slider__cta.banner__cta:hover .feature-slider__cta-icon, .feature-slider__cta:hover .feature-slider__cta-icon, .feature-slider__cta:focus-visible .feature-slider__cta-icon {
  --ola-mark-icon-filter: brightness(0) invert(1);
}
.feature-slider__cta-icon {
  --ola-mark-icon-width: 34px;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 295px) minmax(0, 1fr);
  align-items: center;
  column-gap: 52px;
  flex-shrink: 0;
  width: var(--feature-slider-card-width);
  height: var(--feature-slider-card-height-passive);
  padding: 16px 60px;
  background-color: var(--feature-slider-card-bg);
  color: var(--feature-slider-brand-primary);
  transition: height 0.3s ease, padding 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease, color 0.3s ease;
}
.feature-card__content {
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: flex-start;
  gap: 16px;
}
.feature-card__title {
  margin: 0;
  color: currentColor;
  --font-size: 38px;
  --font-size-rem: 2.375rem;
  --line-height: 43.7px;
  --line-height-rem: 2.73125rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.feature-card.swiper-slide-active .feature-card__title::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 22px;
  margin-inline-start: 24px;
  background-image: url("/assets/svg/chevron-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: baseline;
  transform: translateY(1px);
}
.feature-card__description {
  margin: 0;
  color: var(--feature-slider-text-dark);
  --font-size: 18px;
  --font-size-rem: 1.125rem;
  --line-height: 32px;
  --line-height-rem: 2rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 500;
  transition: color 0.3s ease;
}
.feature-card__media {
  position: relative;
  width: min(100%, 260px);
  height: 199px;
  justify-self: end;
  align-self: center;
}
.feature-card__media-static {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.feature-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.feature-card--svg-only .feature-card__image {
  transition: filter 0.3s ease;
}
.feature-card--svg-only[data-feature-slider-active=true] .feature-card__image {
  filter: brightness(0) invert(1);
}
.feature-card[data-feature-slider-active=true] {
  height: var(--feature-slider-card-height-active);
  border-radius: var(--feature-slider-card-radius-active);
  padding: 16px 80px 16px 60px;
  background-color: var(--feature-slider-active-card-bg);
  color: var(--feature-slider-text-light);
}
.feature-card[data-feature-slider-active=true] .feature-card__description {
  color: var(--feature-slider-text-light);
}
@media screen and (max-width: 1535px) {
  .feature-slider__header {
    padding-inline: clamp(16px, 3vw, 56px);
  }
}
@media screen and (max-width: 1279px) {
  .feature-slider {
    --feature-slider-card-width: 640px;
    --feature-slider-card-height-passive: 336px;
    --feature-slider-card-height-active: 360px;
  }
  .feature-slider__header {
    margin-bottom: 16px;
  }
  .feature-slider__navigation {
    padding-inline: 4px;
  }
  .feature-card {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    column-gap: 36px;
    padding: 16px 40px;
  }
  .feature-card__title {
    --font-size: 32px;
    --font-size-rem: 2rem;
    --line-height: 38px;
    --line-height-rem: 2.375rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .feature-card__description {
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 28px;
    --line-height-rem: 1.75rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .feature-card__media {
    width: min(100%, 220px);
    height: 170px;
  }
  .feature-card[data-feature-slider-active=true] {
    padding: 16px 48px 16px 40px;
  }
}
@media screen and (max-width: 1023px) {
  .feature-slider {
    --feature-slider-card-width: min(85vw, 560px);
    --feature-slider-card-height-passive: auto;
    --feature-slider-card-height-active: auto;
    --feature-slider-edge-peek: 18px;
    padding: 24px 0 55px;
  }
  .feature-slider__container.container.\-2xl {
    display: flex;
    flex-direction: column;
  }
  .feature-slider__header {
    order: 2;
    justify-content: center;
    margin: 24px 0 0;
    padding-inline: 16px;
  }
  .feature-slider__pagination {
    --slider-pagination-icon-width: 16.859px;
    --slider-pagination-icon-height: 16.859px;
  }
  .feature-slider__viewport {
    order: 1;
  }
  .feature-slider__track {
    align-items: stretch;
  }
  .feature-slider__navigation {
    position: absolute;
    top: calc(var(--feature-slider-viewport-height, 382px) / 2);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin-top: 0;
    padding-inline: 4px;
    justify-content: space-between;
    z-index: 10;
  }
  .feature-slider .slider-navigation__button {
    width: 48px;
    height: 48px;
  }
  .feature-slider .slider-navigation__button img {
    width: 100%;
    height: 100%;
  }
  .feature-slider__footer {
    order: 3;
    margin-top: 24px;
    padding-inline: 16px;
  }
  .feature-slider__cta {
    width: min(100%, 340px);
    min-height: 56px;
    height: auto;
    padding: 12px 16px;
    justify-content: center;
    gap: 17px;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
    border-width: 1px;
  }
  .feature-slider__cta.-outline {
    width: 100%;
  }
  .feature-slider__cta-icon {
    --ola-mark-icon-width: 24px;
  }
  .feature-card {
    grid-template-columns: 1fr;
    row-gap: 20px;
    align-items: stretch;
    width: var(--feature-slider-card-width);
    height: auto;
    padding: 16px 28px;
  }
  .feature-card__content {
    gap: 16px;
  }
  .feature-card__title {
    max-width: 250px;
    --font-size: 34px;
    --font-size-rem: 2.125rem;
    --line-height: 38px;
    --line-height-rem: 2.375rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .feature-card__description {
    max-width: 280px;
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 26px;
    --line-height-rem: 1.625rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .feature-card__media {
    width: min(100%, 210px);
    height: 132px;
    justify-self: end;
  }
  .feature-card[data-feature-slider-active=true] {
    height: auto;
    padding: 16px 28px;
  }
  .feature-slider__container.container.\-2xl {
    display: flex;
    flex-direction: column;
  }
  .feature-slider__viewport {
    order: 1;
  }
  .feature-slider__header {
    order: 2;
    justify-content: center;
    margin: 45px 0 0;
    padding-inline: 16px;
  }
  .feature-slider__footer {
    order: 3;
    margin-top: 45px;
    padding-inline: 16px;
  }
}
@media screen and (max-width: 767px) {
  .feature-slider {
    --feature-slider-card-width: calc(100vw - 32px);
  }
  .feature-card {
    padding: 48px;
  }
  .feature-card__title {
    max-width: none;
  }
  .feature-card.swiper-slide-active .feature-card__title::after {
    content: none;
  }
  .feature-card__description {
    max-width: none;
  }
  .feature-card__media {
    justify-self: center;
  }
  .feature-card[data-feature-slider-active=true] {
    padding: 48px;
  }
}
.home-use-cases {
  --home-section-shell-gap: 1rem;
  --home-use-cases-surface: hsl(26, 100%, 94%);
  --home-use-cases-accent: hsl(356, 85%, 57%);
  --home-use-cases-copy: hsl(0, 0%, 35%);
  --home-use-cases-counter-muted: #ddd;
  position: relative;
  overflow: hidden;
  padding: 86px 0 64px;
  margin-bottom: 161px;
  background-color: var(--home-use-cases-surface);
}
.home-use-cases.-dragging {
  user-select: none;
  -webkit-user-select: none;
}
.home-use-cases__container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid var(--home-use-cases-accent);
  background-color: hsl(0, 0%, 95%);
  position: relative;
}
.home-use-cases__viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}
.home-use-cases__track {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 420ms cubic-bezier(0.645, 0.045, 0.355, 1);
  touch-action: pan-y;
}
.home-use-cases__slide {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  align-items: center;
  column-gap: 1rem;
  padding: 6rem 8rem 0;
  min-height: 562px;
}
.home-use-cases__content {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}
.home-use-cases__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 32px;
  position: relative;
  padding-top: 70px;
}
.home-use-cases__slide-counter {
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  width: 79.867px;
  height: 79.867px;
  border-radius: 50%;
  background-color: hsl(0, 0%, 100%);
  border: 1.439px solid hsl(356, 85%, 57%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.home-use-cases__slide-counter-value {
  display: inline-flex;
  align-items: baseline;
  transform: rotate(-9.05deg);
  color: hsl(356, 85%, 57%);
  --font-size: 27.352px;
  --font-size-rem: 1.7095rem;
  --line-height: 28.831px;
  --line-height-rem: 1.8019375rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 700;
  white-space: nowrap;
}
.home-use-cases__slide-counter-total {
  color: var(--home-use-cases-counter-muted);
}
.home-use-cases__navigation {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-left: 8rem;
  pointer-events: none;
}
.home-use-cases__eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--home-use-cases-accent);
  --font-size: 22.741px;
  --font-size-rem: 1.4213125rem;
  --line-height: 23.97px;
  --line-height-rem: 1.498125rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.home-use-cases__eyebrow-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: currentColor;
  flex-shrink: 0;
}
.home-use-cases__title {
  margin: 0;
  color: var(--home-use-cases-accent);
  --font-size: 88.745px;
  --font-size-rem: 5.5465625rem;
  --line-height: 93.542px;
  --line-height-rem: 5.846375rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.home-use-cases__title-line {
  display: block;
}
.home-use-cases__description {
  margin: 0;
  max-width: 480px;
  color: var(--home-use-cases-copy);
  --font-size: 20px;
  --font-size-rem: 1.25rem;
  --line-height: 32px;
  --line-height-rem: 2rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 500;
}
.home-use-cases__visual {
  justify-self: center;
  width: min(100%, 304px);
  border: 6px solid hsl(26, 65%, 77%);
  border-radius: 50px;
  overflow: hidden;
}
.home-use-cases__visual-image {
  display: block;
  width: 100%;
  height: auto;
}
.home-use-cases__pagination {
  --slider-pagination-color: var(--home-use-cases-accent);
  --slider-pagination-gap: 6px;
  --slider-pagination-icon-width: 23px;
  --slider-pagination-icon-height: 24px;
  align-self: flex-end;
  margin-top: 24px;
  margin-bottom: 50px;
  padding-inline: 8rem;
}
@media screen and (max-width: 1535px) {
  .home-use-cases__container {
    width: auto;
    margin-inline: var(--home-section-shell-gap);
    padding-inline: 0;
  }
}
@media screen and (max-width: 1279px) {
  .home-use-cases__title {
    --font-size: 72px;
    --font-size-rem: 4.5rem;
    --line-height: 78px;
    --line-height-rem: 4.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
}
@media screen and (max-width: 1023px) {
  .home-use-cases {
    padding: 10px 0 55px;
    margin-bottom: 0;
  }
  .home-use-cases__container {
    gap: 0;
    padding-inline: 0;
    border-width: 1px;
  }
  .home-use-cases__slide {
    min-height: auto;
    grid-template-columns: 1fr;
    row-gap: 52px;
    align-items: start;
    padding: 38px 33px 40px 40px;
  }
  .home-use-cases__content {
    min-height: auto;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
  }
  .home-use-cases__body {
    gap: 22px;
    justify-content: flex-start;
    padding-top: 64px;
  }
  .home-use-cases__slide-counter {
    top: 0;
    right: 0;
    width: 62px;
    height: 62px;
    border-width: 1px;
  }
  .home-use-cases__navigation {
    position: absolute;
    top: calc(var(--home-use-cases-viewport-height, 0px) / 2);
    left: calc(var(--home-section-shell-gap) * -1);
    right: calc(var(--home-section-shell-gap) * -1);
    padding-inline: 4px;
    margin-top: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    z-index: 10;
  }
  .home-use-cases__navigation .slider-navigation__button {
    width: 48px;
    height: 48px;
  }
  .home-use-cases__navigation .slider-navigation__button img {
    width: 100%;
    height: 100%;
  }
  .home-use-cases__eyebrow {
    gap: 8.456px;
    --font-size: 16.025px;
    --font-size-rem: 1.0015625rem;
    --line-height: 16.892px;
    --line-height-rem: 1.05575rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-use-cases__eyebrow-dot {
    width: 9.866px;
    height: 9.866px;
  }
  .home-use-cases__title {
    --font-size: 45px;
    --font-size-rem: 2.8125rem;
    --line-height: 60px;
    --line-height-rem: 3.75rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-use-cases__description {
    max-width: 100%;
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 30px;
    --line-height-rem: 1.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-use-cases__visual {
    justify-self: center;
    width: 189.983px;
    border-radius: 32px;
  }
  .home-use-cases__pagination {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .home-use-cases__title {
    --font-size: 45px;
    --font-size-rem: 2.8125rem;
    --line-height: 60px;
    --line-height-rem: 3.75rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-use-cases__description {
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 30px;
    --line-height-rem: 1.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-use-cases__visual {
    width: 189.983px;
  }
}
.home-fee-limits {
  --home-section-shell-gap: 1rem;
  --home-fee-limits-content-gap: 34px;
  --home-fee-limits-easy-bg: hsla(333, 84%, 88%, 1);
  --home-fee-limits-easy-copy: hsla(356, 85%, 57%, 1);
  --home-fee-limits-plus-bg: hsla(0, 0%, 22%, 1);
  --home-fee-limits-plus-copy: hsla(26, 100%, 94%, 1);
  --home-fee-limits-badge-info-copy: hsla(0, 0%, 22%, 1);
  --home-fee-limits-note-copy: hsla(0, 0%, 35%, 1);
  overflow: hidden;
}
.home-fee-limits__container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1780px;
  margin-inline: auto;
  background: linear-gradient(to right, var(--home-fee-limits-easy-bg) 50%, var(--home-fee-limits-plus-bg) 50%);
}
.home-fee-limits__layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}
.home-fee-limits__column {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 820px;
  padding: 130px 40px;
}
.home-fee-limits__column--easy {
  color: var(--home-fee-limits-easy-copy);
}
.home-fee-limits__column--plus {
  color: var(--home-fee-limits-plus-copy);
}
.home-fee-limits__content {
  width: min(100%, 380px);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--home-fee-limits-content-gap);
}
.home-fee-limits__eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  --font-size: 22.741px;
  --font-size-rem: 1.4213125rem;
  --line-height: 23.97px;
  --line-height-rem: 1.498125rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 700;
}
.home-fee-limits__eyebrow-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: currentColor;
  flex-shrink: 0;
}
.home-fee-limits__badge-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-end;
}
.home-fee-limits__badge-wrap.is-note-open {
  z-index: 4;
}
.home-fee-limits__badge {
  position: relative;
  width: 152.839px;
  height: 152.839px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-19.79deg);
}
.home-fee-limits__badge--interactive {
  appearance: none;
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.home-fee-limits__badge--interactive:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 8px;
}
.home-fee-limits__badge-info {
  position: absolute;
  top: 18px;
  right: 4px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-color: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.home-fee-limits__badge-info-text {
  color: var(--home-fee-limits-badge-info-copy);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 22.443px;
  line-height: 1;
  font-weight: 700;
}
.home-fee-limits__badge-wrap--easy .home-fee-limits__badge-info-text {
  color: #fff;
}
.home-fee-limits__badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  --font-size: 22.443px;
  --font-size-rem: 1.4026875rem;
  --line-height: 23.656px;
  --line-height-rem: 1.4785rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 700;
  text-align: center;
}
.home-fee-limits__badge-line {
  display: block;
}
.home-fee-limits__title {
  margin: 0;
  --font-size: 80px;
  --font-size-rem: 5rem;
  --line-height: 79.5px;
  --line-height-rem: 4.96875rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 700;
  max-width: 70%;
}
.home-fee-limits__title-line {
  display: block;
}
.home-fee-limits__cta {
  background-color: var(--home-fee-limits-cta-bg, var(--home-fee-limits-easy-copy));
  color: var(--home-fee-limits-cta-copy, var(--home-fee-limits-plus-copy));
  align-self: flex-start;
  max-width: 100%;
  text-decoration: none;
  white-space: normal;
  --font-size: 21.6px;
  --font-size-rem: 1.35rem;
  --line-height: 21.6px;
  --line-height-rem: 1.35rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 500;
  gap: 25px;
  padding: 20px 27px;
  transition: opacity 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95), background-color 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95), color 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.home-fee-limits__cta:hover, .home-fee-limits__cta:focus-visible {
  opacity: 0.9;
}
.home-fee-limits__cta--easy {
  --home-fee-limits-cta-bg: var(--home-fee-limits-easy-copy);
  --home-fee-limits-cta-copy: var(--home-fee-limits-plus-copy);
}
.home-fee-limits__cta--plus {
  --home-fee-limits-cta-bg: var(--home-fee-limits-plus-copy);
  --home-fee-limits-cta-copy: var(--home-fee-limits-easy-copy);
}
.home-fee-limits__cta-icon {
  --ola-mark-icon-width: 34px;
}
.home-fee-limits__cta--easy .home-fee-limits__cta-icon {
  --ola-mark-icon-filter: brightness(0) invert(1);
}
.home-fee-limits__description {
  flex: 1;
  --font-size: 20px;
  --font-size-rem: 1.25rem;
  --line-height: 32px;
  --line-height-rem: 2rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 500;
}
.home-fee-limits__description p {
  margin: 0;
}
.home-fee-limits__description p + p {
  margin-top: 32px;
}
.home-fee-limits__description-note[hidden] {
  display: none;
}
.home-fee-limits__description-note {
  position: absolute;
  bottom: calc(100% + 14px);
  right: -18px;
  z-index: 2;
  box-sizing: border-box;
  width: min(268px, 100vw - 48px);
  padding: 18px 40px 24px 23px;
  border-radius: 30px;
  background-color: var(--home-fee-limits-plus-copy);
  box-shadow: 0 20px 48px hsla(0, 0%, 0%, 0.18);
  color: var(--home-fee-limits-note-copy);
  text-align: left;
}
.home-fee-limits__description-note-copy {
  margin: 0;
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 17px;
  --line-height-rem: 1.0625rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 500;
}
.home-fee-limits__description-note-close {
  position: absolute;
  top: 16px;
  right: 14px;
  width: 18px;
  height: 18px;
  border: 0;
  padding: 0;
  background: none;
  color: var(--home-fee-limits-note-copy);
  cursor: pointer;
}
.home-fee-limits__description-note-close::before, .home-fee-limits__description-note-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 8px;
  border-radius: 999px;
  background-color: currentColor;
}
.home-fee-limits__description-note-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.home-fee-limits__description-note-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.home-fee-limits__description-note-close:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.home-fee-limits__phone {
  align-self: center;
  width: 327px;
  margin: 0;
}
.home-fee-limits__phone-image {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border-radius: 51px;
  border: 6px solid hsl(26, 100%, 94%);
}
@media screen and (min-width: 1024px) {
  .home-fee-limits__eyebrow + .home-fee-limits__badge-wrap, .home-fee-limits__badge-wrap + .home-fee-limits__title {
    margin-top: calc(var(--home-fee-limits-content-gap) * -1);
  }
}
@media screen and (max-width: 1779px) {
  .home-fee-limits__container {
    width: auto;
    margin-inline: var(--home-section-shell-gap);
  }
}
@media screen and (max-width: 1279px) {
  .home-fee-limits__column {
    min-height: 720px;
  }
  .home-fee-limits__content {
    width: min(100%, 320px);
    --home-fee-limits-content-gap: 28px;
  }
  .home-fee-limits__eyebrow {
    --font-size: 20px;
    --font-size-rem: 1.25rem;
    --line-height: 22px;
    --line-height-rem: 1.375rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-fee-limits__eyebrow-dot {
    width: 12px;
    height: 12px;
  }
  .home-fee-limits__badge {
    width: 132px;
    height: 132px;
  }
  .home-fee-limits__badge-info {
    top: 16px;
    right: 3px;
    width: 24px;
    height: 24px;
  }
  .home-fee-limits__badge-info-text {
    font-size: 20px;
  }
  .home-fee-limits__badge-text {
    --font-size: 19px;
    --font-size-rem: 1.1875rem;
    --line-height: 20.5px;
    --line-height-rem: 1.28125rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-fee-limits__title {
    --font-size: 68px;
    --font-size-rem: 4.25rem;
    --line-height: 70px;
    --line-height-rem: 4.375rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-fee-limits__description {
    --font-size: 18px;
    --font-size-rem: 1.125rem;
    --line-height: 30px;
    --line-height-rem: 1.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-fee-limits__cta {
    --font-size: 19px;
    --font-size-rem: 1.1875rem;
    --line-height: 19px;
    --line-height-rem: 1.1875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
    gap: 20px;
    padding: 18px 24px;
  }
  .home-fee-limits__cta-icon {
    --ola-mark-icon-width: 30px;
  }
  .home-fee-limits__description-note {
    width: min(248px, 100vw - 48px);
    padding: 17px 36px 22px 20px;
    border-radius: 26px;
  }
  .home-fee-limits__description-note-copy {
    --font-size: 13.5px;
    --font-size-rem: 0.84375rem;
    --line-height: 17px;
    --line-height-rem: 1.0625rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-fee-limits__description-note-close {
    top: 15px;
    right: 13px;
  }
  .home-fee-limits__phone {
    width: 260px;
  }
}
@media screen and (max-width: 1023px) {
  .home-fee-limits__container {
    background: none;
  }
  .home-fee-limits__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .home-fee-limits__column {
    min-height: auto;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 40px;
    padding-right: 40px;
  }
  .home-fee-limits__column--easy, .home-fee-limits__column--plus {
    min-height: 534px;
    padding-top: 37px;
    padding-bottom: 48px;
  }
  .home-fee-limits__column--easy {
    background-color: var(--home-fee-limits-easy-bg);
  }
  .home-fee-limits__column--plus {
    background-color: var(--home-fee-limits-plus-bg);
  }
  .home-fee-limits__content {
    width: 100%;
    --home-fee-limits-content-gap: 24px;
  }
  .home-fee-limits__column--easy .home-fee-limits__title, .home-fee-limits__column--plus .home-fee-limits__title {
    margin-top: 58px;
  }
  .home-fee-limits__eyebrow {
    --font-size: 16.025px;
    --font-size-rem: 1.0015625rem;
    --line-height: 16.892px;
    --line-height-rem: 1.05575rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
    gap: 8px;
  }
  .home-fee-limits__eyebrow-dot {
    width: 9.866px;
    height: 9.866px;
  }
  .home-fee-limits__badge-wrap {
    position: absolute;
    z-index: 1;
  }
  .home-fee-limits__badge-wrap--easy, .home-fee-limits__badge-wrap--plus {
    top: 54px;
    right: 40px;
  }
  .home-fee-limits__badge {
    width: 113.209px;
    height: 113.209px;
  }
  .home-fee-limits__badge-info {
    top: 14px;
    right: 2px;
    width: 22px;
    height: 22px;
  }
  .home-fee-limits__badge-info-text {
    font-size: 18px;
  }
  .home-fee-limits__badge-text {
    --font-size: 16.623px;
    --font-size-rem: 1.0389375rem;
    --line-height: 17.522px;
    --line-height-rem: 1.095125rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-fee-limits__title {
    --font-size: 45px;
    --font-size-rem: 2.8125rem;
    --line-height: 58px;
    --line-height-rem: 3.625rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-fee-limits__description {
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 30px;
    --line-height-rem: 1.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-fee-limits__cta {
    width: min(100%, 280px);
    min-height: 56px;
    padding: 12px 18px;
    justify-content: center;
    gap: 12px;
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 20px;
    --line-height-rem: 1.25rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
    text-align: center;
    white-space: normal;
  }
  .home-fee-limits__cta-icon {
    --ola-mark-icon-width: 24px;
  }
  .home-fee-limits__description p + p {
    margin-top: 18px;
  }
  .home-fee-limits__description-note {
    top: calc(100% + 10px);
    right: -10px;
    width: min(236px, 100vw - 88px);
    min-height: max-content;
    padding: 16px 34px 20px 18px;
    border-radius: 24px;
  }
  .home-fee-limits__description-note-copy {
    --font-size: 13px;
    --font-size-rem: 0.8125rem;
    --line-height: 17px;
    --line-height-rem: 1.0625rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-fee-limits__description-note-close {
    top: 14px;
    right: 12px;
  }
  .home-fee-limits__phone {
    display: none;
  }
}
.home-marquee {
  --home-marquee-text: hsl(356, 85%, 57%);
  --home-marquee-surface: var(--color-surface);
  --home-marquee-item-gap: 26px;
  --home-marquee-speed: 24s;
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background-color: var(--home-marquee-surface);
}
.home-marquee__viewport {
  overflow: hidden;
}
.home-marquee__track {
  --home-marquee-loop-width: 50%;
  display: flex;
  width: max-content;
  will-change: transform;
  animation: home-marquee-scroll var(--home-marquee-speed) linear infinite;
}
.home-marquee__list {
  display: flex;
  align-items: center;
  gap: var(--home-marquee-item-gap);
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding: 0 calc(var(--home-marquee-item-gap) / 2);
}
.home-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--home-marquee-item-gap);
  flex-shrink: 0;
}
.home-marquee__text {
  color: var(--home-marquee-text);
  --font-size: 56.797px;
  --font-size-rem: 3.5498125rem;
  --line-height: 59.867px;
  --line-height-rem: 3.7416875rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  line-height: 1.15;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.home-marquee__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  color: var(--home-marquee-text);
  flex-shrink: 0;
}
.home-marquee__icon-svg {
  display: block;
  width: 100%;
  height: 100%;
}
.home-marquee__ola-mark-icon {
  --ola-mark-icon-width: 100%;
}

@keyframes home-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--home-marquee-loop-width, 50%)), 0, 0);
  }
}

@media screen and (max-width: 1279px) {
  .home-marquee {
    --home-marquee-item-gap: 20px;
    --home-marquee-speed: 20s;
  }
  .home-marquee__text {
    --font-size: 46px;
    --font-size-rem: 2.875rem;
    --line-height: 49px;
    --line-height-rem: 3.0625rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
    line-height: 1.15;
  }
  .home-marquee__icon {
    width: 32px;
    height: 32px;
  }
}

@media screen and (max-width: 1023px) {
  .home-marquee {
    --home-marquee-item-gap: 16px;
    --home-marquee-speed: 16s;
    padding: 70px 0 58px;
  }
  .home-marquee__text {
    --font-size: 36px;
    --font-size-rem: 2.25rem;
    --line-height: 38px;
    --line-height-rem: 2.375rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
    line-height: 1.15;
  }
  .home-marquee__icon {
    width: 24px;
    height: 24px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .home-marquee:hover .home-marquee__track {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-marquee__track {
    width: auto;
    animation: none;
    transform: translate3d(0, 0, 0);
  }
  .home-marquee__list--clone {
    display: none;
  }
}
.home-lifestyle {
  --surface: hsl(26, 100%, 94%);
  --copy-primary: hsl(356, 85%, 57%);
  --copy-secondary: hsl(0, 0%, 35%);
  position: relative;
  margin-top: 35px;
  overflow: hidden;
  background-color: var(--surface);
}
.home-lifestyle.-dragging {
  user-select: none;
  -webkit-user-select: none;
}
.home-lifestyle__container.container.\-2xl {
  max-width: 1536px;
  margin-inline: auto;
  padding-inline: 0;
}
.home-lifestyle__viewport {
  position: relative;
  padding-inline: 1rem;
}
.home-lifestyle__slider {
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.home-lifestyle__wrapper {
  display: grid;
}
.home-lifestyle__slide {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 320ms ease;
}
.home-lifestyle__slide.-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.home-lifestyle__content {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 22px;
  min-height: 0;
  padding-inline: 24px;
}
.home-lifestyle__title {
  margin: 0;
  color: var(--copy-primary);
  --font-size: 45px;
  --font-size-rem: 2.8125rem;
  --line-height: 61px;
  --line-height-rem: 3.8125rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.home-lifestyle__title-line {
  display: block;
}
.home-lifestyle__description {
  margin: 0;
  color: var(--copy-secondary);
  --font-size: 16px;
  --font-size-rem: 1rem;
  --line-height: 30px;
  --line-height-rem: 1.875rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 500;
}
.home-lifestyle__visual {
  margin: 0;
  margin-top: auto;
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: end;
  align-self: center;
  background: url("/assets/svg/home-marquee-icon.svg") no-repeat right center;
  background-size: auto 70%;
  max-height: 450px;
  min-height: 450px;
  pointer-events: none;
}
.home-lifestyle__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 70%;
  object-fit: contain;
  object-position: center bottom;
}
.home-lifestyle__navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  padding-inline: 4px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}
.home-lifestyle__navigation .slider-navigation__button {
  width: 48px;
  height: 48px;
}
.home-lifestyle__navigation .slider-navigation__button img {
  width: 100%;
  height: 100%;
}
.home-lifestyle__pagination {
  --slider-pagination-color: var(--copy-primary);
  --slider-pagination-gap: 12px;
  --slider-pagination-icon-width: 23px;
  --slider-pagination-icon-height: 24px;
  display: none;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .home-lifestyle {
    margin-top: 175px;
    max-height: 740px;
  }
  .home-lifestyle__container.container.\-2xl {
    padding-inline: clamp(24px, 3vw, 48px);
  }
  .home-lifestyle__viewport {
    padding-inline: 0;
  }
  .home-lifestyle__slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr);
    align-items: end;
    height: clamp(528px, 52vw, 740px);
    max-height: 740px;
    min-height: 528px;
  }
  .home-lifestyle__content {
    gap: 28px;
    justify-self: start;
    padding-inline: 0;
    padding-left: 40px;
    width: min(100%, 480px);
  }
  .home-lifestyle__title {
    --font-size: 88.745px;
    --font-size-rem: 5.5465625rem;
    --line-height: 93.542px;
    --line-height-rem: 5.846375rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-lifestyle__description {
    --font-size: 20px;
    --font-size-rem: 1.25rem;
    --line-height: 32px;
    --line-height-rem: 2rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-lifestyle__visual {
    margin-top: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    min-height: 0;
    justify-self: stretch;
    align-self: stretch;
  }
  .home-lifestyle__image {
    height: 100%;
    max-height: none;
    max-width: none;
  }
  .home-lifestyle__navigation {
    top: auto;
    transform: none;
    bottom: 220px;
    left: 40px;
    right: auto;
    padding-inline: 0;
    justify-content: flex-start;
    gap: 8px;
  }
  .home-lifestyle__navigation .slider-navigation__button {
    width: 74px;
    height: 74px;
  }
  .home-lifestyle__navigation .slider-navigation__button img {
    width: revert;
    height: revert;
  }
  .home-lifestyle__pagination {
    display: flex;
    position: absolute;
    left: 40px;
    bottom: 140px;
    z-index: 2;
  }
}
@media screen and (max-width: 1279px) and (min-width: 1024px) {
  .home-lifestyle__slide {
    grid-template-columns: 1fr 1fr;
    height: clamp(500px, 56vw, 740px);
    min-height: 500px;
  }
  .home-lifestyle__title {
    --font-size: 74px;
    --font-size-rem: 4.625rem;
    --line-height: 78px;
    --line-height-rem: 4.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .home-lifestyle__description {
    --font-size: 18px;
    --font-size-rem: 1.125rem;
    --line-height: 30px;
    --line-height-rem: 1.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
}