/* ==================================================
   NEW LADY IN WHITE HERO SLIDER
   ================================================== */

.liw-homehero {
  position: relative;
  z-index: 1;

  width: 100%;
  overflow: hidden;

  background: #1239ac;
}

.liw-homehero__slider {
  position: relative;

  width: 100%;
  overflow: hidden;
}

.liw-homehero__slide {
  position: relative;

  min-height: 650px;
  overflow: hidden;

  background: #1239ac;
}

/* =========================
   BACKGROUND IMAGE — FINAL SLIDER
   ========================= */

.liw-homehero__image {
  position: absolute;
  inset: 0;
  z-index: 0;

  width: 100%;
  height: 100%;

  display: block;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;

  transform: scale(1.01);
  transform-origin: center center;

  transition:
    transform 7s ease,
    opacity 1.2s ease;
}

/* Slide 1 crop */

.liw-homehero__slide:nth-child(1) .liw-homehero__image {
  background-size: 118% 128% !important;
  background-position: center 43% !important;
}

/* Slide 2 crop */

.liw-homehero__slide:nth-child(2) .liw-homehero__image {
  background-size: 118% 128% !important;
  background-position: center 43% !important;
}

/* Slide 3 remains natural */

.liw-homehero__slide:nth-child(3) .liw-homehero__image {
  background-size: cover !important;
  background-position: center center !important;
}

/* Active-slide zoom */

.liw-homehero .swiper-slide-active .liw-homehero__image {
  transform: scale(1.06);
}

/* Desktop overlay keeps text readable */

.liw-homehero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(4, 25, 85, 0.96) 0%,
    rgba(10, 46, 139, 0.9) 39%,
    rgba(18, 57, 172, 0.53) 65%,
    rgba(18, 57, 172, 0.1) 100%
  );
}

/* =========================
   DESKTOP-SPECIFIC CROPPING
   ========================= */

@media (min-width: 992px) {
  .liw-homehero__slide:nth-child(1) .liw-homehero__image {
    background-size: 118% 128% !important;
    background-position: center 43% !important;
  }

  .liw-homehero__slide:nth-child(2) .liw-homehero__image {
    background-size: 120% 130% !important;
    background-position: center 42% !important;
  }

  .liw-homehero__slide:nth-child(3) .liw-homehero__image {
    background-size: cover !important;
    background-position: center center !important;
  }
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 991px) {
  .liw-homehero__slide:nth-child(1) .liw-homehero__image {
    background-size: 124% 132% !important;
    background-position: center 42% !important;
  }

  .liw-homehero__slide:nth-child(2) .liw-homehero__image {
    background-size: 126% 134% !important;
    background-position: center 41% !important;
  }

  .liw-homehero__slide:nth-child(3) .liw-homehero__image {
    background-size: cover !important;
    background-position: center center !important;
  }

  .liw-homehero__overlay {
    background: linear-gradient(
      90deg,
      rgba(5, 25, 83, 0.94) 0%,
      rgba(9, 44, 137, 0.82) 56%,
      rgba(18, 57, 172, 0.48) 100%
    );
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 640px) {
  .liw-homehero__image {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    background-repeat: no-repeat !important;
  }

  .liw-homehero__slide:nth-child(1) .liw-homehero__image {
    background-size: 138% 142% !important;
    background-position: 46% 40% !important;
  }

  .liw-homehero__slide:nth-child(2) .liw-homehero__image {
    background-size: 140% 144% !important;
    background-position: 50% 39% !important;
  }

  .liw-homehero__slide:nth-child(3) .liw-homehero__image {
    background-size: cover !important;
    background-position: 54% center !important;
  }

  .liw-homehero__overlay {
    background: linear-gradient(
      180deg,
      rgba(4, 20, 66, 0.24) 0%,
      rgba(5, 27, 91, 0.47) 30%,
      rgba(8, 42, 130, 0.9) 65%,
      rgba(7, 36, 112, 0.98) 100%
    );
  }
}

/* =========================
   DECORATIVE ELEMENTS
   ========================= */

.liw-homehero__decor {
  position: absolute;
  z-index: 2;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.035);

  pointer-events: none;
}

.liw-homehero__decor--one {
  top: -120px;
  right: 20%;

  width: 390px;
  height: 390px;
}

.liw-homehero__decor--two {
  right: 7%;
  bottom: -170px;

  width: 340px;
  height: 340px;
}

/* =========================
   CUSTOM HERO FX
   CSS-ONLY BUBBLES, SPARKS & RINGS
   ========================= */

.liw-homehero__fx {
  position: absolute;
  inset: 0;
  z-index: 3;

  width: 100%;
  height: 100%;

  overflow: hidden;
  pointer-events: none;
}

/* =========================
   FLOATING GLASS BUBBLES
   ========================= */

.liw-homehero__orb {
  position: absolute;

  display: block;

  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;

  background:
    radial-gradient(
      circle at 28% 24%,
      rgba(255, 255, 255, 0.95) 0 4%,
      rgba(255, 255, 255, 0.26) 5% 12%,
      transparent 13%
    ),
    radial-gradient(circle at 72% 78%, rgba(255, 180, 0, 0.22), transparent 45%),
    radial-gradient(
      circle at 45% 48%,
      rgba(255, 255, 255, 0.08),
      rgba(150, 200, 255, 0.13) 58%,
      rgba(255, 255, 255, 0.02) 100%
    );

  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.16),
    inset -8px -8px 20px rgba(18, 57, 172, 0.14),
    0 12px 28px rgba(0, 0, 0, 0.08);

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  opacity: 0.62;

  will-change: transform, opacity;
}

/* Bubble positions */

.liw-homehero__orb--1 {
  top: 10%;
  right: 31%;

  width: 74px;
  height: 74px;

  animation: liwOrbDriftOne 9s ease-in-out infinite;
}

.liw-homehero__orb--2 {
  top: 18%;
  right: 14%;

  width: 42px;
  height: 42px;

  opacity: 0.5;

  animation: liwOrbDriftTwo 7.5s ease-in-out infinite;
}

.liw-homehero__orb--3 {
  top: 42%;
  right: 7%;

  width: 96px;
  height: 96px;

  opacity: 0.52;

  animation: liwOrbDriftThree 11s ease-in-out infinite;
}

.liw-homehero__orb--4 {
  right: 34%;
  bottom: 13%;

  width: 52px;
  height: 52px;

  opacity: 0.48;

  animation: liwOrbDriftTwo 8.5s ease-in-out infinite reverse;
}

.liw-homehero__orb--5 {
  right: 16%;
  bottom: 8%;

  width: 68px;
  height: 68px;

  opacity: 0.55;

  animation: liwOrbDriftOne 10s ease-in-out infinite reverse;
}

.liw-homehero__orb--6 {
  top: 8%;
  right: 4%;

  width: 28px;
  height: 28px;

  opacity: 0.44;

  animation: liwOrbDriftThree 6.5s ease-in-out infinite;
}

/* =========================
   SPARKLES
   ========================= */

.liw-homehero__spark {
  position: absolute;

  width: 18px;
  height: 18px;

  display: block;

  opacity: 0.78;

  animation: liwSparkTwinkle 3.2s ease-in-out infinite;
}

.liw-homehero__spark::before,
.liw-homehero__spark::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  border-radius: 999px;

  background: linear-gradient(180deg, #ffffff 0%, #ffd45a 100%);

  transform: translate(-50%, -50%);
}

.liw-homehero__spark::before {
  width: 3px;
  height: 100%;
}

.liw-homehero__spark::after {
  width: 100%;
  height: 3px;
}

.liw-homehero__spark--1 {
  top: 25%;
  right: 25%;

  animation-delay: 0s;
}

.liw-homehero__spark--2 {
  top: 61%;
  right: 12%;

  width: 13px;
  height: 13px;

  animation-delay: 1.1s;
}

.liw-homehero__spark--3 {
  right: 29%;
  bottom: 20%;

  width: 11px;
  height: 11px;

  animation-delay: 2s;
}

/* =========================
   ORBIT RINGS
   ========================= */

.liw-homehero__ring {
  position: absolute;

  display: block;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;

  opacity: 0.52;

  pointer-events: none;
}

.liw-homehero__ring::after {
  content: "";

  position: absolute;
  top: 8%;
  left: 50%;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #ffb400;

  box-shadow:
    0 0 0 5px rgba(255, 180, 0, 0.12),
    0 0 18px rgba(255, 180, 0, 0.55);

  transform: translateX(-50%);
}

.liw-homehero__ring--1 {
  top: 8%;
  right: 19%;

  width: 205px;
  height: 205px;

  animation: liwRingRotate 18s linear infinite;
}

.liw-homehero__ring--2 {
  right: 4%;
  bottom: -65px;

  width: 250px;
  height: 250px;

  opacity: 0.34;

  animation: liwRingRotateReverse 23s linear infinite;
}

/* =========================
   ANIMATIONS
   ========================= */

@keyframes liwOrbDriftOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  35% {
    transform: translate3d(16px, -22px, 0) scale(1.05);
  }

  70% {
    transform: translate3d(-10px, 14px, 0) scale(0.97);
  }
}

@keyframes liwOrbDriftTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-18px, -28px, 0);
  }
}

@keyframes liwOrbDriftThree {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  40% {
    transform: translate3d(12px, -16px, 0) scale(1.08);
  }

  75% {
    transform: translate3d(-14px, 12px, 0) scale(0.94);
  }
}

@keyframes liwSparkTwinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.7) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.15) rotate(45deg);
  }
}

@keyframes liwRingRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes liwRingRotateReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* =========================
   TABLET FX
   ========================= */

@media (max-width: 991px) {
  .liw-homehero__orb--1 {
    right: 24%;

    width: 64px;
    height: 64px;
  }

  .liw-homehero__orb--2 {
    right: 8%;
  }

  .liw-homehero__orb--3 {
    right: -12px;

    width: 84px;
    height: 84px;
  }

  .liw-homehero__orb--4 {
    right: 29%;
  }

  .liw-homehero__orb--5 {
    right: 8%;

    width: 60px;
    height: 60px;
  }

  .liw-homehero__ring--1 {
    right: 9%;

    width: 175px;
    height: 175px;
  }

  .liw-homehero__ring--2 {
    right: -45px;

    width: 215px;
    height: 215px;
  }

  .liw-homehero__spark--1 {
    right: 22%;
  }

  .liw-homehero__spark--2 {
    right: 8%;
  }
}

/* =========================
   MOBILE FX
   ========================= */

@media (max-width: 640px) {
  .liw-homehero__fx {
    opacity: 0.82;
  }

  .liw-homehero__orb {
    border-color: rgba(255, 255, 255, 0.3);

    box-shadow:
      inset 0 0 12px rgba(255, 255, 255, 0.12),
      0 8px 18px rgba(0, 0, 0, 0.05);
  }

  .liw-homehero__orb--1 {
    top: 9%;
    right: 18%;

    width: 52px;
    height: 52px;
  }

  .liw-homehero__orb--2 {
    top: 19%;
    right: 3%;

    width: 31px;
    height: 31px;
  }

  .liw-homehero__orb--3 {
    top: 37%;
    right: -22px;

    width: 68px;
    height: 68px;
  }

  .liw-homehero__orb--4 {
    right: 26%;
    bottom: 29%;

    width: 38px;
    height: 38px;
  }

  .liw-homehero__orb--5 {
    right: 5%;
    bottom: 13%;

    width: 47px;
    height: 47px;
  }

  .liw-homehero__orb--6 {
    top: 5%;
    right: 2%;

    width: 21px;
    height: 21px;
  }

  .liw-homehero__spark--1 {
    top: 29%;
    right: 23%;

    width: 14px;
    height: 14px;
  }

  .liw-homehero__spark--2 {
    top: 55%;
    right: 7%;
  }

  .liw-homehero__spark--3 {
    right: 30%;
    bottom: 23%;
  }

  .liw-homehero__ring--1 {
    top: 7%;
    right: -42px;

    width: 145px;
    height: 145px;

    opacity: 0.36;
  }

  .liw-homehero__ring--2 {
    right: -76px;
    bottom: -55px;

    width: 185px;
    height: 185px;

    opacity: 0.26;
  }
}

/* =========================
   VERY SMALL MOBILE FX
   ========================= */

@media (max-width: 390px) {
  .liw-homehero__orb--1 {
    width: 46px;
    height: 46px;
  }

  .liw-homehero__orb--3 {
    width: 60px;
    height: 60px;
  }

  .liw-homehero__orb--5 {
    width: 42px;
    height: 42px;
  }

  .liw-homehero__ring--1 {
    width: 128px;
    height: 128px;
  }

  .liw-homehero__ring--2 {
    width: 165px;
    height: 165px;
  }
}

/* =========================
   REDUCED MOTION
   ========================= */

@media (prefers-reduced-motion: reduce) {
  .liw-homehero__orb,
  .liw-homehero__spark,
  .liw-homehero__ring {
    animation: none !important;
  }
}

/* =========================
   CONTENT
   ========================= */

.liw-homehero__container {
  position: relative;
  z-index: 5;

  min-height: 650px;

  display: flex;
  align-items: center;

  padding-top: 90px;
  padding-bottom: 110px;
}

.liw-homehero__content {
  width: min(660px, 56%);

  color: #ffffff;
}

.liw-homehero__eyebrow {
  margin: 0 0 18px;

  display: flex;
  align-items: center;
  gap: 12px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.liw-homehero__eyebrow span {
  width: 34px;
  height: 4px;

  flex-shrink: 0;

  border-radius: 999px;

  background: #ffb400;
}

.liw-homehero__title {
  margin: 0;

  color: #ffffff;

  font-size: clamp(48px, 4.6vw, 76px);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.liw-homehero__title strong {
  display: block;

  color: #ffffff;
  font-weight: 850;
}

.liw-homehero__text {
  width: min(610px, 100%);
  margin: 24px 0 0;

  color: rgba(255, 255, 255, 0.79);

  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
}

/* =========================
   BUTTONS
   ========================= */

.liw-homehero__actions {
  margin-top: 34px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 13px;
}

.liw-homehero__primary,
.liw-homehero__secondary {
  min-height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  padding: 10px 12px 10px 24px;

  border-radius: 999px;

  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.liw-homehero__primary {
  background: linear-gradient(180deg, #ffd45a 0%, #ffb400 100%);
  color: #0f172a;

  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.liw-homehero__primary i,
.liw-homehero__secondary i {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 50%;
}

.liw-homehero__primary i {
  background: #ffffff;
  color: #1239ac;
}

.liw-homehero__secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);

  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.liw-homehero__secondary i {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
}

.liw-homehero__primary:hover {
  background: #ffffff;
  color: #1239ac;

  transform: translateY(-2px);

  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
}

.liw-homehero__secondary:hover {
  border-color: #ffffff;

  background: #ffffff;
  color: #1239ac;

  transform: translateY(-2px);
}

.liw-homehero__secondary:hover i {
  background: #ffb400;
  color: #ffffff;
}

/* =========================
   SLIDE ANIMATION
   ========================= */

.liw-homehero__eyebrow,
.liw-homehero__title,
.liw-homehero__text,
.liw-homehero__actions {
  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity 750ms ease,
    transform 750ms ease;
}

.liw-homehero .swiper-slide-active .liw-homehero__eyebrow {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 180ms;
}

.liw-homehero .swiper-slide-active .liw-homehero__title {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 290ms;
}

.liw-homehero .swiper-slide-active .liw-homehero__text {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 400ms;
}

.liw-homehero .swiper-slide-active .liw-homehero__actions {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 510ms;
}

/* =========================
   SLIDER ARROWS
   ========================= */

.liw-homehero__arrow {
  position: absolute;
  top: 50%;
  z-index: 20;

  width: 48px;
  height: 48px;
  padding: 0;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;

  font-size: 17px;

  cursor: pointer;

  transform: translateY(-50%);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.liw-homehero__arrow--prev {
  left: 24px;
}

.liw-homehero__arrow--next {
  right: 24px;
}

.liw-homehero__arrow:hover {
  background: #ffb400;
  color: #ffffff;

  transform: translateY(-50%) scale(1.05);
}

/* =========================
   PAGINATION
   ========================= */

.liw-homehero__pagination {
  position: absolute;
  right: 0;
  bottom: 34px !important;
  left: 0;
  z-index: 20;

  display: flex;
  justify-content: center;
  gap: 8px;
}

.liw-homehero__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.5);

  opacity: 1;

  transition:
    width 180ms ease,
    background 180ms ease;
}

.liw-homehero__pagination .swiper-pagination-bullet-active {
  width: 26px;

  background: #ffb400;
}

/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 991px) {
  .liw-homehero__slide,
  .liw-homehero__container {
    min-height: 620px;
  }

  /*
   * Important:
   * The image remains a full background on tablet and mobile.
   * It is not hidden or replaced by a plain color.
   */
  .liw-homehero__image {
    background-size: cover;
    background-position: center center;
  }

  .liw-homehero__overlay {
    background: linear-gradient(
      90deg,
      rgba(5, 25, 83, 0.94) 0%,
      rgba(9, 44, 137, 0.82) 56%,
      rgba(18, 57, 172, 0.48) 100%
    );
  }

  .liw-homehero__container {
    padding-top: 85px;
    padding-bottom: 105px;
  }

  .liw-homehero__content {
    width: min(620px, 76%);
  }

  .liw-homehero__title {
    font-size: clamp(45px, 7vw, 64px);
  }

  .liw-homehero__arrow {
    width: 44px;
    height: 44px;
  }

  .liw-homehero__arrow--prev {
    left: 14px;
  }

  .liw-homehero__arrow--next {
    right: 14px;
  }

  .liw-homehero__bubble--1 {
    top: 12%;
    right: 26%;

    width: 58px;
  }

  .liw-homehero__bubble--2 {
    right: 13%;

    width: 38px;
  }

  .liw-homehero__bubble--3 {
    right: 30%;
    bottom: 18%;

    width: 62px;
  }

  .liw-homehero__bubble--4 {
    right: 3%;

    width: 82px;
  }

  .liw-homehero__bubble--5 {
    right: 2%;

    width: 48px;
  }

  .liw-homehero__bubble--6 {
    right: 11%;

    width: 60px;
  }

  .liw-homehero__bubble--7 {
    right: 4%;

    width: 36px;
  }
}

/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 640px) {
  .liw-homehero__slide {
    min-height: 640px;
  }

  .liw-homehero__container {
    min-height: 640px;

    align-items: flex-end;

    padding-top: 90px;
    padding-right: 20px;
    padding-bottom: 90px;
    padding-left: 20px;
  }

  /*
   * Mobile image fix:
   * Keeps every slide image visible.
   * The focal point can be adjusted per slide using background-position.
   */
  .liw-homehero__image {
    inset: 0;

    width: 100%;
    height: 100%;

    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center top !important;
  }

  .liw-homehero__slide:nth-child(1) .liw-homehero__image {
    background-position: 46% center !important;
  }

  .liw-homehero__slide:nth-child(2) .liw-homehero__image {
    background-position: 50% center !important;
  }

  .liw-homehero__slide:nth-child(3) .liw-homehero__image {
    background-position: 54% center !important;
  }

  .liw-homehero__overlay {
    background: linear-gradient(
      180deg,
      rgba(4, 20, 66, 0.24) 0%,
      rgba(5, 27, 91, 0.47) 30%,
      rgba(8, 42, 130, 0.9) 65%,
      rgba(7, 36, 112, 0.98) 100%
    );
  }

  .liw-homehero__content {
    width: 100%;

    text-align: left;
  }

  .liw-homehero__eyebrow {
    margin-bottom: 13px;

    font-size: 12px;
  }

  .liw-homehero__eyebrow span {
    width: 25px;
    height: 3px;
  }

  .liw-homehero__title {
    font-size: clamp(37px, 10.7vw, 50px);
    line-height: 1.04;
  }

  .liw-homehero__text {
    margin-top: 18px;

    font-size: 14px;
    line-height: 1.6;
  }

  .liw-homehero__actions {
    margin-top: 24px;

    gap: 10px;
  }

  .liw-homehero__primary,
  .liw-homehero__secondary {
    min-height: 50px;

    padding: 8px 9px 8px 18px;

    font-size: 10px;
  }

  .liw-homehero__primary i,
  .liw-homehero__secondary i {
    width: 34px;
    height: 34px;
  }

  .liw-homehero__arrow {
    display: none;
  }

  .liw-homehero__pagination {
    bottom: 24px !important;
  }

  .liw-homehero__decor--one {
    width: 240px;
    height: 240px;

    top: -100px;
    right: -80px;
  }

  .liw-homehero__decor--two {
    display: none;
  }
  .liw-homehero__bubble {
    opacity: 0.34;
  }

  .liw-homehero__bubble--1 {
    top: 11%;
    right: 18%;

    width: 45px;
  }

  .liw-homehero__bubble--2 {
    top: 6%;
    right: 5%;

    width: 30px;
  }

  .liw-homehero__bubble--3 {
    right: 24%;
    bottom: 28%;

    width: 48px;
  }

  .liw-homehero__bubble--4 {
    top: 25%;
    right: -18px;

    width: 68px;
  }

  .liw-homehero__bubble--5 {
    display: none;
  }

  .liw-homehero__bubble--6 {
    right: 8%;
    bottom: 12%;

    width: 46px;
  }

  .liw-homehero__bubble--7 {
    right: 3%;
    bottom: 5%;

    width: 30px;
  }
}

/* ==================================================
   VERY SMALL MOBILE
   ================================================== */

@media (max-width: 390px) {
  .liw-homehero__slide,
  .liw-homehero__container {
    min-height: 610px;
  }

  .liw-homehero__container {
    padding-right: 16px;
    padding-bottom: 82px;
    padding-left: 16px;
  }

  .liw-homehero__title {
    font-size: 36px;
  }

  .liw-homehero__text {
    font-size: 13px;
  }

  .liw-homehero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .liw-homehero__primary,
  .liw-homehero__secondary {
    width: 100%;

    justify-content: space-between;
  }
}

/* ==================================================
   FINAL HERO FIXES
   1. Moves the unstyled fourth sparkle from top-left
   2. Removes the blue strip beneath slides 1 and 2
   ================================================== */

/* =========================
   FIX FOURTH SPARKLE
   ========================= */

/* The top-left X was spark--4 because it had no position */
.liw-homehero__spark--4 {
  top: 14%;
  right: 7%;

  width: 10px;
  height: 10px;

  animation-delay: 2.6s;
}

/* Keep every sparkle contained inside the hero */
.liw-homehero__spark {
  z-index: 4;
  pointer-events: none;
}

/* =========================
   FORCE CONSISTENT SLIDER HEIGHT
   ========================= */

.liw-homehero,
.liw-homehero__slider,
.liw-homehero__slider > .swiper-wrapper,
.liw-homehero__slide {
  min-height: 650px !important;
  height: 650px !important;
}

.liw-homehero__slider {
  padding: 0 !important;
  margin: 0 !important;

  background: transparent !important;
}

.liw-homehero__slider > .swiper-wrapper {
  padding: 0 !important;
  margin: 0 !important;
}

/* =========================
   REMOVE BLUE STRIP
   Slides 1 and 2 need stronger vertical cropping
   ========================= */

@media (min-width: 992px) {
  .liw-homehero__slide:nth-child(1) .liw-homehero__image {
    top: -12% !important;
    right: -3% !important;
    bottom: -18% !important;
    left: -3% !important;

    width: auto !important;
    height: auto !important;

    background-size: 124% 150% !important;
    background-position: center 38% !important;
  }

  .liw-homehero__slide:nth-child(2) .liw-homehero__image {
    top: -12% !important;
    right: -3% !important;
    bottom: -18% !important;
    left: -3% !important;

    width: auto !important;
    height: auto !important;

    background-size: 124% 150% !important;
    background-position: center 38% !important;
  }

  .liw-homehero__slide:nth-child(3) .liw-homehero__image {
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background-size: cover !important;
    background-position: center center !important;
  }
}

/* Pagination stays on top of the photograph */
.liw-homehero__pagination {
  bottom: 22px !important;
  z-index: 30 !important;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 991px) {
  .liw-homehero,
  .liw-homehero__slider,
  .liw-homehero__slider > .swiper-wrapper,
  .liw-homehero__slide,
  .liw-homehero__container {
    min-height: 620px !important;
    height: 620px !important;
  }

  .liw-homehero__slide:nth-child(1) .liw-homehero__image,
  .liw-homehero__slide:nth-child(2) .liw-homehero__image {
    inset: -12% -6% -18% !important;

    width: auto !important;
    height: auto !important;

    background-size: 136% 154% !important;
    background-position: center 38% !important;
  }

  .liw-homehero__spark--4 {
    top: 16%;
    right: 6%;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 640px) {
  .liw-homehero,
  .liw-homehero__slider,
  .liw-homehero__slider > .swiper-wrapper,
  .liw-homehero__slide,
  .liw-homehero__container {
    min-height: 640px !important;
    height: 640px !important;
  }

  .liw-homehero__slide:nth-child(1) .liw-homehero__image {
    inset: -10% -12% -18% !important;

    width: auto !important;
    height: auto !important;

    background-size: 150% 158% !important;
    background-position: 46% 38% !important;
  }

  .liw-homehero__slide:nth-child(2) .liw-homehero__image {
    inset: -10% -12% -18% !important;

    width: auto !important;
    height: auto !important;

    background-size: 152% 160% !important;
    background-position: 50% 38% !important;
  }

  .liw-homehero__slide:nth-child(3) .liw-homehero__image {
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background-size: cover !important;
    background-position: 54% center !important;
  }

  .liw-homehero__spark--4 {
    top: 18%;
    right: 5%;

    width: 8px;
    height: 8px;
  }

  .liw-homehero__pagination {
    bottom: 20px !important;
  }
}

/* ==================================================
   HERO LINK / BUTTON CLICK FIX
   ================================================== */

.liw-homehero__content,
.liw-homehero__actions,
.liw-homehero__primary,
.liw-homehero__secondary {
  position: relative;
  z-index: 50;
}

.liw-homehero__actions {
  pointer-events: auto;
}

.liw-homehero__primary,
.liw-homehero__secondary {
  pointer-events: auto;
  cursor: pointer;
  touch-action: manipulation;
}

.liw-homehero__overlay,
.liw-homehero__image,
.liw-homehero__fx,
.liw-homehero__orb,
.liw-homehero__spark {
  pointer-events: none;
}
