/*!*****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/scss/style.scss ***!
  \*****************************************************************************************************************/
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: 200ms transform, 200ms top;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: 200ms transform, 200ms left;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}

.swiper-pagination-lock {
  display: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
    &:before {
      content: "";
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}

.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}

/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Flip slide shadows end */
/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
  text-decoration-thickness: 1px !important;
  transition: all 0.2s ease;
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:not(.wp-block-button__link):hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

h1,
h2,
h3 {
  font-weight: 700;
}
h1 strong,
h2 strong,
h3 strong {
  font-weight: 700;
}

strong {
  font-weight: 600;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
caption,
figcaption,
p {
  text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
  display: block;
}

/* Hide on different devices */
@media (min-width: 781px) {
  .hide-desktop {
    display: none !important;
  }
}
@media (max-width: 780px) {
  .hide-mobile {
    display: none !important;
  }
}
/* Positionnements */
.absolute-top-right {
  position: absolute;
  top: 10px;
  right: 10px;
}

.absolute-top-left {
  position: absolute;
  top: 10px;
  left: 10px;
}

.absolute-bottom-left {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.absolute-bottom-right {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

/* NAVIGATION HEADER */
.wp-site-blocks > header {
  position: relative;
  width: 100%;
  z-index: 2000;
}
@media (min-width: 581px) {
  .wp-site-blocks > header:has(.is-position-fixed) {
    top: calc(0px + var(--wp-admin--admin-bar--height, 0px));
    position: fixed;
  }
  .wp-site-blocks > header:has(.is-position-sticky) {
    top: calc(0px + var(--wp-admin--admin-bar--height, 0px));
    position: sticky;
  }
  .wp-site-blocks > header:has(.blur) {
    backdrop-filter: blur(4px);
  }
}
@media (min-width: 581px) {
  .wp-site-blocks > header .wp-block-navigation > .wp-block-navigation-item {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .wp-site-blocks > header .wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
    --border-gradient: var(--wp--preset--color--accent-1);
    border-radius: 12px;
    box-shadow: -2px 0 8px oklch(from var(--border-gradient) l c h/0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  .wp-site-blocks > header .wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container .wp-block-navigation-item {
    background-color: transparent;
  }
  .wp-site-blocks > header .wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container .wp-block-navigation-item a {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .wp-site-blocks > header .wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container .wp-block-navigation-item a:hover {
    padding-left: 30px;
  }
  .wp-site-blocks > header .wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container .wp-block-navigation-item:first-child a {
    padding-top: 12px;
  }
  .wp-site-blocks > header .wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container .wp-block-navigation-item:last-child a {
    padding-bottom: 12px;
  }
}
.wp-site-blocks > header .wp-block-navigation__responsive-container-open svg,
.wp-site-blocks > header .wp-block-navigation__responsive-container-close svg {
  width: 30px;
  height: 30px;
}
.wp-site-blocks > header a {
  text-decoration: none;
  text-underline-offset: 0px;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
  margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
  outline-offset: 3px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  outline-offset: 0;
}

.wp-site-blocks .swiper .swiper-pagination-bullet {
  box-shadow: none;
  background-color: color-mix(in srgb, var(--wp--preset--color--accent-1) 60%, transparent);
}
.wp-site-blocks .swiper .swiper-pagination-bullet:hover {
  background-color: color-mix(in srgb, var(--wp--preset--color--accent-1) 100%, transparent);
}
.wp-site-blocks .swiper .swiper-pagination-bullet-active {
  background-color: color-mix(in srgb, var(--wp--preset--color--accent-1) 80%, transparent);
}
.wp-site-blocks .swiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background: white;
  width: auto;
  margin: auto;
  border-radius: 50px;
  margin-left: 50%;
  transform: translate(-50%, 0);
}
.wp-site-blocks .swiper .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 fill=%27none%27 stroke=%27%23ff6600%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27m15 18-6-6 6-6%27/%3E%3C/svg%3E");
}
.wp-site-blocks .swiper .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 fill=%27none%27 stroke=%27%23ff6600%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27m9 18 6-6-6-6%27/%3E%3C/svg%3E");
}

/* BLOC BANNIERE - Main Header */
.hero-banner {
  overflow: hidden;
}

@media (min-width: 782px) {
  header:has(.is-position-fixed) + main .wp-block-cover.main-header .yoast-breadcrumbs,
  header:has(.is-position-fixed) + main .wp-block-cover.main-header .wp-block-yoast-seo-breadcrumbs {
    top: 100px;
  }
}
.wp-block-cover.main-header .wp-block-cover__inner-container {
  position: absolute;
  inset: 0;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wp-block-cover.main-header .wp-block-cover__inner-container .yoast-breadcrumbs,
.wp-block-cover.main-header .wp-block-cover__inner-container .wp-block-yoast-seo-breadcrumbs {
  position: absolute;
  top: 16px;
  left: 16px;
}
.wp-block-cover.main-header .wp-block-cover__inner-container .yoast-breadcrumbs .yoast-breadcrumbs,
.wp-block-cover.main-header .wp-block-cover__inner-container .wp-block-yoast-seo-breadcrumbs .yoast-breadcrumbs {
  top: 0;
  left: 0;
}
.wp-block-cover.main-header .wp-block-cover__inner-container .yoast-breadcrumbs .yoast-breadcrumbs a,
.wp-block-cover.main-header .wp-block-cover__inner-container .wp-block-yoast-seo-breadcrumbs .yoast-breadcrumbs a {
  text-decoration: none;
}
.wp-block-cover.main-header .wp-block-cover__inner-container .yoast-breadcrumbs .yoast-breadcrumbs a:hover,
.wp-block-cover.main-header .wp-block-cover__inner-container .wp-block-yoast-seo-breadcrumbs .yoast-breadcrumbs a:hover {
  text-decoration: underline;
}
.wp-block-cover.main-header .wp-block-cover__inner-container .yoast-breadcrumbs a,
.wp-block-cover.main-header .wp-block-cover__inner-container .wp-block-yoast-seo-breadcrumbs a {
  text-underline-offset: 4px;
}
.wp-block-cover.main-header .wp-block-cover__inner-container .yoast-breadcrumbs a:hover,
.wp-block-cover.main-header .wp-block-cover__inner-container .wp-block-yoast-seo-breadcrumbs a:hover {
  text-underline-offset: 8px;
}
.wp-block-cover.main-header .wp-block-cover__inner-container .featured-image-caption {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: rgba(255, 255, 255, 0.7333333333);
}
.wp-block-cover.card-cover {
  position: relative;
}
.wp-block-cover.card-cover > .wp-block-cover__image-background {
  z-index: -2;
}
.wp-block-cover.card-cover > .wp-block-cover__background {
  z-index: -1;
}
.wp-block-cover.card-cover .wp-block-cover__inner-container {
  z-index: 0;
  position: unset;
}
.wp-block-cover.card-cover .wp-block-cover__inner-container h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.wp-block-cover .wp-block-cover__inner-container :is(h1, h2, h3, h4, h5, h6) {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.wp-block-cover .wp-block-cover__inner-container :is(span, p, a:not(.wp-element-button)) {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
}
.wp-block-cover .wp-block-cover__inner-container .wp-block-buttons .wp-block-button__link {
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.5);
}

figure.avatar img {
  border-radius: 50%;
}

@media (max-width: 781px) {
  figure.avatar {
    max-width: 200px !important;
    margin: auto !important;
  }
}
/* Sidebar */
#content-container {
  min-width: 800px;
}

#content-sidebar {
  padding: 1rem;
  background: color-mix(in srgb, var(--wp--preset--color--accent-2) 25%, transparent);
  border-radius: 2rem;
}

@media (max-width: 781px) {
  #content-wrapper {
    flex-wrap: wrap;
  }
  #content-container {
    min-width: unset;
    width: 100%;
  }
  #content-sidebar {
    width: 100%;
  }
}
/* BLOC LIST */
ul.no-list {
  list-style: none;
  padding-left: 0px;
}

/* BLOC CITATION */
.wp-block-quote cite {
  font-size: inherit;
}

/* BLOC MEDIA-TEXT */
.wp-site-blocks .wp-block-media-text {
  gap: 2rem;
}
.wp-site-blocks .wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}

@media (max-width: 781px) {
  .wp-block-media-text.is-stacked-on-mobile.reverse-mobile-stack > .wp-block-media-text__media {
    grid-row: 2;
  }
  .wp-block-media-text.is-stacked-on-mobile.reverse-mobile-stack > .wp-block-media-text__content {
    grid-row: 1;
  }
  .wp-site-blocks .is-layout-grid {
    grid-template-columns: 1fr;
  }
}
/* BLOCK IMAGE */
.wp-site-blocks figure.wp-block-image {
  display: flex;
  height: auto;
  margin: 0;
}
.wp-site-blocks figure.wp-block-image.aligncenter {
  justify-content: center;
}
.wp-site-blocks figure.wp-block-image.alignleft {
  justify-content: flex-start;
}
.wp-site-blocks figure.wp-block-image.alignright {
  justify-content: flex-end;
}
.wp-site-blocks figure.wp-block-image picture {
  display: block;
}
.wp-site-blocks figure.wp-block-image img {
  border-radius: 8px;
  display: block;
  max-width: 100%;
  height: auto;
}

.hero-gallery-container .hexalix-carousel-page-children {
  overflow-x: auto;
}

.hero-gallery-container .wp-block-column:first-child:has(.hexalix-carousel-page-children) .hexalix-carousel-page-children {
  margin-left: calc(-1 * (100vw - min(1240px, 166.667% + 50px)) / 2 + 16px);
  margin-right: 0;
}
.hero-gallery-container .wp-block-column:first-child:has(.hexalix-carousel-page-children) .hexalix-carousel-page-children .swiper-wrapper {
  flex-direction: row;
  gap: 0;
  margin: 0 !important;
}

.hero-gallery-container .wp-block-column:last-child:has(.hexalix-carousel-page-children) .hexalix-carousel-page-children {
  margin-left: 0;
  margin-right: calc(-1 * (100vw - min(1240px, 166.667% + 50px)) / 2 + 20px);
}
.hero-gallery-container .wp-block-column:last-child:has(.hexalix-carousel-page-children) .hexalix-carousel-page-children .swiper-wrapper {
  flex-direction: row;
  gap: 0;
  margin: 0 !important;
}

@media (max-width: 781px) {
  .hero-gallery-container .wp-block-columns:has(.wp-block-column:first-child .hexalix-carousel-page-children) {
    flex-direction: column-reverse;
  }
  .hero-gallery-container .wp-block-columns:has(.wp-block-column:first-child .hexalix-carousel-page-children) .wp-block-column {
    max-width: 100%;
  }
  .hero-gallery-container .wp-block-column:first-child:has(.hexalix-carousel-page-children) .hexalix-carousel-page-children {
    margin-left: calc(-1 * (100vw - 100%) / 2 + 20px);
    margin-right: calc(-1 * (100vw - 100%) / 2 + 20px);
  }
  .hero-gallery-container .wp-block-column:last-child:has(.hexalix-carousel-page-children) .hexalix-carousel-page-children {
    margin-left: calc(-1 * (100vw - 100%) / 2 + 20px);
    margin-right: calc(-1 * (100vw - 100%) / 2 + 20px);
  }
}
/* Hover styles */
:root :where(.wp-site-blocks .wp-element-button:hover) {
  background-color: color-mix(in srgb, var(--wp--preset--color--accent-1) 85%, transparent) !important;
}
:root :where(.wp-site-blocks .wp-element-button:hover).has-base-background-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--base) 85%, transparent) !important;
}
:root :where(.wp-site-blocks .wp-element-button:hover).has-contrast-background-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--contrast) 85%, transparent) !important;
}
:root :where(.wp-site-blocks .wp-element-button:hover).has-light-background-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--light) 85%, transparent) !important;
}
:root :where(.wp-site-blocks .wp-element-button:hover).has-accent-2-background-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent) !important;
}
:root :where(.wp-site-blocks .wp-element-button:hover).has-accent-3-background-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--accent-3) 85%, transparent) !important;
}
:root :where(.wp-site-blocks .wp-element-button:hover).has-accent-4-background-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--accent-4) 85%, transparent) !important;
}
:root :where(.wp-site-blocks .wp-element-button:hover).has-accent-5-background-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--accent-5) 85%, transparent) !important;
}
:root :where(.wp-site-blocks .wp-element-button:hover).has-accent-6-background-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--accent-6) 85%, transparent) !important;
}

:root :where(.wp-site-blocks .is-style-outline .wp-element-button:not(.has-background):hover) {
  background-color: color-mix(in srgb, var(--wp--preset--color--accent-1) 5%, transparent) !important;
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:not(.has-background):hover).has-base-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--base) 5%, transparent) !important;
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:not(.has-background):hover).has-contrast-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--contrast) 5%, transparent) !important;
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:not(.has-background):hover).has-light-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--light) 5%, transparent) !important;
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:not(.has-background):hover).has-accent-2-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--accent-2) 5%, transparent) !important;
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:not(.has-background):hover).has-accent-3-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--accent-3) 5%, transparent) !important;
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:not(.has-background):hover).has-accent-4-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--accent-4) 5%, transparent) !important;
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:not(.has-background):hover).has-accent-5-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--accent-5) 5%, transparent) !important;
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:not(.has-background):hover).has-accent-6-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--accent-6) 5%, transparent) !important;
}

/* Focus styles */
:where(.wp-site-blocks .wp-element-button:focus) {
  outline-width: 2px;
  outline-style: solid;
}

/* Focus styles */
:root :where(.wp-site-blocks .wp-element-button:focus) {
  outline-color: var(--wp--preset--color--accent-1);
}
:root :where(.wp-site-blocks .wp-element-button:focus).has-base-background-color {
  outline-color: var(--wp--preset--color--base);
}
:root :where(.wp-site-blocks .wp-element-button:focus).has-contrast-background-color {
  outline-color: var(--wp--preset--color--contrast);
}
:root :where(.wp-site-blocks .wp-element-button:focus).has-light-background-color {
  outline-color: var(--wp--preset--color--light);
}
:root :where(.wp-site-blocks .wp-element-button:focus).has-accent-2-background-color {
  outline-color: var(--wp--preset--color--accent-2);
}
:root :where(.wp-site-blocks .wp-element-button:focus).has-accent-3-background-color {
  outline-color: var(--wp--preset--color--accent-3);
}
:root :where(.wp-site-blocks .wp-element-button:focus).has-accent-4-background-color {
  outline-color: var(--wp--preset--color--accent-4);
}
:root :where(.wp-site-blocks .wp-element-button:focus).has-accent-5-background-color {
  outline-color: var(--wp--preset--color--accent-5);
}
:root :where(.wp-site-blocks .wp-element-button:focus).has-accent-6-background-color {
  outline-color: var(--wp--preset--color--accent-6);
}

:root :where(.wp-site-blocks .is-style-outline .wp-element-button:focus) {
  outline-color: var(--wp--preset--color--accent-1);
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:focus).has-base-color {
  outline-color: var(--wp--preset--color--base);
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:focus).has-contrast-color {
  outline-color: var(--wp--preset--color--contrast);
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:focus).has-light-color {
  outline-color: var(--wp--preset--color--light);
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:focus).has-accent-2-color {
  outline-color: var(--wp--preset--color--accent-2);
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:focus).has-accent-3-color {
  outline-color: var(--wp--preset--color--accent-3);
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:focus).has-accent-4-color {
  outline-color: var(--wp--preset--color--accent-4);
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:focus).has-accent-5-color {
  outline-color: var(--wp--preset--color--accent-5);
}
:root :where(.wp-site-blocks .is-style-outline .wp-element-button:focus).has-accent-6-color {
  outline-color: var(--wp--preset--color--accent-6);
}

/* Forms */
.form-group.form-group-rgpd {
  margin-top: 1.5rem;
}
.form-group.form-group-rgpd label.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #000;
}

.checkbox-label input[type=checkbox] {
  margin-top: 0.25rem;
  cursor: pointer;
  border-color: #ddd;
  flex-shrink: 0;
}

.checkbox-label span {
  line-height: 1.2;
  font-weight: 400;
}

.asterix {
  color: #e53e3e;
}

.required-field {
  margin: 0;
  font-size: 0.9rem;
  color: #000;
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeInY 0.8s ease-out forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInY 0.8s ease-out forwards;
}

.fade-in-down {
  opacity: 0;
  transform: translateY(-40px);
  animation: fadeInY 0.8s ease-out forwards;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInX 0.8s ease-out forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeInX 0.8s ease-out forwards;
}

.delay-05 {
  animation-delay: 0.2s;
}

.delay-1 {
  animation-delay: 0.4s;
}

.delay-15 {
  animation-delay: 0.6s;
}

.delay-2 {
  animation-delay: 0.8s;
}

.delay-25 {
  animation-delay: 1s;
}

.delay-3 {
  animation-delay: 1.2s;
}

.delay-35 {
  animation-delay: 1.4s;
}

.delay-4 {
  animation-delay: 1.6s;
}

.delay-45 {
  animation-delay: 1.8s;
}

.delay-5 {
  animation-delay: 2s;
}

.delay-55 {
  animation-delay: 2.2s;
}

@media (max-width: 781px) {
  .no-animation-mobile {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
@keyframes fadeInY {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInX {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* SWIPER */
:root {
  --swiper-navigation-color: #445;
  --swiper-theme-color: #445;
  --swiper-navigation-size: 40px;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  background-color: #FFF;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  background-size: var(--swiper-navigation-size) var(--swiper-navigation-size);
  background-position: center;
  background-repeat: no-repeat;
}
.swiper .swiper-button-prev svg,
.swiper .swiper-button-next svg {
  display: none;
}
.swiper .swiper-button-prev.swiper-button-disabled,
.swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.swiper .swiper-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpolyline points=%2715 18 9 12 15 6%27/%3E%3C/svg%3E");
  background-position: calc(50% - 1px) 50%;
}
.swiper .swiper-button-prev:hover {
  background-position: calc(50% - 3px) 50%;
}
.swiper .swiper-button-prev {
  left: 10px;
}
.swiper .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpolyline points=%279 18 15 12 9 6%27/%3E%3C/svg%3E");
  background-position: calc(50% + 1px) 50%;
}
.swiper .swiper-button-next:hover {
  background-position: calc(50% + 3px) 50%;
}
.swiper .swiper-button-next {
  right: 10px;
}
.swiper .swiper-notification {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.swiper .swiper-pagination {
  bottom: 10px;
}
.swiper .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.3333333333);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.5);
}
.swiper .swiper-pagination-bullet-active {
  background: rgba(0, 0, 0, 0.4666666667);
  width: 24px;
  border-radius: 5px;
}
.swiper .swiper-pagination-bullet:hover {
  background: rgba(0, 0, 0, 0.6);
}
.swiper .swiper-pagination-fraction {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(4px);
}
.swiper .swiper-pagination-progressbar {
  top: unset;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.2);
  height: 4px;
  box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.2);
}
.swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: rgba(0, 0, 0, 0.4666666667);
}

@media (max-width: 781px) {
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .swiper .swiper-button-prev::after,
  .swiper .swiper-button-next::after {
    font-size: 16px;
  }
  .swiper .swiper-button-prev {
    left: 5px;
  }
  .swiper .swiper-button-next {
    right: 5px;
  }
}
@media print {
  .swiper-button-prev,
  .swiper-button-next,
  .swiper-pagination {
    display: none;
  }
}

/*# sourceMappingURL=h5x-style.css.map*/