@charset "UTF-8";
/**
 * Fluid Clamp Function
 *
 * Generates fluid typography and spacing values using CSS clamp() function.
 * This creates responsive values that scale smoothly between a minimum and maximum
 * size based on the viewport width, without requiring media queries.
 *
 * The function uses linear interpolation to calculate the ideal viewport-based
 * value that transitions smoothly between the min and max values across the
 * specified viewport width range.
 *
 * @param {Length} $min - Minimum value (smallest size at narrow viewports)
 *                        Accepts: rem, px, or other CSS length units
 *                        Example: 1rem, 16px
 *
 * @param {Length} $max - Maximum value (largest size at wide viewports)
 *                        Accepts: rem, px, or other CSS length units
 *                        Example: 2.5rem, 40px
 *
 * @param {Length} $w-min - Minimum viewport width (where min value is used)
 *                          Accepts: px (recommended)
 *                          Example: 780px
 *
 * @param {Length} $w-max - Maximum viewport width (where max value is used)
 *                          Accepts: px (recommended)
 *                          Example: 1280px
 *
 * @return {String} A CSS clamp() function with calculated fluid values
 *
 * @example SCSS Usage
 *   .element {
 *     font-size: fluid-clamp(1rem, 2.5rem, 780px, 1280px);
 *     margin-inline: fluid-clamp(1rem, 3rem, 400px, 1200px);
 *     padding-block: fluid-clamp(16px, 48px, 768px, 1440px);
 *   }
 *
 * @example CSS Output
 *   .element {
 *     font-size: clamp(1rem, -1.34rem + 4.8vw, 2.5rem);
 *     margin-inline: clamp(1rem, -0.5rem + 6.25vw, 3rem);
 *     padding-block: clamp(16px, -21.42857px + 4.76190vw, 48px);
 *   }
 *
 * How it works:
 * 1. Converts all values to pixels for consistent calculation
 * 2. Calculates the slope: (max - min) / (w-max - w-min)
 * 3. Converts slope to viewport width units (vw)
 * 4. Calculates the y-intercept: min - (slope × w-min)
 * 5. Returns: clamp(min, intercept + slope×vw, max)
 *
 * Mathematical formula:
 *   y = mx + b
 *   where:
 *     y = font size (or any CSS property value)
 *     m = slope (rate of change)
 *     x = viewport width (in vw units)
 *     b = y-intercept (base value)
 */
/**
 * Strip Unit Helper Function
 *
 * Removes the unit from a number, returning just the numeric value.
 * This is necessary for performing mathematical operations in Sass.
 *
 * @param {Number} $number - A number with or without units
 * @return {Number} The unitless numeric value
 *
 * @example
 *   strip-unit(16px)  // Returns: 16
 *   strip-unit(1.5rem) // Returns: 1.5
 *   strip-unit(42)     // Returns: 42
 */
/**
 * Fluid Clamp Function Implementation
 *
 * See documentation above for full details.
 */
html {
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

::-moz-selection {
  color: var(--wp--preset--color--lilac);
  background: var(--wp--preset--color--soft-lavender);
}

::selection {
  color: var(--wp--preset--color--lilac);
  background: var(--wp--preset--color--soft-lavender);
}

.wp-site-blocks {
  overflow: clip;
}

html,
body,
.wp-site-blocks {
  min-height: 100dvh;
}
html main > .entry-content,
body main > .entry-content,
.wp-site-blocks main > .entry-content {
  height: 100%;
}

.wp-site-blocks {
  --sb-buffer: 2rem;
  --vertical-dash: repeating-linear-gradient(to bottom, #5955a9 0, #5955a9 10px, transparent 10px, transparent 20px) 1;
  --horizontal-dash: repeating-linear-gradient(to right, transparent 0, transparent 10px, #5955a9 10px, #5955a9 20px) 1;
  position: relative;
}
.wp-site-blocks:before {
  content: "";
  position: absolute;
  height: 100%;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  -o-border-image: var(--vertical-dash);
     border-image: var(--vertical-dash);
  width: calc(100% - var(--sb-buffer) / 1.5);
  left: calc(var(--sb-buffer) / 3);
}
@media (min-width: 1312px) {
  .wp-site-blocks:before {
    width: calc(var(--wp--style--global--wide-size) + var(--sb-buffer));
    left: calc((100% - var(--wp--style--global--wide-size) - var(--sb-buffer)) / 2);
  }
}
@media (min-width: 782px) {
  .wp-site-blocks:after {
    content: "";
    position: absolute;
    z-index: -1;
    height: 100%;
    border-left: 1px solid transparent;
    -o-border-image: var(--vertical-dash);
       border-image: var(--vertical-dash);
    width: 0;
    left: 50%;
  }
}
.wp-site-blocks main {
  position: relative;
}
.wp-site-blocks main > section:first-child > .wp-block-group:not(.bullet-bg):before {
  content: "";
  position: absolute;
  width: 100vw;
  left: 0;
  border-top: 1px solid transparent;
  -o-border-image: var(--horizontal-dash);
     border-image: var(--horizontal-dash);
}
.wp-site-blocks main > section:first-child > .wp-block-group:not(.bullet-bg).wp-block-group-is-layout-constrained:before {
  left: calc((100% - 100vw) / 2);
}
.wp-site-blocks main > .entry-content > section:first-child > .wp-block-group:not(.bullet-bg) {
  position: relative;
}
.wp-site-blocks main > .entry-content > section:first-child > .wp-block-group:not(.bullet-bg):before {
  content: "";
  position: absolute;
  width: 100vw;
  left: calc((100% - 100vw) / 2);
  border-top: 1px solid transparent;
  -o-border-image: var(--horizontal-dash);
     border-image: var(--horizontal-dash);
}
.wp-site-blocks main > section:not(.has-ultraviolet-background-color):not(:has(> .bullet-bg)):not(:last-child):before {
  content: "";
  position: absolute;
  width: 100vw;
  left: 0;
  bottom: 0;
  border-top: 1px solid transparent;
  -o-border-image: var(--horizontal-dash);
     border-image: var(--horizontal-dash);
}
.wp-site-blocks main > .entry-content > section:not(.has-ultraviolet-background-color):not(:has(> .bullet-bg)):not(:last-child) {
  position: relative;
}
.wp-site-blocks main > .entry-content > section:not(.has-ultraviolet-background-color):not(:has(> .bullet-bg)):not(:last-child):before {
  content: "";
  position: absolute;
  width: 100vw;
  left: calc((100% - 100vw) / 2);
  bottom: 0;
  border-top: 1px solid transparent;
  -o-border-image: var(--horizontal-dash);
     border-image: var(--horizontal-dash);
}
.wp-site-blocks main > section:has(+ .has-ultraviolet-background-color):before,
.wp-site-blocks main > .entry-content > section:has(+ .has-ultraviolet-background-color):before,
.wp-site-blocks main > section:has(+ section > .bullet-bg):before,
.wp-site-blocks main > .entry-content > section:has(+ section > .bullet-bg):before {
  border-top: none !important;
  -o-border-image: none !important;
     border-image: none !important;
}
.wp-site-blocks footer {
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
}
.wp-site-blocks footer > section:after {
  content: "";
  position: absolute;
  height: 100%;
  border-left: 1px solid transparent;
  -o-border-image: var(--vertical-dash);
     border-image: var(--vertical-dash);
  width: 0;
  left: 50%;
  top: 0;
}
.wp-site-blocks footer > section:not(:first-child):before {
  content: "";
  position: absolute;
  width: 100vw;
  left: 0;
  border-top: 1px solid transparent;
  -o-border-image: var(--horizontal-dash);
     border-image: var(--horizontal-dash);
}
.wp-site-blocks footer > section > * {
  position: relative;
  z-index: 1;
}

.wp-site-blocks header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
}
.wp-site-blocks header:before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background: var(--wp--preset--gradient--02);
}
.wp-site-blocks header .wp-block-site-logo,
.wp-site-blocks header .wp-block-buttons {
  z-index: 10;
}
.wp-site-blocks:has(> main):has(> footer) {
  display: grid;
  grid-template-rows: 1fr auto;
}
.wp-site-blocks main > section:first-child > *:first-child,
.wp-site-blocks main > .entry-content > section:first-child > *:first-child {
  padding: var(--smm-nav-height) 0 0 0;
}
.wp-site-blocks footer {
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--ultraviolet);
}
.wp-site-blocks main a:not(.wp-block-button__link) {
  color: var(--wp--preset--color--electric-purple);
  text-decoration: underline;
  font-weight: 500;
}
.wp-site-blocks main a:not(.wp-block-button__link):hover {
  text-decoration: none;
}
.wp-site-blocks main .has-dark-color a,
.wp-site-blocks main .has-ultraviolet-color a,
.wp-site-blocks main .has-soft-lavender-color a,
.wp-site-blocks main .has-lilac-color a,
.wp-site-blocks main .has-white-color a {
  color: inherit;
}

.h1 {
  font-size: var(--wp--preset--font-size--h-1);
}

.h2 {
  font-size: var(--wp--preset--font-size--h-2);
}

.h3 {
  font-size: var(--wp--preset--font-size--h-3);
}

.h4 {
  font-size: var(--wp--preset--font-size--h-4);
}

.h1,
.h2,
.h3,
.h4 {
  font-weight: 600;
}

p.h1 {
  line-height: 1.1;
}

.h5 {
  font-size: var(--wp--preset--font-size--h-5);
}

.h6 {
  font-size: var(--wp--preset--font-size--h-6);
}

.p {
  font-size: var(--wp--preset--font-size--p);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  padding-bottom: 0.25rem;
}
h1:not(:last-child),
.h1:not(:last-child),
h2:not(:last-child),
.h2:not(:last-child),
h3:not(:last-child),
.h3:not(:last-child),
h4:not(:last-child),
.h4:not(:last-child) {
  margin-block-end: 1.25rem !important;
}

h5,
.h5,
h6,
.h6 {
  padding-bottom: 0.25rem;
}
h5:not(:last-child),
.h5:not(:last-child),
h6:not(:last-child),
.h6:not(:last-child) {
  margin-block-end: 0.75rem !important;
}

small,
.small {
  font-size: var(--wp--preset--font-size--small);
}

strong,
.w-600 {
  font-weight: 600;
}

.w-100 {
  font-weight: 100;
}

.w-200 {
  font-weight: 200;
}

.w-300 {
  font-weight: 300;
}

.w-400 {
  font-weight: 400;
}

.w-500 {
  font-weight: 400;
}

.w-500 {
  font-weight: 500;
}

.w-700 {
  font-weight: 700;
}

.w-800 {
  font-weight: 800;
}

.w-900 {
  font-weight: 900;
}

.mix-blend-mode-darken,
.mix-blend-mode-darken > img {
  mix-blend-mode: darken;
}

.mix-blend-mode-multiply,
.mix-blend-mode-multiply > img {
  mix-blend-mode: multiply;
}

.bullet-bg {
  position: relative;
  isolation: isolate;
}
.bullet-bg:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(50vw - 50% + 100%);
  height: 100%;
  left: calc(-50vw + 50%);
  background-color: var(--wp--preset--color--ultraviolet);
  border-top-right-radius: var(--wp--custom--border-radius--full);
  border-bottom-right-radius: var(--wp--custom--border-radius--full);
}

.marker-icon li {
  position: relative;
  list-style: none;
  margin-block: 1.2rem;
}
.marker-icon li:before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: -2px;
  left: -40px;
  width: 30px;
  height: 30px;
  background-color: currentColor;
  /* prend la couleur du texte */
  -webkit-mask: url("/wp-content/uploads/2025/11/ico-30-check-ultra-violet.svg") no-repeat center/contain;
  mask: url("/wp-content/uploads/2025/11/ico-30-check-ultra-violet.svg") no-repeat center/contain;
}
.marker-icon.dark li:before {
  background-color: var(--wp--preset--color--dark);
}
.marker-icon.lilac li:before {
  background-color: var(--wp--preset--color--lilac);
}
.marker-icon.electric-violet li:before {
  background-color: var(--wp--preset--color--electric-violet);
}
.marker-icon.electric-purple li:before {
  background-color: var(--wp--preset--color--electric-purple);
}
.marker-icon.ultraviolet li:before {
  background-color: var(--wp--preset--color--ultraviolet);
}
.marker-icon.amber li:before {
  background-color: var(--wp--preset--color--amber);
}
.marker-icon.honey-gold li:before {
  background-color: var(--wp--preset--color--honey-gold);
}
.marker-icon.skywave-blue li:before {
  background-color: var(--wp--preset--color--skywave-blue);
}
.marker-icon.medium-orchid li:before {
  background-color: var(--wp--preset--color--medium-orchid);
}
.marker-icon.grayish-green li:before {
  background-color: var(--wp--preset--color--grayish-green);
}

.alternate-pills {
  counter-reset: item;
  display: grid;
  grid-auto-rows: 1fr;
}
.alternate-pills > .wp-block-columns {
  counter-increment: item;
}
.alternate-pills > .wp-block-columns > .wp-block-column > .wp-block-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 781px) {
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) {
    overflow: clip;
    border-top-left-radius: var(--wp--custom--border-radius--26);
    border-bottom-left-radius: var(--wp--custom--border-radius--26);
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group {
    text-align: left;
    padding-right: 3rem !important;
    border-top-right-radius: var(--wp--custom--border-radius--full);
    border-bottom-right-radius: var(--wp--custom--border-radius--full);
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group .wp-block-heading {
    display: inline-flex;
    align-items: center;
    margin-inline-start: 0 !important;
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group .wp-block-heading:before {
    content: counter(item, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--wp--preset--font-size--small);
    text-wrap: nowrap;
    color: var(--wp--preset--color--white);
    background-color: var(--wp--preset--color--ultraviolet);
    padding: 0.5rem;
    margin-inline-end: 0.5rem;
    aspect-ratio: 1;
    width: clamp(26px, 1.3043349169rem + 1.4251781473vw, 32px);
    height: clamp(26px, 1.3043349169rem + 1.4251781473vw, 32px);
    border-radius: 50%;
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(even) {
    display: none;
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(odd) {
    display: none;
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) {
    overflow: clip;
    border-top-left-radius: var(--wp--custom--border-radius--26);
    border-bottom-left-radius: var(--wp--custom--border-radius--26);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group {
    text-align: left;
    padding-right: 3rem !important;
    border-top-right-radius: var(--wp--custom--border-radius--full);
    border-bottom-right-radius: var(--wp--custom--border-radius--full);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group .wp-block-heading {
    display: inline-flex;
    align-items: center;
    margin-inline-start: 0 !important;
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group .wp-block-heading:before {
    content: counter(item, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--wp--preset--font-size--small);
    text-wrap: nowrap;
    color: var(--wp--preset--color--white);
    background-color: var(--wp--preset--color--ultraviolet);
    padding: 0.5rem;
    margin-inline-end: 0.5rem;
    aspect-ratio: 1;
    width: clamp(26px, 1.3043349169rem + 1.4251781473vw, 32px);
    height: clamp(26px, 1.3043349169rem + 1.4251781473vw, 32px);
    border-radius: 50%;
  }
}
@media screen and (min-width: 782px) {
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) {
    overflow: clip;
    border-top-right-radius: var(--wp--custom--border-radius--26);
    border-bottom-right-radius: var(--wp--custom--border-radius--26);
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group {
    text-align: right;
    padding-inline-start: 3rem !important;
    border-top-left-radius: var(--wp--custom--border-radius--full);
    border-bottom-left-radius: var(--wp--custom--border-radius--full);
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group > * {
    margin-right: 0 !important;
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group .wp-block-heading {
    position: relative;
    display: flex;
    align-items: center;
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group .wp-block-heading:after {
    content: "";
    display: block;
    min-width: 38px;
    height: 38px;
    margin-inline-start: 1rem;
    background-color: currentColor;
    /* prend la couleur du texte */
    -webkit-mask: url("/wp-content/uploads/2025/11/ico-30-check-ultra-violet.svg") no-repeat center/contain;
    mask: url("/wp-content/uploads/2025/11/ico-30-check-ultra-violet.svg") no-repeat center/contain;
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group .wp-block-heading.honey-gold:after {
    background-color: var(--wp--preset--color--honey-gold);
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group .wp-block-heading.electric-purple:after {
    background-color: var(--wp--preset--color--electric-purple);
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group .wp-block-heading.lilac:after {
    background-color: var(--wp--preset--color--lilac);
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group .wp-block-heading.electric-violet:after {
    background-color: var(--wp--preset--color--electric-violet);
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group .wp-block-heading.ultraviolet:after {
    background-color: var(--wp--preset--color--ultraviolet);
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group .wp-block-heading.amber:after {
    background-color: var(--wp--preset--color--amber);
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group .wp-block-heading.skywave-blue:after {
    background-color: var(--wp--preset--color--skywave-blue);
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group .wp-block-heading.medium-orchid:after {
    background-color: var(--wp--preset--color--medium-orchid);
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(odd) > .wp-block-group .wp-block-heading.grayish-green:after {
    background-color: var(--wp--preset--color--grayish-green);
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(even) {
    overflow: clip;
    border-top-left-radius: var(--wp--custom--border-radius--26);
    border-bottom-left-radius: var(--wp--custom--border-radius--26);
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(even) > .wp-block-group {
    flex-wrap: nowrap;
    margin-inline-end: auto;
    width: -moz-min-content;
    width: min-content;
    border-top-right-radius: var(--wp--custom--border-radius--full);
    border-bottom-right-radius: var(--wp--custom--border-radius--full);
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(even) > .wp-block-group > *:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    aspect-ratio: 1;
    padding: 0 !important;
  }
  .alternate-pills .wp-block-columns:nth-child(odd) > .wp-block-column:nth-child(even) > .wp-block-group > *:first-child:before {
    content: counter(item, decimal-leading-zero);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(odd) {
    overflow: clip;
    border-top-right-radius: var(--wp--custom--border-radius--26);
    border-bottom-right-radius: var(--wp--custom--border-radius--26);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(odd) > .wp-block-group {
    flex-wrap: nowrap;
    margin-inline-start: auto;
    width: -moz-min-content;
    width: min-content;
    border-top-left-radius: var(--wp--custom--border-radius--full);
    border-bottom-left-radius: var(--wp--custom--border-radius--full);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(odd) > .wp-block-group > *:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    aspect-ratio: 1;
    padding: 0 !important;
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(odd) > .wp-block-group > *:first-child:before {
    content: counter(item, decimal-leading-zero);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) {
    overflow: clip;
    border-top-left-radius: var(--wp--custom--border-radius--26);
    border-bottom-left-radius: var(--wp--custom--border-radius--26);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group {
    text-align: left;
    padding-inline-end: 3rem !important;
    border-top-right-radius: var(--wp--custom--border-radius--full);
    border-bottom-right-radius: var(--wp--custom--border-radius--full);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group > * {
    margin-left: 0 !important;
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group .wp-block-heading {
    position: relative;
    display: flex;
    align-items: center;
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group .wp-block-heading:before {
    content: "";
    display: block;
    min-width: 38px;
    height: 38px;
    margin-inline-end: 1rem;
    background-color: currentColor;
    /* prend la couleur du texte */
    -webkit-mask: url("/wp-content/uploads/2025/11/ico-30-check-ultra-violet.svg") no-repeat center/contain;
    mask: url("/wp-content/uploads/2025/11/ico-30-check-ultra-violet.svg") no-repeat center/contain;
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group .wp-block-heading.honey-gold:before {
    background-color: var(--wp--preset--color--honey-gold);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group .wp-block-heading.electric-purple:before {
    background-color: var(--wp--preset--color--electric-purple);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group .wp-block-heading.lilac:before {
    background-color: var(--wp--preset--color--lilac);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group .wp-block-heading.electric-violet:before {
    background-color: var(--wp--preset--color--electric-violet);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group .wp-block-heading.ultraviolet:before {
    background-color: var(--wp--preset--color--ultraviolet);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group .wp-block-heading.amber:before {
    background-color: var(--wp--preset--color--amber);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group .wp-block-heading.skywave-blue:before {
    background-color: var(--wp--preset--color--skywave-blue);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group .wp-block-heading.medium-orchid:before {
    background-color: var(--wp--preset--color--medium-orchid);
  }
  .alternate-pills .wp-block-columns:nth-child(even) > .wp-block-column:nth-child(even) > .wp-block-group .wp-block-heading.grayish-green:before {
    background-color: var(--wp--preset--color--grayish-green);
  }
}

.text-gradient {
  background: linear-gradient(to bottom right, var(--wp--preset--color--ultraviolet) 0%, var(--wp--preset--color--electric-violet) 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  color: rgba(0, 0, 0, 0);
}
.text-gradient.to-medium-orchid {
  background: linear-gradient(to bottom right, var(--wp--preset--color--ultraviolet) 0%, var(--wp--preset--color--medium-orchid) 80%);
  background-clip: border-box;
  -webkit-background-clip: text;
}
.text-gradient.to-electric-purple {
  background: linear-gradient(to bottom right, var(--wp--preset--color--ultraviolet) 0%, var(--wp--preset--color--electric-purple-80) 80%);
  background-clip: border-box;
  -webkit-background-clip: text;
}
.text-gradient.to-sunset-orange {
  background: linear-gradient(to bottom right, var(--wp--preset--color--ultraviolet) 0%, var(--wp--preset--color--sunset-orange-80) 80%);
  background-clip: border-box;
  -webkit-background-clip: text;
}
.text-gradient.to-skywave-blue {
  background: linear-gradient(to bottom right, var(--wp--preset--color--ultraviolet) 0%, var(--wp--preset--color--skywave-blue) 80%);
  background-clip: border-box;
  -webkit-background-clip: text;
}
.text-gradient.to-olive-gray {
  background: linear-gradient(to bottom right, var(--wp--preset--color--ultraviolet) 0%, var(--wp--preset--color--olive-gray-80) 80%);
  background-clip: border-box;
  -webkit-background-clip: text;
}

.has-ultraviolet-background-color *:not(.has-white-background-color):not(.has-lilac-background-color):not(.has-soft-lavender-background-color):not(.has-electric-violet-background-color):not(.has-skywave-blue-background-color):not(.has-medium-orchid-background-color):not(.has-grayish-green-background-color) .text-gradient {
  background: linear-gradient(to bottom right, var(--wp--preset--color--lilac) 0%, var(--wp--preset--color--electric-violet) 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  color: rgba(0, 0, 0, 0);
}
.has-ultraviolet-background-color *:not(.has-white-background-color):not(.has-lilac-background-color):not(.has-soft-lavender-background-color):not(.has-electric-violet-background-color):not(.has-skywave-blue-background-color):not(.has-medium-orchid-background-color):not(.has-grayish-green-background-color) .text-gradient.to-medium-orchid {
  background: linear-gradient(to bottom right, var(--wp--preset--color--lilac) 0%, var(--wp--preset--color--medium-orchid) 80%);
  background-clip: border-box;
  -webkit-background-clip: text;
}
.has-ultraviolet-background-color *:not(.has-white-background-color):not(.has-lilac-background-color):not(.has-soft-lavender-background-color):not(.has-electric-violet-background-color):not(.has-skywave-blue-background-color):not(.has-medium-orchid-background-color):not(.has-grayish-green-background-color) .text-gradient.to-electric-purple {
  background: linear-gradient(to bottom right, var(--wp--preset--color--lilac) 0%, var(--wp--preset--color--electric-purple-80) 80%);
  background-clip: border-box;
  -webkit-background-clip: text;
}
.has-ultraviolet-background-color *:not(.has-white-background-color):not(.has-lilac-background-color):not(.has-soft-lavender-background-color):not(.has-electric-violet-background-color):not(.has-skywave-blue-background-color):not(.has-medium-orchid-background-color):not(.has-grayish-green-background-color) .text-gradient.to-sunset-orange {
  background: linear-gradient(to bottom right, var(--wp--preset--color--lilac) 0%, var(--wp--preset--color--sunset-orange-80) 80%);
  background-clip: border-box;
  -webkit-background-clip: text;
}
.has-ultraviolet-background-color *:not(.has-white-background-color):not(.has-lilac-background-color):not(.has-soft-lavender-background-color):not(.has-electric-violet-background-color):not(.has-skywave-blue-background-color):not(.has-medium-orchid-background-color):not(.has-grayish-green-background-color) .text-gradient.to-skywave-blue {
  background: linear-gradient(to bottom right, var(--wp--preset--color--lilac) 0%, var(--wp--preset--color--skywave-blue-80) 80%);
  background-clip: border-box;
  -webkit-background-clip: text;
}
.has-ultraviolet-background-color *:not(.has-white-background-color):not(.has-lilac-background-color):not(.has-soft-lavender-background-color):not(.has-electric-violet-background-color):not(.has-skywave-blue-background-color):not(.has-medium-orchid-background-color):not(.has-grayish-green-background-color) .text-gradient.to-olive-gray {
  background: linear-gradient(to bottom right, var(--wp--preset--color--lilac) 0%, var(--wp--preset--color--olive-gray-80) 80%);
  background-clip: border-box;
  -webkit-background-clip: text;
}

.top-right-radius-130 {
  border-top-right-radius: clamp(60px, -15.5603448276rem + 24.1379310345vw, 130px);
}

header:has(.simple-mega-menu) .nav-row .nav-wrapper {
  margin-inline-end: 0.5rem;
}
header:has(.simple-mega-menu) nav.simple-mega-menu {
  border-radius: var(--wp--custom--border-radius--26) var(--wp--custom--border-radius--10) var(--wp--custom--border-radius--10) var(--wp--custom--border-radius--26);
  box-shadow: var(--wp--preset--shadow--button-shadow);
}
header:has(.simple-mega-menu) .polylang-langswitcher {
  --img-dimensions: 26px;
  --pll-margin: 0.25rem;
}
header:has(.simple-mega-menu) .polylang-langswitcher ul {
  display: flex;
  list-style: none;
  padding: 0;
  gap: var(--pll-margin);
}
header:has(.simple-mega-menu) .polylang-langswitcher ul li {
  padding: calc(var(--pll-margin) / 2);
}
header:has(.simple-mega-menu) .polylang-langswitcher ul li.current-lang {
  order: -1;
}
header:has(.simple-mega-menu) .polylang-langswitcher ul li a > img {
  display: block;
  width: var(--img-dimensions);
  height: var(--img-dimensions);
  border-radius: 999rem;
}
header:has(.simple-mega-menu) .polylang-langswitcher ul li a > span {
  display: none;
}

.logo-gradient-002 {
  overflow: clip;
  background: url(/wp-content/uploads/2025/10/logo-bg-lilac.svg) no-repeat, var(--wp--preset--gradient--01);
  background-position: -10% 50%;
}

.wp-block-buttons:has(> .wp-block-button:nth-child(2)) > .wp-block-button:first-child > .wp-block-button__link {
  border-top-left-radius: 26px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 10px;
}
.wp-block-buttons:has(> .wp-block-button:nth-child(2)) > .wp-block-button:not(:first-child):not(:last-child) > .wp-block-button__link {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

@property --color-first {
  syntax: "<color>";
  inherits: false;
  initial-value: rgba(226, 227, 255, 0.2509803922);
}
@property --color-second {
  syntax: "<color>";
  inherits: false;
  initial-value: rgba(151, 71, 255, 0.5019607843);
}
@property --color-second-pos {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
:root .wp-block-button .wp-block-button__link {
  --color-second: #9747FF80;
  padding-top: 0.591rem !important;
  padding-bottom: 0.591rem !important;
  background: linear-gradient(to right, var(--color-first) 0%, var(--color-second) var(--color-second-pos));
  transition: --color-first 175ms linear, --color-second-pos 250ms cubic-bezier(0.17, 0.84, 0.44, 1);
}
:root .wp-block-button .wp-block-button__link:hover {
  --color-first: #9747FF80;
  --color-second-pos: 50%;
}
:root .wp-block-button.amber .wp-block-button__link {
  --color-first: #FFFFFF1A;
  --color-second: #F39147B3;
}
:root .wp-block-button.amber .wp-block-button__link:hover {
  --color-first: #F39147B3;
}
:root .wp-block-button.orchid .wp-block-button__link {
  --color-first: #FFFFFF1A;
  --color-second: #BF60B9B3;
}
:root .wp-block-button.orchid .wp-block-button__link:hover {
  --color-first: #BF60B9B3;
}
:root .wp-block-button.skywave-blue .wp-block-button__link {
  --color-first: #FFFFFF1A;
  --color-second: #4C90E5B3;
}
:root .wp-block-button.skywave-blue .wp-block-button__link:hover {
  --color-first: #4C90E5B3;
}
:root .wp-block-button.grayish-green .wp-block-button__link {
  --color-first: #FFFFFF1A;
  --color-second: #7A937EB3;
}
:root .wp-block-button.grayish-green .wp-block-button__link:hover {
  --color-first: #7A937EB3;
}

.block-mm {
  --color-first: #ECECFF00;
  --color-second: #ECECFF00;
  --color-second-pos: 0%;
  background: linear-gradient(to right, var(--color-first) 0%, var(--color-second) var(--color-second-pos));
  transition: --color-first 250ms linear, --color-second 250ms linear, --color-second-pos 250ms cubic-bezier(0.17, 0.84, 0.44, 1) 250ms;
}
.block-mm:hover {
  --color-first: #ECECFF00;
  --color-second: #ECECFF00;
  --color-second-pos: 100%;
  transition: --color-first 125ms linear, --color-second 125ms linear, --color-second-pos 350ms cubic-bezier(0.17, 0.84, 0.44, 1);
}
.block-mm.orchid, .block-mm.to-orchid {
  --color-first: #ECECFF00;
  --color-second: #BF60B900;
  --color-second-pos: 0%;
}
.block-mm.orchid:hover, .block-mm.to-orchid:hover {
  --color-first: ##ECECFFCC;
  --color-second: #BF60B9CC;
  --color-second-pos: 100%;
}
.block-mm.electric-violet, .block-mm.to-electric-violet {
  --color-first: #ECECFF00;
  --color-second: #9747FF00;
  --color-second-pos: 0%;
}
.block-mm.electric-violet:hover, .block-mm.to-electric-violet:hover {
  --color-first: #ECECFFCC;
  --color-second: #9747FFCC;
  --color-second-pos: 100%;
}
.block-mm.amber, .block-mm.to-amber {
  --color-first: #ECECFF0;
  --color-second: #ECECFF00;
  --color-second-pos: 0%;
}
.block-mm.amber:hover, .block-mm.to-amber:hover {
  --color-first: #ECECFFCC;
  --color-second: #F39147CC;
  --color-second-pos: 100%;
}
.block-mm.skywave-blue, .block-mm.to-skywave-blue {
  --color-first: #ECECFF00;
  --color-second: #ECECFF00;
  --color-second-pos: 0%;
}
.block-mm.skywave-blue:hover, .block-mm.to-skywave-blue:hover {
  --color-first: #ECECFFCC;
  --color-second: #4C90E5CC;
  --color-second-pos: 100%;
}
.block-mm.grayish-green, .block-mm.to-grayish-green {
  --color-first: #ECECFF00;
  --color-second: #ECECFF00;
  --color-second-pos: 0%;
}
.block-mm.grayish-green:hover, .block-mm.to-grayish-green:hover {
  --color-first: #ECECFFCC;
  --color-second: #7A937ECC;
  --color-second-pos: 100%;
}

.block-gradient {
  --color-first: #24026300;
  --color-second: #24026300;
  --color-second-pos: 0%;
  background: linear-gradient(to bottom, var(--color-first) 0%, var(--color-second) var(--color-second-pos));
  transition: --color-first 300ms linear, --color-second 300ms linear, --color-second-pos 300ms cubic-bezier(0.17, 0.84, 0.44, 1) 300ms;
}
.block-gradient:hover {
  --color-first: #24026300;
  --color-second: #24026300;
  --color-second-pos: 100%;
  transition: --color-first 175ms linear, --color-second 175ms linear, --color-second-pos 300ms cubic-bezier(0.17, 0.84, 0.44, 1);
}
.block-gradient.orchid, .block-gradient.to-orchid {
  --color-first: #24026300;
  --color-second: #BF60B900;
  --color-second-pos: 0%;
}
.block-gradient.orchid:hover, .block-gradient.to-orchid:hover {
  --color-first: #240263CC;
  --color-second: #BF60B9CC;
  --color-second-pos: 100%;
}
.block-gradient.electric-violet, .block-gradient.to-electric-violet {
  --color-first: #24026300;
  --color-second: #9747FF00;
  --color-second-pos: 0%;
}
.block-gradient.electric-violet:hover, .block-gradient.to-electric-violet:hover {
  --color-first: #240263CC;
  --color-second: #9747FFCC;
  --color-second-pos: 100%;
}
.block-gradient.amber, .block-gradient.to-amber {
  --color-first: #24026300;
  --color-second: #F3914700;
  --color-second-pos: 0%;
}
.block-gradient.amber:hover, .block-gradient.to-amber:hover {
  --color-first: #240263CC;
  --color-second: #F39147CC;
  --color-second-pos: 100%;
}
.block-gradient.skywave-blue, .block-gradient.to-skywave-blue {
  --color-first: #24026300;
  --color-second: #4C90E500;
  --color-second-pos: 0%;
}
.block-gradient.skywave-blue:hover, .block-gradient.to-skywave-blue:hover {
  --color-first: #240263CC;
  --color-second: #4C90E5CC;
  --color-second-pos: 100%;
}
.block-gradient.grayish-green, .block-gradient.to-grayish-green {
  --color-first: #24026300;
  --color-second: #7A937E00;
  --color-second-pos: 0%;
}
.block-gradient.grayish-green:hover, .block-gradient.to-grayish-green:hover {
  --color-first: #240263CC;
  --color-second: #7A937ECC;
  --color-second-pos: 100%;
}

.toggle-wrapper {
  --translate-size: 3rem;
}
.toggle-wrapper > .is-layout-grid > * {
  display: flex;
  flex-direction: column;
}
.toggle-wrapper > .is-layout-grid > * > p:first-of-type {
  height: 100%;
}
@media (max-width: 980px) {
  .toggle-wrapper > .is-layout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 550px) {
  .toggle-wrapper > .is-layout-grid {
    grid-template-columns: 1fr;
  }
  .toggle-wrapper > .is-layout-grid > *:nth-child(even) {
    transform: translateY(0);
  }
}

main {
  min-width: 0;
}

.logo-slider-container {
  display: flex;
  width: 100%;
  max-width: var(--wp--style--global--wide-size, 1200px);
  margin-inline: auto;
  overflow-x: clip;
  -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 7%, rgb(0, 0, 0) 93%, rgba(0, 0, 0, 0) 100%);
          mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 7%, rgb(0, 0, 0) 93%, rgba(0, 0, 0, 0) 100%);
}
.logo-slider-container .slider-wrapper {
  display: flex;
  min-height: 100%;
  --x-dist: -1000px;
}
.logo-slider-container .slider-wrapper > div,
.logo-slider-container .slider-wrapper .cell {
  display: inline-flex;
  min-width: 120px;
  height: 100%;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}
.logo-slider-container .slider-wrapper > div > img,
.logo-slider-container .slider-wrapper .cell > img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}
.logo-slider-container .slider-wrapper > div:last-child,
.logo-slider-container .slider-wrapper .cell:last-child {
  margin-right: 0;
}
@media (max-width: 1280px) {
  .logo-slider-container .slider-wrapper > div,
  .logo-slider-container .slider-wrapper .cell {
    margin-right: 24px;
  }
}
@media (max-width: 768px) {
  .logo-slider-container .slider-wrapper > div,
  .logo-slider-container .slider-wrapper .cell {
    margin-right: 20px;
  }
}
@media (max-width: 480px) {
  .logo-slider-container .slider-wrapper > div,
  .logo-slider-container .slider-wrapper .cell {
    margin-right: 18px;
  }
}
@keyframes linear-translation {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(var(--x-dist));
  }
}

form label,
form input,
form select,
form textarea {
  width: 100%;
}
form input,
form textarea {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  font-size: var(--wp--preset--font-size--p);
  color: var(--wp--preset--color--dark);
  background-color: var(--wp--preset--color--lilac);
  border: 0 solid transparent;
  padding: 10px;
  border-top-left-radius: var(--wp--custom--border-radius--10);
  border-bottom-left-radius: var(--wp--custom--border-radius--10);
  border-top-right-radius: var(--wp--custom--border-radius--26);
  border-bottom-right-radius: var(--wp--custom--border-radius--26);
  outline: 0px solid var(--wp--preset--color--electric-violet);
  transition: outline ease 300ms;
}
form input:not(:-moz-placeholder), form textarea:not(:-moz-placeholder) {
  outline: 2px solid var(--wp--preset--color--electric-violet) !important;
}
form input:focus-visible, form input:not(:placeholder-shown),
form textarea:focus-visible,
form textarea:not(:placeholder-shown) {
  outline: 2px solid var(--wp--preset--color--electric-violet) !important;
}
form input::-moz-placeholder, form textarea::-moz-placeholder {
  color: var(--wp--preset--color--soft-lavender);
}
form input::placeholder,
form textarea::placeholder {
  color: var(--wp--preset--color--soft-lavender);
}
form input[type=submit] {
  --color-second: #9747FF80;
  cursor: pointer;
  color: inherit;
  outline: 2px solid var(--wp--preset--color--white) !important;
  padding-top: 0.591rem !important;
  padding-bottom: 0.591rem !important;
  padding-inline: var(--wp--preset--spacing--70);
  background: linear-gradient(to right, var(--color-first) 0%, var(--color-second) var(--color-second-pos));
  transition: --color-first 175ms linear, --color-second-pos 250ms cubic-bezier(0.17, 0.84, 0.44, 1);
}
form input[type=submit]:hover {
  --color-first: #9747FF80;
  --color-second-pos: 50%;
}
form .wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 0.6rem);
  color: var(--wp--preset--color--medium-orchid);
}
form .wpcf7-response-output {
  display: inline-block;
  padding: 7px var(--wp--preset--spacing--70) 10px 10px !important;
  margin-inline: 0 !important;
  margin-block-end: 0 !important;
  border-top-left-radius: var(--wp--custom--border-radius--10);
  border-bottom-left-radius: var(--wp--custom--border-radius--10);
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
  background-color: var(--wp--preset--color--dark-50);
  color: var(--wp--preset--color--skywave-blue);
  border: 2px solid var(--wp--preset--color--skywave-blue) !important;
}
form .wpcf7-response-output:empty {
  display: none;
}
form.invalid .wpcf7-response-output, form.unaccepted .wpcf7-response-output, form.payment-required .wpcf7-response-output {
  color: var(--wp--preset--color--amber);
  border-color: var(--wp--preset--color--amber) !important;
}
form.sent .wpcf7-response-output {
  color: var(--wp--preset--color--grayish-green);
  border-color: var(--wp--preset--color--grayish-green) !important;
}
form.failed .wpcf7-response-output, form.aborted .wpcf7-response-output {
  color: var(--wp--preset--color--medium-orchid);
  border-color: var(--wp--preset--color--medium-orchid) !important;
}

.simple-accordion .folded-part > label input[type=checkbox] {
  position: relative;
  width: 2rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  aspect-ratio: 1;
  transform: rotate(0deg);
  transition: transform 200ms ease-out;
  cursor: pointer;
}
.simple-accordion .folded-part > label input[type=checkbox]::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  width: 40%;
  aspect-ratio: 1;
  border-right: 2px solid var(--wp--preset--color--ultraviolet);
  border-bottom: 2px solid var(--wp--preset--color--ultraviolet);
  transform: translateX(-50%) rotate(45deg);
}
.simple-accordion .folded-part > label input[type=checkbox]:checked {
  transform: rotate(-180deg);
}
.simple-accordion .folded-part > label:not(:has(input[type=checkbox])) {
  position: relative;
  margin-inline-end: 0.6rem !important;
  --space-size: 40px;
  --arrow-size: 7px;
}
.simple-accordion .folded-part > label:not(:has(input[type=checkbox])):after {
  content: "";
  display: block;
  height: var(--space-size);
  aspect-ratio: 1;
}
.simple-accordion .folded-part > label:not(:has(input[type=checkbox])):before {
  content: "";
  position: absolute;
  display: block;
  width: var(--arrow-size);
  aspect-ratio: 1;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  right: calc(var(--space-size) / 2 - var(--arrow-size) / 2);
  transform: translateY(calc(var(--arrow-size) / -3)) rotate(45deg);
  transition: transform 200ms ease-out;
}
.simple-accordion .folded-part > label:not(:has(input[type=checkbox])).active:before {
  transform: translateY(calc(var(--arrow-size) / 3)) rotate(-135deg);
}
.simple-accordion .folded-part .title {
  cursor: pointer;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  margin-block-start: var(--wp--custom--spacing--small);
}
.simple-accordion .folded-part .title h3 {
  margin-block: 0 !important;
  padding-block: 0;
}
.simple-accordion .folded-part .content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms cubic-bezier(0, 0, 0, 1);
  margin-block-start: 0;
  margin-block-end: var(--wp--custom--spacing--small);
}
.simple-accordion .folded-part .content-wrapper > .content {
  display: block;
  padding: 0;
  overflow: hidden;
}
.simple-accordion .folded-part:has(input:checked) .content-wrapper, .simple-accordion .folded-part:has(> .title.active) .content-wrapper {
  grid-template-rows: 1fr;
}

body.block-editor-iframe__body .wp-site-blocks:has(> main):has(> footer) {
  display: grid;
  grid-template-rows: auto 1fr auto;
}