@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Lexend:wght@100..900&display=swap");
/**
 * Swiper 12.1.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 24, 2026
 */
: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-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.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 */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}

: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;
  }
  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       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;
  ::slotted(.swiper-navigation-icon),
  .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 {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .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;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .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;
    -webkit-appearance: none;
       -moz-appearance: 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;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

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

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

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

.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

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

.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 */
.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

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

.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

/* ==========================================================================
   cover / tools
   ========================================================================== */
/* ==========================================================================
   cover / typo
   ========================================================================== */
/* ==========================================================================
   COLORS / SETTINGS
   ========================================================================== */
:root {
  --color-white: #fff;
  --color-black: #626262;
  --color-accueil: #373737;
  --color-primary: #E0574D;
  --color-secondary: #52A0DF;
  --color-tertiary: #E9C654;
  --color-bg-primary: #F4E9D2;
  --color-bg-secondary: #3e92cc;
  --shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.0);
}

/* ==========================================================================
   FONTS / SETTINGS
   ========================================================================== */
:root {
  --font-primary: "Lexend", sans-serif;
  --font-secondary: "Funnel Sans", sans-serif;
  --font-size-content: clamp(0.88rem, 1.25vw + 0.5rem, 1.63rem);
  --font-size-h1: clamp(4.5rem, 7.92vw + 2.13rem, 9.25rem);
  --font-size-h2: clamp(2.5rem, 2.5vw + 1.75rem, 4rem);
  --font-size-h3: clamp(1.75rem, 2.71vw + 0.94rem, 3.38rem);
  --font-size-h4: clamp(1.25rem, 2.92vw + 0.38rem, 3rem);
  --font-size-h5: clamp(1rem, 2.5vw + 0.25rem, 2.5rem);
  --font-size-liens-header: 28px;
  --font-size-logo: clamp(1.88rem, 1.04vw + 1.56rem, 2.5rem);
}

/* ==========================================================================
   DIMENSIONS / SETTINGS
   ========================================================================== */
:root {
  --spacing-xs: 10px;
  --spacing-sm: 20px;
  --spacing-sd: 30px;
  --spacing-md: 40px;
  --spacing-lg: 60px;
  --spacing-xl: 100px;
  --grid-gap: 30px;
}

/* ==========================================================================
   easing / settings
   ========================================================================== */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   RESET / GENERIC
   ========================================================================== */
html {
  box-sizing: border-box;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   BODY / ELEMENT
   Le body permet d'initialiser les propriétés générales de la page.
   Les éléments de la page vont hérités des propriétés inscrite dans body
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-black);
  font-family: var(--font-secondary);
  font-size: var(--font-size-content);
  line-height: 1.6;
  scroll-behavior: smooth;
}

p {
  margin: 0;
  font-weight: 300;
  line-height: 1.2;
}

.bold {
  font-weight: 700;
}

/* ==========================================================================
   HEADINGS / ELEMENT
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
  font-weight: bold;
  margin: 0;
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 900;
  font-family: var(--font-primary);
  letter-spacing: -3px;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 800;
  font-family: var(--font-primary);
  letter-spacing: -3px;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 700;
  font-family: var(--font-primary);
  letter-spacing: -3px;
}

h4 {
  font-size: var(--font-size-h3);
  font-weight: 700;
  font-family: var(--font-secondary);
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 600;
  font-family: var(--font-secondary);
}

h6 {
  font-size: var(--font-size-h6);
  font-family: var(--font-secondary);
}

/* ==========================================================================
   LINKS / ELEMENTS
   Style de base de tous les liens et bouton du site
   ========================================================================== */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease-out;
}
a:hover {
  color: var(--color-primary);
  text-decoration: none;
}
a.disabled {
  color: #e2e2e2;
}

.lien {
  display: flex;
  align-items: flex-end;
}
.lien .icon {
  transition: all 0.3s ease-out;
  fill: var(--color-primary);
  transform: rotate(-45deg);
  margin: 0 0 2px 4px;
}

/* ==========================================================================
   WRAPPER / ELEMENT
   ========================================================================== */
.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.icon {
  fill: currentColor;
  display: inline-block;
  flex: 0 0 auto;
  height: 1em;
  vertical-align: middle;
  width: 1em;
  stroke: transparent;
}

.icon--stroke {
  fill: transparent;
  stroke: currentColor;
}

.icon--xxs {
  height: 0.75em;
  width: 0.75em;
}

.icon--xs {
  height: 0.9em;
  width: 0.9em;
}

.icon--sm {
  height: 1em;
  width: 1em;
}

.icon--md {
  height: 1.4em;
  width: 1.4em;
}

.icon--lg {
  height: 2.75em;
  width: 2.75em;
}

.icon--xl {
  height: 3.5em;
  width: 3.5em;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  height: 140px;
  color: var(--color-black);
  background-color: var(--color-bg-primary);
  transition: all 0.3s ease-in-out;
}
.header .wrapper {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}
.header .liens_header {
  display: flex;
  gap: var(--grid-gap);
  align-items: center;
  height: 100%;
  font-size: var(--font-size-liens-header);
  font-weight: 700;
  margin: 0;
  padding: 0;
}
.header .liens_header li {
  list-style: none;
  overflow: hidden;
}
.header .liens_header :nth-child(2n) a::after {
  background-color: var(--color-secondary);
}
.header .liens_header :nth-child(3n) a::after {
  background-color: var(--color-tertiary);
}
.header .lien_header {
  position: relative;
}
.header .lien_header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 90%;
  height: 4px;
  width: 100%;
  background-color: var(--color-primary);
  border-radius: var(--spacing-sm);
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}
.header .lien_header:hover {
  color: var(--color-black);
}
.header .lien_header:hover::after {
  transform: scaleX(100%);
}
.header-is-hidden.is-scrolling-down:not(.nav-is-active) .header {
  opacity: 0;
  transform: translateY(-30%);
}
.header {
  /*.header-is-hidden & {
      background-color: var(--color-bg-primary);
  }*/
}

.logo {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: var(--font-size-logo);
  display: flex;
}
.logo .icon-logo-a {
  fill: var(--color-primary);
  transition: all 0.3s ease-in-out;
}
.logo .icon-logo-p {
  fill: var(--color-secondary);
  transition: all 0.3s ease-in-out;
}
.logo:hover .icon-logo-a {
  fill: var(--color-tertiary);
}
.logo:hover .icon-logo-p {
  fill: var(--color-tertiary);
}

.liens_header a {
  color: var(--color-black);
  transition: all 0.3s ease-in-out;
}

.header_fonce {
  background: var(--color-accueil);
}
.header_fonce .header_fonce {
  color: var(--color-bg-primary);
}
.header_fonce .header_fonce:hover {
  color: var(--color-bg-primary);
}
.header_fonce .liens_header a {
  color: var(--color-bg-primary);
}
.header_fonce .liens_header a:hover {
  color: var(--color-bg-primary);
}
.header_fonce:hover {
  color: inherit;
}
.header_fonce #header_ligne_droite {
  background-color: var(--color-bg-primary);
}
.header_fonce #header_ligne_gauche {
  background-color: var(--color-bg-primary);
}

.nav-is-active body {
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .nav-is-active body {
    overflow: auto;
  }
}

.bouton_mobile {
  --bar-height: 8px;
  --bar-width: 60px;
  --bar-spacer: 10px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: center;
  width: var(--bar-width);
  height: var(--bar-width);
  z-index: 10;
}
.bouton_mobile span {
  background-color: var(--color-black);
  border-radius: 3px;
  height: var(--bar-height);
  width: 100%;
  position: absolute;
  top: calc(50% - var(--bar-height) / 2);
  left: calc(50% - var(--bar-width) / 2);
  transition: all 0.3s ease-in-out;
}
.bouton_mobile span:nth-child(1) {
  top: calc(50% - var(--bar-height) / 2 - var(--bar-height) - var(--bar-spacer));
}
.bouton_mobile span:nth-child(3) {
  top: calc(50% - var(--bar-height) / 2 + var(--bar-height) + var(--bar-spacer));
}
.bouton_mobile:hover span {
  background-color: var(--color-tertiary);
}
.nav-is-active .bouton_mobile span {
  top: calc(50% - var(--bar-height) / 2);
  background-color: var(--color-bg-primary);
}
.nav-is-active .bouton_mobile span:nth-child(1) {
  transform: rotate(45deg);
}
.nav-is-active .bouton_mobile span:nth-child(2) {
  transform: scaleX(0);
}
.nav-is-active .bouton_mobile span:nth-child(3) {
  transform: rotate(-45deg);
}
.nav-is-active .bouton_mobile:hover span {
  background-color: var(--color-black);
}
@media screen and (min-width: 1024px) {
  .bouton_mobile {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .bouton_mobile {
    --bar-height: 6px;
    --bar-width: 40px;
    --bar-spacer: 8px;
  }
}

.nav-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(1, 0, 0, 1);
  background-color: var(--color-secondary);
  z-index: 10;
}
.nav-is-active .nav-primary {
  transform: translateY(0);
}
.nav-primary ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  transform: translateY(-70%);
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-primary ul a {
  text-align: center;
  display: block;
  color: var(--color-bg-primary);
}
.nav-primary ul a::after {
  opacity: 0;
}
.nav-is-active .nav-primary ul {
  transform: translateY(0);
}
@media screen and (min-width: 1024px) {
  .nav-primary {
    display: flex;
    background: unset;
    position: relative;
    height: auto;
    width: auto;
    padding: 0;
    transform: translateY(0);
    z-index: 2;
    overflow-y: visible;
  }
  .nav-primary ul {
    flex-direction: row;
    transform: translateY(0);
  }
  .nav-primary ul a {
    color: var(--color-black);
  }
  .nav-primary ul a::after {
    opacity: 1;
  }
}

.section {
  padding: var(--spacing-xl) 0;
}

.premiere_section {
  padding: 140px 0 var(--spacing-xl);
}

.full_section {
  height: 960px;
}

.grande_section {
  height: 100vh;
}
.grande_section .wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.moyenne_section {
  height: 50vh;
}

.section--horiz {
  display: flex;
  overflow: hidden;
}
.section--horiz .section__content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  flex-shrink: 0;
}

.plus {
  text-align: center;
}
.plus h2 {
  opacity: 0;
  margin-top: 60px;
}

.wick {
  display: flex;
  justify-content: center;
  align-items: center;
}

.marche {
  text-align: center;
}
.marche .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.marche h5 {
  width: 70%;
  line-height: 1.2;
}

.hero {
  color: var(--color-white);
  padding-top: 140px;
  overflow: hidden;
}
.hero .wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 7fr 5fr;
}
.hero .wrapper .hero_media, .hero .wrapper .hero_media_2 {
  padding: 100px 0;
}
.hero .wrapper .hero_media .hero_rond_personne, .hero .wrapper .hero_media_2 .hero_rond_personne {
  margin-top: 100px;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: var(--color-tertiary);
  animation: masque 0.6s forwards ease-out;
  transform: scale(90%);
}
.hero .wrapper .hero_media .hero_rond_personne img, .hero .wrapper .hero_media_2 .hero_rond_personne img {
  position: absolute;
  bottom: -15%;
  left: 0.2%;
  clip-path: ellipse(53% 50% at 50% 38%);
  transform: scale(105%);
}
@keyframes masque {
  0% {
    transform: scale(90%);
  }
  100% {
    transform: scale(100%);
  }
}
.hero .wrapper .hero_content .beige {
  color: var(--color-bg-primary);
  clip-path: inset(0 calc(57.9% + 40px) -30px -3px);
}
.hero .wrapper .hero_content .gris {
  position: absolute;
  top: 40px;
  z-index: -1;
  color: var(--color-black);
}
.hero .wrapper .hero_content .inverse {
  color: var(--color-black);
  width: 100%;
}
.hero .wrapper .hero_content .inverse span {
  display: inline-block;
  width: 95%;
}
.hero .wrapper .hero_content .inverse .h1_beige {
  position: absolute;
  top: 40px;
  z-index: 2;
}
.hero .wrapper .hero_content .inverse .h1_gris {
  position: absolute;
  top: 40px;
}
.hero .wrapper .hero_content .inverse .h2_beige {
  position: absolute;
  top: 20vh;
  z-index: 2;
}
.hero .wrapper .hero_content .inverse .h2_gris {
  position: absolute;
  top: 20vh;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .hero .wrapper .hero_content .inverse .h2_beige,
  .hero .wrapper .hero_content .inverse .h2_gris {
    width: 50%;
  }
  .hero .wrapper .hero_content .inverse .h2_beige {
    clip-path: inset(0 calc(20% + 40px) -30px -3px);
  }
}
@media screen and (max-width: 768px) {
  .hero .wrapper {
    grid-template-columns: 1fr;
  }
  .hero .hero_content {
    height: 20vh;
  }
}
.hero .video-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero_projet {
  height: 90vh;
}
.hero_projet .wrapper {
  grid-template-columns: 1fr 1fr;
  padding-bottom: 100px;
}
.hero_projet .wrapper .hero_media {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero_projet .wrapper .hero_content h1 {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.hero_projet .wrapper .hero_content .inverse {
  width: 200%;
  position: relative;
}
.hero_projet .wrapper .hero_content .inverse span {
  width: 100%;
}
.hero_projet .wrapper .hero_content .beige {
  clip-path: inset(0 0 0 50%);
  z-index: 1;
}
.hero_projet .wrapper h3 {
  margin: 350px 0 30px 0;
  color: var(--color-black);
}
.hero_projet .wrapper img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_projet .wrapper .hero_media {
  padding: 0;
}
.hero_projet .wrapper .hero_media p {
  color: var(--color-black);
  font-weight: 500;
  text-align: right;
  animation: moveSideToSide 2s infinite ease-in-out;
}
@keyframes moveSideToSide {
  0% {
    margin-right: 0;
  }
  50% {
    margin-right: 20px;
  }
  100% {
    margin-right: 0;
  }
}
.hero_projet .forme_bleue_hero_profil {
  top: 35vh;
  left: 2%;
  height: 300px;
  aspect-ratio: 1/3;
  z-index: -2;
  background-color: var(--color-secondary);
  clip-path: polygon(0% 0%, 100% 30%, 100% 100%, 0% 70%);
}
.hero_projet .forme_jaune_hero_profil {
  top: 20vh;
  left: 0.5%;
  height: 250px;
  aspect-ratio: 1/2.5;
  z-index: -3;
  background-color: var(--color-tertiary);
  clip-path: polygon(0% 30%, 100% 0%, 100% 70%, 0% 100%);
}
.hero_projet .forme_rouge_hero_profil {
  top: 45vh;
  left: -500px;
  height: 400px;
  aspect-ratio: 6.8/3;
  z-index: -3;
  background-color: var(--color-primary);
  clip-path: polygon(0% 0%, 50% 0%, 100% 100%, 50% 100%);
}
@media screen and (max-width: 1440px) {
  .hero_projet .forme_rouge_hero_profil {
    height: 300px;
    left: -400px;
  }
}
@media screen and (max-width: 768px) {
  .hero_projet {
    height: 100%;
  }
  .hero_projet .wrapper {
    grid-template-columns: 1fr;
  }
  .hero_projet .wrapper .hero_content {
    margin-top: 30px;
    height: 100%;
    grid-area: 2/1/3/2;
  }
  .hero_projet .wrapper .hero_content .inverse {
    width: 100%;
  }
  .hero_projet .wrapper .hero_content .inverse .h1_beige {
    display: none;
    position: static;
  }
  .hero_projet .wrapper .hero_content .inverse .h1_gris {
    position: static;
  }
  .hero_projet .wrapper h3 {
    margin: 10px 0 30px 0;
  }
  .hero_projet .forme_rouge_hero_profil {
    top: 30vh;
    left: -500px;
  }
  .hero_projet .forme_bleue_hero_profil {
    top: 30vh;
  }
}
@media screen and (max-width: 480px) {
  .hero_projet {
    height: 100%;
  }
  .hero_projet .hero_media {
    min-height: 350px;
  }
  .hero_projet .hero_media .webgl_colonne_element {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero_projet .wrapper {
    grid-template-columns: 1fr;
  }
  .hero_projet .forme_rouge_hero_profil {
    top: 200px;
  }
  .hero_projet .forme_bleue_hero_profil {
    top: 250px;
    height: 240px;
  }
  .hero_projet .forme_jaune_hero_profil {
    top: 140px;
    height: 200px;
  }
}

.hero_projet_3 .wrapper h3 {
  margin: 250px 0 30px 0;
}
@media screen and (max-width: 768px) {
  .hero_projet_3 .wrapper h3 {
    margin: 10px 0 30px 0;
  }
}

.hero_main {
  color: var(--color-white);
  padding-top: 140px;
  height: 100vh;
  position: relative;
}
.hero_main .hero_media {
  height: 100%;
}
.hero_main .hero_media .hero_media_masque .masque_content {
  position: absolute;
  overflow: hidden;
  inset: 0;
  --size: 350px;
  -webkit-mask-image: radial-gradient(circle var(--size) at var(--mask-x, 50%) var(--mask-y, 50%), black 99.9%, transparent 100%);
  mask-image: radial-gradient(circle var(--size) at var(--mask-x, 50%) var(--mask-y, 50%), black 99.9%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  z-index: 2;
}
.hero_main .hero_media .hero_media_masque .masque_bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  z-index: 1;
  margin-bottom: 2px;
}
.hero_main .hero_media .hero_media_masque img {
  position: absolute;
  top: 180px;
  right: 10%;
  display: block;
  height: 85%;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_main .hero_media .hero_media_masque .masque {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: transparent;
  z-index: 3;
}
.hero_main .hero_media .hero_media_masque .forme_jaune {
  z-index: 1;
}
.hero_main .hero_media .hero_media_mobile {
  padding: 100px 20px;
  display: none;
  justify-content: flex-end;
}
.hero_main .hero_media .hero_media_mobile .hero_rond_personne {
  margin-top: 140px;
  position: relative;
  width: 70%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: var(--color-tertiary);
  animation: masque 0.6s forwards ease-out;
  transform: scale(90%);
}
.hero_main .hero_media .hero_media_mobile .hero_rond_personne img {
  position: absolute;
  bottom: -15%;
  left: 0.2%;
  clip-path: ellipse(53% 50% at 50% 38%);
  transform: scale(105%);
}
@keyframes masque {
  0% {
    transform: scale(90%);
  }
  100% {
    transform: scale(100%);
  }
}
.hero_main .hero_media .ligne_verticale_hero {
  position: absolute;
  height: 8px;
  width: 70%;
  bottom: 5%;
  background-color: var(--color-black);
  z-index: 1;
  left: 8%;
}
.hero_main .hero_media .ligne_horizontale_hero {
  position: absolute;
  height: 35vh;
  width: 8px;
  bottom: 0;
  background-color: var(--color-black);
  z-index: 1;
  left: 14%;
}
.hero_main .hero_media .ligne_horizontale_hero_2 {
  position: absolute;
  height: 25vh;
  width: 8px;
  background-color: var(--color-black);
  z-index: 1;
  left: 16%;
  bottom: 0;
}
.hero_main .hero_media .ligne_horizontale_hero_3 {
  height: 30vh;
  width: 8px;
  top: 35%;
  background-color: var(--color-black);
  z-index: 1;
  left: 80%;
}
.hero_main .hero_content, .hero_main .hero_content_2 {
  position: absolute;
  top: 170px;
  left: 8%;
  z-index: 2;
}
.hero_main .hero_content h1, .hero_main .hero_content h3 {
  color: var(--color-black);
}
.hero_main .hero_content_2 {
  z-index: 1;
}
.hero_main .hero_content_2 h1, .hero_main .hero_content_2 h3 {
  color: var(--color-bg-primary);
}
.hero_main .rectangle_hero {
  --gap: 40px;
  left: calc(var(--gap) * -1);
  width: calc(40% + var(--gap));
  height: 600px;
  z-index: 2;
  animation: intro_rect 0.6s forwards ease-out;
  clip-path: polygon(0 0, 0 60%, 100% 60%, 100% 0);
}
@keyframes intro_rect {
  0% {
    clip-path: polygon(0 0, 0 60%, 100% 60%, 100% 0);
  }
  100% {
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
}
.hero_main .cercle_hero_gros {
  --size: 34%;
  top: 45vh;
  aspect-ratio: 1/1;
  left: 18%;
  width: var(--size);
  border-radius: 100%;
  z-index: 1;
  animation: intro_cercle 0.6s forwards ease-out;
  opacity: 0;
}
@keyframes intro_cercle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero_main .cercle_hero_gros_2 {
  --size: 100%;
  top: calc(140px + 35vh);
  aspect-ratio: 1/1;
  left: 40%;
  width: var(--size);
  border-radius: 100%;
  z-index: 1;
  animation: intro_cercle_2 0.6s forwards ease-out;
  opacity: 0;
}
@keyframes intro_cercle_2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero_main .triangle_hero {
  --border-size: 200px;
  --color: var(--color-tertiary);
  border-left: var(--border-size) solid transparent;
  border-right: var(--border-size) solid transparent;
  border-bottom: calc(var(--border-size) * 5 / 3) solid var(--color);
  z-index: 3;
  opacity: 1;
  top: 30vh;
}
@media screen and (max-width: 1440px) {
  .hero_main .hero_media img {
    right: 0;
  }
  .hero_main .v .masque_content {
    --size: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .hero_main .hero_media img {
    right: -10%;
  }
  .hero_main .cercle_hero_gros {
    left: 3%;
  }
}
@media screen and (max-width: 768px) {
  .hero_main .hero_media_masque {
    display: none;
  }
  .hero_main .hero_media .hero_media_mobile {
    display: flex;
  }
  .hero_main .hero_media img {
    right: -30%;
    bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .hero_main .hero_media .masque_content {
    --size: 200px;
  }
  .hero_main .hero_media .ligne_horizontale_hero_2 {
    left: 20%;
  }
  .hero_main .hero_media .ligne_horizontale_hero_3 {
    left: 90%;
  }
  .hero_main .hero_content, .hero_main .hero_content_2 {
    left: 0;
    padding: 0 20px;
  }
}
.hero_main .video-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.button {
  --circle: var(--color-primary);
  --size: 140px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 12px 22px;
  color: var(--color-black);
  background: var(--color-tertiary);
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
}

/* the circle */
.button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--size);
  height: var(--size);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  background: var(--circle);
  opacity: 1;
  pointer-events: none;
  transition: transform 330ms ease-out, opacity 220ms;
  z-index: -1;
}

.button:hover {
  color: var(--color-bg-primary);
}

/* hover/focus state (keyboard accessible via :focus-visible) */
.button:hover::after,
.button:focus-visible::after {
  transform: translate(-50%, -50%) scale(2);
  opacity: 1;
}

/* ==========================================================================
   carousel / component
   ========================================================================== */
.swiper {
  --size-pagination: 24px;
  --size-pagination-gap: 20px;
  margin: 0;
  width: 100%;
  position: relative;
}
.swiper .swiper-pagination-bullets {
  --size-pagination: 24px;
  --size-pagination-gap: 10px;
  gap: var(--size-pagination-gap);
  display: flex;
  flex-direction: column;
  right: var(--spacing-sd);
}
.swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  border: 0px solid var(--color-black);
  background-color: var(--color-black);
  width: var(--size-pagination);
  height: var(--size-pagination);
  border-radius: 100%;
  opacity: 1;
  transition: all 0.3s ease-out;
  margin: 0;
}
.swiper .swiper-pagination-bullets .swiper-pagination-bullet-active {
  border: 12px solid var(--color-primary);
  background-color: var(--color-black);
}

.footer {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 100px;
  color: var(--color-black);
  background-color: var(--color-bg-primary);
}
.footer .wrapper {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}
.footer .liens_footer {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  list-style: none;
  margin: var(--spacing-sm) 0;
  padding: 0;
}
.footer .liens_footer > :nth-child(3n+1) .lien_footer {
  background-color: var(--color-primary);
}
.footer .liens_footer > :nth-child(3n+2) .lien_footer {
  background-color: var(--color-secondary);
}
.footer .liens_footer > :nth-child(3n) .lien_footer {
  background-color: var(--color-tertiary);
}
.footer .lien_footer {
  --size-bg-rs: 50px;
  height: var(--size-bg-rs);
  width: var(--size-bg-rs);
  background-color: var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-bg-primary);
  border-radius: calc(var(--size-bg-rs) / 2) 0;
  border: 2px transparent;
}
.footer .lien_footer:hover {
  border-radius: calc(var(--size-bg-rs) / 2);
}
@media screen and (max-width: 768px) {
  .footer .lien_footer {
    --size-bg-rs: 40px;
  }
}
@media screen and (max-width: 480px) {
  .footer .liens_footer {
    gap: 15px;
  }
}

.footer_mini {
  background: none;
}
.footer_mini .wrapper {
  justify-content: flex-end;
}

.footer_fonce {
  background: var(--color-accueil);
}
.footer_fonce .separateur {
  background-color: var(--color-bg-primary);
}
.footer_fonce .lien_footer {
  color: var(--color-accueil);
}

.separateur {
  height: 5px;
  background-color: var(--color-black);
  position: absolute;
}

.header .separateur {
  bottom: 0;
}

.footer .separateur {
  top: 0;
}

#header_ligne_gauche {
  left: 0;
  width: 160px;
  z-index: 1;
}

#header_ligne_droite {
  right: 0;
  width: 150px;
  z-index: 1;
}

@media screen and (min-width: 1020px) {
  .separateur_header_footer #header_ligne_gauche {
    width: calc(5% + 100px);
  }
  .separateur_header_footer #header_ligne_droite {
    width: 500px;
  }
}
@media screen and (min-width: 1520px) {
  .separateur_header_footer #header_ligne_gauche {
    width: calc(5% + 100px);
  }
  .separateur_header_footer #header_ligne_droite {
    width: calc(5% + 500px);
  }
}
@media screen and (min-width: 1600px) {
  .separateur_header_footer #header_ligne_gauche {
    width: calc(10% + 100px);
  }
  .separateur_header_footer #header_ligne_droite {
    width: calc(10% + 470px);
  }
}
@media screen and (min-width: 1700px) {
  .separateur_header_footer #header_ligne_gauche {
    width: calc(15% + 100px);
  }
  .separateur_header_footer #header_ligne_droite {
    width: calc(15% + 440px);
  }
}
@media screen and (min-width: 1920px) {
  .separateur_header_footer #header_ligne_gauche {
    width: calc(20% + 100px);
  }
  .separateur_header_footer #header_ligne_droite {
    width: calc(20% + 440px);
  }
}
@media screen and (min-width: 2260px) {
  .separateur_header_footer #header_ligne_gauche {
    width: calc(25% + 100px);
  }
  .separateur_header_footer #header_ligne_droite {
    width: calc(25% + 440px);
  }
}
@media screen and (min-width: 2680px) {
  .separateur_header_footer #header_ligne_gauche {
    width: calc(27% + 100px);
  }
  .separateur_header_footer #header_ligne_droite {
    width: calc(27% + 440px);
  }
}

.souligne {
  position: relative;
}
.souligne::after {
  content: "";
  position: absolute;
  height: 4px;
  width: var(--width-after-souligne, 0);
  bottom: -4px;
  left: 0;
  background-color: var(--color-primary);
}

.has-js {
  --transition-scrolly: all 0.6s ease-out;
}
.has-js [data-scrolly=fromBottom] {
  opacity: 0;
  transform: translateY(100%);
  transition: var(--transition-scrolly);
}
.has-js [data-scrolly=fromBottom].is-active {
  opacity: 1;
  transform: translateY(0);
}
.has-js [data-scrolly=fromLeft] {
  opacity: 0;
  transform: translateX(-100%);
  transition: var(--transition-scrolly);
}
.has-js [data-scrolly=fromLeft].is-active {
  opacity: 1;
  transform: translateX(0);
}
.has-js [data-scrolly=fromTop] {
  opacity: 0;
  transform: translateY(-100%);
  transition: var(--transition-scrolly);
}
.has-js [data-scrolly=fromTop].is-active {
  opacity: 1;
  transform: translateY(0);
}
.has-js [data-scrolly=fromRight] {
  opacity: 0;
  transform: translateX(100%);
  transition: var(--transition-scrolly);
}
.has-js [data-scrolly=fromRight].is-active {
  opacity: 1;
  transform: translateX(0);
}

.forme {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  /*

  Pour Triangles

  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 180px solid #f1c40f;

  */
}

.forme_bg {
  position: relative;
}
.forme_bg::after {
  --gap: 24px;
  content: "";
  position: absolute;
  top: var(--gap);
  left: var(--gap);
  height: 100%;
  width: 100%;
  z-index: -2;
}

.triangle {
  --border-size: 200px;
  --color: var(--color-tertiary);
  border-left: var(--border-size) solid transparent;
  border-right: var(--border-size) solid transparent;
  border-bottom: calc(var(--border-size) * 5 / 3) solid var(--color);
  z-index: -1;
  opacity: 0;
}

.cercle_rouge_chien {
  --size: 50%;
  left: -10%;
  transform: scale(0.5);
  width: var(--size);
  aspect-ratio: 1/1;
  border-radius: 100%;
  z-index: -1;
}

.carre_bleu_chien {
  --size: 40%;
  top: 15vh;
  left: 75%;
  height: var(--size);
  aspect-ratio: 1/1;
  z-index: -2;
  opacity: 0;
}

.triangle_jaune_chien {
  left: 50%;
  top: 40vh;
  z-index: -3;
}

.forme_rouge {
  background-color: var(--color-primary);
}

.forme_bleue {
  background-color: var(--color-secondary);
}

.forme_jaune {
  background-color: var(--color-tertiary);
}

.triangle_rouge {
  --color: var(--color-primary);
}

.place {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100vh;
}
.place .cercle_rouge_place, .place .cercle_bleue_place {
  --size: 220vh;
  width: var(--size);
  top: -58vh;
  aspect-ratio: 1/1;
  border-radius: 100%;
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}
.place .cercle_rouge_place {
  left: calc(0vw - var(--size) / 2);
}
.place .cercle_bleue_place {
  clip-path: inset(0 0 0 50%);
  left: calc(100vw - var(--size) / 2);
}
.place .contenu_initial_place .cercle_jaune_place {
  --size: 1px;
  z-index: -1;
  width: var(--size);
  aspect-ratio: 1/1;
  border-radius: 100%;
  top: 55%;
  left: 42%;
  opacity: 0;
}
.place .contenu_initial_place .texte_initial_place {
  opacity: 0;
  margin-top: 10vh;
}
.place .contenu_final_place .texte_final_place {
  transform: translateY(50%);
  opacity: 0;
}
.place .contenu_final_place .triangle_jaune_place {
  --border-size: 200px;
  left: calc(50% - var(--border-size));
  top: 50%;
}
@media screen and (max-width: 1024px) {
  .place .contenu_final_place .triangle_jaune_place {
    --border-size: 150px;
  }
}

.competences .wrapper {
  display: flex;
  justify-content: center;
}
.competences .grid_competences {
  display: grid;
  grid-template-columns: 1fr 12fr;
  padding: 0 5vw;
}
.competences .grid_competences .lignes_competences {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-area: 1/1/5/2;
}
.competences .grid_competences .lignes_competences .ligne_competences {
  position: relative;
  width: 5px;
  background-color: var(--color-black);
}
.competences .card_contenant_competences {
  display: flex;
  gap: 3vw;
}
.competences .card_contenant_competences .connection_competences {
  display: flex;
  align-items: center;
}
.competences .card_contenant_competences .connection_competences .ligne_connection_competences {
  height: 5px;
  background-color: var(--color-black);
}
.competences .card_contenant_competences .connection_competences .cercle_connection_competences {
  --size: 40px;
  height: var(--size);
  width: var(--size);
  border: 5px solid var(--color-black);
  border-radius: 100%;
}
.competences .card_contenant_competences .card_competences {
  display: flex;
  flex-direction: column;
  padding: 60px 0;
  width: 80%;
}
.competences .card_contenant_competences .card_competences .card_media::after {
  background-color: var(--color-tertiary);
}
.competences .card_contenant_competences .card_competences .card_media .video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.competences .card_contenant_competences .card_competences .card_content {
  margin-bottom: 20px;
}
.competences .competences_titre {
  height: 40vh;
  display: flex;
  align-items: center;
}
.competences .competences_titre .card_competences .card_content {
  margin: 0;
}
.competences .competence_2 .card_competences .card_applications .card_application {
  background-color: var(--color-secondary);
}
.competences .competence_2 .card_competences .card_media::after {
  background-color: var(--color-secondary);
}
.competences .competence_3 .card_competences .card_applications .card_application {
  background-color: var(--color-primary);
}
.competences .competence_3 .card_competences .card_media::after {
  background-color: var(--color-primary);
}
.competences .video-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .competences .card_contenant_competences .connection_competences .cercle_connection_competences {
    --size: 25px;
  }
  .competences .grid_competences .lignes_competences > :nth-child(1) {
    display: none;
  }
  .competences .grid_competences .lignes_competences > :nth-child(2) {
    display: none;
  }
  .competences .grid_competences .lignes_competences {
    gap: 4px;
  }
  .competences .grid_competences .lignes_competences .ligne_competences {
    width: 4px;
  }
  .competences .grid_competences {
    padding: 0;
  }
  .competences .card_applications .card_application {
    --size: 40px;
  }
}

.card_applications {
  display: flex;
  gap: 20px;
  margin-top: 44px;
}
.card_applications .card_application {
  --size: 60px;
  height: var(--size);
  width: var(--size);
  background-color: var(--color-tertiary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  box-shadow: var(--shadow);
}
.card_applications .card_application svg {
  fill: var(--color-bg-primary);
}

.competences .card_contenant_competences .connection_competences .ligne_connection_competences_4 {
  width: 5vw;
}

.chien {
  position: relative;
  padding: 20vh 0;
  overflow: hidden;
}
.chien .wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30%;
}
.chien .chien_titre {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  height: 100%;
  color: var(--color-bg-primary);
  padding-top: 200px;
}
.chien .grid_images_chien {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  height: 500px;
}
.chien .grid_images_chien img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.chien .grid_images_chien .grid_chien_1 {
  grid-column: span 2/span 2;
  position: relative;
}
.chien .grid_images_chien .grid_chien_1 .grid_image_chien_1 {
  position: absolute;
  left: 0;
  top: 60px;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.chien .grid_images_chien .grid_chien_2 {
  grid-column: span 4/span 4;
  grid-column-start: 3;
  position: relative;
}
.chien .grid_images_chien .grid_chien_2 .grid_image_chien_2 {
  position: absolute;
  left: 0;
  top: 60px;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.chien .grid_images_chien .grid_chien_3 {
  grid-column: span 4/span 4;
  grid-row: span 2/span 2;
  grid-row-start: 2;
  position: relative;
}
.chien .grid_images_chien .grid_chien_3 .grid_image_chien_3 {
  position: absolute;
  left: 0;
  top: 60px;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.chien .grid_images_chien .grid_chien_4 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 5;
  grid-row-start: 2;
  position: relative;
}
.chien .grid_images_chien .grid_chien_4 .grid_image_chien_4 {
  position: absolute;
  left: 0;
  top: 60px;
  width: 100%;
  height: 100%;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .chien .wrapper {
    gap: 30px;
  }
  .chien .cercle_rouge_chien {
    --size: 70%;
  }
}
@media screen and (max-width: 768px) {
  .chien .wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .chien .chien_titre {
    width: 50%;
    margin-bottom: 60px;
    gap: 20px;
  }
  .chien .cercle_rouge_chien {
    --size: 100%;
    top: -10%;
  }
  .chien .grid_images_chien {
    height: 300px;
  }
}

.interets {
  text-align: center;
  overflow: hidden;
}
.interets .grid_interets {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 50px;
  padding-bottom: 25%;
}
.interets .forme_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .interets .grid_interets {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .interets .grid_interets .interets_cards_3 {
    margin-top: 110px;
  }
}
@media screen and (max-width: 480px) {
  .interets .grid_interets {
    grid-template-columns: 1fr;
  }
  .interets .grid_interets .interets_cards_2 {
    margin-top: 110px;
  }
  .interets .grid_interets .interets_cards_3 {
    margin-top: 110px;
  }
}

.interets_cards {
  cursor: pointer;
  position: relative;
  transform: scale(0);
}

.interets_cards_content {
  position: absolute;
  opacity: 0;
  top: 120%;
  margin-top: 40px;
}
.interets_cards_content h5 {
  margin-bottom: 20px;
}

/*
.info_ouvert .interets_cards_content{
    opacity: 1;
    top: 100%;
    transition: all 0.5s ease-out;
}*/
.interets_forme_bg_1::after {
  background-color: var(--color-primary);
}

.interets_forme_bg_2 {
  border-radius: 100%;
  height: 100%;
}
.interets_forme_bg_2 img {
  border-radius: inherit;
}
.interets_forme_bg_2::after {
  border-radius: inherit;
  background-color: var(--color-secondary);
}

.interets_forme_bg_3 {
  position: relative;
  aspect-ratio: 1/1;
}
.interets_forme_bg_3::after {
  clip-path: polygon(50% 10%, 0% 100%, 100% 100%);
  transform: scale(110%);
  top: 1%;
  background-color: var(--color-tertiary);
}
.interets_forme_bg_3 img {
  clip-path: polygon(50% 10%, 0% 100%, 100% 100%);
  transform: scale(110%);
  position: absolute;
  top: -6%;
}

.discute {
  min-height: 50vh;
}
.discute .wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.discute .wrapper .formes_discute {
  position: relative;
  width: 20%;
}
.discute .wrapper .formes_discute .forme_discute {
  --size: 50px;
  position: absolute;
  height: var(--size);
  width: calc(var(--size) * 5);
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0% 100%);
  transform: scaleX(-100%);
}
.discute .wrapper .forme_discute_sens {
  margin-top: 40px;
}
.discute .wrapper .forme_discute_inverse {
  margin-bottom: 40px;
  transform: rotate(180deg);
}
.discute .wrapper .forme_discute_2 {
  top: 5%;
}
.discute .wrapper .forme_discute_3 {
  top: 10%;
}
.discute .wrapper .forme_discute_5 {
  top: 5%;
}
.discute .wrapper .forme_discute_6 {
  top: 10%;
}
.discute .wrapper .contenu_discute {
  text-align: center;
  width: 50%;
}
.discute .wrapper .contenu_discute .button_discute {
  position: relative;
  margin-top: 60px;
}
.discute .wrapper .contenu_discute .cercle_discute {
  position: absolute;
  z-index: -3;
  top: calc(45% - var(--size) / 2);
  left: calc(50% - var(--size) / 2);
  border: 4px solid var(--color-black);
  border-radius: 100%;
  height: var(--size);
  aspect-ratio: 1/1;
}
.discute .wrapper .contenu_discute .cercle_discute_1 {
  --size: 20px;
}
.discute .wrapper .contenu_discute .cercle_discute_2 {
  --size: 20px;
}
.discute .wrapper .contenu_discute .cercle_discute_3 {
  --size: 20px;
}
.discute .wrapper .contenu_discute .cercle_discute_4 {
  --size: 20px;
}
@media screen and (max-width: 1024px) {
  .discute .wrapper .formes_discute .forme_discute {
    --size: 40px;
    width: calc(var(--size) * 4);
    clip-path: polygon(30% 0, 100% 0, 70% 100%, 0% 100%);
  }
}
@media screen and (max-width: 768px) {
  .discute .wrapper {
    justify-content: space-between;
  }
  .discute .wrapper .formes_discute .forme_discute {
    --size: 40px;
    width: calc(var(--size) * 5);
    clip-path: polygon(30% 0, 100% 0, 70% 100%, 0% 100%);
  }
  .discute .wrapper .cercle_discute_1, .discute .wrapper .cercle_discute_2, .discute .wrapper .cercle_discute_3, .discute .wrapper .cercle_discute_4 {
    transform: scale(90%);
  }
  .discute .wrapper .forme_discute_sens {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .discute .wrapper {
    justify-content: center;
  }
  .discute .wrapper .contenu_discute {
    width: 100%;
  }
  .discute .wrapper .forme_discute_sens, .discute .wrapper .forme_discute_inverse {
    display: none;
  }
  .discute .wrapper .cercle_discute_1, .discute .wrapper .cercle_discute_2, .discute .wrapper .cercle_discute_3, .discute .wrapper .cercle_discute_4 {
    transform: scale(80%);
  }
  .discute .wrapper .cercle_discute_4 {
    left: 1px;
  }
}

.projets {
  position: relative;
  overflow: hidden;
}
.projets h2 {
  margin-bottom: 40px;
  text-align: center;
}
.projets .swiper {
  height: 55vh;
  width: 100%;
  overflow: hidden;
  padding-bottom: 50px;
  --radius: 40px;
}
.projets .swiper .swiper-pagination {
  flex-direction: row;
}
.projets .swiper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: none;
  border-radius: var(--radius);
  display: block;
}
.projets .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  transform: scale(100%);
  margin-top: 60px;
  transition: all 0.3s ease-out;
  opacity: 0;
}
.projets .swiper-slide .projets_card_media {
  height: 100%;
}
.projets .swiper-slide .projets_card_media img {
  transition: all 0.3s ease-out;
  transform: scale(100%);
}
.projets .swiper-slide .projets_card_content {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s ease-out;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
}
.projets .swiper-slide .projets_card_content .card_applications {
  margin: 0;
  padding: 0 20px;
  transition: inherit;
}
.projets .swiper-slide .projets_card_content .card_applications > :nth-child(3n+1) {
  background-color: var(--color-primary);
}
.projets .swiper-slide .projets_card_content .card_applications > :nth-child(3n+2) {
  background-color: var(--color-secondary);
}
.projets .swiper-slide .projets_card_content .card_application {
  margin-bottom: 0;
  --size: 50px;
}
.projets .swiper-slide .projets_card_content .bold {
  margin: 0;
  padding: 0 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-bg-primary);
  transition: inherit;
}
.projets .swiper-slide:hover img {
  transform: scale(110%);
}
.projets .swiper-slide:hover .projets_card_content {
  opacity: 1;
}
.projets .swiper-slide:hover .card_applications {
  margin: 0 0 10px;
}
.projets .swiper-slide:hover .bold {
  margin: 0 0 20px;
}
.projets .swiper-pagination {
  justify-content: center;
  opacity: 0;
}
.projets .carre_rouge_projets {
  top: 28%;
  left: 70%;
  height: 30%;
  aspect-ratio: 1/1;
  z-index: -1;
  opacity: 0;
}
.projets .cercle_bleu_projets {
  top: 52%;
  left: 5%;
  height: 40%;
  aspect-ratio: 1/1;
  z-index: -1;
  border-radius: 100%;
  opacity: 0;
}
.projets .triangle_jaune_projets {
  top: 70%;
  left: 55%;
  opacity: 0;
}

/* ==========================================================================
   form / component
   ========================================================================== */
.form {
  --input-padding: 16px;
}
.form fieldset {
  border: none;
  padding: 0;
}
.form .grid {
  display: grid;
  gap: var(--spacing-md);
  grid-template-columns: 1fr;
}
.form .checkbox a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: all 0.3s ease-out;
}
.form .checkbox a:hover {
  color: var(--color-secondary);
}
.form .button {
  border: none;
  margin-top: var(--spacing-md);
}

.formulaire_titre_section {
  text-align: left;
}
.is-sent .formulaire_titre_section {
  text-align: center;
  display: block;
}

.form__footer {
  display: flex;
  justify-content: center;
}
.form__footer a {
  cursor: pointer;
}

.is-sent .form__body {
  display: none;
}

.form__confirmation {
  display: none;
  margin-top: 100px;
}
.form__confirmation h3 {
  font-weight: 700;
}
.is-sent .form__confirmation {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.u-grid-fullwidth {
  grid-column: -1/1;
}

/* --------- Input ---------- */
.input__label {
  display: block;
  font-weight: 700;
}

.input__element {
  border-radius: 30px;
  background-color: var(--color-bg-primary);
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: var(--input-padding);
  outline: none;
  width: 100%;
  color: var(--color-black);
  transition: all 0.3s ease-out;
  -webkit-text-fill-color: var(--color-black) !important;
}
.input__element:-webkit-autofill, .input__element:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 4px var(--color-black) !important;
  -webkit-text-fill-color: inherit !important;
}
.input__element:hover,
.input__element + .input__label:hover::before {
  transition: all 0.3s ease-out;
}
.input__element:focus, .input__element:-webkit-autofill:focus, .input__element:focus + .input__label::before {
  background-color: var(--color-bg-primary);
  -webkit-box-shadow: inset 0 0 0 4px var(--color-black) !important;
}
.input__element::-moz-placeholder {
  color: var(--color-primary);
  opacity: 0.6;
}
.input__element::placeholder {
  color: var(--color-primary);
  opacity: 0.6;
}

#fullname {
  -webkit-box-shadow: inset 0 0 0 4px var(--color-primary);
}
#fullname:focus, #fullname:-webkit-autofill:focus, #fullname:focus + .input__label::before {
  background-color: var(--color-bg-primary);
  -webkit-box-shadow: inset 0 0 0 4px var(--color-black) !important;
}
#fullname:hover,
#fullname + .input__label:hover::before {
  background-color: var(--color-primary);
  background-color: color-mix(in srgb, var(--color-primary) 20%, transparent);
  -webkit-box-shadow: inset 0 0 0 8px var(--color-primary) !important;
}

#email {
  -webkit-box-shadow: inset 0 0 0 4px var(--color-secondary);
}
#email:focus, #email:-webkit-autofill:focus, #email:focus + .input__label::before {
  background-color: var(--color-bg-primary);
  -webkit-box-shadow: inset 0 0 0 4px var(--color-secondary) !important;
}
#email:hover,
#email + .input__label:hover::before {
  background-color: var(--color-black);
  background-color: color-mix(in srgb, var(--color-secondary) 20%, transparent);
  -webkit-box-shadow: inset 0 0 0 8px var(--color-secondary) !important;
}

#comment {
  -webkit-box-shadow: inset 0 0 0 4px var(--color-tertiary);
}
#comment:focus, #comment:-webkit-autofill:focus, #comment:focus + .input__label::before {
  background-color: var(--color-bg-primary);
  -webkit-box-shadow: inset 0 0 0 4px var(--color-tertiary) !important;
}
#comment:hover,
#comment + .input__label:hover::before {
  background-color: var(--color-black);
  background-color: color-mix(in srgb, var(--color-tertiary) 20%, transparent);
  -webkit-box-shadow: inset 0 0 0 8px var(--color-tertiary) !important;
}

/* ---------- Textarea --------- */
.textarea .input__element {
  resize: vertical;
  height: 200px;
}

/* -------- Error --------- */
.error {
  position: relative;
}
.error .input__element, .error.checkbox .input__label::before, .error.radio .input__label::before,
.error .checkbox .input__label::before,
.error .radio .input__label::before {
  box-shadow: inset 0 0 0 2px var(--color-primary);
}

.input__error {
  margin-top: 5px;
  display: none;
  justify-content: center;
  color: var(--color-primary);
  font-size: 80%;
  font-weight: 700;
}
.error .input__error {
  display: flex;
}

.input__error__radio {
  position: absolute;
  top: 100%;
}

.error::after {
  top: 38% !important;
}

.contact {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(var(--spacing-xl) * 2);
}
.contact .grid_contact {
  display: grid;
  grid-template-columns: 7fr 5fr;
}
.contact .liens_contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}
.contact .liens_contact .lien_contact {
  color: var(--color-black);
}
.contact .liens_contact .lien_contact h5 {
  position: relative;
}
.contact .liens_contact .lien_contact h5::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 4px;
  width: 0;
  transition: all 0.3s ease-out;
}
.contact .liens_contact .lien_contact:hover h5::after {
  width: 100%;
}
.contact .liens_contact .lien_contact:hover .icon {
  transform: rotate(0);
}
.contact .liens_contact .lien_contact_1 h5::after {
  background-color: var(--color-primary);
}
.contact .liens_contact .lien_contact_2 h5::after {
  background-color: var(--color-secondary);
}
.contact .liens_contact .lien_contact_3 h5::after {
  background-color: var(--color-tertiary);
}
.contact .info_contact {
  margin-top: 100px;
}
.contact .form__confirmation {
  align-items: flex-start;
  gap: 30px;
  /*text-align: left;

  h3{
      width: 100%;
  }*/
}
.contact .forme {
  position: absolute;
  aspect-ratio: 1/1;
  border-radius: 100%;
}
.contact .cercle_rouge_contact {
  left: -55vw;
  top: 60vh;
  height: 100vw;
  z-index: -1;
}
.contact .cercle_bleu_contact {
  left: 45vw;
  top: 50vh;
  height: 7vh;
  z-index: -1;
}
.contact .cercle_jaune_contact {
  left: 25vw;
  top: 60vh;
  height: 10vh;
  z-index: -1;
}
.contact .foot {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .contact .grid_contact {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact .cercle_rouge_contact {
    top: 90vh;
    left: -70vw;
  }
  .contact .cercle_bleu_contact {
    top: 90vh;
    left: 30vw;
  }
  .contact .cercle_jaune_contact {
    top: 95vh;
    left: 10vw;
  }
}
@media screen and (max-width: 480px) {
  .contact .cercle_rouge_contact {
    top: 110vh;
    left: -90vw;
  }
  .contact .cercle_bleu_contact {
    top: 90vh;
    left: 30vw;
  }
  .contact .cercle_jaune_contact {
    top: 110vh;
    left: 6vw;
  }
}

.webgl_accueil {
  position: absolute;
  top: 60%;
  left: 50%;
  height: 100%;
  width: 100%;
  z-index: -1;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translate(-50%, -50%);
}

.webgl_hero {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1/1;
  background-color: var(--color-accueil);
  cursor: pointer;
}

canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.accueil {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.accueil .wrapper {
  position: relative;
  height: 100%;
  z-index: 1;
  display: grid;
  grid-template-columns: 8fr 4fr;
}
.accueil .wrapper .accueil_texte h1, .accueil .wrapper .accueil_texte h2 {
  color: var(--color-bg-primary);
  text-shadow: 3px 3px #cab892;
}
.accueil .wrapper .accueil_texte .button {
  box-shadow: 5px 5px #C5A742;
}
.accueil .wrapper .accueil_texte .button:hover {
  box-shadow: -5px -5px #9b3b35;
}
.accueil .wrapper .accueil_texte h2 {
  margin: 20px 0 40px;
}
.accueil .wrapper .h1_accueil {
  position: absolute;
  width: 100%;
  top: 40px;
}
.accueil .wrapper .h2_accueil {
  position: absolute;
  width: 100%;
  top: 200px;
}
.accueil .wrapper .button {
  top: 360px;
}
.accueil .wrapper .hero_media {
  padding: 100px 0;
}
.accueil .wrapper .hero_media .hero_masque {
  margin-top: 50px;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: var(--color-tertiary);
}
.accueil .wrapper .hero_media .hero_masque img {
  position: absolute;
  bottom: -15%;
  left: 0.2%;
  clip-path: ellipse(53% 50% at 49.9% 37.7%);
  transform: scale(105%);
  /*
  // pour dev
  background-color: black;
  opacity: 0.5;
  */
}

.contexte .wrapper {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 60px;
}
.contexte .wrapper .contexte_images {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
  --radius: 60px;
}
.contexte .wrapper .contexte_images .forme_contexte_1 {
  max-height: 300px;
}
.contexte .wrapper .contexte_images .forme_contexte_1 img {
  border-radius: 0 var(--radius);
}
.contexte .wrapper .contexte_images .forme_contexte_1::after {
  border-radius: 0 var(--radius);
  background-color: var(--color-primary);
}
.contexte .wrapper .contexte_images .forme_contexte_2 {
  max-height: 350px;
}
.contexte .wrapper .contexte_images .forme_contexte_2 img {
  border-radius: var(--radius) 0;
}
.contexte .wrapper .contexte_images .forme_contexte_2::after {
  border-radius: var(--radius) 0;
  background-color: var(--color-secondary);
}
.contexte .wrapper .contexte_images img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contexte .wrapper .contexte_contenu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 200px;
  opacity: 0;
}
.contexte .wrapper .accordeon {
  cursor: pointer;
  position: relative;
}
.contexte .wrapper .accordeon .icon {
  margin-bottom: 2px;
}
.contexte .wrapper .accordeon svg {
  transition: all 0.3s ease-out;
}
.contexte .wrapper .accordeon::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 4px;
  width: 0;
  background-color: var(--color-primary);
  transition: all 0.3s ease-out;
}
.contexte .wrapper .accordeon:hover svg {
  transform: rotate(-45deg);
  fill: var(--color-primary);
}
.contexte .wrapper .accordeon:hover::after {
  width: 100%;
}
.contexte .wrapper .accordeon_liens {
  display: flex;
  flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: all 0.3s ease-out;
  opacity: 0;
}
.contexte .wrapper .accordeon_liens a {
  color: var(--color-black);
  text-decoration: underline;
}
.contexte .wrapper .acco_ouverts svg {
  transform: rotate(90deg) !important;
  fill: var(--color-secondary) !important;
}
.contexte .wrapper .acco_ouverts::after {
  background-color: var(--color-secondary);
}
.contexte .wrapper .liens_ouverts {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  opacity: 1;
}
.contexte .lignes_contexte {
  position: absolute;
  z-index: -3;
  display: flex;
  justify-content: center;
  top: -2.5%;
  gap: 10px;
  height: 0;
  width: 100%;
}
.contexte .lignes_contexte .ligne_contexte {
  height: 100%;
  width: 8px;
  background-color: var(--color-black);
}
.contexte .cercle_jaune_contexte {
  height: 250px;
  top: 40%;
  left: 55%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  z-index: -4;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .contexte .wrapper .contexte_images .forme_contexte_1, .contexte .wrapper .contexte_images .forme_contexte_2 {
    height: 50%;
  }
  .contexte .wrapper .cercle_jaune_contexte {
    left: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .contexte .wrapper {
    grid-template-columns: 1fr;
  }
  .contexte .wrapper .contexte_images .forme_contexte_1, .contexte .wrapper .contexte_images .forme_contexte_2 {
    height: 200px;
    width: 70%;
  }
  .contexte .wrapper .cercle_jaune_contexte {
    left: 10%;
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  .contexte .wrapper .contexte_images .forme_contexte_1, .contexte .wrapper .contexte_images .forme_contexte_2 {
    height: 200px;
    width: 100%;
  }
}

.wick {
  text-align: center;
}
.wick .cine {
  position: relative;
}
.wick .cine::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: var(--width);
  background-color: var(--color-secondary);
}
@media screen and (max-width: 480px) {
  .wick .cine::after {
    bottom: -1px;
    height: 3px;
  }
}

.croquis .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.croquis .wrapper h5 {
  margin: 0 0;
}
.croquis .wrapper .croquis_media {
  display: block;
  position: relative;
  margin-right: 72px;
  max-height: 500px;
  --gap: 24px;
}
.croquis .wrapper .croquis_media img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.croquis .wrapper .croquis_media .bg_image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: var(--padding);
  top: var(--padding);
}
.croquis .wrapper .croquis_media .bg_rouge {
  --padding: 0;
  background-color: var(--color-primary);
  z-index: -2;
  left: var(--gap);
}
.croquis .wrapper .croquis_media .bg_bleu {
  --padding: 0;
  background-color: var(--color-secondary);
  z-index: -3;
  left: calc(var(--gap) * 2);
}
.croquis .wrapper .croquis_media .bg_jaune {
  --padding: 0;
  background-color: var(--color-tertiary);
  z-index: -4;
  left: calc(var(--gap) * 3);
}
.croquis .wrapper .croquis_content {
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.croquis .bleu {
  color: var(--color-secondary);
}
.croquis .rouge {
  color: var(--color-primary);
}
@media screen and (max-width: 1024px) {
  .croquis .wrapper {
    grid-template-columns: 1fr;
  }
  .croquis .wrapper .croquis_media {
    max-height: 400px;
  }
}

.camera .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.camera .wrapper ul {
  margin: 0;
}
.camera .wrapper .bold {
  margin-top: 40px;
}
.camera .wrapper .camera_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.camera .wrapper .camera_media {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.camera .wrapper .camera_media .forme_camera {
  --radius: 200px 0 200px 0;
  transition: all 0.3s ease-out;
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
}
.camera .wrapper .camera_media .forme_camera .camera_images {
  height: 100%;
  background-color: black;
  border-radius: var(--radius);
  transition: all 0.3s ease-out;
}
.camera .wrapper .camera_media .forme_camera .camera_images img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: all 0.3s ease-out;
  border-radius: var(--radius);
  visibility: hidden;
  opacity: 0;
}
.camera .wrapper .camera_media .forme_camera .camera_images .js-tabs-img-active {
  opacity: 1;
  visibility: visible;
}
.camera .wrapper .js-tab-0-active .forme_camera {
  --radius: 200px 0 200px 0;
}
.camera .wrapper .js-tab-1-active .forme_camera {
  --radius: 0 200px 0 200px;
}
.camera .wrapper .js-tab-2-active .forme_camera {
  --radius: 200px;
}
.camera .wrapper .forme_bg::before {
  background-color: var(--color-primary);
  --gap: -24px;
  content: "";
  position: absolute;
  top: var(--gap);
  left: var(--gap);
  height: 100%;
  width: 100%;
  z-index: -2;
  border-radius: var(--radius);
  transition: all 0.3s ease-out;
}
.camera .wrapper .forme_bg::after {
  background-color: var(--color-secondary);
  border-radius: var(--radius);
  transition: all 0.3s ease-out;
}
.camera .wrapper .camera_btns {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.camera .wrapper .camera_btns .button {
  display: flex;
  justify-content: center;
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .camera .wrapper {
    grid-template-columns: 1fr;
  }
  .camera .wrapper .bold {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .camera .wrapper .js-tab-0-active .forme_camera {
    --radius: 150px 0;
  }
  .camera .wrapper .js-tab-1-active .forme_camera {
    --radius: 0 150px;
  }
  .camera .wrapper .js-tab-2-active .forme_camera {
    --radius: 150px;
  }
}
@media screen and (max-width: 480px) {
  .camera .wrapper .js-tab-0-active .forme_camera {
    --radius: 100px 0;
  }
  .camera .wrapper .js-tab-1-active .forme_camera {
    --radius: 0 100px;
  }
  .camera .wrapper .js-tab-2-active .forme_camera {
    --radius: 100px;
  }
}

.montage .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.montage .wrapper .montage_media {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.montage .wrapper .montage_media img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.montage .wrapper .montage_media .bg_image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: var(--padding);
  top: var(--padding);
}
.montage .wrapper .montage_media .bg_rouge {
  --padding: 24px;
  background-color: var(--color-primary);
  z-index: -2;
}
.montage .wrapper .montage_media .bg_bleu {
  --padding: 48px;
  background-color: var(--color-secondary);
  z-index: -3;
}
.montage .wrapper .montage_media .bg_jaune {
  --padding: 72px;
  background-color: var(--color-tertiary);
  z-index: -4;
}
.montage .wrapper .video::before, .montage .wrapper .image_montage::before {
  --gap: 24px;
  content: "";
  position: absolute;
  top: var(--gap);
  left: var(--gap);
  height: 100%;
  width: 100%;
  z-index: -2;
  background-color: var(--color-primary);
}
.montage .wrapper .video::after, .montage .wrapper .image_montage::after {
  --gap: 48px;
  content: "";
  position: absolute;
  top: var(--gap);
  left: var(--gap);
  height: 100%;
  width: 100%;
  z-index: -3;
  background-color: var(--color-secondary);
}
.montage .wrapper svg {
  padding-left: 3px;
}
.montage .wrapper .image_montage {
  position: relative;
}
.montage .wrapper .image_montage img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .montage .wrapper {
    grid-template-columns: 1fr;
    width: 90%;
  }
  .montage .wrapper .video .video__media::after {
    --size-cercle: 90px;
  }
  .montage .wrapper .video .video__media .icon {
    padding-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .montage .wrapper .video .video__media::after {
    --size-cercle: 60px;
  }
}

.montage_espace .wrapper {
  gap: 100px;
}

.video {
  color: var(--color-white);
  text-align: center;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  cursor: pointer;
}
.video img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: var(--border-radius);
}
.video .video__media {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--border-radius);
}
.video .video__media .icon {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 51%;
  transform-origin: 0 0;
  transform: scale(1.3) translate(-50%, -50%);
  z-index: 2;
  transition: all 0.3s ease-out;
}
.is-video-ready .video .video__media .icon {
  opacity: 1;
}
.video .video__media::after {
  --size-cercle: 120px;
  content: "";
  position: absolute;
  height: var(--size-cercle);
  width: var(--size-cercle);
  left: calc(50% - var(--size-cercle) / 2);
  top: calc(50% - var(--size-cercle) / 2);
  background-color: var(--color-tertiary);
  border-radius: 100%;
  transform: scale(100%);
  transition: all 0.3s ease-out;
}
.video:hover .video__media::after {
  transform: scale(115%);
  background-color: var(--color-secondary);
}

.resultat {
  text-align: center;
  overflow: hidden;
}
.resultat h2 {
  margin-bottom: 40px;
}
.resultat .video {
  opacity: 0.5;
}
.resultat .video .video__media::after {
  left: calc(50% - var(--size-cercle) / 2.5);
}
.resultat .image_resultat {
  position: relative;
}
.resultat .image_resultat::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  background-color: var(--color-primary);
  height: 100%;
  width: 100%;
  z-index: -1;
}
.resultat .image_resultat::after {
  content: "";
  position: absolute;
  left: 48px;
  top: 48px;
  background-color: var(--color-secondary);
  height: 100%;
  width: 100%;
  z-index: -2;
}
.resultat .button {
  margin-top: 100px;
}
@media screen and (max-width: 1280px) {
  .resultat .video .video__media::after {
    --size-cercle: 90px;
  }
  .resultat .video .video__media .icon {
    padding-left: 3px;
  }
}
@media screen and (max-width: 768px) {
  .resultat .video .video__media::after {
    --size-cercle: 90px;
  }
  .resultat .video .video__media .icon {
    padding-left: 0;
    left: 52%;
  }
}
@media screen and (max-width: 480px) {
  .resultat .video .video__media::after {
    --size-cercle: 60px;
  }
}

.amelioration h2 {
  text-align: center;
  margin-bottom: 30px;
}
.amelioration .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.amelioration .wrapper h5 {
  margin: 40px 0;
}
.amelioration .wrapper .amelioration_media {
  display: block;
  position: relative;
  margin-right: 72px;
  max-height: 500px;
  --gap: 24px;
}
.amelioration .wrapper .amelioration_media img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.amelioration .wrapper .amelioration_media .bg_image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: var(--padding);
  top: var(--padding);
}
.amelioration .wrapper .amelioration_media .bg_rouge {
  --padding: 0;
  background-color: var(--color-primary);
  z-index: -2;
  left: var(--gap);
}
.amelioration .wrapper .amelioration_media .bg_bleu {
  --padding: 0;
  background-color: var(--color-secondary);
  z-index: -3;
  left: calc(var(--gap) * 2);
}
.amelioration .wrapper .amelioration_media .bg_jaune {
  --padding: 0;
  background-color: var(--color-tertiary);
  z-index: -4;
  left: calc(var(--gap) * 3);
}
.amelioration .wrapper .amelioration_content {
  margin-top: 70px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.amelioration .bleu {
  color: var(--color-secondary);
}
.amelioration .rouge {
  color: var(--color-primary);
}
.amelioration .p2 {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .amelioration .wrapper {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

.loader {
  position: fixed;
  inset: 0;
  background-color: var(--color-bg-primary);
  z-index: 99;
  opacity: 1;
  animation: load 0.3s forwards linear;
  animation-delay: 2.4s;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.loader .formes {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 2vw;
}
.loader .formes .forme_a {
  display: flex;
  gap: 0.6vw;
}
.loader .formes .forme_b {
  display: flex;
  gap: 0.6vw;
}
.loader .forme_a_gauche {
  position: relative;
  background-color: var(--color-primary);
  width: 5vw;
  height: 15vw;
  border-radius: 10vw 0 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 100% 33%, 100% 0, 100% 0);
  animation: morph_a_g 0.4s forwards linear;
  animation-delay: 0.4s;
}
@keyframes morph_a_g {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 33%, 100% 33%, 100% 0, 100% 0);
  }
  25% {
    clip-path: polygon(0 0, 100% 0, 100% 33%, 100% 34%, 0 0, 0 0);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 100% 33%, 100% 33%, 0 33%, 0 33%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 33%, 100% 100%, 0 100%, 0 100%);
  }
}
.loader .forme_a_droite {
  position: relative;
  background-color: var(--color-primary);
  width: 5vw;
  height: 15vw;
  border-radius: 0 10vw 0 0;
  clip-path: polygon(100% 100%, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 100%);
  animation: morph_a_d 0.4s forwards linear;
  animation-delay: 0.6s;
}
@keyframes morph_a_d {
  0% {
    clip-path: polygon(100% 100%, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 100%);
  }
  50% {
    clip-path: polygon(100% 33%, 100% 0, 100% 33%, 100% 100%, 0 100%, 0 33%);
  }
  75% {
    clip-path: polygon(100% 0, 100% 0, 100% 33%, 100% 100%, 0 100%, 0 33%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 33%, 100% 100%, 0 100%, 0 33%);
  }
}
.loader .forme_p_gauche {
  position: relative;
  background-color: var(--color-secondary);
  width: 5vw;
  height: 15vw;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  animation: morph_p_g 0.4s forwards linear;
  animation-delay: 1s;
}
@keyframes morph_p_g {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.loader .forme_p_droite {
  position: relative;
  background-color: var(--color-secondary);
  width: 5vw;
  height: 10vw;
  border-radius: 0 10vw 10vw 0;
  clip-path: polygon(0 50%, 0 100%, 0 100%, 100% 100%, 0 100%, 0 50%);
  animation: morph_p_d 0.4s forwards linear;
  animation-delay: 1.4s;
}
@keyframes morph_p_d {
  0% {
    clip-path: polygon(0 50%, 0 100%, 0 100%, 100% 100%, 0 100%, 0 50%);
  }
  25% {
    clip-path: polygon(0 50%, 0 100%, 100% 100%, 100% 100%, 100% 100%, 0 50%);
  }
  75% {
    clip-path: polygon(0 50%, 0 100%, 100% 100%, 100% 0, 100% 0, 0 50%);
  }
  100% {
    clip-path: polygon(0 50%, 0 100%, 100% 100%, 100% 0, 0 0, 0 50%);
  }
}

@keyframes load {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
}
/* The entire scrollbar */
::-webkit-scrollbar {
  width: 12px; /* width of vertical scrollbar */
  height: 12px; /* height of horizontal scrollbar */
}

/* The track (background of the scrollbar) */
::-webkit-scrollbar-track {
  background-color: none;
}

/* The draggable handle ("thumb") */
::-webkit-scrollbar-thumb {
  background: #E0574D;
  border-radius: 10px;
}

/* Handle hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #52A0DF;
}

/* Optional: scrollbar corner (for two scrollbars meeting) */
::-webkit-scrollbar-corner {
  background: transparent;
}

/* ==========================================================================
    ACCESSIBILITY / UTILITIES
   ========================================================================== */
.u-hidden-visually {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.u-hidden {
  display: none !important;
}

/* ==========================================================================
   spacing / utilities
   ========================================================================== */
.u-mb-4 {
  margin-bottom: 4rem !important;
}

.u-mbn-4 {
  margin-bottom: -4rem !important;
}
/*# sourceMappingURL=main.css.map */
