/**************************** IMPORTS ****************************/

@import url("fonts.css");

/**************************** VARIABLES CSS ****************************/

:root {
  /* Couleurs très claires */
  --blanc: #FFFFFF;
  --gris-clair: #F3F4F6;
  --gris-tres-clair: #EDEDED;
  --gris-tres-clair-2: #DDDDDD;
  --gris-bleu-clair: #E9EEF0;

  /* Couleurs rouges */
  --rouge-vif: #FF0000;
  --rouge: #E30613;
  --rouge-fonce: #E20613;
  --rouge-profond: #CC0C11;
  --rouge-intense: #E20917;
  --rouge-brillant: #FF0009;

  /* Couleurs foncées */
  --noir: #000000;
  --noir-fonce: #040404;
  --gris-tres-fonce: #1D1D1B;
  --bleu-fonce: #2A2D42;

  /* Polices */
  --font-barlow-condensed: "Barlow Condensed", Sans-serif;
  --font-arial: "Arial", Sans-serif;
  --font-arial-narrow: "ArialNarrow", sans-serif;
  --font-gill-sans: "GillSans", sans-serif;
  --font-gill-sans-condensed: "GillSansCondensed", sans-serif;

  /* Bordures */
  --bordure-blanc: 2px solid var(--blanc);
  --bordure-rouge-profond: 2px solid var(--rouge-profond);
  --bordure-rond-blanc: 2px dashed var(--blanc);
  --bordure-rond-gris: 2px dashed var(--gris-tres-clair-2);

  /* Espacements */
  --padding-left: 55px;

  /* Dimensions */
  --conteneur-site: 1200px;

  --conteneur-1000: 1000px;
  --conteneur-1400: 1400px;
  /* --conteneur-special: calc(var(--conteneur-site) - var(--padding-left)); */

  /* Effets */
  --transition-site: all 0.3s ease;
}

/* Scrollbar */

html::-webkit-scrollbar {
    width: 16px;
    height: 16px;
    background: transparent;
}

html::-webkit-scrollbar-track {
    background: var(--blanc);
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
    background-color: var(--noir);
    border-radius: 10px;
    border: 4px solid var(--blanc);
}

html::-webkit-scrollbar-thumb:hover {
    background-color: var(--bleu-fonce);
}

html::selection {
    background-color: var(--noir);
    color: var(--blanc);
}

/**************************** INITIALISATION ****************************/

html {
    overflow-y: scroll !important;
    scroll-behavior: smooth !important;
    cursor: default !important;
}

html, body {
    overflow-x: hidden !important;
    background-color: var(--blanc) !important;
}

a, button {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

*:focus,
*:active {
    outline: none !important;
    box-shadow: none !important;
}

body input:focus,
body input:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/**************************** SURCHARGES ****************************/

/* Override Elementor */

/* .elementor-widget-button .elementor-button {
    font-weight: 400;
    background-color: transparent;
}

.elementor-widget-button .elementor-button:hover,
.elementor-widget-button .elementor-button:focus {
    background-color: var(--rose);
}

.elementor-widget-text-editor {
    font-weight: 300;
}

.elementor-widget-text-editor p {
    font-family: var(--font-archivo);
    margin-block-start: 0px;
    margin-block-end: 0px;
}

.elementor-testimonial-wrapper .elementor-testimonial-content {
    margin-block-start: 0px;
    margin-block-end: 10px;
}

.elementor-nav-menu--main .elementor-nav-menu a,
.elementor-nav-menu--main .elementor-nav-menu a.highlighted,
.elementor-nav-menu--main .elementor-nav-menu a:focus,
.elementor-nav-menu--main .elementor-nav-menu a:hover {
    padding: 13px clamp(5px, 1vw, 20px);
}

.elementor-nav-menu--main .elementor-item.elementor-item-active {
    font-weight: 400 !important;
}

.elementor-nav-menu--dropdown .elementor-item.elementor-item-active,
.elementor-nav-menu--dropdown .elementor-item.highlighted,
.elementor-sub-item.elementor-item-active,
.elementor-sub-item.highlighted {
    background-color: transparent;
    color: var(--rose);
}

.elementor-nav-menu--dropdown .elementor-item:focus,
.elementor-nav-menu--dropdown .elementor-item:hover,
.elementor-sub-item:focus,
.elementor-sub-item:hover {
    background-color: var(--rose);
    color: var(--blanc);
}

.elementor-nav-menu--dropdown .elementor-item.elementor-item-active {
    font-weight: 400 !important;
} */

/* .elementor-widget-n-carousel {
    cursor: grab;
} */

/**************************** CSS COMMUN ****************************/

/******************** Styles de base ********************/

/***** Commun *****/

.block {
    display: block;
}

.inline-tab,
.inline-mob {
    display: block;
}

.gras {
    font-weight: bold;
}

.majuscule {
    text-transform: uppercase;
}

.minuscule {
    text-transform: lowercase;
}

/***** Autres *****/

.image-sp {
    height: 580px;
}

.image-sp img {
    height: 100%;
    object-fit: cover;
}

.espace {
    padding: 0px 15px;
}

.espace.weight-700 {
    font-weight: 700;
}

.pas-liens a {
    color: inherit;
    font-weight: 300;
}

@media (max-width: 767px) {
    .image-sp {
        height: 345px;
    }

    .image-sp img {
        width: calc(100vw + 30px);
        /* height: auto !important; */
        height: 350px !important;
        margin-left: -15px;
        margin-right: -15px;
        display: block;
        max-width: none;
    }
}

/* Texte spécial */

.texte-special {
    color: var(--noir);
    font-family: var(--font-arial);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-transform: lowercase;
}

.texte-special.gris-tres-clair {
    color: var(--gris-tres-clair);
}

.texte-special.FL::first-letter {
    text-transform: uppercase;
}

/******************** Couleurs ********************/

/* Couleurs de texte */

.couleur-blanc { color: var(--blanc) !important; }
.couleur-gris-clair { color: var(--gris-clair) !important; }
.couleur-gris-tres-clair { color: var(--gris-tres-clair) !important; }
.couleur-gris-tres-clair-2 { color: var(--gris-tres-clair-2) !important; }
.couleur-gris-bleu-clair { color: var(--gris-bleu-clair) !important; }

.couleur-rouge-vif { color: var(--rouge-vif) !important; }
.couleur-rouge { color: var(--rouge) !important; }
.couleur-rouge-fonce { color: var(--rouge-fonce) !important; }
.couleur-rouge-profond { color: var(--rouge-profond) !important; }
.couleur-rouge-intense { color: var(--rouge-intense) !important; }
.couleur-rouge-brillant { color: var(--rouge-brillant) !important; }

.couleur-noir { color: var(--noir) !important; }
.couleur-noir-fonce { color: var(--noir-fonce) !important; }
.couleur-gris-tres-fonce { color: var(--gris-tres-fonce) !important; }
.couleur-bleu-fonce { color: var(--bleu-fonce) !important; }

/* Couleurs de fond */

.fond-blanc { background-color: var(--blanc) !important; }
.fond-gris-clair { background-color: var(--gris-clair) !important; }
.fond-gris-tres-clair { background-color: var(--gris-tres-clair) !important; }
.fond-gris-tres-clair-2 { background-color: var(--gris-tres-clair-2) !important; }
.fond-gris-bleu-clair { background-color: var(--gris-bleu-clair) !important; }

.fond-rouge-vif { background-color: var(--rouge-vif) !important; }
.fond-rouge { background-color: var(--rouge) !important; }
.fond-rouge-fonce { background-color: var(--rouge-fonce) !important; }
.fond-rouge-profond { background-color: var(--rouge-profond) !important; }
.fond-rouge-intense { background-color: var(--rouge-intense) !important; }
.fond-rouge-brillant { background-color: var(--rouge-brillant) !important; }

.fond-noir { background-color: var(--noir) !important; }
.fond-noir-fonce { background-color: var(--noir-fonce) !important; }
.fond-gris-tres-fonce { background-color: var(--gris-tres-fonce) !important; }
.fond-bleu-fonce { background-color: var(--bleu-fonce) !important; }

/******************** Boutons ********************/

/***** Bouton principal N°1 *****/

.btn-principal-1 .elementor-button {
    font-family: var(--font-barlow-condensed);
    font-size: 30px;
    font-weight: 900;
    color: var(--noir);
    background: transparent;
    line-height: 25px;
    position: relative;
    padding-left: 55px;
    transition: var(--transition-site);
}

.btn-principal-1 .elementor-button:hover {
    color: var(--rouge-profond);
    padding-left: 75px;
}

.btn-principal-1 .elementor-button::before {
    content: "";
    width: 34px;
    height: 34px;
    background: url(../icons/rond-pointille.svg) center / contain no-repeat;
    position: absolute;
    left: 0px;
    top: 27px;
    transform: translateY(-50%) rotate(0deg) scale(1);
    transition: var(--transition-site);
}

.btn-principal-1 .elementor-button:hover::before {
    transform: translateY(-50%) translateX(9px) rotate(45deg) scale(1.5);
}

.btn-principal-1 .elementor-button::after {
    content: "";
    width: 18px;
    height: 6px;
    background: url(../icons/fleche-rouge.svg) center / contain no-repeat;
    position: absolute;
    left: 8px;
    top: 24px;
    transform: translate(0px, 0px);
    pointer-events: none;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    will-change: transform, width, height;
}

.btn-principal-1 .elementor-button:hover::after {
    width: 32px;
    height: 11px;
    transform: translate(25px, -2px);
}

.btn-principal-1 .elementor-button .elementor-button-text {
    text-align: left;
}

/****** Bouton principal N°2 ******/

.btn-principal-2 .elementor-button {
    font-family: var(--font-barlow-condensed);
    font-size: 28px;
    font-weight: 700;
    color: var(--blanc);
    background: transparent;
    line-height: 34px;
    position: relative;
    left: 25px;
    padding-left: 110px;
    transition: var(--transition-site);
}

.btn-principal-2 .elementor-button:hover {
    color: var(--rouge);
    padding-left: 85px;
}

.btn-principal-2 .elementor-button::before {
    content: "";
    width: 90px;
    height: 7px;
    background-color: var(--rouge-fonce);
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-site);
}

.btn-principal-2 .elementor-button:hover::before {
    width: 41px;
    height: 7px;
    background-color: var(--gris-tres-clair);
}

/****** Bouton principal N°3 ******/

.btn-principal-3 .elementor-button {
    display: flex;
    position: relative;
    width: 100%;
    padding: 12px 80px 12px 18px;
    border: 2px solid var(--noir);
    border-radius: 0px;
    font-family: var(--font-gill-sans);
    font-size: 18px;
    font-weight: 500;
    line-height: 15px;
    color: var(--noir);
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-site);
}

.btn-principal-3 .elementor-button:hover {
    background: var(--noir);
}

.btn-principal-3 .elementor-button::after {
    content: "";
    position: absolute;
    width: 31px;
    height: 11px;
    top: 50%;
    right: 15px;
    transform: translate(0px, -50%);
    background: url(../icons/fleche-noire-pleine.svg) center / contain no-repeat;
    pointer-events: none;
    transition: var(--transition-site);
}

.btn-principal-3 .elementor-button:hover::after {
    background: url(../icons/fleche-blanche-pleine.svg) center / contain no-repeat;
}

.btn-principal-3 .elementor-button:hover .elementor-button-text {
    color: var(--blanc);
}

/****** Bouton plein ******/

.btn-plein .elementor-button {
    font-family: var(--font-gill-sans);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    color: var(--blanc);
    background: transparent;
    line-height: 26px;
    border: 2px solid var(--blanc);
    padding: 12px 80px 12px 18px;
    position: relative;
    cursor: pointer;
    transition: var(--transition-site);
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-plein .elementor-button:hover {
    color: var(--noir);
    background: var(--blanc);
}

.btn-plein .elementor-button::after {
    content: "";
    width: 31px;
    height: 11px;
    background: url(../icons/fleche-rouge.svg) center / contain no-repeat;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0px, -50%);
    pointer-events: none;
    transition: var(--transition-site);
}

/****** Bouton spécial ******/

.btn-plein.special .elementor-button {
    text-transform: inherit;
    border: none;
}

.btn-plein.special .elementor-button:hover {
    color: var(--blanc);
    background: transparent;
}

.btn-plein.special .elementor-button::after {
    background: url(../icons/fleche-rouge-pleine.svg) center / contain no-repeat;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-plein.special .elementor-button:hover::after {
    background: url(../icons/fleche-blanche-pleine.svg) center / contain no-repeat;
    transform: translate(15px, -50%);
}

/****** Bouton contact ******/

.btn-plein.contact .elementor-button::after {
    background: url(../icons/fleche-blanche-pleine.svg) center / contain no-repeat;
}

.btn-plein.contact .elementor-button:hover::after {
    background: url(../icons/fleche-rouge-pleine.svg) center / contain no-repeat;
}

/******************** Titres ********************/

/* Div titre = H2 (hors balise Hn) */

.div-titre .elementor-heading-title {
    font-family: var(--font-barlow-condensed);
    font-size: 40px;
    font-weight: 900;
    line-height: 32px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

/* Puce flèche titre */

.fleche-titre .elementor-heading-title {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    font-family: var(--font-barlow-condensed);
    font-size: 32px;
    font-weight: 900;
    color: var(--noir);
    line-height: 38px;
    letter-spacing: 0px;
    padding-left: 76px;
}

.fleche-titre .elementor-heading-title::before {
    content: "";
    position: absolute;
    left: 0px;
    top: -3px;
    width: 46px;
    height: 46px;
    background: url(../icons/fleche-titre.svg) center / contain no-repeat;
}

@media (max-width: 767px) {
    .fleche-titre .elementor-heading-title {
        font-size: 26px;
        line-height: 24px;
        padding-left: 30px;
    }

    .fleche-titre .elementor-heading-title::before {
        top: 0px;
        width: 22px;
        height: 22px;
    }
}

/* Puce flèche titre (spécial) */

.fleche-titre-special .elementor-heading-title {
    position: relative;
    width: fit-content;
}

.fleche-titre-special .elementor-heading-title::before {
    content: "";
    width: 40px;
    height: 40px;
    background: url(../icons/rond-pointille.svg) center / contain no-repeat;
    position: absolute;
    left: calc(100% + 30px);
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-site);
}

.fleche-titre-special .elementor-heading-title::after {
    content: "";
    width: 27px;
    height: 11px;
    background: url(../icons/fleche-rouge.svg) center / contain no-repeat;
    position: absolute;
    left: calc(100% + 58px);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    will-change: transform, width, height;
}

/* Sur titre */

/* .sur-titre .elementor-heading-title {
    font-size: clamp(2.5rem, 1.86rem + 2.85vw, 4.0625rem) !important;
    line-height: clamp(2.75rem, 2.18rem + 2.35vw, 3.75rem) !important;
} */

/* Titre spécial */

.titre-special .elementor-heading-title {
    position: relative;
    padding-left: 130px;
}

.titre-special .elementor-heading-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    transform: translateY(-50%);
    width: 100px;
    height: 20px;
    background: var(--rouge-profond);
}

/* Puce hexagonale (liste) */

.puce-hexagonale .elementor-icon-list-item {
    --taille-puce-hexagonale: 16px;
    position: relative;
    padding-left: calc(var(--taille-puce-hexagonale) + 30px);
}

.puce-hexagonale .elementor-icon-list-item::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0.2em;
    width: var(--taille-puce-hexagonale);
    height: var(--taille-puce-hexagonale);
}

.puce-hexagonale.rouge .elementor-icon-list-item::before {
    background: url(../icons/puce-hexagonale-rouge.svg) center / contain no-repeat;
}

.puce-hexagonale.blanche .elementor-icon-list-item::before {
    background: url(../icons/puce-hexagonale-blanche.svg) center / contain no-repeat;
}

.puce-hexagonale.noire .elementor-icon-list-item::before {
    background: url(../icons/puce-hexagonale-noire.svg) center / contain no-repeat;
}

@media (max-width: 767px) {
    .puce-hexagonale .elementor-icon-list-item {
        padding-left: calc(var(--taille-puce-hexagonale) + 15px);
    }
}

/* Puce hexagonale (titre) */

.puce-hexagonale-titre {
    --taille-puce-hexagonale-titre: 24px;
    position: relative;
    padding-left: calc(var(--taille-puce-hexagonale-titre) + 30px);
}

.puce-hexagonale-titre .elementor-heading-title::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0.2em;
    width: 24px;
    height: 24px;
}

.puce-hexagonale-titre.rouge .elementor-heading-title::before {
    background: url(../icons/puce-hexagonale-rouge.svg) center / contain no-repeat;
}

.puce-hexagonale-titre.blanche .elementor-heading-title::before {
    background: url(../icons/puce-hexagonale-blanche.svg) center / contain no-repeat;
}

.puce-hexagonale-titre.noire .elementor-heading-title::before {
    background: url(../icons/puce-hexagonale-noire.svg) center / contain no-repeat;
}

@media (max-width: 767px) {
    .puce-hexagonale-titre {
        padding-left: calc(var(--taille-puce-hexagonale-titre) + 15px);
    }
}

/* Puce rectangle (liste) */

.puce-rectangle .elementor-icon-list-item {
    position: relative;
    padding-left: 35px;
}

.puce-rectangle .elementor-icon-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 10px;
    height: 16px;
}

.puce-rectangle.rouge .elementor-icon-list-item::before {
    background-color: var(--rouge-fonce);
}

.puce-rectangle.blanche .elementor-icon-list-item::before {
    background-color: var(--blanc);
}

.puce-rectangle.noire .elementor-icon-list-item::before {
    background-color: var(--noir);
}

/* .puce-titres .elementor-heading-title {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 50px;
}

.puce-titres .elementor-heading-title::before {
    content: "";
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--rose);
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.puce-titres.sp .elementor-heading-title {
    max-width: 505px !important;
    padding-left: 70px;
} */

/******************** Formes ********************/

/* Barre pleine (simple) */

/* .barre-pleine {
    position: relative;
    width: 100%;
}

.barre-pleine::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 10px;
    transform: translateY(-50%);
    z-index: 0;
}

.barre-pleine.rouge::before {
    background: var(--rouge-fonce);
}

.barre-pleine.blanche::before {
    background: var(--blanc);
}

.barre-pleine.noire::before {
    background: var(--noir);
} */

/* Barres pleines */

/* .barres-pleines {
    position: relative;
    width: fit-content;
}

.barres-pleines .elementor-heading-title::before,
.barres-pleines .elementor-heading-title::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--rouge-profond);
    top: 50%;
    transform: translateY(-50%);
}

.barres-pleines .elementor-heading-title::before {
    left: -100vw;
    right: 100%;
    margin-right: 55px;
}

.barres-pleines .elementor-heading-title::after {
    left: 100%;
    right: -100vw;
    margin-left: 55px;
} */

/****** Barre pleine (simple) ******/

.barre-pleine {
    position: relative;
    width: 100%;
    height: 10px;
}

.barre-pleine::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--rouge-profond);
    background: var(--rouge-profond);
    transform: translateY(-50%);
    z-index: 0;
}

/****** Barre pleine (style 2) ******/

.barre-pleine-style-2 {
    position: relative;
    width: 100%;
}

.barre-pleine-style-2::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    z-index: 0;
}

.barre-pleine-style-2 > div {
    width: 100%;
    height: 10px;
    margin: 20px 0px 0px 0px;
    transition: margin 0.35s ease;
    will-change: margin;
}

.barre-pleine-style-2.rouge > div {
    background: var(--rouge-fonce);
}

.barre-pleine-style-2.blanche > div {
    background: var(--blanc);
}

.barre-pleine-style-2.noire > div {
    background: var(--noir);
}

/****** Barre creuse (simple) ******/

.barre-creuse {
    position: relative;
    width: 100%;
    height: 30px;
}

.barre-creuse.h-65 {
    height: 65px;
}

.barre-creuse::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--rouge-profond);
    background: transparent;
    transform: translateY(-50%);
    z-index: 0;
}

/* Titre barres */

/* .titre-barres.elementor-widget-heading {
  display: grid;
  align-items: center;
  column-gap: 15px;
  width: 100%;
}

.titre-barres.elementor-widget-heading::before,
.titre-barres.elementor-widget-heading::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid var(--rouge-profond);
  background: transparent;
}

.titre-barres.elementor-widget-heading.blanc::before,
.titre-barres.elementor-widget-heading.blanc::after {
  border: 2px solid var(--blanc);
}

.titre-barres.elementor-widget-heading .elementor-heading-title {
  margin: 0px;
  padding: 0px;
  display: inline-block;
  width: auto;
  background: transparent;
}

.titre-barres.elementor-widget-heading .elementor-heading-title::before,
.titre-barres.elementor-widget-heading .elementor-heading-title::after {
  content: none !important;
}

.titre-barres.elementor-widget-heading.centre { grid-template-columns: 1fr auto 1fr; }

.titre-barres.elementor-widget-heading.centre.gap-35 {
  column-gap: 35px;
}

.titre-barres.elementor-widget-heading.centre.max-110 {
  grid-template-columns: minmax(0px,110px) auto 1fr;
}

.titre-barres.elementor-widget-heading.centre.max-150 {
  grid-template-columns: minmax(0px,150px) auto 1fr;
}

.titre-barres.elementor-widget-heading.centre.max-110-gap-30 {
  column-gap: 30px;
  grid-template-columns: minmax(0px,110px) auto 1fr;
}

.titre-barres.elementor-widget-heading.centre.max-150-gap-35 {
  column-gap: 35px;
  grid-template-columns: minmax(0px,150px) auto 1fr;
}

.titre-barres.elementor-widget-heading.centre::before { grid-column: 1; }
.titre-barres.elementor-widget-heading.centre::after { grid-column: 3; }
.titre-barres.elementor-widget-heading.centre .elementor-heading-title { grid-column: 2; text-align: center; }

.titre-barres.elementor-widget-heading.gauche { grid-template-columns: auto 1fr; }

.titre-barres.elementor-widget-heading.gauche::before { display: none; }
.titre-barres.elementor-widget-heading.gauche::after { grid-column: 2; }
.titre-barres.elementor-widget-heading.gauche .elementor-heading-title { grid-column: 1; text-align: left; }

.titre-barres.elementor-widget-heading.droite { grid-template-columns: 1fr auto; }

.titre-barres.elementor-widget-heading.droite::before { grid-column: 1; }
.titre-barres.elementor-widget-heading.droite::after { display: none; }
.titre-barres.elementor-widget-heading.droite .elementor-heading-title { grid-column: 2; text-align: right; } */

/***************************************************************** TEST *****************************************************************/


































/******************** TITRE BARRES (Elementor Heading) ********************/
/*
Classes (sur le widget Heading Elementor) :

Alignement :
- centre (default si rien)
- gauche
- droite

Style :
- creuses (default)
- pleines

Couleur :
- blanc (option)

Gaps :
- gap-30 / gap-35 / gap-45 / gap-55 (sinon 15)

Centre (inside) : choix fixe d’un côté
- before-fixe + before-150 (ex)
- after-fixe  + after-110 (ex)

Mode :
- inside (default) : barres dans la largeur du widget
- full : barres qui "bleed" jusqu’aux bords de l’écran (sort du container)
*/

.titre-barres.elementor-widget-heading{
  --tb-color: var(--rouge-profond);
  --tb-gap: 15px;
  --tb-height: 30px;
  --tb-border: 2px;

  --tb-before: 150px;
  --tb-after: 110px;

  width: 100%;
  position: relative;
}

/* Base titre */
.titre-barres.elementor-widget-heading .elementor-heading-title{
  margin: 0px;
  padding: 0px;
  display: inline-block;
  width: auto;
  background: transparent;
  position: relative;
  z-index: 1;
}

/* ===================== MODE INSIDE (grid) ===================== */
.titre-barres.elementor-widget-heading:not(.full){
  display: grid;
  align-items: center;
  column-gap: var(--tb-gap);
}

/* On empêche les pseudo du titre (inside uniquement) */
.titre-barres.elementor-widget-heading:not(.full) .elementor-heading-title::before,
.titre-barres.elementor-widget-heading:not(.full) .elementor-heading-title::after{
  content: none !important;
}

/* Barres inside = pseudo du widget */
.titre-barres.elementor-widget-heading:not(.full)::before,
.titre-barres.elementor-widget-heading:not(.full)::after{
  content:"";
  height: var(--tb-height);
  width: 100%;
  box-sizing: border-box;
}

/* Styles inside */
.titre-barres.elementor-widget-heading:not(.full).creuses::before,
.titre-barres.elementor-widget-heading:not(.full).creuses::after{
  border: var(--tb-border) solid var(--tb-color);
  background: transparent;
}
.titre-barres.elementor-widget-heading:not(.full).pleines::before,
.titre-barres.elementor-widget-heading:not(.full).pleines::after{
  border: none;
  background: var(--tb-color);
}
/* Default inside = creux */
.titre-barres.elementor-widget-heading:not(.full):not(.pleines):not(.creuses)::before,
.titre-barres.elementor-widget-heading:not(.full):not(.pleines):not(.creuses)::after{
  border: var(--tb-border) solid var(--tb-color);
  background: transparent;
}

/* Alignements inside */
.titre-barres.elementor-widget-heading:not(.full).centre,
.titre-barres.elementor-widget-heading:not(.full):not(.centre):not(.gauche):not(.droite){
  grid-template-columns: 1fr auto 1fr;
}
.titre-barres.elementor-widget-heading:not(.full).centre::before,
.titre-barres.elementor-widget-heading:not(.full):not(.centre):not(.gauche):not(.droite)::before{ grid-column: 1; }
.titre-barres.elementor-widget-heading:not(.full).centre .elementor-heading-title,
.titre-barres.elementor-widget-heading:not(.full):not(.centre):not(.gauche):not(.droite) .elementor-heading-title{ grid-column: 2; text-align: center; }
.titre-barres.elementor-widget-heading:not(.full).centre::after,
.titre-barres.elementor-widget-heading:not(.full):not(.centre):not(.gauche):not(.droite)::after{ grid-column: 3; }

.titre-barres.elementor-widget-heading:not(.full).gauche{
  grid-template-columns: auto 1fr;
}
.titre-barres.elementor-widget-heading:not(.full).gauche::before{ display:none; }
.titre-barres.elementor-widget-heading:not(.full).gauche .elementor-heading-title{ grid-column: 1; text-align:left; }
.titre-barres.elementor-widget-heading:not(.full).gauche::after{ grid-column: 2; }

.titre-barres.elementor-widget-heading:not(.full).droite{
  grid-template-columns: 1fr auto;
}
.titre-barres.elementor-widget-heading:not(.full).droite::after{ display:none; }
.titre-barres.elementor-widget-heading:not(.full).droite::before{ grid-column: 1; }
.titre-barres.elementor-widget-heading:not(.full).droite .elementor-heading-title{ grid-column: 2; text-align:right; }

/* Centre inside : before fixe / after flexible */
.titre-barres.elementor-widget-heading:not(.full).centre.before-fixe{
  grid-template-columns: minmax(0px,var(--tb-before)) auto 1fr;
}
/* Centre inside : after fixe / before flexible */
.titre-barres.elementor-widget-heading:not(.full).centre.after-fixe{
  grid-template-columns: 1fr auto minmax(0px,var(--tb-after));
}

/* ===================== MODE FULL (bleed jusqu’aux bords écran) ===================== */
/* Ici, on reproduit EXACTEMENT ta logique -100vw / +100vw,
   mais avec variables, + version creuse/pleine */
.titre-barres.elementor-widget-heading.full{
  width: fit-content;
  max-width: 100%;
}

/* IMPORTANT : en full, on AUTORISE les pseudos du titre */
.titre-barres.elementor-widget-heading.full .elementor-heading-title::before,
.titre-barres.elementor-widget-heading.full .elementor-heading-title::after{
  content:"";
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  height: var(--tb-height);
  box-sizing:border-box;
  pointer-events: none;
  z-index: 0;
}

/* Full = bars that bleed */
.titre-barres.elementor-widget-heading.full .elementor-heading-title::before{
  left: -100vw;
  right: 100%;
  margin-right: var(--tb-gap);
}
.titre-barres.elementor-widget-heading.full .elementor-heading-title::after{
  left: 100%;
  right: -100vw;
  margin-left: var(--tb-gap);
}

/* Styles full */
.titre-barres.elementor-widget-heading.full.creuses .elementor-heading-title::before,
.titre-barres.elementor-widget-heading.full.creuses .elementor-heading-title::after{
  border: var(--tb-border) solid var(--tb-color);
  background: transparent;
}
.titre-barres.elementor-widget-heading.full.pleines .elementor-heading-title::before,
.titre-barres.elementor-widget-heading.full.pleines .elementor-heading-title::after{
  border: none;
  background: var(--tb-color);
}
/* Default full = creux */
.titre-barres.elementor-widget-heading.full:not(.pleines):not(.creuses) .elementor-heading-title::before,
.titre-barres.elementor-widget-heading.full:not(.pleines):not(.creuses) .elementor-heading-title::after{
  border: var(--tb-border) solid var(--tb-color);
  background: transparent;
}

/* Full centré : before-fixe / after-fixe
   On garde la logique -100vw/ +100vw, mais on "remplace" un côté par une largeur fixe */
.titre-barres.elementor-widget-heading.full.before-fixe .elementor-heading-title::before{
  left: auto;
  right: 100%;
  width: var(--tb-before);
  margin-right: var(--tb-gap);
}
.titre-barres.elementor-widget-heading.full.before-fixe .elementor-heading-title::after{
  left: 100%;
  right: -100vw;
  margin-left: var(--tb-gap);
}

.titre-barres.elementor-widget-heading.full.after-fixe .elementor-heading-title::after{
  left: 100%;
  right: auto;
  width: var(--tb-after);
  margin-left: var(--tb-gap);
}
.titre-barres.elementor-widget-heading.full.after-fixe .elementor-heading-title::before{
  left: -100vw;
  right: 100%;
  margin-right: var(--tb-gap);
}

/* ===================== Couleurs ===================== */
.titre-barres.elementor-widget-heading.blanc{ --tb-color: var(--blanc); }

/* ===================== Gaps ===================== */
.titre-barres.elementor-widget-heading.gap-30{ --tb-gap: 30px; }
.titre-barres.elementor-widget-heading.gap-35{ --tb-gap: 35px; }
.titre-barres.elementor-widget-heading.gap-45{ --tb-gap: 45px; }
.titre-barres.elementor-widget-heading.gap-55{ --tb-gap: 55px; }

/* ===================== Presets largeur fixe ===================== */
.titre-barres.elementor-widget-heading.before-110{ --tb-before: 110px; }
.titre-barres.elementor-widget-heading.before-150{ --tb-before: 150px; }
.titre-barres.elementor-widget-heading.before-200{ --tb-before: 200px; }
.titre-barres.elementor-widget-heading.before-300{ --tb-before: 300px; }

.titre-barres.elementor-widget-heading.after-110{ --tb-after: 110px; }
.titre-barres.elementor-widget-heading.after-150{ --tb-after: 150px; }
.titre-barres.elementor-widget-heading.after-200{ --tb-after: 200px; }
.titre-barres.elementor-widget-heading.after-300{ --tb-after: 300px; }

/* ===================== Responsive ===================== */
@media (max-width: 767px){
  .titre-barres.elementor-widget-heading{
    --tb-height: 20px;
  }
}


































/****** Rond pointillé (système modulaire) ******/

.rond-pointille {
    --taille-rond-pointille-310: 310px;
    width: var(--taille-rond-pointille-310);
    height: var(--taille-rond-pointille-310);
    border-radius: 50%;
    border: var(--bordure-rond-blanc);
    position: absolute;
}

/* Tailles */

.rond-pointille.t-190 {
    --taille-rond-pointille-190: 190px;
    width: var(--taille-rond-pointille-190);
    height: var(--taille-rond-pointille-190);
    border: var(--bordure-rond-gris);
}

.rond-pointille.t-240 {
    --taille-rond-pointille-240: 240px;
    width: var(--taille-rond-pointille-240);
    height: var(--taille-rond-pointille-240);
    border: var(--bordure-rond-gris);
}

.rond-pointille.t-280 {
    --taille-rond-pointille-280: 280px;
    width: var(--taille-rond-pointille-280);
    height: var(--taille-rond-pointille-280);
    border: var(--bordure-rond-gris);
}

.rond-pointille.t-340 {
    --taille-rond-pointille-340: 340px;
    width: var(--taille-rond-pointille-340);
    height: var(--taille-rond-pointille-340);
    border: var(--bordure-rond-gris);
}

/* Axe vertical */

.rond-pointille.haut { top: 0; }
.rond-pointille.milieu { top: 50%; }
.rond-pointille.bas { bottom: 0; }

/* Axe horizontal */

.rond-pointille.gauche { left: 0; }
.rond-pointille.centre { left: 50%; }
.rond-pointille.droit { right: 0; }

/* Positions (par rapport au parent) */

.rond-pointille.haut.gauche { transform: translate(-50%, -50%); }
.rond-pointille.haut.centre { transform: translate(-50%, -50%); }
.rond-pointille.haut.droit { transform: translate(50%, -50%); }

.rond-pointille.milieu.gauche { transform: translate(-50%, -50%); }
.rond-pointille.milieu.centre { transform: translate(-50%, -50%); }
.rond-pointille.milieu.droit { transform: translate(50%, -50%); }

.rond-pointille.bas.gauche { transform: translate(-50%, 50%); }
.rond-pointille.bas.centre { transform: translate(-50%, 50%); }
.rond-pointille.bas.droit { transform: translate(50%, 50%); }

.rond-pointille.bas.droit { transform: translate(50%, 50%); }

/* Visibilité des moitiés */

.rond-pointille.moitie-D {
    clip-path: inset(0 0 0 50%);
}

.rond-pointille.moitie-G {
    clip-path: inset(0 50% 0 0);
}

/****** Rond pointillé (spécial) ******/

/* Spécial : Style 1 => Intérieur du rectangle rouge + Dépassement en haut */

.rond-pointille-special.style-1 {
    --taille-rond-pointille-special-style-1: 330px;
    width: var(--taille-rond-pointille-special-style-1);
    height: var(--taille-rond-pointille-special-style-1);
    border: 2px dashed var(--gris-tres-clair-2);
    border-radius: 50%;
    position: absolute;
    top: calc(-1 * var(--taille-rond-pointille-special-style-1) / 2 + 80px);
    left: calc(((100vw - 75%) / 2 - var(--taille-rond-pointille-special-style-1) / 2) - 10px);
    z-index: 1;
}

@media (max-width: 1500px) {
    .rond-pointille-special.style-1 {
        --taille-rond-pointille-special-style-1: 250px;
        top: calc(-1 * var(--taille-rond-pointille-special-style-1) / 2 + 50px);
    }
}

@media (max-width: 1300px) {
    .rond-pointille-special.style-1 {
        left: calc((-1 * var(--taille-rond-pointille-special-style-1) / 2) - 20px);
        transform: none;
    }
}

@media (max-width: 1024px) {
    .rond-pointille-special.style-1 {
        --taille-rond-pointille-special-style-1: 200px;
    }
}

/* Spécial : Style 2 => Intérieur du rectangle rouge + Collé à gauche (au milieu) */

.rond-pointille-special.style-2 {
    --taille-rond-pointille-special-style-2: 230px;
    width: var(--taille-rond-pointille-special-style-2);
    height: var(--taille-rond-pointille-special-style-2);
    border: 2px dashed var(--gris-tres-clair-2);
    border-radius: 50%;
    position: absolute;
    top: calc(50% - var(--taille-rond-pointille-special-style-2) / 2);
    left: calc(0px - var(--taille-rond-pointille-special-style-2) / 2);
    z-index: 1;
}

/* Spécial : Style 3 => Extérieur du parent (à droite) + Invisible en mobile */

.rond-pointille-special.style-3 {
    --taille-rond-pointille-special-style-3: clamp(140px, 12vw, 190px);
    border-radius: 50%;
    width: var(--taille-rond-pointille-special-style-3);
    height: var(--taille-rond-pointille-special-style-3);
    border: var(--bordure-rond-gris);
    position: absolute;
    top: calc(0px - var(--taille-rond-pointille-special-style-3) / 2);
    right: calc(0px - var(--taille-rond-pointille-special-style-3) / 2);
    left: auto;
    bottom: auto;
}

@media (max-width: 767px) {
    .rond-pointille-special.style-3 {
        display: none;
    }
}

/******************** Autres ********************/

/* .menu-burger-ouvert {
    position: fixed;
    width: 100%;
    overflow: hidden !important;
    padding-right: var(--scrollbar-width);
} */

/**************************** STRUCTURES ****************************/

/* Sections communes */

.section-site {
    padding-left: calc((100vw - var(--conteneur-site)) / 2);
}

.section-header,
.section-footer {
    padding: 20px 90px 20px 200px;
}

/* Aligné avec le Header et Footer */

.section-aligne {
    padding: 20px 90px 20px 200px;
}

/* Aligné librement */

.section-custom {
    padding: 20px 90px 20px 90px;
}

/****** Sections formes ******/

/* Barre à gauche */

.section-formes .barre-gauche {
    position: relative;
}

.section-formes .barre-gauche::before {
    content: "";
    position: absolute;
    left: -90px;
    top: auto;
    bottom: 0px;
    width: 30px;
    border: 2px solid var(--rouge-profond);
    background: transparent;
    transition: height 0.3s ease;
}

.section-formes .barre-gauche.espace-25::before {
    left: -55px;
}

.section-formes .barre-gauche.espace-50::before {
    left: -80px;
}

.section-formes .barre-gauche.height-120::before {
    height: 120px;
}

.section-formes .barre-gauche.height-200::before {
    height: 200px;
}

.section-formes .barre-gauche.height-220::before {
    height: 220px;
}

.section-formes .barre-gauche.height-328::before {
    height: 328px;
}

.section-formes:hover .barre-gauche::before {
    height: 100%;
}

.section-formes .barre-gauche.dedans::before {
    left: 0px;
}

.section-formes .barre-gauche.dedans .elementor-heading-title {
    padding-left: 55px;
}

/* Cadre titre */

.section-formes .cadre-titre {
    position: absolute;
    top: 0;
    width: 270px;
    height: 176px;
    z-index: 2;
    overflow: visible;
}

.section-formes .cadre-titre::before {
    content: "";
    position: absolute;
    left: 0;
    width: 270px;
    height: 176px;
    border: 2px solid var(--rouge-profond);
    background: var(--rouge-profond);
    box-sizing: border-box;
    transform: translateY(0);
    transition: height 0.5s ease, transform 0.5s ease;
}

.section-formes .cadre-titre.gauche-115 {
    left: 115px;
    right: auto;
}

.section-formes .cadre-titre.droite-100 {
    right: 100px;
    left: auto;
}

.section-formes .cadre-titre.centre {
    left: 50%;
    transform: translateX(-50%);
}

.section-formes .cadre-titre .elementor-heading-title {
    position: absolute;
    left: 20px;
    right: 20px;
    background: transparent;
    margin: 0;
    z-index: 2;
}

.section-formes .cadre-titre .elementor-heading-title span:first-child {
    color: var(--noir);
}

.section-formes .cadre-titre .elementor-heading-title span:last-child {
    color: var(--gris-tres-clair);
}

/* Vers le haut */

.section-formes .cadre-titre.vers-haut::before {
    top: 0;
}

.section-formes:hover .cadre-titre.vers-haut::before {
    height: 226px;
    transform: translateY(-55px);
}

.section-formes .cadre-titre.vers-haut .elementor-heading-title {
    top: 35%;
    transform: translateY(-50%);
}

/* Vers le bas */

.section-formes .cadre-titre.vers-bas::before {
    top: -55px;
}

.section-formes:hover .cadre-titre.vers-bas::before {
    height: 196px;
    transform: translateY(10px);
}

.section-formes .cadre-titre.vers-bas .elementor-heading-title {
    top: 5px;
    transform: translateY(-50%);
}

@media (max-width: 1024px) {
    .section-formes .cadre-titre {
        height: 88px;
    }

    .section-formes .cadre-titre.gauche-115,
    .section-formes .cadre-titre.droite-100,
    .section-formes .cadre-titre.centre {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }

    .section-formes .cadre-titre.vers-haut::before,
    .section-formes .cadre-titre.vers-bas::before {
        top: -68px;
        height: 146px;
        transform: translateY(0);
    }

    .section-formes:hover .cadre-titre.vers-haut::before,
    .section-formes:hover .cadre-titre.vers-bas::before {
        height: 146px;
        transform: translateY(0);
    }

    .section-formes .cadre-titre.vers-haut .elementor-heading-title,
    .section-formes .cadre-titre.vers-bas .elementor-heading-title {
        top: 0px;
        transform: translateY(-50%);
    }
}

/* body:has(.tessst:hover) .forme::before {
  height: 100%;
} */

/****** Colonnes spécifiques ******/

/* Si 1 colonne -> espace : gauche */

/* .col-G-sp {
    margin-left: 55px;
} */

/* .col-G-PL-SP {
    padding-left: 75px;
} */

/* Si 2 colonnes -> colonne gauche */

/* .col-G2-sp {
    margin-left: 55px;
}

.col-G2-sp-2 {
    margin-left: 75px;
} */

/* Si 1 colonne -> espace : gauche + droite */

/* .col-GD-sp {
    width: calc(100% - 55px);
    margin-left: 55px;
} */

@media (max-width: 767px) {

    /**************************** STRUCTURES ****************************/

    /****** Colonnes spécifiques ******/

    /* Si 1 colonne -> espace : gauche */

    /* .col-G-sp {
        margin-left: 35px;
    } */

    /* Si 2 colonnes -> colonne gauche */

    /* .col-G2-sp {
        margin-left: 35px;
    } */

    /* .col-G2-sp-2 {
        margin-left: 20px;
    } */

    /* Si 1 colonne -> espace : gauche + droite */

    /* .col-GD-sp {
        margin-left: 35px;
        margin-right: 35px;
    } */
}

/**************************** HEADER ****************************/

/******************** Header (site) ********************/

.section-header {
    height: 150px;
}

/****** Colonne gauche ******/






.section-header .logo-site {
    position: relative;
    top: 0px;
    z-index: 2;
}

.section-header .sous-logo-site {
    position: absolute;
    z-index: 1;
    bottom: -40px;
    left: 0px;
    width: 100%;
}

.section-header .sous-logo-site::before {
    content: "";
    position: absolute;
    left: 70px;
    bottom: -45px;
    transform: translateX(-50%);
    width: 246px;
    height: 85px;
    background: url(../img/forme-logo-header.svg) center / contain no-repeat;
    pointer-events: none;
}

@media (max-width: 1300px) {
    .section-header .logo-site {
        top: 22px;
    }

    .section-header .sous-logo-site::before {
        bottom: -25px;
    }
}

@media (max-width: 1024px) {
    .section-header .logo-site {
        top: 42px;
        width: 105px;
        height: 120px;
    }

    .section-header .sous-logo-site::before {
        left: 50px;
        bottom: -10px;
        width: 165px;
        height: 70px;
    }
}

@media (max-width: 767px) {
    .section-header {
        height: 118px;
    }

    .section-header .logo-site {
        top: 8px;
    }

    .section-header .sous-logo-site::before {
        bottom: -8px;
    }
}

/****** Colonne droite ******/

/* Ligne 1 */

.section-header .header-ligne-1 {
    right: -25px;
    padding: 13px clamp(15px, 2vw, 25px) !important;
}

.section-header .header-ligne-1 .lien-contact a::before {
    content: "";;
    background: url(../icons/puce-hexagonale-creuse-grise.svg) center / contain no-repeat;
    background-size: 15px 15px;
    position: relative;
    padding-left: 42px;
}

/* Ligne 2 */

.section-header .header-ligne-2 {
    right: -25px;
}

.section-header .header-ligne-2 .header-menu {
    z-index: 999;
}

.section-header .header-ligne-2 .header-menu .menu-item {
    position: relative;
}

.section-header .header-ligne-2 .header-menu .elementor-item {
    display: flex;
    gap: clamp(5px, 0.55vw, 10px);
    font-size: clamp(23px, 2.5vw, 26px) !important;
    padding: 13px clamp(20px, 2vw, 25px) !important;
    transition: transform 0.3s ease;
}

.section-header .header-ligne-2 .header-menu .elementor-item::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 16px;
    height: 16px;
    background: url(../icons/puce-hexagonale-noire.svg) center / contain no-repeat;
    opacity: 0;
    transform: translate(-15px, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.section-header .header-ligne-2 .header-menu .elementor-item:hover::before,
.section-header .header-ligne-2 .header-menu .elementor-item-active::before {
    transform: translate(-5px, -50%);
    opacity: 1;
}

.section-header .header-ligne-2 .header-menu .elementor-item:hover:not(.elementor-item-active) {
    transform: translateX(-5px);
}

.section-header .header-ligne-2 .header-menu .elementor-item.has-submenu .sub-arrow {
    display: none;
}

.section-header .header-ligne-2 .header-menu > nav > ul > .menu-item:last-child {
    display: none;
}

/* Animation du sous-menu */

.section-header .header-ligne-2 .header-menu .menu-item-has-children {
    position: relative;
}

.section-header .header-ligne-2 .header-menu .menu-item-has-children > .sub-menu {
    width: 448px !important;
    position: absolute !important;
    top: 100% !important;
    left: -10px !important;
    display: block !important;
    padding-top: 27px;
    background-color: transparent;
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    overflow: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.section-header .header-ligne-2 .header-menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    transform: translateX(0px);
    pointer-events: auto;
}

.section-header .header-ligne-2 .header-menu .menu-item-has-children .sub-menu .menu-item {
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.section-header .header-ligne-2 .header-menu .menu-item-has-children .sub-menu .menu-item::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0px;
    height: 100%;
    background-color: var(--rouge-profond);
    opacity: 0;
    transition: width 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.4s ease;
    z-index: 0;
}

.section-header .header-ligne-2 .header-menu .menu-item-has-children:hover .sub-menu .menu-item::before {
    width: 100%;
    opacity: 1;
}

.section-header .header-ligne-2 .header-menu .menu-item-has-children .sub-menu .menu-item > a {
    position: relative;
    font-family: var(--font-gill-sans);
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 900;
    color: var(--blanc);
    line-height: 26px;
    border-inline-start: 0px solid transparent;
    padding: 13px 32px;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease 0.1s;
    background-color: inherit;
}

.section-header .header-ligne-2 .header-menu .menu-item-has-children:hover .sub-menu .menu-item > a {
    opacity: 1;
}

.section-header .header-ligne-2 .header-menu .menu-item-has-children .sub-menu .menu-item > a:hover {
    text-decoration: underline;
    text-decoration-color: var(--blanc);
    background-color: inherit;
}

.section-header .header-ligne-2 .header-menu .menu-item-has-children .sub-menu .menu-item:first-child > a {
    padding-top: 30px;
}

.section-header .header-ligne-2 .header-menu .menu-item-has-children .sub-menu .menu-item:last-child > a {
    padding-bottom: 30px;
}
























/* A TESTER */

/* @media (max-width: 900px) {
    .elementor-nav-menu a,
    .elementor-nav-menu a:focus,
    .elementor-nav-menu a:hover {
        padding: 10px 20px !important;
    }

    .elementor-nav-menu .sub-arrow {
        display: inherit;
    }

    .elementor-nav-menu--dropdown .elementor-item:focus,
    .elementor-nav-menu--dropdown .elementor-item:hover,
    .elementor-sub-item:focus,
    .elementor-sub-item:hover {
        background-color: transparent;
        color: var(--rose);
    }

    .elementor-nav-menu--dropdown a,
    .elementor-nav-menu--dropdown a:focus,
    .elementor-nav-menu--dropdown a:hover {
        border-inline-start: none !important;
    }

    .section-header {
        justify-content: space-between;
        gap: 0;
    }

    .section-header .header-menu .elementor-menu-toggle {
        position: relative;
        z-index: 10070;
    }

    .section-header .header-menu .elementor-menu-toggle.is-hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container {
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: var(--blanc);
        display: flex !important;
        justify-content: center;
        align-items: center;
        overflow-y: auto;
        z-index: 10010;
        isolation: isolate;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container > ul.elementor-nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
        position: relative;
        z-index: 10025;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container .menu-item {
        display: flex;
        width: 100%;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container .elementor-item {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container .submenu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .2s ease, visibility .2s ease;
        z-index: 10020;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container .submenu-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container.submenu-modal-active > ul.elementor-nav-menu {
        pointer-events: none;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container.submenu-modal-active .sub-menu.submenu-open {
        pointer-events: auto;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container .sub-menu {
        position: fixed !important;
        top: 50%;
        left: 50%;
        width: 80vw !important;
        height: 80vh !important;
        transform: translate(-50%, -50%) scale(.98);
        background: #fff;
        display: flex !important;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 80px 20px 30px;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        z-index: 10060 !important;
        overflow-y: auto;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container .sub-menu.submenu-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, -50%) scale(1);
        z-index: 10060 !important;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container .sub-menu .submenu-back {
        position: absolute;
        top: 18px;
        left: 18px;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container .sub-menu .submenu-back span {
        text-decoration: none !important;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container .sub-menu .submenu-back .submenu-back-arrow {
        font-size: 22px;
        line-height: 1;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container .sub-menu .submenu-back .submenu-back-text {
        font-size: 18px;
        text-decoration: none !important;
        border-bottom: 2px solid currentColor;
        padding-bottom: 2px;
        line-height: 1;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container .sub-menu .submenu-parent-link {
        font-size: clamp(16px, 2vw, 22px);
        font-weight: 700;
        text-align: center;
        display: block;
        color: var(--blanc);
        background: var(--rose);
        margin-bottom: 10px;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container .sub-menu li {
        width: 100%;
        text-align: center;
    }

    .section-header .elementor-nav-menu--dropdown.elementor-nav-menu__container .sub-menu .elementor-sub-item {
        font-size: clamp(16px, 2vw, 22px);
        display: block;
        padding: 10px 0;
    }
} */





































@media (max-width: 900px) {
    .section-header {
        justify-content: space-between;
        gap: 0px;
    }

    .section-header .header-ligne-1,
    .section-header .header-ligne-2 {
        right: 0px;
    }

    .section-header .header-ligne-2 .header-menu .elementor-nav-menu--dropdown {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100vw;
        height: 100vh;
        background: var(--blanc);
        margin-top: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow-y: auto;
        z-index: 9999;
    }

    .section-header .header-ligne-2 .header-menu .elementor-nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin: 0px;
    }

    .section-header .header-ligne-2 .header-menu .menu-item,
    .section-header .header-ligne-2 .header-menu .menu-item:last-child {
        display: flex;
        width: 100%;
    }

    .section-header .header-ligne-2 .header-menu .elementor-item {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .section-header .header-ligne-2 .header-menu .elementor-item::before {
        display: none;
    }

    .section-header .header-ligne-2 .header-menu .elementor-item:hover:not(.elementor-item-active) {
        transform: translateX(0px);
    }

    .section-header .header-ligne-2 .header-menu .elementor-menu-toggle {
        position: relative;
        top: -3px;
        z-index: 10000;
    }

    .section-header .header-ligne-2 .header-menu > nav > ul > .menu-item:last-child {
        display: block;
    }
}

/**************************** FOOTER ****************************/

/******************** Footer (site) ********************/

.section-footer a .elementor-icon-list-text {
    color: inherit;
}

.section-footer a:hover .elementor-icon-list-text {
    color: var(--rouge) !important;
}

/* Liste verticale */

.section-footer .liste-verticale {
    position: relative;
}

.section-footer .liste-verticale::before,
.section-footer .liste-verticale::after {
    content: "";
    position: absolute;
    left: -30px;
    top: -115px;
    border-left: 1px solid;
}

.section-footer .liste-verticale::before {
    height: 274px;
    border-color: var(--blanc);
}

.section-footer .liste-verticale::after {
    height: 52px;
    border-color: var(--rouge-profond);
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.section-footer:hover .liste-verticale::after {
    opacity: 1;
    transform: translateY(-82px);
}

.section-footer .liste-verticale .rouge .elementor-icon-list-item:nth-child(4) a,
.section-footer .liste-verticale .rouge .elementor-icon-list-item:nth-child(4) a:hover,
.section-footer .liste-verticale .rouge .elementor-icon-list-item:nth-child(5) a,
.section-footer .liste-verticale .rouge .elementor-icon-list-item:nth-child(5) a:hover {
    color: var(--rouge);
}

/* Liste horizontale */

.section-footer .liste-horizontale .elementor-icon-list-items {
    margin-inline: 0px;
    gap: clamp(20px, 4vw, 80px);
}

.section-footer .liste-horizontale .elementor-icon-list-item {
    margin-inline: 0px !important;
}

.section-footer .liste-horizontale .elementor-icon-list-item:nth-child(1) a {
    display: inline;
    color: inherit;
}

@media (max-width: 1024px) {
    .section-footer .liste-verticale::before,
    .section-footer .liste-verticale::after {
        top: -135px;
    }

    .section-footer .logo-site-rwd {
        position: absolute;
        top: -115px;
    }

    .section-footer .logo-site-rwd img {
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .section-footer .liste-verticale::before,
    .section-footer .liste-verticale::after {
        display: none;
    }

    .section-footer .liste-verticale .elementor-widget-icon-list {
        position: relative;
        padding-left: 65px;
    }

    .section-footer .liste-verticale .elementor-widget-icon-list::before {
        content: "";
        position: absolute;
        left: 35px;
        height: 100%;
        border-left: 1px solid var(--blanc);
    }

    .section-footer .liste-verticale .rouge .elementor-icon-list-item:nth-child(3) {
        padding-bottom: 25px !important;
    }

    .section-footer .liste-verticale .rouge .elementor-icon-list-item:nth-child(5) {
        margin-top: 0px !important;
    }

    .section-footer .liste-horizontale .elementor-icon-list-items {
        flex-direction: column;
        gap: 5px;
        padding-left: 35px !important;
    }

    .section-footer .liste-horizontale .elementor-icon-list-item:first-child {
        padding-bottom: 15px !important;
    }

    .section-footer .logo-site-rwd {
        position: relative;
        top: 0px;
        padding-left: 35px;
    }

    .section-footer .logo-site-rwd img {
        max-width: 100%;
    }

    .section-footer .icon-facebook-rwd {
        position: absolute;
        top: 65px;
        left: 210px;
    }
}

/**************************** COMPOSANTS ****************************/

/****** Carrousel style N°1 ******/

/* .carrousel-style-1 {
    cursor: default;
} */

.carrousel-style-1 .bloc-carrousel .bloc-carrousel-img {
    position: relative;
    overflow: hidden;
}

.carrousel-style-1 .bloc-carrousel .bloc-carrousel-img .elementor-widget-image {
    position: relative;
    z-index: 1;
}

.carrousel-style-1 .bloc-carrousel .bloc-carrousel-img .elementor-widget-image::after {
    content:"";
    position:absolute;
    inset:0;
    background: var(--noir);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events:none;
    z-index: 2;
}

.carrousel-style-1 .bloc-carrousel .bloc-carrousel-img::before {
    content:"";
    width: 40px;
    height: 40px;
    background: url(../icons/rond-pointille-blanc.svg) center / contain no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    opacity: 0;
    pointer-events:none;
    z-index: 4;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.carrousel-style-1 .bloc-carrousel .bloc-carrousel-img::after {
    content:"";
    width: 25px;
    height: 10px;
    background: url(../icons/fleche-rouge-bas.svg) center / contain no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    opacity: 0;
    pointer-events:none;
    z-index: 5;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
    will-change: transform, width, height, opacity;
}

.carrousel-style-1 .bloc-carrousel .barre-pleine-style-1 {
    position: relative;
    width: 100%;
}

.carrousel-style-1 .bloc-carrousel .barre-pleine-style-1::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    z-index: 0;
}

.carrousel-style-1 .bloc-carrousel .barre-pleine-style-1 > div {
    width: 100%;
    height: 10px;
    margin: 15px 0px;
    transition: margin 0.35s ease;
    will-change: margin;
}

.carrousel-style-1 .bloc-carrousel .barre-pleine-style-1.rouge > div {
    background: var(--rouge-fonce);
}

.carrousel-style-1 .bloc-carrousel .barre-pleine-style-1.blanche > div {
    background: var(--blanc);
}

.carrousel-style-1 .bloc-carrousel .barre-pleine-style-1.noire > div {
    background: var(--noir);
}

.carrousel-style-1 .bloc-carrousel .elementor-widget-text-editor {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.35s ease, max-height 0.35s ease;
    will-change: opacity, max-height;
}

.carrousel-style-1 .bloc-carrousel:hover .bloc-carrousel-img .elementor-widget-image::after,
.carrousel-style-1 .bloc-carrousel.active .bloc-carrousel-img .elementor-widget-image::after {
    opacity: 0.4;
}

.carrousel-style-1 .bloc-carrousel:hover .bloc-carrousel-img::before,
.carrousel-style-1 .bloc-carrousel.active .bloc-carrousel-img::before {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1.2);
}

.carrousel-style-1 .bloc-carrousel:hover .bloc-carrousel-img::after,
.carrousel-style-1 .bloc-carrousel.active .bloc-carrousel-img::after {
    opacity: 1;
    transform: translate(-50%, calc(-50% + 25px)) rotate(0deg) scale(4);
}

.carrousel-style-1 .bloc-carrousel:hover .barre-pleine-style-1 > div,
.carrousel-style-1 .bloc-carrousel.active .barre-pleine-style-1 > div {
    margin-top: 0 !important;
}

.carrousel-style-1 .bloc-carrousel:hover .elementor-widget-text-editor,
.carrousel-style-1 .bloc-carrousel.active .elementor-widget-text-editor {
    opacity: 1;
    max-height: 300px;
}

/****** Carrousel style N°2 ******/

/* .carrousel-style-2 {
    cursor: default;
} */

.carrousel-style-2 .bloc-carrousel {
    --carrousel-largeur-gauche: fit-content;
    --carrousel-largeur-droite: 180px;
    width: fit-content;
}

.carrousel-style-2 .bloc-carrousel .duo-titre .elementor-heading-title {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    font-size: 30px;
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0;
}

.carrousel-style-2 .bloc-carrousel .duo-titre .elementor-heading-title > .bloc-gauche,
.carrousel-style-2 .bloc-carrousel .duo-titre .elementor-heading-title > .bloc-droite {
    display: block;
}

.carrousel-style-2 .bloc-carrousel .duo-titre .bloc-gauche {
    width: var(--carrousel-largeur-gauche);
    color: var(--noir);
    text-align: right;
    padding: 5px 0px;
}

.carrousel-style-2 .bloc-carrousel .duo-titre .bloc-droite {
    width: var(--carrousel-largeur-droite);
    height: 80px;
    background: var(--rouge-profond);
    color: var(--blanc);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5px 5px;
    box-sizing: border-box;
    margin-left: 5px;
    flex: 0 0 var(--carrousel-largeur-droite);
}

.carrousel-style-2 .bloc-carrousel .bloc-duo-bas {
    width: var(--carrousel-largeur-droite);
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.carrousel-style-2 .bloc-carrousel .barre-pleine-style-1 {
    position: relative;
    width: 100%;
}

.carrousel-style-2 .bloc-carrousel .barre-pleine-style-1::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    z-index: 0;
}

.carrousel-style-2 .bloc-carrousel .barre-pleine-style-1 > div {
    width: 100%;
    height: 10px;
    margin: 15px 0px;
    transition: margin 0.35s ease;
    will-change: margin;
}

.carrousel-style-2 .bloc-carrousel .barre-pleine-style-1.rouge > div {
    background: var(--rouge-fonce);
}

.carrousel-style-2 .bloc-carrousel .barre-pleine-style-1.blanche > div {
    background: var(--blanc);
}

.carrousel-style-2 .bloc-carrousel .barre-pleine-style-1.noire > div {
    background: var(--noir);
}

.carrousel-style-2 .bloc-carrousel:hover .barre-pleine-style-1 > div,
.carrousel-style-2 .bloc-carrousel.active .barre-pleine-style-1 > div {
    margin-top: 0 !important;
}

/****** Carrousel style N°3 ******/

/* .carrousel-style-3 {
    cursor: default;
} */

.carrousel-style-3 .elementor-swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gris-tres-clair);
    line-height: 1;
    font-size: 22px;
    padding: 0;
}

.carrousel-style-3 .elementor-swiper-button:focus,
.carrousel-style-3 .elementor-swiper-button:hover {
    background-color: var(--rouge-fonce);
}

.carrousel-style-3 .elementor-swiper-button svg,
.carrousel-style-3 .elementor-swiper-button:focus svg,
.carrousel-style-3 .elementor-swiper-button:hover svg {
    fill: var(--blanc);
}

/* Injection des labels */

.carrousel-style-3.injection-labels .elementor-swiper-button {
    background-color: transparent;
}

.carrousel-style-3.injection-labels .elementor-swiper-button .label-fleche {
    display: inline-block;
    margin-inline: 10px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
}

.carrousel-style-3.injection-labels .elementor-swiper-button .label-gauche,
.carrousel-style-3.injection-labels .elementor-swiper-button .label-droite {
    color: var(--blanc);
}

.carrousel-style-3.injection-labels .elementor-swiper-button.swiper-button-disabled {
    opacity: 1;
}

/****** Carrousel style N°4 ******/

/* .carrousel-style-4 {
    cursor: default;
} */

.carrousel-style-4 .bloc-carrousel .bloc-cadre {
    min-height: 350px;
    background-color: transparent;
    padding: 25px 25px 25px clamp(25px, 4vw, 75px);
    transition: background-color 0.35s ease, border 0.35s ease;
}

.carrousel-style-4 .bloc-carrousel:hover .bloc-cadre {
    background-color: var(--noir);
    border: 2px solid var(--noir);
}

.carrousel-style-4 .bloc-carrousel .bloc-cadre .hexagonale-titre .elementor-heading-title {
    font-size: clamp(20px, 3vw, 25px);
    line-height: 30px;
    transition: color 0.35s ease;
}

.carrousel-style-4 .bloc-carrousel:hover .bloc-cadre .hexagonale-titre .elementor-heading-title {
    color: var(--blanc);
}

.carrousel-style-4 .bloc-carrousel .bloc-cadre .hexagonale-titre .elementor-heading-title::before {
    content: "";
    position: absolute;
    left: calc(clamp(25px, 3vw, 50px) * -1);
    top: 0.2em;
    width: 24px;
    height: 24px;
}

.carrousel-style-4 .bloc-carrousel .bloc-cadre .hexagonale-titre.rouge .elementor-heading-title::before {
    background: url(../icons/puce-hexagonale-rouge.svg) center / contain no-repeat;
}

.carrousel-style-4 .bloc-carrousel .bloc-cadre .hexagonale-titre.blanche .elementor-heading-title::before {
    background: url(../icons/puce-hexagonale-blanche.svg) center / contain no-repeat;
}

.carrousel-style-4 .bloc-carrousel .bloc-cadre .hexagonale-titre.noire .elementor-heading-title::before {
    background: url(../icons/puce-hexagonale-noire.svg) center / contain no-repeat;
}

.carrousel-style-4 .bloc-carrousel .barre-pleine-style-1 {
    position: relative;
    width: 100%;
}

.carrousel-style-4 .bloc-carrousel .barre-pleine-style-1::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    z-index: 0;
}

.carrousel-style-4 .bloc-carrousel .barre-pleine-style-1 > div {
    width: 100%;
    height: 10px;
    margin: 15px 0px;
    transition: margin 0.35s ease;
    will-change: margin;
}

.carrousel-style-4 .bloc-carrousel .barre-pleine-style-1.rouge > div {
    background: var(--rouge-fonce);
}

.carrousel-style-4 .bloc-carrousel .barre-pleine-style-1.blanche > div {
    background: var(--blanc);
}

.carrousel-style-4 .bloc-carrousel .barre-pleine-style-1.noire > div {
    background: var(--noir);
}

.carrousel-style-4 .bloc-carrousel:hover .barre-pleine-style-1 > div,
.carrousel-style-4 .bloc-carrousel.active .barre-pleine-style-1 > div {
    margin-top: 0 !important;
}

@media (max-width: 1024px) {
    .carrousel-style-4 .bloc-carrousel .bloc-cadre {
        padding: 25px 25px 25px 75px;
    }

    .carrousel-style-4 .bloc-carrousel .bloc-cadre .hexagonale-titre .elementor-heading-title::before {
        left: -50px;
    }
}

@media (max-width: 767px) {
    .carrousel-style-4 .bloc-carrousel .bloc-cadre {
        min-height: auto;
    }
}

/****** Sliders transformés ******/

@media (max-width: 767px) {

    /* Sliders en mobile */

    .est-slider.slider-mobile {
        display: block !important;
        position: relative;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
    }

    .est-slider.slider-mobile .piste-slider {
        display: flex !important;
        transition: transform 0.35s ease;
        will-change: transform;
        width: 100% !important;
        cursor: grab;
    }

    .est-slider.slider-mobile .piste-slider.est-en-glisse {
        user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: transparent;
        cursor: grabbing;
    }

    .est-slider.slider-mobile .slide-slider {
        flex: 0 0 100%;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .est-slider.slider-mobile .contenu-slide {
        width: 100%;
    }

    .est-slider.slider-mobile .contenu-slide[class*="contenu-slide--"] {
        width: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    /* Flèches des sliders */

    .fleches-slider {
        position: absolute;
        top: 50%;
        z-index: 5;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background-color: var(--rouge-profond);
        color: var(--blanc);
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
        transform: translateY(-50%);
    }

    .fleches-slider:hover,
    .fleches-slider:focus {
        background-color: var(--rouge-profond);
        color: var(--blanc);
    }

    .fleches-slider:active {
        transform: translateY(-50%) scale(0.95);
    }

    .fleches-slider.fleche--gauche { left: 0px; }
    .fleches-slider.fleche--droite { right: 0px; }
}

/****** Formulaire de contact ******/

/* Cacher pot à miel */

.champ-pot-a-miel {
    display: none !important;
}

/* Style formulaire */

.formulaire-contact label {
    font-size: 16px;
}

.formulaire-contact [class^="elementor-field-type-"]:not(.elementor-field-type-radio):not([class="elementor-field-type-text"]) input,
.formulaire-contact [class^="elementor-field-type-"]:not(.elementor-field-type-radio):not([class="elementor-field-type-text"]) textarea {
    min-height: 55px;
    padding: 12px 60px 12px 20px;
}

.formulaire-contact [class^="elementor-field-type-"]:not(.elementor-field-type-radio):not([class="elementor-field-type-text"])::after {
    content: "";
    width: 31px;
    height: 11px;
    background: url(../icons/fleche-grise-pleine.svg) center / contain no-repeat;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translate(0, -50%);
    pointer-events: none;
}

.formulaire-contact .elementor-field-type-radio .elementor-field-subgroup {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
}

.formulaire-contact .elementor-field-type-radio .elementor-field-subgroup .elementor-field-option {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

.formulaire-contact .elementor-field-type-radio .elementor-field-subgroup .elementor-field-option input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.formulaire-contact .elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding-left: 0;
}

.formulaire-contact .elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label::before {
    content: "";
    position: absolute;
    left: -27px;
    top: 50%;
    width: 16px;
    height: 30px;
    transform: translateY(-50%);
    background: url(../icons/puce-hexagonale-creuse-blanche.svg) center / contain no-repeat;
    pointer-events: none;
    z-index: 3;
}

.formulaire-contact .elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label::after {
    content: "";
    position: absolute;
    left: -28px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%) scale(0);
    transform-origin: center;
    background: var(--blanc);
    border-radius: 999px;
    clip-path: inset(3px round 999px);
    pointer-events: none;
    z-index: 2;
    transition: transform 0.2s ease-out;
}

.formulaire-contact .elementor-field-type-radio .elementor-field-subgroup .elementor-field-option input[type="radio"]:checked + label::after {
    transform: translateY(-50%) scale(1);
}

.formulaire-contact .elementor-field-type-submit .elementor-button {
    display: flex;
    position: relative;
    padding: 12px 80px 12px 18px;
    border: 2px solid var(--blanc);
    border-radius: 0px;
    font-family: var(--font-gill-sans);
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-transform: uppercase;
    color: var(--blanc);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-site);
}

.formulaire-contact .elementor-field-type-submit .elementor-button:hover {
    background: var(--blanc);
}

.formulaire-contact .elementor-field-type-submit .elementor-button::after {
    content: "";
    width: 31px;
    height: 11px;
    background: url(../icons/fleche-blanche-pleine.svg) center / contain no-repeat;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0px, -50%);
    pointer-events: none;
    transition: var(--transition-site);
}

.formulaire-contact .elementor-field-type-submit .elementor-button:hover::after {
    background: url(../icons/fleche-rouge-pleine.svg) center / contain no-repeat;
}

.formulaire-contact .elementor-field-type-submit .elementor-button:hover .elementor-button-text {
    color: var(--noir);
}

/* Style 2 */

.formulaire-contact.style-2 .elementor-form-fields-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.formulaire-contact.style-2 .elementor-field-type-textarea.elementor-field-group {
    grid-column: 1 / 3;
}

.formulaire-contact.style-2 .elementor-field-type-submit.elementor-field-group {
    grid-column: 3 / 4;
    align-self: end;
}

.formulaire-contact.style-2 .elementor-field-type-submit .elementor-button {
    width: 100%;
}

@media (max-width: 767px) {
    .formulaire-contact.style-2 .elementor-form-fields-wrapper {
        grid-template-columns: 1fr;
    }

    .formulaire-contact.style-2 .elementor-field-group {
        grid-column: 1 / -1 !important;
    }

    .formulaire-contact.style-2 .elementor-field-type-submit .elementor-button {
        width: initial;
    }
}

/**************************** ÉLÉMENTS SPÉCIFIQUES ****************************/

/******************** Pages ********************/

/* Page "accueil" */

/******************** Sections ********************/

/****** Section hero ******/

.section-hero {
    position: relative;
    height: calc(70vh - 150px);
    min-height: 470px;
}

/* Deux traits */

.section-hero .deux-traits {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
}

.section-hero .deux-traits::before,
.section-hero .deux-traits::after {
    content: "";
    position: absolute;
    right: 0;
    width: 28px;
    height: 7px;
    background: var(--rouge-fonce);
}

.section-hero .deux-traits::before {
    top: 30%;
}

.section-hero .deux-traits::after {
    bottom: 30%;
}

.section-hero .deux-traits.rouge::before,
.section-hero .deux-traits.rouge::after {
    background: var(--rouge-fonce);
}

.section-hero .deux-traits.blanc::before,
.section-hero .deux-traits.blanc::after {
    background: var(--blanc);
}

.section-hero .deux-traits.noir::before,
.section-hero .deux-traits.noir::after {
    background: var(--noir);
}

@media (max-width: 767px) {
    .section-hero .deux-traits {
        display: none;
    }
}

/* Languette */

.section-hero .languette {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: var(--rouge-profond);
    z-index: 2;
}

.section-hero .languette.rouge {
    background-color: var(--rouge-profond);
}

.section-hero .languette.blanche {
    background-color: var(--blanc);
}

.section-hero .languette.noire {
    background-color: var(--noir);
}

@media (max-width: 767px) {
    .section-hero .languette {
        display: none;
    }
}

/****** Section chiffres ******/

/* METTRE STYLE 2 SUR SECTION DEUX COULEURS ET OVERRIDE */

/* .section-chiffres .titre {
    text-transform: uppercase;
}

.section-chiffres .titre .elementor-heading-title span:first-child {
    letter-spacing: 0.93px;
    font-weight: 900;
    font-size: 31px;
    line-height: 31px;
}

.section-chiffres .titre .elementor-heading-title span:last-child {
    letter-spacing: 0.84px;
    font-weight: 300;
    font-size: 28px;
    line-height: 31px;
} */

/****** Section deux couleurs ******/

.section-deux-couleurs {
    min-height: 380px;
    /* cursor: default; */
}

.section-deux-couleurs .col-gauche {
    min-height: 310px;
}

.section-deux-couleurs .col-droite {
    padding: 25px clamp(40px, 5vw, 80px) 25px clamp(40px, 5vw, 80px);
}

.section-deux-couleurs .col-droite .ligne-1 .titre {
    text-transform: uppercase;
}

.section-deux-couleurs .col-droite .ligne-1 .titre h2 {
    font-size: 31px;
    font-weight: bold;
    line-height: 31px;
    letter-spacing: 0.93px;
    margin: 0px;
}

.section-deux-couleurs .col-droite .ligne-1 .titre span {
    font-size: 28px;
    font-weight: 300;
    line-height: 31px;
    letter-spacing: 0.84px;
}

.section-deux-couleurs .col-droite .ligne-1 .titre .chiffre {
    font-family: var(--font-gill-sans);
    font-size: 31px !important;
    font-weight: bold !important;
    padding: 0px 8px;
}

.section-deux-couleurs .col-droite .ligne-1 .titre .chiffre sup {
    font-size: 0.6em;
    vertical-align: middle;
}

.section-deux-couleurs .col-droite .ligne-2 .titre {
    text-transform: uppercase;
}

.section-deux-couleurs .col-droite .ligne-2 .titre h3 {
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin: 0px;
}

.section-deux-couleurs .col-droite .ligne-2 .titre span {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.18px;
}

/* Ligne 2 : Style 1 => Rectangle rouge + Titre noir + Titre rouge */

.section-deux-couleurs .col-droite .ligne-2.style-1 > .elementor-element {
    position: relative;
    width: fit-content;
}

.section-deux-couleurs .col-droite .ligne-2.style-1 > .elementor-element::before {
    content: "";
    position: absolute;
    top: -5px; 
    left: 0;
    width: 50px;
    height: 22px;
    border: 2px solid var(--rouge-profond);
    transform: translateY(50%);
    transition: width 0.4s ease;
    z-index: 0;
}

.section-deux-couleurs .col-droite .ligne-2.style-1 > .elementor-element:hover::before {
    width: 22px;
}

.section-deux-couleurs .col-droite .ligne-2.style-1 > .elementor-element .elementor-heading-title {
    display: flex;
    padding-left: 70px;
    transition: transform 0.4s ease;
    z-index: 1;
}

.section-deux-couleurs .col-droite .ligne-2.style-1 > .elementor-element:hover .elementor-heading-title {
    transform: translateX(-28px);
}

.section-deux-couleurs .col-droite .ligne-2.style-1 > .elementor-element span {
    color: var(--rouge-profond);
}

/* Ligne 2 : Style 2 => Carrousel */

.section-deux-couleurs .col-droite .ligne-2.style-2 > .elementor-element .bloc-chiffre .chiffre {
    font-family: var(--font-gill-sans);
    font-size: 35px;
    font-weight: 900;
    color: var(--rouge-profond);
    line-height: 42px;
    letter-spacing: 0.35px;
}

.section-deux-couleurs .col-droite .ligne-2.style-2 > .elementor-element .bloc-chiffre .chiffre sup {
    font-size: 0.6em;
    vertical-align: middle;
}

.section-deux-couleurs .col-droite .ligne-2.style-2 > .elementor-element .bloc-chiffre .titre {
    font-family: var(--font-barlow-condensed);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.28px;
    line-height: 34px;
    text-transform: uppercase;
}

.section-deux-couleurs .col-droite .ligne-2.style-2 > .elementor-element .bloc-chiffre .sous-titre {
    font-family: var(--font-arial-narrow);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.18px;
    line-height: 21px;
    text-transform: uppercase;
}

/* Ligne 2 : Style 3 => Grille */

.section-deux-couleurs .col-droite .ligne-2.style-3 .titre {
    text-transform: inherit;
}

.section-deux-couleurs .col-droite .ligne-2.style-3 .titre h3 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.24px;
    margin: 0px;
}

.section-deux-couleurs .col-droite .ligne-2.style-3 .titre span {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.24px;
}

/* Spécial (ex: témoignage) */

.section-deux-couleurs.special .col-droite {
    max-width: var(--conteneur-1000);
}

/* Spécial (items) */

.section-deux-couleurs.special.items {
    min-height: auto;
}

/* Spécial (3 boutons) */

.section-deux-couleurs.special.boutons {
    min-height: auto;
}

.section-deux-couleurs.special.boutons .col-droite {
    max-width: var(--conteneur-1400);
}

@media (max-width: 1024px) {
    .section-deux-couleurs .col-droite .ligne-1 .titre h2 {
        font-size: 26px;
        line-height: 26px;
        letter-spacing: 0.78px;
    }

    .section-deux-couleurs .col-droite .ligne-1 .titre span {
        font-size: 24px;
        line-height: 27px;
        letter-spacing: 0.72px;
    }

    .section-deux-couleurs .col-droite .ligne-1 .titre .chiffre {
        font-size: 26px !important;
    }

    .section-deux-couleurs .col-droite .ligne-2 .titre h3 {
        font-size: 26px;
        letter-spacing: 0.26px;
    }

    .section-deux-couleurs .col-droite .ligne-2 .titre span {
        font-size: 16px;
        letter-spacing: 0.16px;
    }

    /* Spécial (3 boutons) */

    .section-deux-couleurs.special.boutons .elementor-button-text span {
        display: inline;
    }
}

@media (max-width: 767px) {
    .section-deux-couleurs {
        min-height: 350px;
    }

    .section-deux-couleurs .col-droite {
        padding: 25px;
    }

    .section-deux-couleurs .col-droite .ligne-1 .titre h2 {
        font-size: 24px;
        line-height: 24px;
        letter-spacing: 0px;
    }

    .section-deux-couleurs .col-droite .ligne-1 .titre span {
        font-size: 22px;
        line-height: 24px;
        letter-spacing: 0px;
    }

    .section-deux-couleurs .col-droite .ligne-1 .titre .chiffre {
        font-size: 24px !important;
        padding: 0px;
    }

    .section-deux-couleurs .col-droite .ligne-2 .titre h3 {
        font-size: 20px;
        letter-spacing: 0px;
    }

    .section-deux-couleurs .col-droite .ligne-2 .titre span {
        font-size: 14px;
        letter-spacing: 0px;
    }

    /* Ligne 2 : Style 1 => Rectangle rouge + Titre noir + Titre rouge */

    .section-deux-couleurs .col-droite .ligne-2.style-1 > .elementor-element {
        width: 100%;
    }

    .section-deux-couleurs .col-droite .ligne-2.style-1 > .elementor-element::before {
        top: 1px;
        width: 30px;
        height: 16px;
    }

    .section-deux-couleurs .col-droite .ligne-2.style-1 > .elementor-element:hover::before {
        width: 16px;
    }

    .section-deux-couleurs .col-droite .ligne-2.style-1 > .elementor-element .elementor-heading-title {
        padding-left: 50px;
    }

    .section-deux-couleurs .col-droite .ligne-2.style-1 > .elementor-element:hover .elementor-heading-title {
        transform: translateX(-18px);
    }

    /* Ligne 2 : Style 2 => Carrousel */

    .section-deux-couleurs .col-droite .ligne-2.style-2 > .elementor-element .bloc-chiffre .chiffre {
        font-size: 30px;
        line-height: 37px;
    }

    .section-deux-couleurs .col-droite .ligne-2.style-2 > .elementor-element .bloc-chiffre .titre {
        font-size: 24px;
        line-height: 30px;
    }

    .section-deux-couleurs .col-droite .ligne-2.style-2 > .elementor-element .bloc-chiffre .sous-titre {
        letter-spacing: 0px;
    }

    /* Spécial */

    .section-deux-couleurs.special .col-gauche {
        min-height: auto;
    }

    .section-deux-couleurs.special .col-droite {
        padding: 25px 0px 25px 0px;
    }

    /* Spécial (items) */

    .section-deux-couleurs.special.items .col-droite {
        padding: 25px;
    }
}

/****** Section gammes ******/

.section-gammes .bloc-gammes .bloc-titre,
.section-gammes .bloc-gammes .bloc-background {
    height: 200px;
}

.section-gammes .bloc-gammes .bloc-background {
    transition: background-size 0.5s ease;
}

.section-gammes .bloc-gammes:hover .bloc-background {
    background-size: 110% !important;
}

.section-gammes .bloc-gammes .btn-gammes {
    left: -15px;
}

.section-gammes .bloc-gammes .btn-gammes .elementor-button {
    font-family: var(--font-barlow-condensed);
    font-size: 24px;
    font-weight: 900;
    color: var(--noir);
    background: transparent;
    line-height: 25px;
    position: relative;
    padding: 12px 12px;
    padding-left: 45px;
    transition: var(--transition-site);
}

.section-gammes .bloc-gammes .btn-gammes .elementor-button::before {
    content: "";
    width: 34px;
    height: 34px;
    background: url(../icons/rond-pointille.svg) center / contain no-repeat;
    position: absolute;
    left: 0px;
    top: 27px;
    transform: translateY(-50%) rotate(0deg) scale(1);
    transition: var(--transition-site);
}

.section-gammes .bloc-gammes:hover .btn-gammes .elementor-button::before {
    transform: translateY(-50%) rotate(90deg) scale(1);
}

.section-gammes .bloc-gammes .btn-gammes .elementor-button::after {
    content: "";
    width: 18px;
    height: 6px;
    background: url(../icons/fleche-rouge.svg) center / contain no-repeat;
    position: absolute;
    left: 8px;
    top: 24px;
    transform: translate(0px, 0px) rotate(-90deg);
    pointer-events: none;
    transition: transform 0.5s ease, width 0.5s ease, height 0.5s ease;
    will-change: transform, width, height;
}

.section-gammes .bloc-gammes:hover .btn-gammes .elementor-button::after {
    transform: translate(0px, 0px) rotate(90deg);
}

.section-gammes .bloc-gammes .btn-gammes .elementor-button .elementor-button-text {
    text-align: left;
    transform: translateY(0);
    transition: color 0.3s ease, transform 0.5s ease;
}

.section-gammes .bloc-gammes:hover .btn-gammes .elementor-button .elementor-button-text {
    color: var(--rouge-profond);
    transform: translateY(5px);
}

@media (max-width: 767px) {
    .section-gammes .bloc-gammes .btn-gammes {
        left: 0px;
    }
}

/****** Section contact ******/

.section-contact .col-gauche .e-n-tab-title[aria-selected] {
    width: 160px;
    flex-basis: auto;
    justify-content: flex-start;
    padding-block-end: 15px;
    padding-block-start: 15px;
    padding-inline-end: 15px;
    padding-inline-start: 15px;
}

.section-contact .col-gauche .e-n-tab-title[aria-selected]:hover {
    color: inherit;
}

.section-contact .col-gauche .e-n-tab-title[aria-selected] .e-n-tab-title-text {
    flex-direction: column;
    align-items: flex-start;
    transition: opacity 0.8s ease;
}

.section-contact .col-gauche .e-n-tab-title[aria-selected="false"] .e-n-tab-title-text {
    opacity: 0.5;
}

.section-contact .col-gauche .e-n-tab-title[aria-selected="true"] .e-n-tab-title-text {
    opacity: 1;
}

.section-contact .col-gauche .e-n-tab-title[aria-selected="true"] .e-n-tab-title-text span:first-child {
    color: var(--noir);
}

.section-contact .col-gauche .e-n-tab-title[aria-selected="true"] .e-n-tab-title-text span:last-child {
    color: var(--rouge-profond);
}

/****** Section prise de contact ******/

.section-prise-contact {
    position: relative;
    height: 300px;
}

.section-prise-contact .bloc-absolute {
    position: absolute;
    left: -8px;
    bottom: 80px;
    height: 300px;
    width: 750px;
    max-width: calc(100vw - 90px);
    margin-left: calc((100vw - var(--conteneur-site)) / 2);
    padding: 30px 40px;
    z-index: 10;
    overflow: hidden;
}

/* .section-prise-contact .bloc-prise-contact {
    width: 100%;
}

.section-prise-contact .bloc-prise-contact .elementor-widget-container,
.section-prise-contact .bloc-prise-contact .elementor-heading-title {
    width: 100%;
}

.section-prise-contact .bloc-prise-contact .elementor-heading-title {
    width: 100%;
    box-sizing: border-box;
}

.section-prise-contact .bloc-prise-contact .elementor-heading-title a {
    display: block;
    width: 100%;
    text-decoration: none;
}

.section-prise-contact .bloc-prise-contact .elementor-heading-title .ensemble {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

.section-prise-contact .bloc-prise-contact .elementor-heading-title .ligne-1 {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    transition: gap 0.4s ease;
}

.section-prise-contact .bloc-prise-contact .elementor-heading-title .ligne-1 > span:last-child {
    font-family: var(--font-arial);
    font-size: 20px;
    font-weight: 500;
    color: var(--noir);
    line-height: 38px;
    text-transform: uppercase;
}

.section-prise-contact .bloc-prise-contact .elementor-heading-title .ligne-1 .ensemble-vide {
    display: inline-block;
    width: 100px;
    height: 20px;
    background: var(--rouge-profond);
    transform: translateY(1px);
    flex: 0 0 auto;
    pointer-events: auto;
}

.section-prise-contact .bloc-prise-contact .elementor-heading-title .ligne-2 {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    white-space: nowrap;
    padding-left: 145px;
    transition: padding-left 0.4s ease, gap 0.4s ease;
}

.section-prise-contact .bloc-prise-contact .elementor-heading-title .ligne-2 > span:first-child {
    font-family: var(--font-barlow-condensed);
    font-size: 30px;
    font-weight: 700;
    color: var(--noir);
    line-height: 38px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.section-prise-contact .bloc-prise-contact .elementor-heading-title .ligne-2 .ensemble-vide {
    height: 20px;
    background: var(--rouge-profond);
    flex: 1 1 auto;
    min-width: 0;
    transform-origin: left center;
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.4s ease, background-color 0.4s ease;
    pointer-events: auto;
}

.section-prise-contact .bloc-prise-contact .elementor-heading-title a:hover .ligne-1 {
    gap: 20px;
}

.section-prise-contact .bloc-prise-contact .elementor-heading-title a:hover .ligne-2 {
    gap: 20px;
    padding-left: 0;
}

.section-prise-contact .bloc-prise-contact .elementor-heading-title a:hover .ligne-2 > span:first-child {
    color: var(--rouge-profond);
}

.section-prise-contact .bloc-prise-contact .elementor-heading-title a:hover .ligne-2 .ensemble-vide {
    clip-path: inset(0 calc(100% - 112px) 0 0);
    background: var(--noir);
}

.section-prise-contact .bloc-prise-contact .elementor-heading-title .ensemble-mobile {
    display: none;
} */

@media (max-width: 1300px) {
    .section-prise-contact .bloc-absolute {
        margin-left: 45px;
    }
}

@media (max-width: 1050px) {
    .section-prise-contact .bloc-absolute {
        position: relative;
        bottom: 0;
        width: calc(100vw - 90px);
    }
}

@media (max-width: 767px) {
    .section-prise-contact {
        height: auto;
    }

    .section-prise-contact .bloc-absolute {
        position: relative;
        bottom: auto;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        width: 90vw;
        max-width: 90vw;
        height: auto;
        min-height: 300px;
    }

    /* .section-prise-contact .bloc-prise-contact .elementor-heading-title .ensemble {
        align-items: center;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ligne-1,
    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ligne-2 {
        width: 100%;
        justify-content: center;
        gap: 10px;
        padding-left: 0;
        transition: none;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ligne-1::after,
    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ligne-2::before {
        content: "";
        flex: 1 1 auto;
        min-width: 0;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ligne-1 .ensemble-vide,
    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ligne-2 .ensemble-vide {
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ligne-1 .ensemble-vide {
        margin-left: -40px;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ligne-2 .ensemble-vide {
        margin-right: -40px;
        flex: 2 1 auto;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title a:hover .ligne-1 {
        gap: 10px;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title a:hover .ligne-2 {
        gap: 10px;
        padding-left: 0;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title a:hover .ligne-2 > span:first-child {
        color: var(--noir);
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title a:hover .ligne-2 .ensemble-vide {
        clip-path: inset(0 0 0 0);
        background: var(--rouge-profond);
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ensemble-desktop {
        display: none;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ensemble-mobile {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 0;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ensemble-mobile .mobile-ligne {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ensemble-mobile .mobile-ligne::before,
    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ensemble-mobile .mobile-ligne::after {
        content: "";
        height: 20px;
        flex: 1 1 auto;
        min-width: 0;
        background: var(--rouge-profond);
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ensemble-mobile .mobile-ligne::before {
        margin-left: -40px;
        margin-right: 20px;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ensemble-mobile .mobile-ligne::after {
        margin-left: 20px;
        margin-right: -40px;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ensemble-mobile .mobile-ligne-1 {
        font-family: var(--font-arial);
        font-size: 20px;
        font-weight: 500;
        color: var(--noir);
        line-height: 38px;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ensemble-mobile .mobile-ligne-2 {
        font-family: var(--font-barlow-condensed);
        font-size: 30px;
        font-weight: 700;
        color: var(--noir);
        line-height: 38px;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ensemble-mobile .mobile-ligne-1::after {
        background: transparent;
    }

    .section-prise-contact .bloc-prise-contact .elementor-heading-title .ensemble-mobile .mobile-ligne-2::before {
        background: transparent;
    } */
}

/****** Section juridique ******/

/* .section-juridique {
    position: relative;
}

.section-juridique::before {
    content: "";
    position: absolute;
    top: 30%;
    left: calc(-100px - ((1920px - 100vw) * 0.5));
    width: 370px;
    height: 370px;
    border-radius: 50%;
    background-color: var(--rouge-vif);
    z-index: 0;
    transform: translateY(-30%);
}

.section-juridique::after {
    content: "";
    position: absolute;
    top: calc(30% - 105px);
    left: calc(130px - ((1920px - 100vw) * 0.5));
    width: 155px;
    height: 155px;
    border-radius: 50%;
    border: 2px solid var(--rose);
    background: transparent;
    z-index: 1;
    transform: translateY(-30%);
} */

/******************** Blocs ********************/

/****** Bloc items ******/

.bloc-items .elementor-icon-list-items {
    justify-content: space-between;
}

.bloc-items .elementor-icon-list-items h3 {
    font-family: var(--font-barlow-condensed);
    font-size: 31px;
    color: var(--gris-tres-clair);
    text-transform: uppercase;
    line-height: 26px;
    letter-spacing: 0.65px;
    margin: 0px;
}

/****** Bloc grille Espaces ******/

.bloc-grille-espaces {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
}

.bloc-grille-espaces > .elementor-element:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

@media (max-width: 1024px) {
    .bloc-grille-espaces {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .bloc-grille-espaces::before {
        content: "";
        display: block;
        height: 20px;
        grid-column: 1 / -1;
        grid-row: 2;
        pointer-events: none;
    }

    .bloc-grille-espaces > .elementor-element:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .bloc-grille-espaces > .elementor-element:nth-child(2) {
        grid-column: 1;
        grid-row: 3;
    }

    .bloc-grille-espaces > .elementor-element:nth-child(3) {
        grid-column: 2;
        grid-row: 1;
    }

    .bloc-grille-espaces > .elementor-element:nth-child(4) {
        grid-column: 1;
        grid-row: 4;
    }

    .bloc-grille-espaces .bloc-background-1 {
        height: 450px;
    }
}

@media (max-width: 767px) {
    .bloc-grille-espaces {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .bloc-grille-espaces > .elementor-element:nth-child(1) {
        flex: 0 0 100%;
        order: 1;
        margin-bottom: 30px;
    }

    .bloc-grille-espaces > .elementor-element:nth-child(2) {
        flex: 0 0 100%;
        order: 3;
        margin-bottom: 20px;
    }

    .bloc-grille-espaces > .elementor-element:nth-child(3) {
        flex: 0 0 100%;
        order: 2;
        margin-bottom: 20px;
        gap: 30px;
    }

    .bloc-grille-espaces > .elementor-element:nth-child(4) {
        flex: 0 0 100%;
        order: 4;
        margin-bottom: 0px;
    }

    .bloc-grille-espaces > .elementor-element {
        flex: 0 0 auto !important;
        width: 100%;
    }

    .bloc-grille-espaces .elementor-element > .elementor-element {
        flex: 0 0 auto !important;
        width: 100% !important;
    }

    .bloc-grille-espaces .bloc-background-2 {
        height: 400px;
    }
}

/****** Bloc grille Atouts ******/

.bloc-grille-atouts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 70px;
    row-gap: 30px;
}

.bloc-grille-atouts > .elementor-element {
    background-color: var(--blanc);
    min-height: 55px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
}

.bloc-grille-atouts > .elementor-element:first-child {
    background-color: transparent;
    border: 2px solid var(--blanc);
    position: relative;
    padding-right: 50px;
}

.bloc-grille-atouts > .elementor-element:first-child::after {
    content: "";
    width: 31px;
    height: 11px;
    background: url(../icons/fleche-blanche-pleine.svg) center / contain no-repeat;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.bloc-grille-atouts > .elementor-element:first-child .elementor-heading-title {
    font-size: clamp(20px, 2vw, 24px) !important;
}

.bloc-grille-atouts > .elementor-element:not(:first-child) .elementor-heading-title {
    font-size: clamp(13px, 1vw, 16px) !important;
}

.bloc-grille-atouts > .elementor-element:nth-last-child(1) {
    grid-column: 1 / -1;
}

@media (max-width: 767px) {
    .bloc-grille-atouts > .elementor-element {
        padding: 10px 20px;
    }
}

/****** Bloc grille Secteurs ******/

.bloc-grille-secteurs {
    display: flex;
    flex-wrap: wrap;
    gap: 50px clamp(25px, 4vw, 75px);
}

.bloc-grille-secteurs > .elementor-element {
    flex: 0 0 calc((100% / 3) - (clamp(25px, 4vw, 75px) * 2 / 3));
}

.bloc-grille-secteurs > .elementor-element:nth-child(4) {
    flex: 0 0 100%;
}

.bloc-grille-secteurs > .elementor-element .bloc-cadre {
    min-height: 350px;
    padding: 25px 25px 25px clamp(25px, 4vw, 75px);
}

.bloc-grille-secteurs > .elementor-element .bloc-cadre .hexagonale-titre .elementor-heading-title {
    font-size: clamp(25px, 3vw, 35px);
}

.bloc-grille-secteurs > .elementor-element .bloc-cadre .hexagonale-titre .elementor-heading-title::before {
    content: "";
    position: absolute;
    left: calc(clamp(25px, 3vw, 50px) * -1);
    top: 0.2em;
    width: 24px;
    height: 24px;
}

.bloc-grille-secteurs > .elementor-element .bloc-cadre .hexagonale-titre.rouge .elementor-heading-title::before {
    background: url(../icons/puce-hexagonale-rouge.svg) center / contain no-repeat;
}

.bloc-grille-secteurs > .elementor-element .bloc-cadre .hexagonale-titre.blanche .elementor-heading-title::before {
    background: url(../icons/puce-hexagonale-blanche.svg) center / contain no-repeat;
}

.bloc-grille-secteurs > .elementor-element .bloc-cadre .hexagonale-titre.noire .elementor-heading-title::before {
    background: url(../icons/puce-hexagonale-noire.svg) center / contain no-repeat;
}

@media (max-width: 1024px) {
    .bloc-grille-secteurs > .elementor-element {
        flex: 0 0 calc((100% / 2) - (clamp(25px, 4vw, 75px) / 2));
        order: 0;
    }

    .bloc-grille-secteurs > .elementor-element:nth-child(1) { order: 1; }
    .bloc-grille-secteurs > .elementor-element:nth-child(2) { order: 2; }
    .bloc-grille-secteurs > .elementor-element:nth-child(3) { order: 4; }

    .bloc-grille-secteurs > .elementor-element:nth-child(4) {
        flex: 0 0 100%;
        order: 3;
    }

    .bloc-grille-secteurs > .elementor-element:nth-child(5) { order: 5; }
    .bloc-grille-secteurs > .elementor-element:nth-child(6) { order: 6; }
    .bloc-grille-secteurs > .elementor-element:nth-child(7) { order: 7; }

    .bloc-grille-secteurs > .elementor-element .bloc-cadre {
        padding: 25px 25px 25px 75px;
    }

    .bloc-grille-secteurs > .elementor-element .bloc-cadre .hexagonale-titre .elementor-heading-title::before {
        left: -50px;
    }
}

@media (max-width: 767px) {
    .bloc-grille-secteurs > .elementor-element {
        flex: 0 0 100%;
    }

    .bloc-grille-secteurs > .elementor-element:last-child {
        display: none;
    }

    .bloc-grille-secteurs > .elementor-element:nth-child(4) { order: 7; }

    .bloc-grille-secteurs > .elementor-element .bloc-cadre {
        min-height: auto;
    }
}






















/****** Bloc grille Clients ******/

/* .bloc-grille-clients {}

.bloc-entier {} */









/* .bloc-grille-clients {
    display: flex;
    flex-wrap: wrap;
    gap: 50px clamp(25px, 4vw, 75px);
}

.bloc-grille-clients > .elementor-element {
    flex: 0 0 calc((100% / 3) - (clamp(25px, 4vw, 75px) * 2 / 3));
}

.bloc-grille-clients > .elementor-element:nth-child(4) {
    flex: 0 0 100%;
}

.bloc-grille-clients > .elementor-element .bloc-cadre {
    min-height: 350px;
    padding: 25px 25px 25px clamp(25px, 4vw, 75px);
}

.bloc-grille-clients > .elementor-element .bloc-cadre .hexagonale-titre .elementor-heading-title {
    font-size: clamp(25px, 3vw, 35px);
}

.bloc-grille-clients > .elementor-element .bloc-cadre .hexagonale-titre .elementor-heading-title::before {
    content: "";
    position: absolute;
    left: calc(clamp(25px, 3vw, 50px) * -1);
    top: 0.2em;
    width: 24px;
    height: 24px;
}

.bloc-grille-clients > .elementor-element .bloc-cadre .hexagonale-titre.rouge .elementor-heading-title::before {
    background: url(../icons/puce-hexagonale-rouge.svg) center / contain no-repeat;
}

.bloc-grille-clients > .elementor-element .bloc-cadre .hexagonale-titre.blanche .elementor-heading-title::before {
    background: url(../icons/puce-hexagonale-blanche.svg) center / contain no-repeat;
}

.bloc-grille-clients > .elementor-element .bloc-cadre .hexagonale-titre.noire .elementor-heading-title::before {
    background: url(../icons/puce-hexagonale-noire.svg) center / contain no-repeat;
} */


















































/****** Bloc grille Engagements ******/

.bloc-grille-engagements .bloc-grille {
    --grille-largeur-gauche: fit-content;
    --grille-largeur-droite: 180px;
    width: fit-content;
}

.bloc-grille-engagements .bloc-grille .duo-titre .elementor-heading-title {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    font-size: 30px;
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0;
}

.bloc-grille-engagements .bloc-grille .duo-titre .elementor-heading-title > .bloc-gauche,
.bloc-grille-engagements .bloc-grille .duo-titre .elementor-heading-title > .bloc-droite {
    display: block;
}

.bloc-grille-engagements .bloc-grille .duo-titre .bloc-gauche {
    width: var(--grille-largeur-gauche);
    color: var(--noir);
    text-align: right;
    padding: 5px 0px;
}

.bloc-grille-engagements .bloc-grille .duo-titre .bloc-droite {
    width: var(--grille-largeur-droite);
    height: 80px;
    background: var(--rouge-profond);
    color: var(--blanc);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5px 5px;
    box-sizing: border-box;
    margin-left: 5px;
    flex: 0 0 var(--grille-largeur-droite);
}

.bloc-grille-engagements .bloc-grille .bloc-duo-bas {
    width: var(--grille-largeur-droite);
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bloc-grille-engagements .bloc-grille .barre-pleine-style-1 {
    position: relative;
    width: 100%;
}

.bloc-grille-engagements .bloc-grille .barre-pleine-style-1::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    z-index: 0;
}

.bloc-grille-engagements .bloc-grille .barre-pleine-style-1 > div {
    width: 100%;
    height: 10px;
    margin: 15px 0px;
    transition: margin 0.35s ease;
    will-change: margin;
}

.bloc-grille-engagements .bloc-grille .barre-pleine-style-1.rouge > div {
    background: var(--rouge-fonce);
}

.bloc-grille-engagements .bloc-grille .barre-pleine-style-1.blanche > div {
    background: var(--blanc);
}

.bloc-grille-engagements .bloc-grille .barre-pleine-style-1.noire > div {
    background: var(--noir);
}

.bloc-grille-engagements .bloc-grille:hover .barre-pleine-style-1 > div,
.bloc-grille-engagements .bloc-grille.active .barre-pleine-style-1 > div {
    margin-top: 0 !important;
}

@media (max-width: 1300px) {
    .bloc-grille-engagements {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 50px !important;
        justify-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .bloc-grille-engagements .bloc-grille {
        width: 100% !important;
        max-width: 270px !important;
    }
}

@media (max-width: 767px) {
    /* .bloc-grille-engagements {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
    } */

    .bloc-grille-engagements .bloc-grille {
        --grille-largeur-droite: 150px;
        /* margin-left: auto !important; */
        margin-left: 15px !important;
        margin-right: auto !important;
        /* box-sizing: border-box !important; */
    }

    .bloc-grille-engagements .bloc-grille .duo-titre .elementor-heading-title {
        /* font-size: 25px; */
        font-size: 23px;
    }

    /* .bloc-grille-engagements.is-slider {
        position: relative;
        overflow: hidden;
        width: 100% !important;
        max-width: 100% !important;
    }

    .bloc-grille-engagements.is-slider .slider-track {
        display: flex;
        transition: transform 0.35s ease;
        will-change: transform;
        width: 100% !important;
        cursor: grab;
    }

    .bloc-grille-engagements.is-slider .slider-track.is-dragging {
        user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: transparent;
        cursor: grabbing;
    }

    .bloc-grille-engagements.is-slider .slider-slide {
        flex: 0 0 100%;
        width: 100%;
        display: flex;
        justify-content: center;
    } */
}

/****** Bloc grille Valeurs ******/

.bloc-grille-valeurs .bloc-grille .icon-animation {
    background-color: var(--rouge-profond);
    position: relative;
    padding: 10px;
    overflow: hidden;
    z-index: 0;
}

.bloc-grille-valeurs .bloc-grille .icon-animation::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--noir);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
    opacity: 1;
    z-index: 0;
}

.bloc-grille-valeurs .bloc-grille:hover .icon-animation::after {
    transform: scaleY(1);
}

.bloc-grille-valeurs .bloc-grille .icon-animation .elementor-icon-wrapper {
    position: relative;
    z-index: 1;
}

.bloc-grille-valeurs .bloc-grille .elementor-heading-title {
    transform: translateY(0px);
    transition: transform 0.35s ease, color 0.35s ease;
}

.bloc-grille-valeurs .bloc-grille:hover .elementor-heading-title {
    color: var(--rouge-profond);
    transform: translateY(-5px); 
}

.bloc-grille-valeurs .bloc-grille .barre-pleine-style-1 {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.bloc-grille-valeurs .bloc-grille .barre-pleine-style-1::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    z-index: 0;
}

.bloc-grille-valeurs .bloc-grille .barre-pleine-style-1 > div {
    width: 70px;
    height: 10px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.bloc-grille-valeurs .bloc-grille .barre-pleine-style-1.rouge > div {
    background: var(--rouge-fonce);
}

.bloc-grille-valeurs .bloc-grille .barre-pleine-style-1.blanche > div {
    background: var(--blanc);
}

.bloc-grille-valeurs .bloc-grille .barre-pleine-style-1.noire > div {
    background: var(--noir);
}

.bloc-grille-valeurs .bloc-grille:hover .barre-pleine-style-1 > div {
    transform: translateY(-10px);
}

@media (max-width: 1300px) {
    .bloc-grille-valeurs {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 50px !important;
        justify-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .bloc-grille-valeurs .bloc-grille {
        width: 100% !important;
        max-width: 270px !important;
    }
}

@media (max-width: 767px) {
    /* .bloc-grille-valeurs {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
    }

    .bloc-grille-valeurs.is-slider {
        position: relative;
        overflow: hidden;
        width: 100% !important;
        max-width: 100% !important;
    }

    .bloc-grille-valeurs.is-slider .slider-track {
        display: flex;
        transition: transform 0.35s ease;
        will-change: transform;
        width: 100% !important;
        cursor: grab;
    }

    .bloc-grille-valeurs.is-slider .slider-track.is-dragging {
        user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: transparent;
        cursor: grabbing;
    }

    .bloc-grille-valeurs.is-slider .slider-slide {
        flex: 0 0 100%;
        width: 100%;
        display: flex;
        justify-content: center;
    } */
}

/****** Bloc grille Contrôles ******/

.bloc-grille-controles > .elementor-element {
    display: flex;
    align-items: flex-start;
}

.bloc-grille-controles > .elementor-element .bloc-simple {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bloc-grille-controles > .elementor-element .bloc-simple-titre {
    width: fit-content;
}

.bloc-grille-controles > .elementor-element .titre {
    position: relative;
    padding-left: clamp(25px, 2vw, 35px);
}

.bloc-grille-controles > .elementor-element .titre:first-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: url(../icons/puce-hexagonale-rouge.svg) center / contain no-repeat;
}

.bloc-grille-controles > .elementor-element .titre h3,
.bloc-grille-controles > .elementor-element .titre h3 span {
    font-size: clamp(18px, 2vw, 31px);
    line-height: clamp(18px, 2vw, 31px);
}

.bloc-grille-controles > .elementor-element .titre span {
    font-size: 15px;
}

@media (max-width: 1300px) {
    .bloc-grille-controles > .elementor-element .titre:first-child::before {
        top: 0;
    }
}

@media (max-width: 767px) {
    /* .bloc-grille-controles.is-slider--cloned > .bloc-grille {
        display: none !important;
    }

    .bloc-grille-controles.is-slider {
        position: relative;
        overflow: hidden;
        display: block !important;
    } */

    /* .bloc-grille-controles.is-slider .slider-track {
        display: flex;
        gap: 0 !important;
        will-change: transform;
        cursor: grab;
    } */

    /* .bloc-grille-controles.is-slider .slider-track.is-dragging {
        user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: transparent;
        cursor: grabbing;
    }

    .bloc-grille-controles.is-slider .slider-slide {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
    }

    .bloc-grille-controles.is-slider .slider-slide-inner--2 {
        width: 200px;
        max-width: 92vw;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 18px;
        box-sizing: border-box;
    }

    .bloc-grille-controles.is-slider .slider-slide-inner--2 > .bloc-grille {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    } */

    /* .bloc-grille-controles.is-slider .bloc-grille .bloc-simple {
        position: relative;
        padding-left: 35px;
        justify-content: flex-start;
        align-items: center;
        overflow: visible;
    } */

    /* .bloc-grille-controles.is-slider .bloc-grille .bloc-simple::before {
        content: "";
        position: absolute;
        left: 0;
        top: 5px;
        width: 20px;
        height: 20px;
        background: url(../icons/puce-hexagonale-rouge.svg) center / contain no-repeat;
    }

    .bloc-grille-controles.is-slider .bloc-grille .titre::before {
        content: none !important;
    } */
}

/****** Bloc grille Partenaires ******/

.bloc-grille-partenaires {
    gap: 30px 50px;
}

.bloc-grille-partenaires > .elementor-element .bloc-simple-titre {
    width: 100%;
}

.bloc-grille-partenaires .elementor-element .titre h3 {
    font-size: clamp(20px, 2vw, 24px) !important;
}

.bloc-grille-partenaires .elementor-element .titre span {
    font-size: clamp(20px, 2vw, 24px) !important;
}

@media (max-width: 767px) {
    /* .bloc-grille-partenaires.is-slider--cloned > .bloc-grille {
        display: none !important;
    }

    .bloc-grille-partenaires.is-slider {
        position: relative;
        overflow: hidden;
        display: block !important;
    }

    .bloc-grille-partenaires.is-slider .slider-track {
        display: flex;
        gap: 0 !important;
        will-change: transform;
        cursor: grab;
    }

    .bloc-grille-partenaires.is-slider .slider-track.is-dragging {
        user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: transparent;
        cursor: grabbing;
    }

    .bloc-grille-partenaires.is-slider .slider-slide {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
    }

    .bloc-grille-partenaires.is-slider .slider-slide-inner--2 {
        width: 200px;
        max-width: 92vw;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 18px;
        box-sizing: border-box;
    }

    .bloc-grille-partenaires.is-slider .slider-slide-inner--2 > .bloc-grille {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    } */

    /* .bloc-grille-partenaires.is-slider .slider-fleche-custom--prev {
        display: none;
    } */
}

/****** Bloc accordéon N°1 ******/

.bloc-accordeon-1 .e-n-accordion-item-title {
    align-items: flex-start;
}

.bloc-accordeon-1 .e-n-accordion-item-title-icon {
    top: 4px;
}

/****** Bloc accordéon N°2 ******/

.bloc-accordeon-2 .e-n-accordion-item-title {
    position: relative;
    align-items: flex-start;
    padding-left: 20px;
}

.bloc-accordeon-2 .e-n-accordion-item-title::before {
    content: "";
    background-color: var(--rouge-fonce);
    position: absolute;
    left: 0;
    top: 1.1em;
    width: 10px;
    height: 16px;
}

.bloc-accordeon-2 .e-n-accordion-item-title-icon {
    position: relative;
    width: 34px;
    height: 34px;
}

.bloc-accordeon-2 .e-n-accordion-item-title-icon .e-opened,
.bloc-accordeon-2 .e-n-accordion-item-title-icon .e-closed,
.bloc-accordeon-2 .e-n-accordion-item-title-icon svg {
    display: none !important;
}

.bloc-accordeon-2 .e-n-accordion-item-title-icon::before {
    content: "";
    width: 34px;
    height: 34px;
    background: url(../icons/rond-pointille.svg) center / contain no-repeat;
    position: absolute;
    left: 0px;
    top: 12px;
    transform: translateY(-50%) rotate(0deg);
    transition: var(--transition-site);
}

.bloc-accordeon-2 .e-n-accordion-item-title-icon::after {
    content: "";
    width: 18px;
    height: 6px;
    background: url(../icons/fleche-rouge.svg) center / contain no-repeat;
    position: absolute;
    left: 8px;
    top: calc(50% - 5px);
    transform: translateY(-50%) rotate(0deg) scale(1);
    pointer-events: none;
    transition: var(--transition-site);
    will-change: transform, width, height;
}

.bloc-accordeon-2 details[open] .e-n-accordion-item-title-icon::before {
    transform: translateY(-50%) rotate(90deg);
}

.bloc-accordeon-2 details[open] .e-n-accordion-item-title-icon::after {
    transform: translateY(-50%) translateY(18px) rotate(90deg) scale(1.2);
}

@media (max-width: 900px) {
    .bloc-accordeon-2 .e-n-accordion-item-title::before {
        top: 0.8em;
    }
}

@media (max-width: 767px) {
    .bloc-accordeon-2 .e-n-accordion-item-title-header {
        max-width: calc(100vw - 125px);
    }
}

/****** Bloc spécial ******/

.bloc-special {
    width: 100%;
}

.bloc-special .elementor-widget-container,
.bloc-special .elementor-heading-title {
    width: 100%;
}

.bloc-special .elementor-heading-title {
    width: 100%;
    box-sizing: border-box;
}

.bloc-special .elementor-heading-title a {
    display: block;
    width: 100%;
    text-decoration: none;
}

.bloc-special .elementor-heading-title .ensemble {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

.bloc-special .elementor-heading-title .ligne-1 {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    transition: gap 0.4s ease;
}

.bloc-special .elementor-heading-title .ligne-1 > span:last-child {
    font-family: var(--font-arial);
    font-size: 25px;
    font-weight: 500;
    color: var(--noir);
    line-height: 38px;
}

.bloc-special .elementor-heading-title .ligne-1 .ensemble-vide {
    display: inline-block;
    width: 100px;
    height: 20px;
    background: var(--rouge-profond);
    transform: translateY(1px);
    flex: 0 0 auto;
    pointer-events: auto;
}

.bloc-special .elementor-heading-title .ligne-2 {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    white-space: nowrap;
    padding-left: 130px;
    transition: padding-left 0.4s ease, gap 0.4s ease;
}

.bloc-special .elementor-heading-title .ligne-2 > span:first-child {
    font-family: var(--font-barlow-condensed);
    font-size: 28px;
    font-weight: 700;
    color: var(--noir);
    line-height: 38px;
    letter-spacing: 0.84px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.bloc-special .elementor-heading-title .ligne-2 .ensemble-vide {
    height: 20px;
    background: var(--rouge-profond);
    flex: 1 1 auto;
    min-width: 0;
    transform-origin: left center;
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.4s ease, background-color 0.4s ease;
    pointer-events: auto;
}

.bloc-special .elementor-heading-title .ensemble-mobile {
    display: none;
}

/* AVEC animation */

.bloc-special.animation .elementor-heading-title .ligne-1 > span:last-child {
    font-size: 20px;
    text-transform: uppercase;
}

.bloc-special.animation .elementor-heading-title a:hover .ligne-1 {
    gap: 20px;
}

.bloc-special.animation .elementor-heading-title .ligne-2 {
    padding-left: 140px;
}

.bloc-special.animation .elementor-heading-title a:hover .ligne-2 {
    gap: 20px;
    padding-left: 0;
}

.bloc-special.animation .elementor-heading-title .ligne-2 > span:first-child {
    font-size: 30px;
}

.bloc-special.animation .elementor-heading-title a:hover .ligne-2 > span:first-child {
    color: var(--rouge-profond);
}

.bloc-special.animation .elementor-heading-title a:hover .ligne-2 .ensemble-vide {
    clip-path: inset(0 calc(100% - 112px) 0 0);
    background: var(--noir);
}

@media (max-width: 767px) {
    .bloc-special .elementor-heading-title .ensemble {
        align-items: center;
    }

    .bloc-special .elementor-heading-title .ligne-1,
    .bloc-special .elementor-heading-title .ligne-2 {
        width: 100%;
        justify-content: center;
        gap: 10px;
        padding-left: 0;
        transition: none;
    }

    .bloc-special .elementor-heading-title .ligne-1::after,
    .bloc-special .elementor-heading-title .ligne-2::before {
        content: "";
        flex: 1 1 auto;
        min-width: 0;
    }

    .bloc-special .elementor-heading-title .ligne-1 .ensemble-vide,
    .bloc-special .elementor-heading-title .ligne-2 .ensemble-vide {
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
    }

    .bloc-special .elementor-heading-title .ligne-1 .ensemble-vide {
        margin-left: -40px;
    }

    .bloc-special .elementor-heading-title .ligne-2 .ensemble-vide {
        margin-right: -40px;
        flex: 2 1 auto;
    }

    .bloc-special .elementor-heading-title .ensemble-desktop {
        display: none;
    }

    .bloc-special .elementor-heading-title .ensemble-mobile {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 0;
    }

    .bloc-special .elementor-heading-title .ensemble-mobile .mobile-ligne {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .bloc-special .elementor-heading-title .ensemble-mobile .mobile-ligne::before,
    .bloc-special .elementor-heading-title .ensemble-mobile .mobile-ligne::after {
        content: "";
        height: 20px;
        flex: 1 1 auto;
        min-width: 0;
        background: var(--rouge-profond);
    }

    .bloc-special .elementor-heading-title .ensemble-mobile .mobile-ligne::before {
        margin-left: -40px;
        margin-right: 20px;
    }

    .bloc-special .elementor-heading-title .ensemble-mobile .mobile-ligne::after {
        margin-left: 20px;
        margin-right: -40px;
    }

    .bloc-special .elementor-heading-title .ensemble-mobile .mobile-ligne-1 {
        font-family: var(--font-arial);
        font-size: 20px;
        font-weight: 500;
        color: var(--noir);
        line-height: 38px;
    }

    .bloc-special .elementor-heading-title .ensemble-mobile .mobile-ligne-2 {
        font-family: var(--font-barlow-condensed);
        font-size: 30px;
        font-weight: 700;
        color: var(--noir);
        line-height: 38px;
    }

    .bloc-special .elementor-heading-title .ensemble-mobile .mobile-ligne-1::after {
        background: transparent;
    }

    .bloc-special .elementor-heading-title .ensemble-mobile .mobile-ligne-2::before {
        background: transparent;
    }

    /* AVEC animation */

    .bloc-special.animation .elementor-heading-title a:hover .ligne-1 {
        gap: 10px;
    }

    .bloc-special.animation .elementor-heading-title a:hover .ligne-2 {
        gap: 10px;
        padding-left: 0;
    }

    .bloc-special.animation .elementor-heading-title a:hover .ligne-2 > span:first-child {
        color: var(--noir);
    }

    .bloc-special.animation .elementor-heading-title a:hover .ligne-2 .ensemble-vide {
        clip-path: inset(0 0 0 0);
        background: var(--rouge-profond);
    }
}

/****** Bloc hauteur dynamique ******/

/* Affichage PC + Tablette */

.colonne-gauche-hauteur-dynamique .bloc-hauteur-dynamique-haut {
    min-height: var(--hauteur-dynamique-haut);
}

.colonne-gauche-hauteur-dynamique .bloc-hauteur-dynamique-bas {
    min-height: var(--hauteur-dynamique-bas);
}

/* Affichage Mobile */

/* .colonne-droite-hauteur-dynamique {
    padding-top: var(--padding-dynamique-haut);
} */

@media (max-width: 767px) {
    .colonne-droite-hauteur-dynamique .bloc-clone-interne {
        min-height: 300px;
    }

    /* .colonne-droite-hauteur-dynamique.pleine-largeur {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .colonne-droite-hauteur-dynamique.image {
        height: 300px;
    } */
}

/****** Bloc hauteur fixe (en mobile) ******/

/* .bloc-hauteur-fixe {}

@media (max-width: 767px) {
    .bloc-hauteur-fixe {
        height: 300px;
    }
} */

/****** Bloc image ******/

.bloc-image.elementor-widget-image img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/****** Bloc liens simple ******/

.bloc-liens-simple .elementor-icon-list-text {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.bloc-liens-simple a {
    color: inherit;
    font-weight: 300;
}

/**************************** RESPONSIVE DESIGN (COMMUN) ****************************/

@media (max-width: 1600px) {

    /********** STRUCTURES **********/

    .section-header,
    .section-footer,
    .section-aligne,
    .section-custom {
        padding: 20px 90px 20px calc((100vw - var(--conteneur-site)) / 2);
    }
}

@media (max-width: 1300px) {

    /********** CSS COMMUN **********/

    /***** Commun *****/

    .block-pc {
        display: inline;
    }

    .marges {
        padding: 0px 35px;
    }

    /* .marges-sp {
        padding: 0px 35px;
    } */

    /********** STRUCTURES **********/

    .section-site {
        padding: 0px 35px;
    }

    .section-header {
        padding: 0px 15px 0px 35px;
    }

    .section-footer {
        padding: 20px 15px 20px 35px;
    }

    .section-aligne {
        padding: 20px 35px 20px 35px;
    }

    .section-custom {
        padding: 20px 35px 20px 35px;
    }
}

@media (max-width: 1024px) {

    /********** CSS COMMUN **********/

    /***** Commun *****/

    .block-tab {
        display: block;
    }

    .inline-tab {
        display: inline;
    }
}

@media (max-width: 767px) {

    /********** CSS COMMUN **********/

    /***** Commun *****/

    .block-mob {
        display: block;
    }

    .inline-mob {
        display: inline;
    }

    .marges {
        padding: 0px 15px;
    }

    /* .marges-sp {
        padding: 0px 5px;
    } */

    /***** Titres *****/

    /* Titre spécial */

    .titre-special .elementor-heading-title {
        padding-left: 115px;
    }

    .titre-special .elementor-heading-title::before {
        left: -15px;
    }

    /********** STRUCTURES **********/

    .section-site {
        padding: 0px 15px;
    }

    .section-header {
        padding: 0px 15px;
    }

    .section-footer {
        padding: 20px 15px 20px 15px;
    }

    .section-aligne {
        padding: 20px 15px 20px 15px;
    }

    .section-custom {
        padding: 20px 15px 20px 15px;
    }
}

/**************************** ZONE DE TEST ****************************/

body {
    --colonnes: 12;
    --gouttiere: 16px;
    --conteneur-site: 1200px;
    --largeur-colonne: calc((var(--conteneur-site) - (var(--gouttiere) * (var(--colonnes) - 1))) / var(--colonnes));
}

body::before {
    content: "";
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: var(--conteneur-site);
    height: 100%;
    background-image: repeating-linear-gradient(
    to right,
    rgba(204, 204, 204, 0.1),
    rgba(204, 204, 204, 0.1) calc(var(--largeur-colonne) + 0px),
    transparent calc(var(--largeur-colonne) + 0px),
    transparent calc(var(--largeur-colonne) + var(--gouttiere) + 0px)
    );
    pointer-events: none;
    z-index: 9999999999;
}