/** Shopify CDN: Minification failed

Line 840:18 Unexpected "{"
Line 840:27 Expected ":"
Line 847:18 Unexpected "{"
Line 847:27 Expected ":"

**/
.hero-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  height: var(--inner-height, 100vh);
  /* max-height: 100svh; */
}
.hero-banner .media {
  border-radius: 0;
}
/*
 * Hero Content Animation : Start
 */

.hero__content--single .hero__animation,
html.js .hero__swiper-slide.swiper-slide-active .hero__animation {
  overflow: hidden;
  position: relative;
}

html.js .hero__swiper-slide.swiper-slide-active .hero__animation.in-delay>* {
  opacity: 0;
  transform: translateY(200%);
}
html.js .hero__animation.in-delay>* {
  opacity: 0;
  transform: translateY(200%);
}
 .hero__content--single .hero__animation>*,
html.js .hero__swiper-slide.swiper-slide-active .hero__animation:not(.in-delay)>* {
  animation-name: heroContentAnimation;
  animation-timing-function: cubic-bezier(0.22, 1.00, 0.36, 1.00);
}

.hero__content--single div.hero__animation:nth-child(1)>*,
html.js .hero__swiper-slide.swiper-slide-active .hero__animation:nth-child(1)>* {
  animation-duration: 850ms;
  /* animation-delay: 0ms; */
}

.hero__content--single .hero__animation:nth-child(2)>*,
html.js .hero__swiper-slide.swiper-slide-active .hero__animation:nth-child(2)>* {
  animation-duration: 900ms;
  /* animation-delay: 100ms; */
}

.hero__content--single .hero__animation:nth-child(3)>*,
html.js .hero__swiper-slide.swiper-slide-active .hero__animation:nth-child(3)>* {
  animation-duration: 1150ms;
  /* animation-delay: 350ms; */
}

.hero__content--single .hero__animation:nth-child(4)>*,
html.js .hero__swiper-slide.swiper-slide-active .hero__animation:nth-child(4)>* {
  animation-duration: 1400ms;
  /* animation-delay: 600ms */
}

@media screen and (max-width: 749px) {
  .hero__content--single.hero__content__no-animation .hero__animation>* {
    animation-name: none;
    animation-timing-function: none;
  }

  /* on mobile, no animation */
  html.js .hero__swiper-slide.swiper-slide-active .hero__content__no-animation .hero__animation:not(.in-delay)>* {
    animation-name: none;
    animation-timing-function: none;
  }

  html.js .hero__swiper-slide.swiper-slide-active .hero__content__no-animation .hero__animation.in-delay>*,
  html.js .hero__content__no-animation .hero__animation.in-delay>* {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroContentAnimation {
  0% {
    opacity: 0;
    transform: translateY(200%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Content Animation : End */

.hero__swiper {
  flex: 1;
}

html.no-js .hero__swiper-wrapper {
  display: block;
  height: auto;
}

.hero__swiper-slide {
  display: flex;
  flex: 0 0 100%;
  max-width: 100%;
}

html.no-js .hero__swiper-slide {
  height: auto;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  grid-template-rows: 1fr;

  --inner-vertical-padding: 4rem;

  color: rgb(var(--color-foreground));
  width: 100%;
  position: relative;
  z-index: 3;

  background-color: rgb(var(--color-background));
}

.hero__inner.hero-banner--30-70 > *,
.hero__inner.hero-banner--70-30 > * {
  flex: 1 0 50%;
}

.hero__content {
  position: relative;
  width: 100%; height: 100%;
  padding: 6.4rem calc(var(--page-gutter) * 1.5);
  color: rgb(var(--color-foreground));
  display: flex;
  flex-direction: column;
  z-index: 2;
  background-color: rgb(var(--color-background));
  pointer-events: none;
}
.hero__content a {
  pointer-events: auto;
}
.hero-banner--full .hero__content {
  flex: 1;
  background-color: transparent;
}
.hero-banner--split .hero__content {
  flex: 1;
  max-width: 55rem;
  margin-inline: auto;
  background-color: rgb(var(--color-background));
}
.hero-banner--full .hero__content > :first-child,
.hero-banner--split .hero__content > :first-child {
  margin-block-start: 0;
}

.hero__media {
  width: 100%; height: 100%;
}

.hero-banner--full .hero__media {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.hero-banner--split .hero__media {
  padding: 0;
  height: 100%;
  background-color: rgb(var(--color-background));
}

.hero-banner--full .hero__media svg,
.hero-banner--split .hero__media svg,
.hero__media svg {
  opacity: 0.5;
}

.hero-banner--full .hero__media iframe,
.hero-banner--full .hero__media video,
.hero__media iframe,
.hero__media video {
  border: none;
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
[dir='rtl'] .hero-banner--full .hero__media iframe,
[dir='rtl'] .hero-banner--full .hero__media video,
[dir='rtl'] .hero__media iframe,
[dir='rtl'] .hero__media video {
  transform: translate(50%, -50%);
}

.hero-banner--full .hero__media--desktop iframe,
.hero-banner--full .hero__media--desktop video,
.hero__media--desktop iframe,
.hero__media--desktop video {
  width: 296%;
  max-width: 296%;
}


.hero__heading p {
  color: rgb(var(--color-heading-text));
  font-family: var(--font-heading-family);
  font-size: calc(var(--font-heading-scale) * var(--h1-multiplier));
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  text-transform: var(--font-heading-text-transform);
  word-break: var(--font-heading-word-break);
  margin-block: 0;
  line-height: var(--line-height-static-xs);
  letter-spacing: var(--font-heading-letter-spacing);
}

.hero__heading p em {
  font-family: var(--font-italic-family);
  font-size: calc(var(--font-italic-scale) * var(--h1-multiplier));
  font-style: var(--font-italic-style);
  font-weight: var(--font-italic-weight);
  line-height: 0;
}

.hero__subheading {
  color: rgb(var(--color-heading-text));
  font-size: var(--font-size-static-sm);
  line-height: var(--line-height-static-sm);
  letter-spacing: var(--letter-spacing-medium);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  margin-block-end: 2rem;
}

.hero-banner .hero__heading {
  color: rgb(var(--color-heading-text));
  margin-block-end: 1.6rem;
  padding-block: 0;
}

.hero__heading p {
  margin-block: 0;
}

.hero__button {
  display: inline-flex;
  flex-flow: row wrap;
  gap: var(--spacing-2);
}

.hero__entry {
  margin-block-end: 2.4rem;
}
.hero__entry p {
  margin-block-start: 0;
}

.hero__swiper:has(.swiper-pagination-horizontal) .hero__content {
  padding-inline: var(--spacing-7);
}

.hero__swiper:has(.hero__swiper-pagination-horizontal) .hero__content {
  padding-block: 7.2rem;
}


.swiper-horizontal>.swiper-pagination-bullets.hero__swiper-pagination:not(.hero__swiper-pagination-horizontal),
.swiper-pagination-bullets.swiper-pagination-horizontal.hero__swiper-pagination:not(.hero__swiper-pagination-horizontal),
.swiper-pagination-custom.hero__swiper-pagination:not(.hero__swiper-pagination-horizontal),
.swiper-pagination-fraction.hero__swiper-pagination:not(.hero__swiper-pagination-horizontal) {
  width: unset;
  inset-block-end: 2.8rem;
  inset-inline-start: unset;
  inset-inline-end: 2.4rem;
}

.swiper-horizontal>.swiper-pagination-bullets.hero__swiper-pagination.hero__swiper-pagination-horizontal,
.swiper-pagination-bullets.swiper-pagination-horizontal.hero__swiper-pagination.hero__swiper-pagination-horizontal,
.swiper-pagination-custom.hero__swiper-pagination.hero__swiper-pagination-horizontal,
.swiper-pagination-fraction.hero__swiper-pagination.hero__swiper-pagination-horizontal {
  width: unset;
  inset-block-end: 2.8rem;
  inset-inline-start: 50%;
  inset-inline-end: unset;
  transform: translate(-50%, 0);
}
[dir='rtl'] .swiper-horizontal>.swiper-pagination-bullets.hero__swiper-pagination.hero__swiper-pagination-horizontal,
[dir='rtl'] .swiper-pagination-bullets.swiper-pagination-horizontal.hero__swiper-pagination.hero__swiper-pagination-horizontal,
[dir='rtl'] .swiper-pagination-custom.hero__swiper-pagination.hero__swiper-pagination-horizontal,
[dir='rtl'] .swiper-pagination-fraction.hero__swiper-pagination.hero__swiper-pagination-horizontal {
  transform: translate(50%, 0);
}

@media screen and (min-width: 990px) {
  .swiper-horizontal>.swiper-pagination-bullets.hero__swiper-pagination:not(.hero__swiper-pagination-horizontal),
  .swiper-pagination-bullets.swiper-pagination-horizontal.hero__swiper-pagination:not(.hero__swiper-pagination-horizontal),
  .swiper-pagination-custom.hero__swiper-pagination:not(.hero__swiper-pagination-horizontal),
  .swiper-pagination-fraction.hero__swiper-pagination:not(.hero__swiper-pagination-horizontal) {
    width: unset;
    inset-block-end: 2.4rem;
    inset-inline-start: unset;
    inset-inline-end: var(--page-gutter);
  }
  .swiper-horizontal>.swiper-pagination-bullets.hero__swiper-pagination.hero__swiper-pagination-horizontal,
  .swiper-pagination-bullets.swiper-pagination-horizontal.hero__swiper-pagination.hero__swiper-pagination-horizontal,
  .swiper-pagination-custom.hero__swiper-pagination.hero__swiper-pagination-horizontal,
  .swiper-pagination-fraction.hero__swiper-pagination.hero__swiper-pagination-horizontal {
    width: unset;
    inset-block-end: 4.6rem;
    inset-inline-start: unset;
    inset-inline-end: var(--spacing-7);
    transform: unset;
  }
  .hero__subheading {
    margin-block-end: 2.8rem;
  }
  .hero-banner .hero__heading {
    margin-block-end: 2rem;
  }
}

.hero__swiper-pagination .swiper-pagination-bullet {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin: 0 10px;
  background-color: transparent;
  border-radius: 0.5rem;
  border: 0.2rem solid rgba(255, 255, 255, 0);
  cursor: pointer;
  transition: 0.3s;
}

.hero__swiper-pagination .swiper-pagination-bullet span {
  color: rgb(var(--color-white-rgb));
  font-size: var(--font-size-static-sm);
  font-weight: var(--font-body-weight);
  font-family: var(--font-body-family);
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  letter-spacing: 0.2rem;
}
[dir='rtl'] .hero__swiper-pagination .swiper-pagination-bullet span {
  transform: translate(50%, -50%);
}

.progress {
  transform: rotate(-90deg);
}

.square-origin {
  border-radius: 0.5rem !important;
  fill: transparent;
  stroke: rgb(255, 255, 255);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 155px;
  stroke-dashoffset: 155px;
}

.circle-origin {
  fill: transparent;
  stroke: rgb(255, 255, 255);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 56.5487px;
  stroke-dashoffset: 56.5487px;
}

.hero__swiper-pagination:not(.hero__swiper-pagination-horizontal) .swiper-pagination-bullet-active {
  border-color: rgba(255, 255, 255, 0.15);
}

.hero__swiper-pagination:not(.hero__swiper-pagination-horizontal) .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  background: rgb(var(--color-white-rgb));
  border-radius: 0.1rem;
}
[dir='rtl'] .hero__swiper-pagination:not(.hero__swiper-pagination-horizontal) .swiper-pagination-bullet::before {
  transform: translate(50%, -50%);
}

.hero__swiper-pagination .swiper-pagination-bullet-active .square-origin {
  animation: square-progress var(--slideshow-pagination-progress-time);
}

.hero__swiper-pagination-horizontal {
  display: flex;
  align-items: center;
}

.hero__swiper-pagination-horizontal .swiper-pagination-bullet-active .circle-origin {
  animation: circle-progress var(--slideshow-pagination-progress-time);
}

.progress {
  display: none;
}

.hero__swiper-pagination-horizontal .progress {
  display: block;
  position: absolute;
  inset-inline-start: -3.4rem;
}

.hero__swiper-pagination-horizontal::before {
  content: '';
  width: 1.8rem;
  height: 1.8rem;
  inset-block-start: 50%;
  inset-inline-start: -1.6rem;
  transform: translate(0, -50%);
  position: absolute;
  border: 0.1rem solid rgba(var(--color-white-rgb), 0.2);
  border-radius: 100%;
}

.hero__swiper-pagination-horizontal::after {
  content: '';
  width: 0.3rem;
  height: 0.3rem;
  inset-block-start: 0.6rem;
  inset-inline-start: -0.8rem;
  position: absolute;
  background: #fff;
  border-radius: 100%;
}

.hero__swiper-pagination-horizontal .swiper-pagination-bullet {
  margin-inline-start: 1.6rem !important;
}

.hero__swiper-pagination-horizontal .square-progress {
  display: none;
}

.hero__swiper-pagination-horizontal .swiper-pagination-bullet span {
  opacity: 1;
  visibility: visible;
}

.hero-banner .swiper-pagination-horizontal {
  height: 1.6rem;
}
.hero__swiper:has(.hero__swiper-pagination-horizontal) .hero-banner--30-70 .hero__content,
.hero__swiper:has(.hero__swiper-pagination-horizontal) .hero-banner--70-30 .hero__content {
  padding-block: 0;
}
.hero-banner:has(.swiper-pagination) .hero__content-inner {
  margin-block-start: calc((var(--spacing-6) + 1.6rem) * -1);
}

.hero__swiper-buttons {
  display: none;
  background: transparent;
}

.hero__swiper-buttons .swiper-button {
  width: 2.4rem;
  height: 2.4rem;
}

.hero__swiper-buttons .swiper-button--prev {
  margin-inline-end: 1.6rem;
}

.section-hero__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  overflow: visible;
}

html.js .hero__swiper-slide:not(.swiper-slide-active) .section-hero__link {
  display: none;
}
@media (hover: hover) {
  .hero__inner:has(.section-hero__link):hover .section-hero__button {
    color: var(--color-button-hover-text);
    background-color: var(--color-button-hover-background);
    border-color: var(--color-button-hover-outline);
  }
}

@media screen and (max-width: 749px) {
  .hero__inner {
    text-align: center;
    align-items: flex-end;
    justify-content: center;
    min-height: var(--inner-height, 100vh);
  }
}

@media screen and (min-width: 750px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: unset;
    column-gap: 0;
    grid-template-areas: "media_element";
  }
  .hero__inner.hero-banner--full {
    display: flex;
  }
  .hero__inner.hero-banner--split {
    display: flex;
    margin-inline: auto;
  }
  .hero-banner--70-30 {
    grid-template-columns: 50% 50%;
    grid-template-areas: "media_element content_element";
  }
  .hero-banner--30-70 {
    grid-template-columns: 50% 50%;
    grid-template-areas: "content_element media_element";
  }
  .hero-banner .hero__heading p {
    font-size: calc(var(--font-heading-scale) * var(--h3-multiplier))
  }
  .hero-banner .hero__heading p em {
    font-size: calc(var(--font-italic-scale) * var(--h3-multiplier))
  }

  .hero__media + .hero__content {
    margin-block-start: 0;
  }

  .hero__media {
    grid-area: media_element;
    position: relative;
    z-index: 1;
  }
  .hero__content {
    grid-area: content_element;
    position: relative;
    z-index: 2;
  }

  .hero-banner--split .hero__media {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    width: 100%; height: 100%;
  }

  .hero-banner--full .hero__media video,
  .hero-banner--split .hero__media video {
    width: 100%;
    height: 100%;
  }

  .hero__swiper-buttons {
    display: flex;
    padding: 0 var(--page-gutter);
    justify-content: space-between;
  }

  .hero__swiper-buttons:not(.hero__swiper-buttons--sides) {
    inset-block-start: unset;
    inset-block-end: var(--page-gutter);
    transform: none;
    align-items: flex-end;
  }

  .hero__swiper-buttons--start {
    justify-content: flex-start;
  }
  .hero__swiper-buttons--center {
    justify-content: center;
  }
  .hero__swiper-buttons--end {
    justify-content: flex-end;
  }

  .hero__media--desktop iframe,
  .hero__media--desktop video {
    width: 114%;
    max-width: 114%;
    height: 108%;
  }

  .hero__inner {
    --inner-vertical-padding: 9.6rem;
  }

  .hero__inner.justify-center {
    --inner-vertical-padding: 13rem;
  }
}



@media screen and (min-width: 990px) {

  .hero-banner--70-30 {
    grid-template-columns: 60% 40%;
    grid-template-areas: "media_element content_element";
  }

  .hero-banner--30-70 {
    grid-template-columns: 40% 60%;
    grid-template-areas: "content_element media_element";
  }

  .hero-banner .hero__heading p {
    font-size: calc(var(--font-heading-scale) * var(--h2-multiplier))
  }
  .hero-banner .hero__heading p em {
    font-size: calc(var(--font-italic-scale) * var(--h2-multiplier))
  }

  .hero__swiper-buttons:not(.hero__swiper-buttons--sides) {
    display: flex;
    inset-block-start: unset;
    inset-block-end: 3.6rem;
    transform: none;
    align-items: flex-end;
  }

  .hero__swiper-buttons {
    padding: 0 calc(var(--page-gutter) - 0.4rem);
  }
}

@media screen and (min-width: 1440px) {

  .hero-banner--70-30 {
    grid-template-columns: 70% 30%;
    grid-template-areas: "media_element content_element";
  }

  .hero-banner--30-70 {
    grid-template-columns: 30% 70%;
    grid-template-areas: "content_element media_element";
  }

  .hero-banner .hero__heading p {
    font-size: calc(var(--font-heading-scale) * var(--h1-multiplier))
  }
  .hero-banner .hero__heading p em {
    font-size: calc(var(--font-italic-scale) * var(--h1-multiplier))
  }

}

/* animations */
@keyframes square-progress {
  0% {
    stroke-dashoffset: 155px;
  }

  90% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -155px;
  }
}

@keyframes circle-progress {
  0% {
    stroke-dashoffset: 56.5487px;
  }

  90% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -56.5487px;
  }
}
/* =========================
   Chic slideshow transitions
   ========================= */

/* 1) Performance + easing premium */
.hero__swiper-wrapper,
.hero__swiper-slide,
.hero__media,
.hero__media video,
.hero__media iframe {
  will-change: transform, opacity, filter;
}

/* 2) On “isole” les slides pour permettre un fondu propre */
html.js .hero__swiper-slide {
  position: relative;
  transform: translateZ(0);
}

/* 3) Base : les slides non actives sont légèrement “en retrait” */
html.js .hero__swiper-slide:not(.swiper-slide-active) {
  opacity: 0;
  pointer-events: none;
}

/* 4) Transition globale : fade + micro mouvement + blur subtil */
html.js .hero__swiper-slide {
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .hero__swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0px);
  pointer-events: auto;
}

/* Slide précédente/suivante (quand Swiper les garde visibles) */
html.js .hero__swiper-slide.swiper-slide-prev,
html.js .hero__swiper-slide.swiper-slide-next {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1.01);
  filter: blur(2px);
}

/* 5) Zoom très doux sur le media au moment où la slide devient active */
html.js .hero__swiper-slide .hero__media,
html.js .hero__swiper-slide .hero__media video,
html.js .hero__swiper-slide .hero__media iframe {
  transition: transform 1400ms cubic-bezier(0.22, 1, 0.36, 1),
              filter 1400ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .hero__swiper-slide:not(.swiper-slide-active) .hero__media,
html.js .hero__swiper-slide:not(.swiper-slide-active) .hero__media video,
html.js .hero__swiper-slide:not(.swiper-slide-active) .hero__media iframe {
  transform: scale(1.06);
  filter: saturate(0.95) contrast(0.98);
}

html.js .hero__swiper-slide.swiper-slide-active .hero__media,
html.js .hero__swiper-slide.swiper-slide-active .hero__media video,
html.js .hero__swiper-slide.swiper-slide-active .hero__media iframe {
  transform: scale(1);
  filter: none;
}

/* 6) Voile “luxe” entre slides : un léger gradient qui se déplace */
html.js .hero__swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(255,255,255,0.08), rgba(255,255,255,0) 55%),
    linear-gradient(90deg, rgba(0,0,0,0.18), rgba(0,0,0,0.04));
  transform: translate3d(-2%, 0, 0);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Quand la slide s’active, le voile “glisse” puis disparaît */
html.js .hero__swiper-slide.swiper-slide-active::after {
  opacity: 0.45;
  transform: translate3d(0, 0, 0);
}

/* Puis il s’éteint rapidement (effet “wipe” propre) */
html.js .hero__swiper-slide.swiper-slide-active.swiper-slide-visible::after {
  opacity: 0;
}

/* 7) Respect accessibilité : réduire les animations si demandé */
@media (prefers-reduced-motion: reduce) {
  html.js .hero__swiper-slide,
  html.js .hero__swiper-slide .hero__media,
  html.js .hero__swiper-slide .hero__media video,
  html.js .hero__swiper-slide .hero__media iframe {
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }

  html.js .hero__swiper-slide::after {
    display: none !important;
  }
}
/* Sortie légère du contenu quand la slide n’est plus active */
html.js .hero__swiper-slide:not(.swiper-slide-active) .hero__animation > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 350ms ease, transform 350ms ease;
}
.hero__subheading {
  margin-bottom: 0.8rem;
}

.hero-banner .hero__heading {
  margin-bottom: 1.4rem;
}

.hero__entry {
  margin-bottom: 2.4rem;
}

.hero__button {
  margin-top: 3.2rem;
}
#shopify-section-{{ section.id }} .hero__heading {
  padding-inline: 2rem;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

#shopify-section-{{ section.id }} .hero__content {
  padding-inline: 2rem;
  max-width: 100%;
  box-sizing: border-box;
}
/* Fix z-index liens en mode fade */
html.js .hero__swiper-slide:not(.swiper-slide-active) {
  pointer-events: none !important;
  z-index: 0 !important;
}

html.js .hero__swiper-slide.swiper-slide-active {
  pointer-events: auto !important;
  z-index: 1 !important;
}