/*
*
* variabiles.css
*
*/

/*
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Poppins:ital,wght@0,400;0,700;1,400;1,700&display=swap");
*/
:root {
  --transition-all: all 0.4s ease;
  --ease: var(--transition-all);

  --gris: #19191e;
  --COLORS-gris: var(--gris);
  --noir: var(--gris);
  --COLORS-noir: var(--noir);
  --blanc: #ffffff;
  --COLORS-blanc: var(--blanc);
  --orange: #e9644d;
  --COLORS-orange: var(--orange);
  --rose: #d45073;
  --COLORS-rose: var(--rose);
  --bleu: #00888d;
  --COLORS-bleu: var(--bleu);
  --jaune: #e7c735;
  --COLORS-jaune: var(--jaune);

  --primary: var(--blanc);
  --secondary: var(--orange);
  --tertiary: var(--rose);
  --color-4: var(--bleu);
  --color-5: var(--bleu);
  --gris-1: var(--gris);
  --gris-2: var(--gris);
  --primary-light: oklch(from var(--primary) 50% 0.09 h);
  --secondary-light: oklch(from var(--secondary) 50% 0.09 h);
  --tertiary-light: oklch(from var(--tertiary) 50% 0.09 h);
  --color-4-light: oklch(from var(--color-4) 50% 0.09 h);
  --color-5-light: oklch(from var(--color-5) 50% 0.09 h);

  --fond-noir: var(--noir);
  --fond-blanc: var(--blanc);
  --fond-primary: var(--primary);
  --fond-secondary: var(--secondary);
  --fond-tertiary: var(--tertiary);
  --fond-color-4: var(--color-4);
  --fond-color-5: var(--color-5);

  --fond-primary-light: var(--primary-light);
  --fond-secondary-light: var(--secondary-light);
  --fond-tertiary-light: var(--tertiary-light);
  --fond-color-4-light: var(--color-4-light);
  --fond-color-5-light: var(--color-5-light);

  --gap-xs: 0.625rem;
  --GAP-gap-xs: var(--gap-xs);
  --gap-s: 1.125rem;
  --GAP-gap-s: var(--gap-s);
  --gap-m: 2.5rem;
  --GAP-gap-m: var(--gap-m);
  --gap-l: 5rem;
  --GAP-gap-l: var(--gap-l);
  --gap-xl: 18.75rem;
  --GAP-gap-xl: var(--gap-xl);

  --gap: var(--gap-s);
  --texte-gap: 1.75rem;
  --section-gap: var(--gap-l);

  --box-radius: 15px; /*20 desktop*/
  --border-radius: var(--box-radius);
  --button-radius: 5px;

  --bodybackground: var(--gris);
  --bodycolor: var(--blanc);
  --linkcolor: var(--orange);

  --font-family-head: "JetBrains Mono", monospace;
  --font-family: "Poppins", sans-serif;
  --font-size-html: 16px; /*1rem*/

  /* Mobile font sizes and line heights */
  --FS-LH-MOBILE-fs-paragraphe-mobile: 0.875rem;
  --FS-LH-MOBILE-lh-paragraphe-mobile: 1.25rem;
  --FS-LH-MOBILE-fs-h1-mobile: 2.5rem;
  --FS-LH-MOBILE-lh-h1-mobile: 2.5rem;
  --FS-LH-MOBILE-fs-h2-mobile: 1.875rem;
  --FS-LH-MOBILE-lh-h2-mobile: 1.875rem;
  --FS-LH-MOBILE-fs-h3-mobile: 1.25rem;
  --FS-LH-MOBILE-lh-h3-mobile: 1.5rem;
  --FS-LH-MOBILE-fs-h4-mobile: 1rem;
  --FS-LH-MOBILE-lh-h4-mobile: 1.25rem;

  /* Desktop font sizes and line heights */
  --FS-LH-DESKTOP-fs-paragraphe: 1.125rem;
  --FS-LH-DESKTOP-lh-paragraphe: 1.875rem;
  --FS-LH-DESKTOP-fs-h1: 5rem;
  --FS-LH-DESKTOP-lh-h1: 5rem;
  --FS-LH-DESKTOP-fs-h2: 3.125rem;
  --FS-LH-DESKTOP-lh-h2: 3.75rem;
  --FS-LH-DESKTOP-fs-h3: 1.875rem;
  --FS-LH-DESKTOP-lh-h3: 2.125rem;
  --FS-LH-DESKTOP-fs-h4: 1.25rem;
  --FS-LH-DESKTOP-lh-h4: 1.5rem;

  /**
    *https://angel-rs.github.io/css-color-filter-generator/ 
    *Pour appliquer sur SVG noirs
    */
  --filter-blanc: brightness(0) saturate(100%) invert(100%) sepia(0%)
    saturate(0%) hue-rotate(345deg) brightness(100%) contrast(104%);

  --extra-light: 100;
  --light: 200;
  --thin: 300;
  --normal: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  --extra-bold: 800;
  --black: 900;

  --space-v: var(--gap);
  --space-h: var(--gap);

  --box-pad-s: var(--gap);
  --box-pad: var(--gap-m);

  --border-width: 2px;

  /*padding de l'édito pour le mobile, normalement max 10px, pas toujours utilisé, normalement container-width:fait le job*/
  --edito-padding: var(--gap-s);
  /*largeur du conteneur*/
  --container-width: calc((300 / 320) * 100%);
  /*10px de chaque côté pour les captcha*/
  --espace-min: 10px;

  /*entete*/
  --header-height: 55px;
  --scrolled-header-height: 55px;
  --admin-bar-height: 46px;
}

@media (max-width: 979px) {
  :root {
    --fs-xs: 0.8rem;
    --fs-s: 1rem;
    --fs-base: var(--FS-LH-MOBILE-fs-paragraphe-mobile);
    --fs-base-m: var(--FS-LH-MOBILE-fs-h4-mobile);
    --fs-m: var(--FS-LH-MOBILE-fs-h3-mobile);
    --fs-l: var(--FS-LH-MOBILE-fs-h2-mobile);
    --fs-xl: var(--FS-LH-MOBILE-fs-h1-mobile);
    --fs-xxl: var(--FS-LH-MOBILE-fs-h1-mobile);
    --fs-xxxl: var(--FS-LH-MOBILE-fs-h1-mobile);
  }
}
@media (min-width: 980px) {
  :root {
    --fs-xs: 0.8rem;
    --fs-s: 1rem;
    --fs-base: var(--FS-LH-DESKTOP-fs-paragraphe);
    --fs-base-m: var(--FS-LH-DESKTOP-fs-h4);
    --fs-m: var(--FS-LH-DESKTOP-fs-h3);
    --fs-l: var(--FS-LH-DESKTOP-fs-h2);
    --fs-xl: var(--FS-LH-DESKTOP-fs-h1);
    --fs-xxl: var(--FS-LH-DESKTOP-fs-h1);
    --fs-xxxl: var(--FS-LH-DESKTOP-fs-h1);
    --box-radius: 20px; /*20 desktop*/
    --border-radius: var(--box-radius);
  }
}

/*rupture admin bar wordpress*/
@media (min-width: 768px) {
  :root {
    --admin-bar-height: 46px;
  }
}

@media (min-width: 480px) and (max-width: 639px) {
  :root {
    --container-width: calc((300 / 320) * 480px);
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  :root {
    --container-width: 620px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  /* 768px */
  :root {
    --container-width: 748px;
  }
}

@media (min-width: 980px) and (max-width: 1179px) {
  /* 980px */
  :root {
    --container-width: 840px;
  }
}

@media (min-width: 1280px) and (max-width: 1399px) {
  /* 1200px */
  :root {
    --container-width: 1000px;
    --scrolled-header-height: 92px;
    --header-height: 92px;
  }
}

@media (min-width: 1440px) {
  /* 1400px */
  :root {
    --container-width: calc(1440px - 2 * var(--gap-l));
    --scrolled-header-height: 92px;
    --header-height: 92px;
  }
}

/*
*
* structure.css
*
*/

@media (min-width: 1280px) {
  .sticky {
    position: sticky;
    left: 0;
    top: 138px;
    transition: all 0.3s;
  }

  .sticky[data-stuck] {
    top: 0;
  }
}

.modaal-content-container #mouse-circle,
.modaal-content-container #top_header,
.modaal-content-container #site-header,
.modaal-content-container #site-footer,
.modaal-content-container .breadcrumb,
.modaal-content-container #sub_footer {
  display: none;
}

.modaal-content-container #main {
  padding-top: 0;
}

/*module transitions*/
.ease,
.ease:before,
.ease:after {
  -webkit-transition: var(--ease);
  -o-transition: var(--ease);
  transition: var(--ease);
}

.transition-all,
.transition-all:before,
.transition-all:after {
  -webkit-transition: var(--transition-all);
  -o-transition: var(--transition-all);
  transition: var(--transition-all);
}

/** modules classes utiles*/
.block {
  display: block;
}

.tac {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.soulignement {
  text-decoration: underline;
}

.relative {
  position: relative;
}

.ov_h {
  overflow: hidden;
}

.radius,
.box-radius,
.rounded {
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.s-radius,
.s-rounded {
  overflow: hidden;
  border-radius: var(--border-s-radius) var(--border-s-radius) 0 0;
}

.under {
  position: absolute;
  z-index: 0;
  overflow: hidden;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.under img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.over {
  position: relative;
  z-index: 1;
}

.deborde {
  max-width: none;
}

.invizib {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cover_link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.hide_text_link {
  font-size: 0;
  color: rgba(255, 255, 255, 0);
}

/* Tailles de police */
.fs-xs {
  font-size: var(--fs-xs);
}

.fs-s {
  font-size: var(--fs-s);
}

.fs-base {
  font-size: var(--fs-base);
}
.fs-base-m {
  font-size: var(--fs-base-m);
}

.fs-m {
  font-size: var(--fs-m);
}

.fs-l {
  font-size: var(--fs-l);
}

.fs-xl {
  font-size: var(--fs-xl);
}

.fs-xxl {
  font-size: var(--fs-xxl);
}

.fs-xxxl {
  font-size: var(--fs-xxxl);
}

@media (max-width: 979px) {
  .s-pad {
    padding: var(--box-pad);
  }

  .s-nopad {
    padding: 0;
  }

  .s-x-pad {
    padding-left: var(--box-pad);
    padding-right: var(--box-pad);
  }

  .s-x-nopad {
    padding-left: 0;
    padding-right: 0;
  }

  .s-y-pad {
    padding-top: var(--box-pad);
    padding-bottom: var(--box-pad);
  }

  .s-y-nopad {
    padding-top: 0;
    padding-bottom: 0;
  }

  .desktop_only {
    display: none !important;
  }

  .tablette_only {
    display: none !important;
  }
}

/* same for m*/
@media (min-width: 980px) and (max-width: 1279px) {
  .m-pad {
    padding: var(--box-pad);
  }

  .m-nopad {
    padding: 0;
  }

  .m-x-pad {
    padding-left: var(--box-pad);
    padding-right: var(--box-pad);
  }

  .m-x-nopad {
    padding-left: 0;
    padding-right: 0;
  }

  .m-y-pad {
    padding-top: var(--box-pad);
    padding-bottom: var(--box-pad);
  }

  .m-y-nopad {
    padding-top: 0;
    padding-bottom: 0;
  }

  .tablet_only {
    display: block !important;
  }
}

@media (min-width: 1280px) {
  .l-pad {
    padding: var(--box-pad);
  }

  .l-nopad {
    padding: 0;
  }

  .l-x-pad {
    padding-left: var(--box-pad);
    padding-right: var(--box-pad);
  }

  .l-x-nopad {
    padding-left: 0;
    padding-right: 0;
  }

  .l-y-pad {
    padding-top: var(--box-pad);
    padding-bottom: var(--box-pad);
  }

  .l-y-nopad {
    padding-top: 0;
    padding-bottom: 0;
  }

  .mobile_only {
    display: none !important;
  }

  .tablette_only {
    display: none !important;
  }
}

.grid,
.grid-s3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr var(--gap) 1fr var(--gap) 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: var(--gap);
  grid-row-gap: var(--gap);
}

.grid-s2 {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.grid-s1 {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .grid-m2 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .grid-l3 {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/** module Flex*/

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-grow {
  flex-grow: 1;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-aic {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-aifs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-aife {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-ais {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex-jcc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-jcfs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-jcfe {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-jcs {
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

.flex-jcsb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-jcsa {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-jcse {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

/*
.between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flex-column.gauche {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.flex-column.droit {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.flex-just-start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
}

.flex-full {
	-webkit-box-pack: stretch;
	-ms-flex-pack: stretch;
	justify-content: stretch;
}

.flex-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.flex-row.bas {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.flex-row.haut {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.flex-row.flex-gauche {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.flex-row.flex-droit {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex-centre {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}*/

/*.flex-row.flex-stretch,*/
.flex-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.gap,
.gapped {
  gap: var(--gap);
  --space-h: var(--gap);
  --space-v: var(--gap);
}

.gap-h {
  column-gap: var(--gap);
  --space-h: var(--gap-s);
}

.gap-v {
  row-gap: var(--gap);
  --space-v: var(--gap-s);
}
.gap_xs,
.gap-xs {
  gap: var(--gap-xs);
  --space-h: var(--gap-xs);
  --space-v: var(--gap-xs);
}
.gap_s,
.gap-s {
  gap: var(--gap-s);
  --space-h: var(--gap-s);
  --space-v: var(--gap-s);
}

.gap_m,
.gap-m {
  gap: var(--gap-m);
  --space-h: var(--gap-m);
  --space-v: var(--gap-m);
}

.gap_l,
.gap-l {
  gap: var(--gap-l);
  --space-h: var(--gap-l);
  --space-v: var(--gap-l);
}

:root {
  --total-space-h: var(--space-h);
}

.cols_1 {
  --total-space-h: 0;
}

.cols_2 {
  --total-space-h: var(--space-h);
}

.cols_3 {
  --total-space-h: calc(2 * var(--space-h));
}

.cols_4 {
  --total-space-h: calc(3 * var(--space-h));
}

.cols_5 {
  --total-space-h: calc(4 * var(--space-h));
}

.cols_6 {
  --total-space-h: calc(5 * var(--space-h));
}

.cols_7 {
  --total-space-h: calc(6 * var(--space-h));
}

.cols_8 {
  --total-space-h: calc(7 * var(--space-h));
}

.cols_9 {
  --total-space-h: calc(8 * var(--space-h));
}

.cols_10 {
  --total-space-h: calc(9 * var(--space-h));
}

.cols_11 {
  --total-space-h: calc(10 * var(--space-h));
}

.cols_12 {
  --total-space-h: calc(11 * var(--space-h));
}

.w-10 {
  width: calc((100% - var(--total-space-h)) * 0.1);
}

.w-20,
.w1-5 {
  width: calc((100% - var(--total-space-h)) * 0.2);
}

.w-25,
.w1-4 {
  width: calc((100% - var(--total-space-h)) * 0.25);
}

.w-30 {
  width: calc((100% - var(--total-space-h)) * 0.3);
}

.w-33,
.w1-3 {
  width: calc((100% - var(--total-space-h)) / 3);
}

.w-40 {
  width: calc((100% - var(--total-space-h)) * 0.4);
}

.w-50,
.w1-2 {
  width: calc((100% - var(--total-space-h)) * 0.5);
}

.w-60 {
  width: calc((100% - var(--total-space-h)) * 0.6);
}

.w-66,
.w2-3 {
  width: calc((200% - (2 * var(--total-space-h))) / 3);
}

.w-70 {
  width: calc((100% - var(--total-space-h)) * 0.7);
}

.w-75,
.w3-4 {
  width: calc((100% - var(--total-space-h)) * 0.75);
}

.w-80,
.w4-5 {
  width: calc((100% - var(--total-space-h)) * 0.8);
}

.w-90 {
  width: calc((100% - var(--total-space-h)) * 0.9);
}

.w-100 {
  width: 100%;
}

.real-10 {
  width: 10%;
}

.real-20 {
  width: 20%;
}

.real-25 {
  width: 25%;
}

.real-33 {
  width: calc(100% / 3);
}

.real-40 {
  width: 40%;
}

.real-50 {
  width: 50%;
}

.real-60 {
  width: 60%;
}

.real-66 {
  width: 66%;
}

.real-70 {
  width: 70%;
}

.real-75 {
  width: 75%;
}

.real-80 {
  width: 80%;
}

.flex-stretch > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 1279px) {
  .m-w100 {
    width: 100%;
  }

  .m-w50 {
    /* width: calc((100% - var(--space-h)) / 2); */
    width: calc((100% - var(--total-space-h)) * 0.5);
  }

  .m-w33 {
    /* width: calc((100% - var(--space-h)) / 3); */
    width: calc((100% - var(--total-space-h)) / 3);
  }

  .m-block {
    display: block;
  }

  .m-pad0 {
    padding: 0;
  }

  .m_cols_2 {
    --total-space-h: var(--space-h);
  }

  .m_cols_3 {
    --total-space-h: calc(2 * var(--space-h));
  }
}

@media (max-width: 979px) {
  .s-block {
    display: block;
  }

  .s-pad0 {
    padding: 0;
  }

  .s-w50 {
    /* width: calc((100% - var(--space-h)) / 2); */
    width: calc((100% - var(--total-space-h)) * 0.5);
  }

  .s-w100 {
    width: 100%;
  }

  .s_cols_2 {
    --total-space-h: var(--space-h);
  }

  .s_cols_3 {
    --total-space-h: calc(2 * var(--space-h));
  }
}

@media (max-width: 639px) {
  .xs-w100 {
    width: 100%;
  }

  .xs-block {
    display: block;
  }

  .xs-pad0 {
    padding: 0;
  }

  .xs_cols_2 {
    --total-space-h: var(--space-h);
  }

  .xs_cols_3 {
    --total-space-h: calc(2 * var(--space-h));
  }
}

@media (max-width: 479px) {
  .xxs-w100 {
    width: 100%;
  }

  .xxs-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .xxs-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.m-0 {
  margin: 0;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.p-0 {
  padding: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.pad {
  padding: var(--box-pad);
}

.pad-y {
  padding: var(--box-pad) 0;
}

.border {
  border: var(--border-width) solid;
}

/*
*
* header-footer.css
*
*/

/* header */
header {
  position: fixed;
  z-index: 3;
  height: var(--header-height);
  width: 100%;
  padding-bottom: 5px;
  background: var(--gris);
}
header > .container {
  max-width: 100%;
  width: 1440px;
  margin: 0 auto;
  position: relative;
  padding: 0 var(--gap-s);
  height: var(--header-height);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
#actions_header {
  padding-top: 5px;
}
#togMenu {
  display: flex;
  height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 5px;
  background: var(--orange);
  gap: 10px;
}
@media (max-width: 979px) {
  .texte_menu {
    display: none;
  }
  #togMenu {
    width: 50px;
  }
  .cta_contact a {
    text-decoration: none;
    border-radius: 5px;
    display: block;
    font-size: 0;
    width: 50px;
    height: 44px;
    background: var(--rose) url("../images/custom/cta-contact.webp") no-repeat
      center center / 90%;
  }
}
@media (min-width: 980px) {
  .texte_menu {
    font-family: var(--font-family-head);
    font-weight: 700;
  }
  #togMenu {
    padding: 0 var(--gap-s);
  }
  #togMenu:hover {
    background: var(--blanc);
    color: var(--orange);
  }
  #togMenu:hover svg path {
    stroke: var(--orange);
  }
  .cta_contact a {
    text-decoration: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 var(--gap-s);
    height: 44px;
    background: var(--rose);
    font-family: var(--font-family-head);
    font-weight: 700;
  }
  .cta_contact a:hover {
    background: var(--blanc);
    color: var(--rose);
  }
}

body.open header {
  height: 100vh;
  overflow-y: scroll;
}
header .logo {
  max-width: 110px;
  padding: 0 15px;
  border-radius: 0 0 5px 5px;
}
@media (min-width: 1280px) {
  #actions_header {
    padding-top: 20px;
  }
  header .logo {
    max-width: 220px;
    padding: 0 39px;
  }
}
header .menu_container {
  display: flex;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  gap: var(--gap-xs);
  background: var(--gris);
  padding: 50px var(--gap-xs) 3rem var(--gap-xs);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease 0.2s, transform 0s ease 0.8s;
}
body.open header .menu_container {
  opacity: 1;
  transition: opacity 0.3s ease 0.2s, transform 0.6s;
}
@media (max-width: 639px) {
  header .menu_container {
    transform: translateX(-100%);
  }
  body.open header .menu_container {
    transform: translateX(0);
  }
}
@media (min-width: 640px) {
  header .menu_container {
    transform: translateY(-100%);
  }
  body.open header .menu_container {
    transform: translateY(0);
  }
}
#burger {
  display: flex;
  align-items: center;
}
#close_menu {
  width: auto;
  appearance: none;
  background: none;
  border: none;
  text-align: right;
  position: absolute;
  top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: lowercase;
  cursor: pointer;
  right: 0;
  padding: 5px 20px;
  z-index: 1;
  color: var(--blanc);
}
.cta_contact_menu {
  order: -1;
}

header .menu {
  margin-top: 0;
  display: block;
}
header .menu ul {
  margin: 0;
  padding: 0;
}
header .menu .menu-item {
  list-style: none;
}
header .menu > ul {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: var(--gap-xs) var(--gap-s);
  border-radius: 15px 15px 0 0;
}
header .menu a {
  display: block;
  width: 100%;
  text-align: center;
}
header .menu li a {
  padding: var(--gap-xs) 0;
  border-top: 1px solid var(--gris);
  font-family: var(--font-family-head);
  font-size: var(--FS-LH-MOBILE-fs-h4-mobile, 16px);
  font-style: normal;
  font-weight: 700;
}
header .menu > ul > li:first-child > a {
  border-top: 0;
}
header .menu > ul > li > a {
  font-size: var(--FS-LH-MOBILE-fs-h3-mobile, 20px);
  line-height: var(--FS-LH-MOBILE-lh-h3-mobile, 24px); /* 120% */
}
@media (max-width: 1379px) {
  header .menu > ul > li:first-child > a {
    line-height: var(--FS-LH-MOBILE-lh-h3-mobile, 24px); /* 120% */
    font-size: var(--FS-LH-MOBILE-fs-h3-mobile, 20px);
  }
}
@media (min-width: 1440px) {
  header .menu > ul > li:first-child > a {
    padding: 30px 10px;
    font-size: var(--FS-LH-DESKTOP-fs-h3, 30px);
    line-height: var(--FS-LH-DESKTOP-lh-h3, 34px); /* 113.333% */
  }
}

header .menu .tog {
  display: none;
}
#menu_expertises > ul {
  background: var(--bleu);
}
#menu_expertises a {
  color: var(--blanc);
}
#menu_expertises a:hover {
  color: var(--bleu);
  background: var(--blanc);
  border-color: var(--blanc);
}
#menu_expertises li:hover + li a {
  border-color: var(--blanc);
}
#menu_marque > ul {
  background: var(--orange);
}
#menu_marque a {
  color: var(--blanc);
}
#menu_marque a:hover {
  color: var(--orange);
  background: var(--blanc);
  border-color: var(--blanc);
}
#menu_marque li:hover + li a {
  border-color: var(--blanc);
}
#menu_expertises li.level-0:hover > ul > li:first-child a,
#menu_marque li.level-0:hover > ul > li:first-child a {
  border-color: var(--blanc);
}
#menu_rh > ul {
  background: var(--jaune);
}
#menu_rh a {
  color: var(--gris);
}

#menu_rh a:hover {
  color: var(--jaune);
  background: var(--gris);
}
#lien_actus {
  background: url("../images/custom/nos_actus.webp") no-repeat center center /
    contain;
  display: block;
  font-size: 0;
  width: 269px;
  height: 118px;
  margin: 0 auto;
}
#fond_lien_actus img {
  display: block;
}
@media (max-width: 639px) {
  .menu_container {
    flex-wrap: wrap;
  }
  .cta_contact_menu,
  #fond_lien_actus,
  .menu_container .menu {
    width: 360px;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (min-width: 640px) and (max-width: 979px) {
  header .menu_container {
    flex-wrap: wrap;
    align-items: stretch;
    padding-left: 50px;
    padding-right: 50px;
  }
  .top-menu > ul {
    height: 100%;
  }
  header .menu > ul,
  .cta_contact_menu .bouton {
    border-radius: 15px;
  }

  .cta_contact_menu .bouton {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .cta_contact_menu,
  #fond_lien_actus,
  .menu_container .menu {
    width: calc(50% - var(--gap-s));
  }
  #lien_actus {
    height: unset;
  }
}

@media (max-width: 979px) {
  .cta_contact_menu .bouton {
    text-align: center;
    width: 100%;
    background: var(--rose) !important;
    font-family: var(--font-family-head);
    color: var(--blanc);
    padding: 5px 50px;
  }
  .cta_contact_menu .bouton:hover {
    background: var(--blanc) !important;
    color: var(--rose);
  }
}
@media (min-width: 980px) {
  header .menu_container {
    flex-wrap: wrap;
    gap: calc(0.8 * var(--gap-m)) var(--gap-s);
    align-items: stretch;
    justify-content: space-between;
    width: 1440px;
    padding-left: 50px;
    padding-right: 50px;
    max-width: 100%;
    margin: 0 auto;
  }
  #fond_lien_actus {
    width: calc(406 / 1360 * 100%);
  }
  #fond_lien_actus img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .cta_contact_menu {
    order: unset;
    width: 100%;
  }
  #lien_actus {
    position: absolute;
    z-index: 2;
    left: 50px;
    bottom: 11rem;
  }
  #menu_expertises {
    width: calc(260 / 1360 * 100%);
  }
  #menu_marque {
    width: calc(294 / 1360 * 100%);
  }
  #menu_rh {
    width: calc(300 / 1360 * 100%);
  }

  .top-menu > ul {
    height: 100%;
  }
  .cta_contact_menu .bouton {
    text-align: center;
    width: 100%;
    padding: 0;
    min-height: 75px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: var(--rose);
    border: 2px solid var(--rose);
  }
  .cta_contact_menu .bouton:hover {
    background: var(--rose);
    border-color: var(--blanc);
    color: var(--blanc);
  }
  .cta_contact_menu .bouton:before {
    content: "";
    background: url("../images/custom/sonnette.gif") no-repeat center bottom 0px /
      95px;
    height: 75px;
    width: 75px;
    margin-right: 10px;
  }
}

@media (min-width: 1200px) and (max-width: 1279px) {
  .logo img {
    display: block;
    width: 120px;
  }
}

@media (min-width: 1280px) and (max-width: 1599px) {
  .logo img {
    display: block;
    width: 170px;
  }
}

@media (min-width: 1600px) {
  .logo img {
    display: block;
    width: 257px;
  }
}

/* footer */ /*
@media (max-width: 379px) {
  #site-footer {
    padding: var(--gap-xs) var(--gap-xs) var(--gap-xs) var(--gap-xs);
  }
}
@media (min-width: 380px) and (max-width: 639px) {
  #site-footer {
    padding: var(--gap-s) var(--gap-s) var(--gap-s) var(--gap-s);
  }
}
@media (min-width: 640px) {
  #site-footer {
    padding: var(--gap-m) var(--gap-m) var(--gap-s) var(--gap-m);
  }
}

@media (max-width: 979px) {
  #site-footer .container {
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 980px) and (max-width: 1349px) {
  #site-footer .container {
    max-width: 95%;
  }
}*/
@media (max-width: 1179px) {
  #site-footer .container {
    padding: var(--gap) 0;
  }
}
@media (min-width: 1280px) {
  #site-footer .container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  #site-footer {
    padding: var(--gap-m) var(--gap-m) var(--gap-s) var(--gap-m);
  }
}

body:not(.home) #site-footer {
  border-top: 1px solid white;
}

.section_footer {
  overflow: hidden;
}
#entete_coordonnees {
  color: var(--rose);
}
.lien_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--GAP-gap-xs, 10px);
  align-self: stretch;
  color: var(--COLORS-blanc, #fff);
  text-align: center;
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 700;
  border-radius: 5px;
  background: var(--COLORS-rose, #d45073);
}

@media (max-width: 639px) {
  .section_adresses > .container > .flex-row {
    gap: var(--gap-xs);
  }
}
@media (max-width: 979px) {
  #entete_coordonnees {
    gap: var(--gap-s);
  }
  .lien_contact {
    line-height: var(--FS-LH-MOBILE-lh-h4-mobile, 20px); /* 125% */
    font-size: var(--FS-LH-MOBILE-fs-h4-mobile, 16px);
    padding: 7px var(--GAP-gap-m, 40px);
  }
}
@media (min-width: 980px) {
  #entete_coordonnees {
    padding-bottom: 40px;
  }
  .lien_contact {
    padding: var(--GAP-gap-xs, 10px) var(--GAP-gap-m, 40px);
    font-size: 18px;
    line-height: 20px; /* 111.111% */
    min-height: 104px;
  }
}

@media (max-width: 1349px) {
  #site-footer .container {
    padding: var(--gap) 0;
  }
}
.tel_coordonnees {
  object-fit: cover;
  border-radius: var(--CORNERS-corner, 20px) var(--CORNERS-corner, 20px) 0px 0px;
}
@media (max-width: 639px) {
  .tel_coordonnees {
    display: block;
    aspect-ratio: 300 / 212;
  }
  .tel_coordonnees,
  footer .une_adresse {
    width: 100%;
  }
}
@media (min-width: 640px) and (max-width: 1279px) {
  .tel_coordonnees {
    display: block;
    width: 100%;
    aspect-ratio: 300 / 112;
  }
}
@media (min-width: 640px) and (max-width: 1179px) {
  footer .une_adresse {
    width: calc((100% - var(--gap)) / 2);
  }
}
@media (min-width: 1180px) and (max-width: 1279px) {
  footer .une_adresse {
    width: calc((100% - (3 * var(--gap))) / 4);
  }
}
@media (min-width: 1280px) {
  .tel_coordonnees,
  footer .une_adresse {
    width: calc((100% - (4 * var(--gap))) / 5);
  }
}

.une_adresse {
  padding: var(--GAP-gap-m, 40px) var(--GAP-gap-xs, 10px);
  gap: var(--gap-s);
  border-radius: var(--CORNERS-corner, 20px) var(--CORNERS-corner, 20px) 0px 0px;
  border: 1px solid var(--COLORS-gris, #19191e);
  background: #d6abb2;
  color: var(--noir);
}
.partie_texte a.telephone {
  color: var(--COLORS-gris, #19191e);
  text-align: center;
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 800;
  width: 100%;
  text-decoration: none !important;
}
@media (max-width: 979px) {
  .une_adresse {
    padding: var(--GAP-gap-s, 40px) var(--GAP-gap-xs, 10px);
  }
  .partie_texte a.telephone {
    font-size: var(--FS-LH-MOBILE-fs-h3-mobile, 20px);
    line-height: var(--FS-LH-MOBILE-lh-h3-mobile, 24px); /* 120% */
  }
}
@media (min-width: 980px) {
  .une_adresse {
    padding: var(--GAP-gap-m, 40px) var(--GAP-gap-xs, 10px);
  }
  .partie_texte a.telephone {
    font-size: var(--FS-LH-DESKTOP-fs-h4, 20px);
    line-height: var(--FS-LH-DESKTOP-lh-h4, 22px); /* 122.222% */
  }
}
.une_adresse h3 {
  color: var(--COLORS-gris, #19191e);
  text-align: center;
  font-family: "JetBrains Mono";
  font-size: var(--fs-m);
  font-style: normal;
  font-weight: 800;
  line-height: var(--FS-LH-DESKTOP-lh-h3, 34px); /* 113.333% */
}
.ladresse {
  color: var(--COLORS-gris, #19191e);
  text-align: center;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: var(--FS-LH-DESKTOP-lh-h4, 22px); /* 122.222% */
}
@media (max-width: 1439px) {
  .ladresse {
    font-size: 16px;
  }
}
@media (min-width: 1560px) {
  .ladresse {
    font-size: var(--fs-base-m);
  }
}

.itineraire {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--COLORS-gris, #19191e);
  text-align: center;
  font-family: "JetBrains Mono";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 112.5% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.itineraire:before {
  content: url("../images/custom/pins.svg");
}

/*section footer*/
.section_footer {
  padding-top: var(--gap-m);
  padding-bottom: var(--gap-m);
}
.text_1_col_foot {
  color: var(--COLORS-blanc, #fff);
  font-family: "JetBrains Mono";
  font-size: var(--FS-LH-DESKTOP-fs-h4, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--FS-LH-DESKTOP-lh-h4, 22px); /* 122.222% */
}
.text_2_col_foot {
  color: var(--COLORS-orange, #e9644d);
  font-family: Poppins;
  font-size: var(--FS-LH-DESKTOP-fs-paragraphe, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 111.111% */
}

.partenaires {
  display: flex;
  align-items: center;
  gap: 20px;
}
.un_partenaire {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  border: 2px solid var(--COLORS-gris, #19191e);
  background: var(--COLORS-blanc, #fff);
}
.reseaux {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.logo_groupe {
  padding-top: 20px;
  border-top: 1px solid var(--blanc);
}
.partie_texte a.bouton_blanc,
a.bouton_blanc,
#page footer input[type="submit"] {
  text-decoration: none;
  border-radius: 5px;
  border: 1.5px solid var(--COLORS-gris, #19191e);
  background: var(--COLORS-blanc, #fff);
  display: flex;
  padding: var(--GAP-gap-xs, 10px) var(--GAP-gap-s, 20px);
  justify-content: center;
  align-items: center;
  gap: var(--GAP-gap-xs, 10px);
  color: var(--noir);
  color: var(--COLORS-gris, #19191e);
  text-align: center;
  font-family: "JetBrains Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  transition: var(--ease);
}
.partie_texte a.bouton_blanc:hover,
a.bouton_blanc:hover,
#page footer input[type="submit"]:hover {
  background: var(--orange);
  color: var(--blanc);
}

@media (max-width: 767px) {
  .section_footer .bloc_colonnes > div {
    border-bottom: 1px solid var(--blanc);
    padding: var(--gap-s) 0;
    width: 100%;
  }
  .section_footer .bloc_colonnes > div:first-child {
    padding-top: 0;
  }
  .section_footer .bloc_colonnes > div:first-child .partie_texte {
    flex-direction: row;
  }
  .logo_groupe {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .section_footer .bloc_colonnes {
    gap: 0;
  }
  .section_footer .bloc_colonnes > div {
    width: 50%;
  }

  .section_footer .bloc_colonnes > div:nth-child(1) {
    border-right: 1px solid var(--blanc);
    border-bottom: 1px solid var(--blanc);
    padding: 0 var(--gap-m) var(--gap-m) 0;
  }
  .section_footer .bloc_colonnes > div:nth-child(2) {
    border-bottom: 1px solid var(--blanc);
    padding: 0 0 var(--gap-m) var(--gap-m);
  }
  .section_footer .bloc_colonnes > div:nth-child(3) {
    border-right: 1px solid var(--blanc);
    padding: var(--gap-m) var(--gap-m) 0 0;
  }
  .section_footer .bloc_colonnes > div:nth-child(4) {
    padding: var(--gap-m) 0 0 var(--gap-m);
  }
}
@media (min-width: 1280px) {
  .section_footer .bloc_colonnes {
    gap: 0;
  }
  .section_footer .bloc_colonnes > div:nth-child(1),
  .section_footer .bloc_colonnes > div:nth-child(2),
  .section_footer .bloc_colonnes > div:nth-child(3) {
    padding-right: calc(0.65 * var(--gap-l));
    border-right: 1px solid var(--blanc);
  }
  .section_footer .bloc_colonnes > div:nth-child(2),
  .section_footer .bloc_colonnes > div:nth-child(3),
  .section_footer .bloc_colonnes > div:nth-child(4) {
    padding-left: calc(0.65 * var(--gap-l));
  }
  .section_footer .bloc_colonnes > div:nth-child(1) {
    width: 25%;
  }
  .section_footer .bloc_colonnes > div:nth-child(2) {
    width: 19%;
  }
  .section_footer .bloc_colonnes > div:nth-child(3) {
    width: 33%;
  }
  .section_footer .bloc_colonnes > div:nth-child(4) {
    width: 23%;
  }
}

/* subfooter */
#sub_footer {
}

#sub_footer_menu {
  width: 100%;
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
#sub_footer_menu li a {
  padding: 0 8px;
  display: block;
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #666;
  border-right: 1px solid;
}
#sub_footer_menu li:first-child a {
  padding-left: 0;
}
#sub_footer_menu li:last-child a {
  border-right: 0px solid;
  padding-right: 0;
}
@media (max-width: 979px) {
  #sub_footer_menu {
    padding-top: var(--gap-m);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 980px) {
  #sub_footer_menu {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 979px) {
  #cta_dring {
    display: none;
  }
}
@media (min-width: 980px) {
  #cta_dring {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9;
    font-size: 0;
    background: var(--rose) url("../images/custom/sonnette.gif") no-repeat
      center bottom 20px / 90%;
    height: 97px;
    width: 97px;
    overflow: visible;
    opacity: 0;
    transition: all 0.4s;
    pointer-events: none;
    border-radius: 50%;
  }
  #cta_dring:after {
    content: "";
    position: absolute;
    top: -18%;
    left: -19%;
    width: 138%;
    height: 138%;
    background: url("../images/custom/dring.png") no-repeat top left;
    transition: all 0.4s;
  }
  #cta_dring:hover:after {
    transform: rotate(360deg);
  }
  .scrolled:not(.open) #cta_dring {
    pointer-events: all;
    opacity: 1;
  }
  body.page-template-contact #cta_dring {
    display: none;
  }
}

/*
*
* styleguide.css
*
*/

/** module polices*/
html {
  font-size: var(--font-size-html);
  scroll-behavior: smooth;
}
body {
  overflow-x: clip;
  overflow-y: auto;
  -webkit-transition: var(--transition-all);
  -o-transition: var(--transition-all);
  transition: var(--transition-all);
  position: relative;
  font-size: 1rem;
  font-family: var(--font-family);
  font-optical-sizing: auto;
  background: var(--bodybackground);
  color: var(--bodycolor);
  font-weight: 400;
  width: 100%;
}
a {
  color: var(--linkcolor);
}
#page {
  overflow-x: clip;
}
main {
  padding-bottom: 0;
  min-height: calc(100vh - 100px);
}
article {
  overflow-x: clip;
  position: relative;
  z-index: 1;
}
.overflow-clip {
  overflow: clip !important;
}
section {
  position: relative;
  z-index: 1;
  margin: 0;
}
article section {
  margin-bottom: var(--section-gap);
}

.ancre {
  display: block;
  height: 0;
  visibility: hidden;
}

.container {
  width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1440px) {
  .container {
    width: 1440px;
    padding-left: var(--gap-l);
    padding-right: var(--gap-l);
  }
}

.scrolled .entete {
  padding-top: calc(var(--scrolled-header-height) + 50px);
}

.entete {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + var(--gap-m));
}

.breadcrumb {
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}
.post_text_inner a {
  text-decoration: underline;
}
.partie_texte a {
  text-decoration: underline;
}

.partie_texte {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--texte-gap);
}
.partie_texte.gap-s {
  gap: var(--gap-s);
}

.partie_texte > * {
  margin: 0;
}
.partie_texte > h2 + h3,
.partie_texte > h2 + .h3,
.partie_texte > .h2 + h3,
.partie_texte > .h2 + .h3 {
  margin-top: calc(var(--texte-gap) * -0.75);
}
.partie_texte ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: calc(0.25 * var(--texte-gap));
  padding-left: 0;
  list-style-position: inside;
}

.partie_texte li {
  font-size: var(--fs-base);
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: -0.05625rem;
}

/*.partie_texte > *,*/
.partie_texte h2,
.partie_texte h3,
.partie_texte h4,
.partie_texte p,
.partie_texte ul,
.partie_texte ol,
.partie_texte li,
.partie_texte blockquote {
  width: 100%;
  margin: 0;
}

@media (max-width: 979px) {
  .partie_image + .partie_texte:not(.mt-0) {
    margin-top: var(--texte-gap);
  }

  .partie_texte > *:only-child {
    margin-bottom: var(--texte-gap);
  }

  .partie_image + .partie_texte > *:only-child {
    margin-top: var(--texte-gap);
  }
}
/*
@media (max-width: 639px) {
  .partie_texte + .partie_texte {
    margin-top: var(--texte-gap);
  }
}*/

p,
main ul,
main ol {
  font-size: var(--fs-base);
}
main li {
  margin: 0;
}

p,
main .partie_texte ul li {
  font-family: var(--FONTS-font-paragraphe, Poppins);
  font-style: normal;
  font-weight: 400;
}
h1,
.h1 {
  color: var(--COLORS-jaune, #e7c735);
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 700;
}
h2,
.h2 {
  font-family: var(--FONTS-font-title, "JetBrains Mono");
  font-style: normal;
  font-weight: 400;
}
h3,
.h3 {
  font-family: var(--FONTS-font-title, "JetBrains Mono");
  font-style: normal;
  font-weight: 400;
}
h4,
h5,
h6 {
  text-transform: none;
  line-height: 1em;
  font-size: var(--fs-base);
  font-weight: var(--bold);
}
span.bouton,
a.bouton {
  color: var(--COLORS-blanc, #fff);
  text-align: center;
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 700;
  line-height: 1.25rem;
  text-decoration: none;
}
@media (max-width: 979px) {
  span.bouton,
  a.bouton {
    font-size: 16px;
  }
}
@media (min-width: 980px) {
  span.bouton,
  a.bouton {
    font-size: 18px;
  }
}
.mot_cle {
  text-align: center;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: var(--COLORS-blanc, #fff);
  paint-order: stroke fill;
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 800;
  color: var(--gris);
  opacity: 0.5;
}
@media (max-width: 1399px) {
  p,
  main .partie_texte ul li {
    font-size: var(--FS-LH-MOBILE-fs-paragraphe-mobile, 0.875rem);
    line-height: var(
      --FS-LH-MOBILE-lh-paragraphe-mobile,
      1.25rem
    ); /* 142.857% */
  }
  h1,
  .h1 {
    font-size: var(--FS-LH-MOBILE-fs-h1-mobile, 3.75rem);
    line-height: var(--FS-LH-MOBILE-lh-h1-mobile, 3.75rem); /* 100% */
    /*word-break: break-word;
    hyphens: auto;*/
  }
  h2,
  .h2 {
    font-size: var(--FS-LH-MOBILE-fs-h2-mobile, 1.875rem);
    line-height: var(--FS-LH-MOBILE-lh-h2-mobile, 1.875rem); /* 100% */
  }
  h3,
  .h3 {
    font-size: var(--FS-LH-MOBILE-fs-h3-mobile, 1.25rem);
    line-height: var(--FS-LH-MOBILE-lh-h3-mobile, 1.5rem); /* 120% */
  }
  h4,
  h5,
  h6,
  a.bouton {
    font-size: var(--FS-LH-MOBILE-fs-h4-mobile, 1rem);
    line-height: var(--FS-LH-MOBILE-lh-h4-mobile, 1.25rem); /* 125% */
  }
  .mot_cle {
    font-size: 3.55rem;
    line-height: 3.125rem; /* 100% */
  }
}
@media (min-width: 1400px) {
  p,
  main .partie_texte ul li {
    font-size: var(--FS-LH-DESKTOP-fs-paragraphe, 1.125rem);
    line-height: var(--FS-LH-DESKTOP-lh-paragraphe, 1.875rem); /* 166.667% */
  }
  h1,
  .h1 {
    font-size: var(--FS-LH-DESKTOP-fs-h1, 5rem);
    line-height: var(--FS-LH-DESKTOP-lh-h1, 5rem); /* 100% */
  }
  h2,
  .h2 {
    font-size: var(--FS-LH-DESKTOP-fs-h2, 3.125rem);
    line-height: var(--FS-LH-DESKTOP-lh-h2, 3.75rem); /* 120% */
  }
  h3,
  .h3 {
    font-size: var(--FS-LH-DESKTOP-fs-h3, 1.875rem);
    line-height: var(--FS-LH-DESKTOP-lh-h3, 2.125rem); /* 113.333% */
  }

  h4,
  h5,
  h6 {
    font-size: var(--FS-LH-DESKTOP-fs-h4, 1.25rem);
    line-height: var(--FS-LH-DESKTOP-lh-h4, 1.5rem); /* 120% */
  }

  .mot_cle {
    font-size: 6.25rem;
    line-height: 6.25rem; /* 100% */
  }
}
/* fond */

.fond_primary {
  background: var(--primary);
  color: var(--blanc);
}
.fond_orange {
  background: var(--orange);
  color: var(--blanc);
}
.fond_secondary {
  color: var(--gris);
  background: var(--secondary);
}
.fond_gris {
  background: var(--gris-1);
  color: var(--blanc);
}
.fond_gris h2,
.fond_gris .h2 {
  color: var(--COLORS-orange, #e9644d);
}
.fond_jaune {
  background: var(--jaune);
  color: var(--gris);
}
.fond_rose {
  background: var(--rose);
  color: var(--blanc);
}
.fond_bleu {
  background: var(--bleu);
  color: var(--blanc);
}

/*Couleurs*/

.rose {
  color: var(--COLORS-rose, #d45073);
}
.bleu {
  color: var(--COLORS-bleu, #00888d);
}
.jaune {
  color: var(--COLORS-jaune, #e7c735);
}
.orange {
  color: var(--COLORS-orange, #e9644d);
}
.gris {
  color: var(--COLORS-gris, #19191e);
}

.txt_primary {
  color: var(--primary);
}
.txt_secondary {
  color: var(--secondary);
}
.txt_primary_light {
  color: var(--primary-light);
}
.txt_secondary_light {
  color: var(--secondary-light);
}

.couleur,
.secondary_color {
  color: var(--secondary);
}
.fond_orange .couleur,
.fond_orange .secondary_color {
  color: var(--blanc);
  font-weight: 700;
}
.fond_rose .couleur,
.fond_rose .secondary_color {
  font-weight: 700;
  color: var(--blanc);
}
.fond_bleu .couleur,
.fond_bleu .secondary_color {
  font-weight: 700;
  color: var(--jaune);
}
.fond_jaune .couleur,
.fond_jaune .secondary_color {
  font-weight: 700;
  color: var(--bleu);
}
.fond_secondary .couleur,
.fond_secondary .secondary_color {
  color: var(--noir);
}
.tertiary {
  color: var(--tertiary);
}
.color-4 {
  color: var(--color-4);
}
.color-5 {
  color: var(--color-5);
}

span.span_fond_color {
  background: var(--secondary);
  color: var(--blanc);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
}

/*Fonds*/

/*Navigation*/
.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-bottom: 50px;
  gap: var(--gap-s);
}
.nav-links span,
.nav-links a {
  display: flex;
  align-items: center;
}
.nav-links a,
span.bouton,
a.bouton {
  padding: var(--GAP-gap-xs, 0.625rem) var(--GAP-gap-s, 1.25rem);
  border-radius: 0.3125rem;
  background: var(--COLORS-orange, #e9644d);
  transition: var(--ease);
}
span.bouton,
a.bouton {
  display: inline-block;
}
.fond_orange span.bouton,
.fond_orange a.bouton,
.fond_orange .nav-links a {
  background: var(--blanc);
  color: var(--orange);
}
.fond_rose span.bouton,
.fond_rose a.bouton,
.fond_rose .nav-links a {
  background: var(--blanc);
  color: var(--rose);
}

@media (hover: hover) {
  a.bouton:hover,
  .nav-links a:hover {
    background-color: var(--blanc);
    color: var(--orange);
  }
  .fond_orange a.bouton:hover,
  .fond_orange .nav-links a :hover {
    background-color: var(--gris);
    color: var(--orange);
  }
  .fond_rose a.bouton:hover,
  .fond_rose .nav-links a:hover {
    background-color: var(--gris);
    color: var(--rose);
  }
}

/*
p a.bouton, p + a.bouton{
    margin-top:1em;
}*/
main ul,
main ol {
  padding-left: 0;
  list-style-type: none;
}

main .partie_texte ul {
  list-style-type: disc;
}

main .partie_texte > *:first-child {
  margin-top: 0;
}

main .partie_texte ul {
  margin-left: 0.8em;
}

main .partie_texte ul li {
  position: relative;
}

main .partie_texte ol li {
  counter-increment: muffins;
  list-style-type: none;
  padding-left: 30px;
  margin-top: 1.5em;
  position: relative;
}

main .partie_texte ol li:before {
  content: "0" counter(muffins) ". ";
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 1;
  height: 16px;
  width: 28px;
  font-size: 1em;
  font-family: var(--font-family);
  font-weight: var(--bold);
}

main .partie_texte ol li:nth-child(n + 10):before {
  content: counter(muffins) ". ";
}

main .partie_texte ol {
  list-style: none;
  counter-reset: muffins;
}

ul.tags {
  display: flex !important;
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
  text-align: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

ul.tags li {
  margin: 0;
  padding: 0.5rem 0.9375rem;
  background: var(--primary);
  color: var(--blanc);
  border-radius: 3.125rem;
  display: inline-flex;
  width: unset;
}

ul.tags li:not(.no_diese):before {
  content: "#";
}

blockquote {
  margin: 0;
}

h2 a,
h3 a {
  text-decoration: none;
}

#main .partie_texte a:not(.bouton) {
  text-decoration: underline;
}

#main .partie_texte a:not(.bouton):hover {
  color: var(--secondary);
}

@media (min-width: 768px) {
  .droite {
    flex-direction: row-reverse;
  }

  .gauche .partie_image .item {
    align-items: flex-end;
  }

  .droite .partie_image .item {
    align-items: flex-start;
  }
}
.section_title {
  margin: 0;
}
.section_title + div:not(.mt-0) {
  margin-top: var(--gap-m);
}

.partie_texte + div:not(.mt-0) {
  margin-top: var(--gap-m);
}

/*ENTETE*/
.image_entete img {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  display: block;
  aspect-ratio: 1280 /352;
  object-fit: cover;
  /* background: var(--primary); */
}

#breadcrumbs {
  color: var(--COLORS-blanc, #fff);
  font-family: "JetBrains Mono";
  font-size: var(--FS-LH-DESKTOP-fs-h5, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: var(--FS-LH-DESKTOP-lh-h4, 1.375rem); /* 157.143% */
}

#breadcrumbs a:hover {
  color: var(--primary);
}

@media (max-width: var(--m-max)) {
  .breadcrumb {
    display: none;
  }
}
.partie_texte p.resume {
  width: 980px;
  max-width: 100%;
}

/*Texte simple et texte et image*/
@media (max-width: 979px) {
  .section_diaporama .container,
  .image_et_texte .container {
    padding-top: var(--gap-s);
    padding-bottom: var(--gap-s);
  }
}
@media (min-width: 980px) and (max-width: 1439px) {
  .section_diaporama .container,
  .image_et_texte .container {
    padding: var(--gap-m);
  }
}
@media (min-width: 1440px) {
  .section_diaporama .container,
  .image_et_texte .container {
    width: 1440px;
    padding: var(--gap-m) var(--gap-l);
  }
}
@media (max-width: 639px) {
  .section_diaporama .container,
  .image_et_texte .container {
    width: 100%;
    padding-left: calc(10 / 320 * 100%);
    padding-right: calc(10 / 320 * 100%);
  }
}
@media (min-width: 640px) and (max-width: 979px) {
  .section_diaporama .container .bloc_diapo,
  .image_et_texte .container .bloc-texte-image-inte {
    width: 620px;
    margin: 0 auto;
    max-width: calc(100% - 2 * var(--gap-m));
  }
}
/* changer x vers primary etc ? */

@media (min-width: 1200px) {
  .section_histoire.decale .container,
  .texte_simple .container.centre {
    width: calc(840px + 2 * var(--gap-l));
  }
}

/*section 3 colonnes*/
.image_de_colonne + .partie_texte h3 {
  margin-top: 0.5em;
}

/*Sections exergue*/
.section_exergue p {
  font-size: var(--fs-l);
  font-weight: var(--bold);
  line-height: 100%;
}

.section_exergue ul.tags {
  justify-content: center;
}

/* section texte et image */
section.image_et_texte.fond_simple .rounded {
  border-radius: 15px;
  border: 4px solid var(--primary);
}

section.image_et_texte.fond_simple.rouge .rounded {
  border: 4px solid var(--rouge);
}

.bloc-texte-image-inte {
  position: relative;
  z-index: 1;
}

/*section image seule*/
.bloc_image_seule img {
  display: block;
}

/* formulaire */
.gform_description:empty {
  display: none;
}

#page .gform_wrapper.gravity-theme .gsection {
  border: none;
  padding: 0;
  margin-bottom: var(--gap-s);
}

.gfield_visibility_visible + .gfield--input-type-section {
  margin-top: var(--gap);
}

.formulaire h3 {
  color: var(--primary);
}

#page label.gfield_label,
#page legend {
  font-weight: var(--bold);
  font-size: var(--fs-base);
  padding-right: 10px;
  padding-bottom: 10px;
}

#page label.gfield_label {
  padding-top: 10px;
}

#page input[type="submit"]:hover {
  cursor: pointer;
}

#page input[type="submit"] {
  border-radius: 3rem;
  display: block;
  width: 100%;
  background: var(--secondary) url("../images/custom/btn_arrow_white_2024.svg")
    no-repeat right 1.25rem center / 1.25rem;
  color: var(--blanc);
  padding: 0.625rem 3rem 0.625rem 1.25rem;
  border: none;
  font-weight: var(--bold);
}

#page input[type="submit"]:hover {
  background-color: var(--primary);
}

.gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 11px;
}

#formulaire_contact p:not(.gform_required_legend) {
  font-size: var(--fs-m);
  line-height: 1;
}

.gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 10px;
}

#page .formulaire .gform_wrapper.gravity-theme .gfield select {
  appearance: none;
  background: url("../images/custom/arrow_select.svg") no-repeat 95% center;
  padding-right: 10%;
  line-height: 30px;
}

#page .gform_wrapper.gravity-theme .gfield_required {
  /*! display: none; */
  color: inherit;
  font-size: inherit;
}

.ginput_container_consent {
  position: relative;
}

#page .gform_footer {
  justify-content: flex-start;
}

#page .gform_validation_errors {
  display: none;
}

#page .gfield_validation_message {
  border: 0px;
  background-color: var(--blanc);
  padding: 0;
}

#page .ginput_container_turnstile {
  width: 100%;
}

.gform_required_legend {
  margin-top: 0 !important;
  margin-bottom: 1em !important;
}

#page .gfield--type-choice legend {
  width: 100%;
  padding-bottom: 1em;
}

#page .gfield--type-choice .ginput_container_checkbox,
#page .ginput_container_consent {
  width: 100%;
}

#page .gfield--type-choice .ginput_container_checkbox .gfield_checkbox {
  display: flex;
  flex-wrap: wrap;
}

#page
  .gfield--type-choice
  .ginput_container_checkbox
  .gfield_checkbox#input_5_22
  .gchoice {
  width: 100%;
  padding-bottom: 10px;
}

@media (min-width: 640px) {
  #page
    .gfield--type-choice
    .ginput_container_checkbox
    .gfield_checkbox#input_5_22
    .gchoice {
    width: 50%;
  }
}

#page
  .gfield--type-choice
  .ginput_container_checkbox
  .gfield_checkbox#input_5_22
  .gchoice
  input {
  margin-right: 10px;
}

#page .gform_footer.left_label {
  padding-left: 0;
  flex-wrap: wrap;
}

.gform_required_legend {
  width: 100%;
}

.gfield-choice-input[type="checkbox"],
.ginput_container_consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 21px;
  height: 21px;
  border: 1px solid var(--primary);
  background-color: var(--primary-light);
  position: relative;
  cursor: pointer;
}

.gfield-choice-input[type="checkbox"],
.ginput_container_consent input[type="checkbox"] {
  margin-right: 10px;
}

.gform_wrapper.gravity-theme .gfield-choice-input + label,
.ginput_container_consent input[type="checkbox"] + label {
  width: calc(100% - 42px);
  vertical-align: top;
}

.gfield-choice-input[type="checkbox"]:checked::after,
.ginput_container_consent input[type="checkbox"]:checked::after {
  content: "";
  background: url("../images/custom/checked.svg") no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
}

#page .gform_wrapper.gravity-theme .ginput_container_consent .gfield_required {
  display: none;
}

#page .gfield--input-type-hidden {
  display: none;
}

/*masquer le deuxieme turnstyle qui apparati à cause d'un bug non résolu de l'extension*/
.cf-turnstile div + div {
  display: none;
}

/*
@media(max-width:340px) {
    .cf-turnstile {
        transform:translateX(-10px)
    }
}*/

/* texte simple */

section.texte_simple > .container.primary {
  border-left: 2px solid var(--primary-light);
  padding-left: var(--gap-m);
}

section.texte_simple > .container.secondary {
  border-left: 2px solid var(--secondary-light);
  padding-left: var(--gap-m);
}
/*separateur*/
section.separateur > div {
  position: relative;
}

/* Pages liees */
.fond_pages_liees {
  background: conic-gradient(from 90deg at 2px 2px, var(--gris) 90deg, #333 0) -2px -2px/50px
    50px;
}
.section_pages_liees .section_title {
  color: var(--orange);
}
.page_teaser {
  background: #edab86;
  position: relative;
}
.page_teaser:hover span.bouton,
.page_teaser:hover a.bouton {
  background: var(--blanc);
  color: var(--orange);
}
.page_teaser img {
  display: blocck;
  width: 100%;
  aspect-ratio: 300 / 200;
  object-fit: cover;
}
.page_teaser h3 a {
  color: var(--gris);
  text-decoration: none !important;
}
.page_teaser .partie_texte {
  flex-grow: 1;
  padding: 0 20px 20px 20px;
}
.page_teaser .partie_texte p {
  align-self: flex-end;
  flex-grow: 1;
  align-content: flex-end;
}

@media (min-width: 980px) {
  .section_title + div.pages_liees_container {
    margin-top: 0;
  }
}

/* Métiers liés (expertises)*/
.metiers_lies_container {
  gap: calc(var(--gap-m) - 30px);
}
.metier_lie_teaser {
  width: 246px;
  position: relative;
  padding: 9px;
  border: 2px solid var(--noir);
  border-radius: 20px;
  transition: var(--ease);
}
.metier_lie_teaser:hover {
  border: 2px solid white;
}
.metier_lie_teaser:hover a {
  color: var(--blanc);
}

@media (max-width: 379px) {
  .metier_lie_teaser {
    width: 100%;
  }
}
@media (min-width: 380px) and (max-width: 639px) {
  .metier_lie_teaser {
    width: 44%;
  }
}

@media (min-width: 640px) and (max-width: 979px) {
  .metier_lie_teaser {
    width: 29%;
  }
}
.metier_lie_teaser img {
  border-radius: 20px;
  display: block;
  width: 100%;
  aspect-ratio: 224 / 224;
  object-fit: cover;
}
.metier_lie_teaser .partie_texte {
  padding: var(--gap-s) 5px;
}
.metier_lie_teaser3 {
  margin-bottom: 0;
}
.metier_lie_teaser h3 a {
  color: var(--blanc);
  text-decoration: none !important;
  text-align: center;
  display: block;
}

@media (min-width: 1400px) {
  .metier_lie_teaser h3 {
    font-size: var(--FS-LH-MOBILE-fs-h3-mobile, 1.25rem);
    line-height: var(--FS-LH-MOBILE-lh-h3-mobile, 1.5rem);
  }
}
/* diaporama */

@media (max-width: 639px) {
  .le_temoignage a.bouton {
    align-self: center;
  }
}

@media (max-width: 9879px) {
  .le_temoignage .nom_fonction {
    font-size: var(--FS-LH-MOBILE-fs-h4-mobile, 16px);
    line-height: var(--FS-LH-MOBILE-lh-h4-mobile, 20px); /* 125% */
  }
}
.diaporama:not(.diapo_temoins) .slick-dots {
  display: none !important;
}
.section_diaporama .fond_jaune {
  border-radius: var(--border-radius);
}

.section_diaporama .slick-prev,
.section_diaporama .slick-next {
  width: 43px;
  height: 63px;
  background-color: var(--blanc);
  border-radius: 25px;
}

@media (max-width: 1199px) {
  .section_diaporama:not(.temoignages) .bloc_diapo {
    padding-bottom: 100px;
  }
  .bloc_diapo .diaporama.slick-dotted {
    padding-bottom: 30px;
  }
  .bloc_diapo .diaporama.slick-dotted .slick-dots {
    margin-top: 30px;
  }
  .section_diaporama .slick-prev {
    bottom: -75px;
    top: unset;
    left: 50%;
    transform: translateX(-120%);
  }
  .section_diaporama .slick-next {
    bottom: -75px;
    top: unset;
    right: 50%;
    transform: translateX(100%);
  }
}
@media (min-width: 1200px) {
  .diaporama {
    width: 840px;
    margin-left: auto;
    margin-right: auto;
  }
  .section_diaporama .slick-prev {
    left: -70px;
  }
  .section_diaporama .slick-next {
    right: -70px;
  }
}

/*Section  témoignages*/

@media (min-width: 1440px) {
  .diaporama.diapo_temoins {
    width: 1000px;
    font-family: var(--font-family-head);
  }
  .diaporama.diapo_temoins .h3 {
    font-size: calc(1.2 * var(--FS-LH-DESKTOP-fs-h4));
  }
}
.un_temoin .photo img {
  display: block;
  width: 100%;
  border-radius: 200px;
  aspect-ratio: 263 /385;
  object-fit: cover;
}
@media (max-width: 639px) {
  .un_temoin .photo img {
    width: 198px;
    margin: 0 auto;
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .section_diaporama.temoignages .slick-prev,
  .section_diaporama.temoignages .slick-next {
    display: none !important;
  }
}

.nom_fonction {
  font-family: var(--font-family-head);
  line-height: 1.125;
}
/* equipe */

.un_membre img {
  border-radius: 200px;
  aspect-ratio: 198 / 291;
  object-fit: cover;
  width: 198px;
  max-width: 80%;
}
.un_membre .nom {
  margin: 0;
  font-family: var(--font-family-head);
  text-align: center;
  font-size: var(--FS-LH-DESKTOP-fs-h4, 1.125rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1em;
}
.un_membre .poste {
  margin: 0;
  text-align: center;
  font-family: var(--font-family-head);
  font-size: var(--FS-LH-DESKTOP-fs-h4, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1em;
}

/* Galerie Lightbox Carrousel*/
.section_galerie h2 {
  color: var(--jaune);
}
.section_galerie .une_image img {
  aspect-ratio: 25.83/22;
  object-fit: cover;
  border-radius: 1.25rem 1.25rem 0 0;
  display: block;
  width: 100%;
}

/* video */
.video {
  position: relative;
  background: #000;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.cta_axeptio_ytb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 1;
}
.section_video .video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  height: auto;
}

/* chiffres cles */
.section_chiffres_cles .slick-track {
  gap: var(--gap-xs);
  align-items: stretch;
}
.section_chiffres_cles .slick-track .slick-slide {
  height: unset;
}
.chiffres_container {
  margin-top: var(--gap-m);
}
@media (max-width: 979px) {
  .section_chiffres_cles .chiffre_container {
    padding: var(--gap-m) 10px;
  }
}
@media (min-width: 980px) {
  .section_chiffres_cles .chiffre_container {
    padding: var(--gap-l) 10px;
  }
}
.section_chiffres_cles .chiffre_container {
  row-gap: var(--gap-s);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.section_chiffres_cles .chiffre_container .chiffre {
  font-family: var(--font-family-head);
  font-weight: 900;
  font-size: calc(1.2 * var(--fs-l));
}
.section_chiffres_cles .chiffre_container p {
  margin: 0;
  font-family: var(--font-family-head);
  font-weight: 700;
}
.section_chiffres_cles .chiffre_container:nth-child(1),
.section_chiffres_cles .chiffre_container:nth-child(5),
.section_chiffres_cles .chiffre_container:nth-child(9) {
  background: var(--bleu);
  color: var(--blanc);
}
.section_chiffres_cles .chiffre_container:nth-child(2),
.section_chiffres_cles .chiffre_container:nth-child(6),
.section_chiffres_cles .chiffre_container:nth-child(10) {
  background: var(--orange);
  color: var(--blanc);
}
.section_chiffres_cles .chiffre_container:nth-child(2),
.section_chiffres_cles .chiffre_container:nth-child(6),
.section_chiffres_cles .chiffre_container:nth-child(10) {
  background: var(--orange);
  color: var(--blanc);
}
.section_chiffres_cles .chiffre_container:nth-child(3),
.section_chiffres_cles .chiffre_container:nth-child(7),
.section_chiffres_cles .chiffre_container:nth-child(11) {
  background: var(--jaune);
  color: var(--gris);
}
.section_chiffres_cles .chiffre_container:nth-child(4),
.section_chiffres_cles .chiffre_container:nth-child(8),
.section_chiffres_cles .chiffre_container:nth-child(12) {
  background: var(--blanc);
  color: var(--gris);
}

/* histoire */

.section_histoire .slick-list {
  overflow: visible;
}
.section_histoire .slick-track {
  align-items: stretch;
}
.section_histoire .slide {
  height: unset;
  min-height: unset;
}
.section_histoire .slide > div {
  width: 280px;
  height: 100%;
  padding: var(--gap-s);
  row-gap: var(--gap-s);
  border: 2px solid var(--orange);
  border-radius: var(--border-radius);
}
.section_histoire .slide > div img {
  border-radius: var(--border-radius);
}
.section_histoire .slide:not(:last-child) {
  margin: 0 20px 0 0;
}
.section_histoire .slide .date {
  color: var(--COLORS-blanc, #fff);
  text-align: center;
  font-family: var(--FONTS-font-title, "JetBrains Mono");
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 66.667% */
  margin-top: calc(1.4 * var(--gap));
}

.section_histoire.pas_histoire .slide .date {
  color: var(--COLORS-blanc, #fff);
  text-align: center;
  font-family: var(--FONTS-font-title, "JetBrains Mono");
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-top: 0;
}

.section_histoire .slick-prev,
.section_histoire .slick-next {
  position: relative;
  width: 43px;
  height: 63px;
  background-color: var(--blanc);
  border-radius: 25px;
  transform: unset;
}

.section_histoire .arrows_placeholder {
  column-gap: var(--gap-s);
  margin-top: var(--gap-s);
}

/* telechargements */
.section_telechargements .container {
  width: 840px;
  max-width: var(--container-width);
}

.section_telechargements .document {
  padding: var(--gap-m) 0 0 0;
  margin-top: var(--gap-m);
  border-top: 1px solid var(--blanc);
  gap: var(--gap-s);
}
.document p {
  margin: 0;
}

.section_telechargements .document span {
  padding: 0.31rem 0.94rem;
  border-radius: 1rem;
}

@media (max-width: 639px) {
  .section_telechargements .document {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* actus teaser */

.actu_teaser {
  border-radius: var(--CORNERS-corner, 20px) var(--CORNERS-corner, 20px) 0px 0px;
}
.actu_teaser img {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 340/195;
}
.infos_actu {
  background: #edab86;
  display: flex;
  padding: var(--GAP-gap-s, 20px) var(--GAP-gap-m, 40px);
  gap: var(--GAP-gap-s, 20px);
  flex-grow: 1;
}
.infos_actu .date {
  color: var(--COLORS-gris, #19191e);
  text-align: center;
  font-family: "JetBrains Mono";
  font-size: var(--FS-LH-DESKTOP-fs-h4, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--FS-LH-DESKTOP-lh-h4, 22px); /* 122.222% */
}
.infos_actu h3 {
  flex-grow: 1;
  line-height: 100%;
}
@media (max-width: 979px) {
  .infos_actu h3 {
    font-size: var(--FS-LH-MOBILE-fs-h4-mobile);
  }
}
@media (min-width: 980px) {
  .infos_actu h3 {
    font-size: var(--FS-LH-DESKTOP-fs-h4);
  }
}
.infos_actu h3 a {
  display: block;
  color: var(--COLORS-gris, #19191e);
  width: 100%;
  text-align: center;
  font-family: "JetBrains Mono";
  font-size: var(--FS-LH-DESKTOP-fs-h4, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--FS-LH-DESKTOP-lh-h4, 22px); /* 122.222% */
  text-decoration: none;
}

/*modèle contact*/
.page_contact h1,
.page_contact h2:not(.blanc) {
  color: var(--rose) !important;
}
.actu_teaser:hover span.bouton {
  background: var(--blanc);
  color: var(--orange);
}

/*Archive métiers*/
#filtres_metiers .container .filtres_metiers {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid var(--blanc);
  padding-top: var(--gap-s);
  padding-bottom: var(--gap-s);
}
#liste_filtres_metiers .term_item img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 767px) {
  .filtres_metiers {
    display: block;
  }
  #liste_filtres_metiers {
    gap: 5px;
  }
  #liste_filtres_metiers .term_item {
    padding: var(--gap-xs);
    border-radius: 10px;
    border: 2px solid var(--noir);
  }
  #liste_filtres_metiers img {
    display: none;
  }
}
@media (min-width: 768px) {
  #liste_filtres_metiers .term_item img {
    display: block;
  }
  #liste_filtres_metiers .term_item {
    padding: var(--gap-xs);
    border-radius: 20px;
    border: 2px solid var(--noir);
  }
}
@media (min-width: 768px) and (max-width: 1399px) {
  #liste_filtres_metiers {
    width: 100%;
    gap: 10px;
  }
  #liste_filtres_metiers .term_item {
    width: 108px;
  }
}
@media (max-width: 1399px) {
  .page-des-metiers .entete,
  #filtres_metiers {
    margin-bottom: var(--gap);
  }
  #filtres_metiers .container .h3 {
    width: 100%;
  }
  #liste_filtres_metiers {
    width: 100%;
  }
  #liste_filtres_metiers .term_item p {
    font-size: 12px;
    line-height: 12px; /* 188.889% */
  }
  .un_metier {
    gap: var(--gap-xs);
  }
}
@media (min-width: 1400px) {
  #filtres_metiers .container .h3 {
    width: 200px;
  }
  #liste_filtres_metiers {
    width: calc(100% - 200px - var(--gap-m));
  }
  #liste_filtres_metiers .term_item {
    width: 148px;
    padding: var(--gap-xs);
    border-radius: 20px;
    border: 2px solid var(--noir);
  }
  #liste_filtres_metiers .term_item p {
    font-size: 18px;
    line-height: 18px;
  }
}

#liste_filtres_metiers .term_item:hover,
#liste_filtres_metiers .term_item.active {
  border-color: var(--blanc);
}
#liste_filtres_metiers .term_item p {
  width: 100%;
  margin: 0;
  color: var(--COLORS-blanc, #fff);
  text-align: center;
  font-family: var(--FONTS-font-title, "JetBrains Mono");
  font-style: normal;
  font-weight: 400;
}
.un_metier {
  border-color: var(--jaune);
  padding: var(--gap-s);
  position: relative;
  border-radius: var(--border-radius);
}
.un_metier + .un_metier {
  margin-top: 0;
}
#main .partie_texte.un_metier h2 a {
  text-decoration: none;
  color: var(--jaune);
}
.un_metier span.bouton {
  display: block;
  width: 100%;
}
.un_metier:hover span.bouton {
  background: var(--blanc);
  color: var(--orange);
}

/*Page métier un métier full*/
.presentateur {
  padding: var(--gap-s);
  border-radius: var(--CORNERS-corner, 20px);
  text-align: center;
}
.presentateur img {
  width: 100%;
  display: block;
  border-radius: var(--CORNERS-corner, 20px) var(--CORNERS-corner, 20px) 0px 0px;
  aspect-ratio: 393 / 300;
  object-fit: cover;
}
.presentateur p {
  color: var(--COLORS-gris, #19191e);
  text-align: center;
  font-family: var(--FONTS-font-paragraphe, Poppins);
  font-size: var(--FS-LH-DESKTOP-fs-paragraphe, 18px);
  font-style: normal;
  line-height: var(--FS-LH-DESKTOP-lh-h3, 34px); /* 188.889% */
}

a.bouton_noir {
  background: var(--noir);
  color: var(--blanc);
}
a.bouton_noir:hover {
  background: var(--blanc);
  color: var(--noir);
}
.intitule_mission {
  color: var(--COLORS-jaune, #e7c735);
  font-family: var(--FONTS-font-paragraphe, Poppins);
  font-size: var(--FS-LH-DESKTOP-lh-h4, 22px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--FS-LH-DESKTOP-lh-paragraphe, 30px); /* 136.364% */
}
.intitule_mission + p {
  margin-top: 0.5em;
}

.un_qualite {
  display: flex;
  padding: 0px var(--GAP-gap-xs, 10px);
  justify-content: center;
  align-items: center;
  gap: var(--GAP-gap-xs, 10px);
  border-radius: var(--CORNERS-corner, 20px);
  background: var(--COLORS-blanc, #fff);
  color: var(--COLORS-gris, #19191e);
  font-family: var(--FONTS-font-paragraphe, Poppins);
  font-size: var(--FS-LH-DESKTOP-fs-paragraphe, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--FS-LH-DESKTOP-lh-h3, 34px); /* 188.889% */
}

.reponse {
  color: var(--COLORS-blanc, #fff);
  font-family: var(--FONTS-font-paragraphe, Poppins);
  font-size: var(--FS-LH-DESKTOP-fs-paragraphe, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--FS-LH-DESKTOP-lh-paragraphe, 30px);
}
/* formulaire */
/*
#gform_1 #gform_fields_1 .gfield,
#gform_1 .gform-footer {
  display: none;
  opacity: 0;
}

#gform_1 #gform_fields_1 .gfield#field_1_16,
#gform_1 #gform_fields_1 .gfield#field_1_9 {
  display: block;
  opacity: 1;
}

#gform_1 #field_1_14.gfield_visibility_visible {
  opacity: 1;
}*/
#gform_1 .gform-footer {
  display: none;
  opacity: 0;
}
#form_1_hidden_part {
  display: none;
  opacity: 0;
  grid-column: span 12;
  gap: 10px;
}
#gform_1 #field_1_14 .w-100 {
  width: 100% !important;
}
#gform_1 #field_1_14 .ginput_container {
  width: 70%;
}
@media (max-width: 640px) {
  #gform_1 #field_1_14 .ginput_container {
    width: 100%;
  }
}

#field_1_7 {
  flex-wrap: wrap;
}

#page .gform_wrapper.gravity-theme .description,
#page .gform_wrapper.gravity-theme .gfield_description,
#page .gform_wrapper.gravity-theme .gsection_description,
#page .gform_wrapper.gravity-theme .instruction {
  color: #ccc;
  padding-top: 0;
}
#page .gform_wrapper.gravity-theme .gfield_error .gfield_repeater_cell label,
#page .gform_wrapper.gravity-theme .gfield_error label,
#page .gform_wrapper.gravity-theme .gfield_error legend,
#page .gform_wrapper.gravity-theme .gfield_validation_message,
#page .gform_wrapper.gravity-theme .validation_message,
#page .gform_wrapper.gravity-theme [aria-invalid="true"] + label,
#page .gform_wrapper.gravity-theme label + [aria-invalid="true"] {
  color: var(--rose);
}
@media (min-width: 980px) {
  #page
    .gform_wrapper.gravity-theme
    .left_label
    .gfield:not(.gsection):not(.gfield_html):not(fieldset) {
    width: 80%;
  }
}
.illus_contact_form img {
  display: block;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}
@media (max-width: 979px) {
  .illus_contact_form img {
    aspect-ratio: 300 / 100;
  }
}
@media (min-width: 980px) {
  .illus_contact_form img {
    aspect-ratio: 296 / 411;
  }
}
.gform_description:empty {
  display: none;
}

#page .gform_wrapper.gravity-theme .gsection {
  border: none;
  padding: 0;
  margin-bottom: var(--gap-s);
}

.gfield_visibility_visible + .gfield--input-type-section {
  margin-top: var(--gap);
}
#page label.gfield_label,
#page legend {
  font-weight: 400;
  padding-right: var(--gap-s);
  padding-bottom: var(--gap-s);
}

#page label.gfield_label {
  padding-top: var(--gap-s);
}
#page .formulaire select,
#page .formulaire textarea,
#page
  .formulaire
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]) {
  background-color: transparent;
  border-radius: var(--CORNERS-corner-bouton, 5px);
  border: 2px solid var(--GRIS-CLAIR, #d2d2d2);
  min-height: 60px;
  color: var(--blanc);
}

#page .gfield--width-full.hidden_label.radio_buttons .ginput_container {
  width: 100%;
}
/*start radio*/
.radio_buttons .gchoice {
  position: relative;
  width: unset;
  min-width: unset;
}
.radio_buttons .gfield_radio {
  display: flex;
  gap: var(--gap-s);
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.gform_wrapper.gravity-theme .radio_buttons .gfield-choice-input {
  position: absolute;
  opacity: 0;
}
#page .gform_wrapper.gravity-theme .radio_buttons .gfield-choice-input + label {
  display: flex;
  padding: var(--GAP-gap-xs, 10px) var(--GAP-gap-s, 20px);
  justify-content: center;
  align-items: center;
  gap: var(--GAP-gap-xs, 10px);
  border-radius: 5px;
  background: var(--COLORS-blanc, #fff);
  color: var(--COLORS-gris, #19191e);
  text-align: center;
  font-family: "JetBrains Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 111.111% */
  text-transform: uppercase;
  width: 100%;
  max-width: unset;
  cursor: pointer;
  transition: var(--ease);
}
#page
  .gform_wrapper.gravity-theme
  .radio_buttons
  .gfield-choice-input
  + label:after {
  content: url("../images/custom/label.svg");
}
#page
  .gform_wrapper.gravity-theme
  .radio_buttons
  .gfield-choice-input:checked
  + label,
#page
  .gform_wrapper.gravity-theme
  .radio_buttons
  .gfield-choice-input
  + label:hover {
  background: var(--rose);
  color: var(--noir);
}

/*end radio*/
/*Start upload*/

/*end upload*/
.ginput_container_fileupload {
  position: relative;
}

.ginput_container_fileupload:after {
  content: "Choisir un fichier";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
  pointer-events: none;
  background: var(--blanc);
  color: var(--COLORS-gris, #19191e);
  font-family: var(--FONTS-font-title, "JetBrains Mono");
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--GAP-gap-s, 20px);
  cursor: pointer;
  border-radius: 3px;
}
.ginput_container_fileupload.change:after {
  content: attr(data-content);
}
.ginput_container_fileupload input[type="file"] {
  opacity: 0;
  height: 60px;
}
#page .gform_footer.left_label {
  padding-left: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#page input[type="submit"]:hover {
  cursor: pointer;
}

#page input[type="submit"] {
  display: flex;
  padding: var(--GAP-gap-xs, 10px) var(--GAP-gap-s, 20px);
  justify-content: center;
  align-items: center;
  gap: var(--GAP-gap-xs, 10px);
  align-self: stretch;
  border-radius: 5px;
  background: var(--COLORS-rose, #d45073);
  color: var(--COLORS-blanc, #fff);
  text-align: center;
  font-family: "JetBrains Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 111.111% */
}

#page input[type="submit"]:hover {
  background-color: var(--primary);
  color: var(--rose);
}

.gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 11px;
}

#formulaire_contact p:not(.gform_required_legend) {
  font-size: var(--fs-m);
  line-height: 1;
}

#page .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 20px;
}

#page .formulaire .gform_wrapper.gravity-theme .gfield select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--noir) url("../images/custom/arrow_select.svg") no-repeat 95%
    center;
  line-height: 30px;
}

#page .formulaire .gform_wrapper.gravity-theme .gfield select option {
  background: var(--noir);
  color: var(--blanc);
  font-weight: 400;
  font-family: var(--font-family);
}
#page .formulaire .gform_wrapper.gravity-theme .gfield select option:hover {
  background: var(--orange);
  color: var(--blanc);
}

#page .gform_wrapper.gravity-theme .gfield_required {
  color: inherit;
  font-size: inherit;
}

.ginput_container_consent {
  position: relative;
}

#page .gform_footer {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#page .gform_validation_errors {
  display: none;
}

#page .gfield_validation_message {
  border: 0px;
  background-color: var(--blanc);
  padding: 2px;
  color: var(--rose);
}

#page .ginput_container_turnstile {
  width: 100%;
}

.gform_required_legend {
  margin-top: 0 !important;
  margin-bottom: 1em !important;
}

#page .gfield--type-choice legend {
  width: 100%;
  padding-bottom: 1em;
}

#page .gfield--type-choice .ginput_container_checkbox,
#page .ginput_container_consent {
  width: 100%;
  display: flex;
  padding-bottom: 10px;
}

#page .gfield--type-choice .ginput_container_checkbox .gfield_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#page .gform_footer.left_label {
  padding-left: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gform_required_legend {
  width: 100%;
}

.gfield-choice-input[type="checkbox"],
.ginput_container_consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 30px;
  height: 30px;
  border: 2px solid var(--rose);
  background-color: transparent;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
}

.gfield-choice-input[type="checkbox"],
.ginput_container_consent input[type="checkbox"] {
  margin-right: 10px;
}

.ginput_container_consent input[type="checkbox"] + label {
  width: calc(100% - 42px);
  vertical-align: top;
}

.gfield-choice-input[type="checkbox"]:checked::after,
.ginput_container_consent input[type="checkbox"]:checked::after {
  content: "";
  background: var(--rose);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

#page .gform_wrapper.gravity-theme .ginput_container_consent .gfield_required {
  display: none;
}

#page .gfield--input-type-hidden {
  display: none;
}

/*masquer le deuxieme turnstyle qui apparati à cause d'un bug non résolu de l'extension*/
.cf-turnstile div + div {
  display: none;
}

/*Homepage*/
@media (min-width: 1440px) {
  .home_page section .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Section entête home */
#entete_home {
  /* Styles spécifiques pour la section entête home */
  padding-top: var(--header-height);
}
@media (max-width: 639px) {
  #entete_home .container {
    gap: var(--gap-xs);
  }
  #entete_home #titre_home {
    gap: var(--gap-xs);
  }
}
@media (max-width: 979px) {
  #entete_home #titre_home h1 {
    margin: 20px 0;
  }
}

#entete_home #titre_home h1 span {
  /* Styles spécifiques pour le span dans le h1 du titre home */
  display: block;
  color: var(--COLORS-blanc, #fff);
  font-family: "JetBrains Mono";
  font-size: var(--FS-LH-MOBILE-fs-h2-mobile, 30px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--FS-LH-MOBILE-lh-h2-mobile, 30px); /* 100% */
}
@media (min-width: 1400px) {
  #entete_home #titre_home h1 span {
    font-size: var(--FS-LH-MOBILE-fs-h2-desktop, 40px);
    line-height: var(--FS-LH-MOBILE-lh-h2-desktop, 40px); /* 100% */
  }
}
#entete_home #titre_home .bouton {
  /* Styles spécifiques pour le bouton dans le titre home */
}
#entete_home #image_home {
  /* Styles spécifiques pour l'image home */
  margin-top: 0;
}
#entete_home #image_home img {
  /* Styles spécifiques pour l'image home */
  border-radius: var(--CORNERS-corner, 20px) var(--CORNERS-corner, 20px) 0px 0px;
  overflow: hidden;
  display: block;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 639px) {
  #entete_home #image_home img {
    aspect-ratio: 300 / 277;
  }
}
@media (min-width: 640px) {
  #entete_home #image_home img {
    aspect-ratio: 322 / 490;
  }
}
#entete_home #metiers_home {
  /* Styles spécifiques pour les métiers home */
  display: flex;
}

@media (min-width: 980px) {
  #entete_home #titre_home {
    width: 30%;
  }
  #entete_home #image_home {
    width: 23%;
  }
  #entete_home #metiers_home {
    width: 41%;
    align-self: flex-start;
  }
}

#entete_home #metiers_home .metier_home {
  /* Styles spécifiques pour chaque métier home */

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-xs);
}
@media (max-width: 479px) {
  #entete_home #metiers_home .metier_home {
    width: calc((100% - var(--gap)) / 2);
  }
}
@media (min-width: 480px) {
  #entete_home #metiers_home .metier_home {
    width: calc((100% - (2 * var(--gap))) / 3);
  }
}

#entete_home #metiers_home .metier_home img {
  border-radius: 20px;
}
#entete_home #metiers_home .metier_home span {
  /* Styles spécifiques pour le span dans chaque métier home */
  font-family: var(--font-family-head);
  font-weight: 700;
  text-align: center;
}

/* Section info home */
#info_home {
  /* Styles spécifiques pour la section info home */
}
#info_home .container {
  /* Styles spécifiques pour la section info home */
  gap: var(--gap-xs);
}
#info_home #image_info_home {
  /* Styles spécifiques pour l'image info home */
  margin-bottom: 0;
}
#info_home #image_info_home img {
  display: block;
  width: 100%;
  border-radius: 20px;
}
#info_home #text_info_home {
  /* Styles spécifiques pour le texte info home */
}
@media (max-width: 979px) {
  #info_home #text_info_home .partie_texte {
    /* Styles spécifiques pour la partie texte dans le texte info home */
    gap: var(--gap-xs);
  }
  #info_home #text_info_home .partie_texte h3 {
    font-size: var(--FS-LH-MOBILE-fs-h3-mobile, 20px);
    line-height: var(--FS-LH-MOBILE-lh-h3-mobile, 24px); /* 120% */
  }
}
@media (min-width: 980px) {
  #info_home #text_info_home .partie_texte {
    /* Styles spécifiques pour la partie texte dans le texte info home */
    gap: 20px;
  }
  #info_home #text_info_home .partie_texte h3 {
    font-size: 28px;
    line-height: 35px;
  }
}
#info_home #text_info_home .partie_texte h3 {
  color: var(--COLORS-blanc, #fff);
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 800;
}
#info_home #text_info_home .partie_texte p {
  color: var(--COLORS-blanc, #fff);

  font-family: "JetBrains Mono";
  font-size: var(--FS-LH-MOBILE-fs-h3-mobile, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--FS-LH-MOBILE-lh-h3-mobile, 24px); /* 120% */
}
/* Section qui home */
#contenu_qui_home {
  /* Styles spécifiques pour le contenu qui home */
}

#contenu_qui_home h2 {
  /* Styles spécifiques pour le h2 dans le contenu qui home */
}

#contenu_qui_home .partie_texte p {
  color: var(--COLORS-blanc, #fff);
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 979px) {
  #contenu_qui_home .bouton {
    margin-top: var(--gap-xs);
  }
  #contenu_qui_home .partie_texte {
    gap: var(--gap-xs);
  }
  #contenu_qui_home .partie_texte p {
    font-size: var(--FS-LH-MOBILE-fs-paragraphe-mobile, 14px);
    line-height: var(--FS-LH-MOBILE-lh-paragraphe-mobile, 20px); /* 142.857% */
  }
}
@media (min-width: 980px) {
  #contenu_qui_home .bouton {
    margin-top: var(--gap-m);
  }
  #contenu_qui_home .partie_texte p {
    font-size: var(--FS-LH-DESKTOP-fs-paragraphe, 18px);
    line-height: var(--FS-LH-DESKTOP-lh-paragraphe, 26px); /* 144.444% */
  }
}

#contenu_qui_home #chiffres_qui_home {
  /* Styles spécifiques pour le conteneur de chiffres dans le contenu qui home */
  gap: var(--gap-xs);
  padding-top: var(--gap-m);
  padding-bottom: var(--gap-m);
}

#contenu_qui_home .chiffre_container {
  /* Styles spécifiques pour chaque conteneur de chiffre dans le contenu qui home */
}
@media (max-width: 479px) {
  #contenu_qui_home .chiffre_container {
    width: 100%;
  }
}
@media (min-width: 480px) {
  #contenu_qui_home .chiffre_container {
    flex: 1;
  }
}
#contenu_qui_home .chiffre_container .chiffre {
  /* Styles spécifiques pour chaque chiffre dans le contenu qui home */
  margin: 0;
  text-align: center;
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 800;
  line-height: 75%; /* 80% */
}
@media (min-width: 1400px) {
  #chiffres_qui_home .chiffre_container {
    padding-left: 50px;
    padding-right: 50px;
    flex: unset;
  }
}

#contenu_qui_home .chiffre_container p {
  /* Styles spécifiques pour chaque texte de chiffre dans le contenu qui home */
  margin: 0;
  text-align: center;
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 800;
  line-height: 75%; /* 80% */
}

#image_qui_home img {
  /* Styles spécifiques pour l'image qui home */
  position: relative;
  z-index: 1;
  border-radius: 200px;
  display: block;
  margin: 0 auto;
  max-width: 75%;
  aspect-ratio: 203 / 326;
  object-fit: cover;
}
#image_qui_home .mot_cle_qui_home {
  position: absolute;
  z-index: 0;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

#image_qui_home .mot_cle_qui_home span {
  /* Styles spécifiques pour chaque span dans le mot clé qui home */
  display: block;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--COLORS-blanc, #fff);
  font-family: "JetBrains Mono";

  font-style: normal;
  font-weight: 800;
  opacity: 0.5;
  text-align: center;
}
#image_qui_home .mot_cle_qui_home span:last-child {
  opacity: 1;
}
@media (max-width: 1399px) {
  #image_qui_home img {
    width: 203px;
  }
  #image_qui_home .mot_cle_qui_home span {
    font-size: 56px;
    line-height: 50px;
  }
}

@media (min-width: 1399px) {
  #image_qui_home img {
    width: 395px;
  }
  #image_qui_home .mot_cle_qui_home span {
    font-size: 100px;
    line-height: 90px;
  }
}
@media (min-width: 1440px) {
  body.home .diaporama.diapo_temoins {
    width: 1240px;
  }
  body.home .diaporama.diapo_temoins .photo {
    width: 260px;
  }
}
/* Section actu home */
.un_reseau.fond_orange {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: var(--CORNERS-corner, 20px);
  border: 1px solid var(--COLORS-gris, #19191e);
  transition: all 0.4s;
}
.un_reseau.fond_orange:hover {
  background: var(--blanc);
}
.un_reseau.fond_orange img {
  transition: all 0.4s;
}
.un_reseau.fond_orange:hover img {
  filter: brightness(0) saturate(100%) invert(69%) sepia(42%) saturate(7462%)
    hue-rotate(331deg) brightness(97%) contrast(88%);
}
@media (max-width: 1439px) {
  .un_reseau.fond_orange {
    padding: var(--gap-xs);
  }
  #home_rs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
  }
  #home_rs .bouton,
  #home_rs h3 {
    width: 100%;
    margin: 0;
  }
  #home_rs .reseaux {
    gap: 20px;
    margin-top: -10px;
  }
}
@media (min-width: 1440px) {
  #home_rs {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--GAP-gap-s, 20px);
    align-self: stretch;
  }
  #home_rs .reseaux {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .un_reseau.fond_orange {
    width: 100%;
    padding: 40px;
  }
  #home_actus .actu_teaser {
    width: calc(340 / 1360 * 100%);
  }

  #home_rs .bouton {
    position: absolute;
    top: -100px;
    margin-bottom: 0;
  }
  #home_rs h3 {
    margin-top: 0;
  }
}

@media (min-width: 640px) and (max-width: 979px) {
  #home_rs {
    width: calc((100% - var(--total-space-h)) * 0.5);
  }
  #home_rs .reseaux {
    width: 100%;
  }
}

body.home .temoignages + #home_actus {
  margin-top: calc(var(--section-gap) * -1);
}
#home_actus .fond_pages_liees {
  padding: var(--section-gap) 0;
}

/*
*
* slick.css
*
*/

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-track {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.slick-initialized .slider-inte.slick-slide {
  height: 100%;
  float: none;
  display: flex;
  flex-direction: column;
  /* align-items: center; - Fait beuger contenus lies */
  justify-content: center;
}

[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev,
.slick-next {
  display: block !important;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  height: 53px;
  width: 53px;
  border: 0px;
  border-radius: 0;
  background: var(--blanc);
  font-size: 0;
  cursor: pointer;
}
.slick-prev:hover,
.slick-next:hover {
  background: var(--orange);
}

.slick-prev {
  left: 0px;
  right: auto;
  z-index: 2;
}

.slick-prev:before,
.slick-next:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate3d(-50%, -50%, 0);
  font-size: 22px;
  color: var(--noir);
  cursor: pointer;
  content: url("../images/custom/fleche.svg");
}
.slick-prev:before {
  transform-origin: center;
  transform: translate3d(-50%, -67%, 0) rotate(-180deg);
}
.slick-next:before {
}

@media (max-width: 1023px) {
  .slick-next {
    right: 0;
  }
  .slick-prev {
    left: 0;
  }
}
.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 0 0;
  padding-left: 0;
}
.slick-dots li {
  list-style-type: none;
  padding: 0;
  margin: 0 0.5rem;
}

.slick-dots li:before {
  display: none;
}
.slick-dots li button {
  background: var(--blanc);
  height: 15px;
  width: 15px;
  padding: 0;
  border-radius: 50%;
  border: none;
  font-size: 0;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background: var(--rose);
}
