/*********************************
			 FONTS
*********************************/
@font-face {
    font-family: 'Science Gothic';
    src: url('/design/fonts/ScienceGothic-Regular.eot');
    src: url('/design/fonts/ScienceGothic-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/ScienceGothic-Regular.woff2') format('woff2'),
    url('/design/fonts/ScienceGothic-Regular.woff') format('woff'),
    url('/design/fonts/ScienceGothic-Regular.ttf') format('truetype'),
    url('/design/fonts/ScienceGothic-Regular.svg#ScienceGothic-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Science Gothic';
    src: url('/design/fonts/ScienceGothic-Light.eot');
    src: url('/design/fonts/ScienceGothic-Light.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/ScienceGothic-Light.woff2') format('woff2'),
    url('/design/fonts/ScienceGothic-Light.woff') format('woff'),
    url('/design/fonts/ScienceGothic-Light.ttf') format('truetype'),
    url('/design/fonts/ScienceGothic-Light.svg#ScienceGothic-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('/design/fonts/Inter18pt-Regular.eot');
    src: url('/design/fonts/Inter18pt-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Inter18pt-Regular.woff2') format('woff2'),
    url('/design/fonts/Inter18pt-Regular.woff') format('woff'),
    url('/design/fonts/Inter18pt-Regular.ttf') format('truetype'),
    url('/design/fonts/Inter18pt-Regular.svg#Inter18pt-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('/design/fonts/Inter18pt-Bold.eot');
    src: url('/design/fonts/Inter18pt-Bold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Inter18pt-Bold.woff2') format('woff2'),
    url('/design/fonts/Inter18pt-Bold.woff') format('woff'),
    url('/design/fonts/Inter18pt-Bold.ttf') format('truetype'),
    url('/design/fonts/Inter18pt-Bold.svg#Inter18pt-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('/design/fonts/Inter18pt-Italic.eot');
    src: url('/design/fonts/Inter18pt-Italic.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Inter18pt-Italic.woff2') format('woff2'),
    url('/design/fonts/Inter18pt-Italic.woff') format('woff'),
    url('/design/fonts/Inter18pt-Italic.ttf') format('truetype'),
    url('/design/fonts/Inter18pt-Italic.svg#Inter18pt-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}





/*********************************
		CLASSES GLOBALES
*********************************/

:root {
    /******	  DEFAULT CONTENT STRUCTURE	******/
    --full-section-max: 1630px;
    --section-max: 1400px;
    --center: auto;
    --padding : clamp(80px, calc(65.185px + 4.63vw), 130px) clamp(15px, calc(13.519px + 0.463vw), 20px);
    --min-column-gap : clamp(10px, calc(8.519px + 0.463vw), 15px);
    --column-gap : clamp(16px, calc(14.815px + 0.37vw), 20px);
    --row-gap : clamp(20px, calc(17.037px + 0.926vw), 30px);
    --medium-gap : clamp(20px, calc(9.63px + 3.241vw), 55px);
    --large-gap : clamp(20px, calc(5.185px + 4.63vw), 70px);

    /******	  COULEURS	******/
    --color-text: #222222;
    --color-text-opacity: rgba(0, 0, 0, 0.5);
    --color-primary: #86B43D;
    --color-secondary: #EBEBEB;
    --color-white: #FFFFFF;

    /******	  FONT WEIGHT	******/
    --font-light: 300;
    --font-regular: normal;
    --font-bold: bold;

    /******	  FONT AND TYPOGRAPHY	******/
    --body-font: "Inter 18pt", sans-serif;
    --normal-font-size: 1rem;
    --title-font: "Science Gothic", sans-serif;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/******	  STRUCTURE PAGE	******/
html {
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    font-size: 90%;
    scroll-behavior: smooth;
}
body {
    background-size: cover; /* version standardisée */
    font-size: var(--normal-font-size);
    font-family: var(--body-font);
    font-weight: var(--font-regular);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: var(--color-text);
    overflow: hidden;
    content: "1";
    line-height: 1.5;
}

.tablette, .mobile {
    display: none;
}

/******	  TITRES	******/
h1, h2, h3, h4,
.like-h1, .like-h2, .like-h3 {
    padding: 0;
    margin:0;
    line-height: 1.1;
    text-decoration: none;
    font-weight: var(--font-regular);
    font-family: var(--title-font);
}
h1, .like-h1 {
    position: relative;
    color: var(--color-white);
    font-size: clamp(1.438rem, calc(1.215rem + 1.111vw), 2.188rem) /* 23px - 35px */;
    margin:auto;
    text-transform: uppercase;
}
h2, .like-h2 {
    font-size: clamp(1.3rem, calc(1.308rem + 0.648vw), 1.875rem) /* 23px - 35px */;
    color: var(--color-text);
    text-transform: uppercase;
}
h3, .like-h3 {
    font-size: clamp(1.000rem, calc(0.963rem + 0.185vw), 1.125rem) /* 16px - 18px */;
    color: var(--color-text);
}

/****** SURTITRES *****/
.surtitre {
    display: inline-block;
    align-items: center;
    font-family: var(--title-font);
    font-weight: var(--font-light);
    font-size: clamp(1.125rem, calc(1.088rem + 0.185vw), 1.250rem);
    line-height: 1;
    padding-bottom: 8px;
}

/* Green / Black */
.surtitre-gb {
    color: var(--color-text);
}
.surtitre-gb:before {
    content: url("/design/img/before_g.svg");
    margin-right: 0.25rem;
}
/* White / Green */
.surtitre-wg {
    color: var(--color-white);
}
.surtitre-wg:before {
    content: url("/design/img/before_wg.svg");
    margin-right: 0.25rem;
}
/* White */
.surtitre-w {
    color: var(--color-white);
}
.surtitre-w:before {
    content: url("/design/img/before_w.svg");
    margin-right: 0.25rem;
}


/******	  TEXTES	******/
p, table {
    color: var(--color-text-opacity);
    font-size: var(--normal-font-size);
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
a {
    outline: none;
    color: var(--color-primary);
    text-decoration: none;
}
em, i /* pour marquer un texte sur lequel on veut insister */ {
    font-size: var(--normal-font-size);
    text-decoration: none;
    padding: 0;
    color: var(--color-text);
    margin: 0;
    display: inline;
}
strong {
    font-weight: var(--font-bold);
}

/******	  LISTES	******/
ul, ul li {
    list-style-type:none;
    padding: 0;
    margin: 0;
}
#tinymce ul,
#tinymce ul li {
    list-style-type: initial;
    margin: 0 0 0 15px;
}
#tinymce ol,
#tinymce ol li {
    margin: 0 0 0 15px;
}

em {
    color: var(--color-text-opacity);
}

/******	  IMAGES	******/
img, iframe {
    border: none;
    max-width: 100%;
}
.image_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.background_cover {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background_parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/******	  ANIMATIONS	******/
.effect_hover {
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

/******	  CTA GENERAL	******/
.btn_cta_general{
    position: relative;
    border: none;
    display: block;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    text-align: center;
    width: fit-content;
}
.btn_cta_general::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    transform: skewX(16deg);
    z-index: 0;
    transition: transform 0.5s ease 0s;
    -moz-transition: transform 0.5s ease 0s;
    -webkit-transition: transform 0.5s ease 0s;
}
.btn_cta_general a {
    display: block;
    padding: clamp(0.813em, calc(0.738em + 0.37vw), 1.063em) clamp(1.875em, calc(1.597em + 1.389vw), 2.813em);
    font-family: var(--title-font);
    font-weight: var(--font-light);
    position: relative;
    z-index: 1;
    font-size: var(--normal-font-size);
    text-transform: uppercase;
    color: var(--color-white);
}
.btn_cta_general:hover a,
.btn_cta_general a:hover{
    text-decoration: none;
}
.btn_cta_general:hover:before {
    transform: skewX(0deg);
    transition: transform 0.5s ease 0s;
    -moz-transition: transform 0.5s ease 0s;
    -webkit-transition: transform 0.5s ease 0s;
}
.btn_cta_center {
    margin: var(--center);
}


/******	  CTA SECONDARY	******/
.btn_cta_secondary::before {
    background: transparent;
    border: 1px solid var(--color-primary);
}
.btn_cta_secondary a,
.btn_cta_secondary span {
    color: var(--color-primary);
}



/******	  SLIDERS	******/
.splide__track {
    height: 100%;
}
.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*********************************
		CUSTOM SCROLLBAR
*********************************/

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-white);
}
/* Chrome, Edge and Safari */
html::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}
html::-webkit-scrollbar-track {
    border-radius: 20px;
    background-color: var(--color-white);
}
html::-webkit-scrollbar-track:hover {
    background-color: var(--color-white);
}
html::-webkit-scrollbar-track:active {
    background-color: var(--color-white);
}
html::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: var(--color-primary);
}
html::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-primary);
}
html::-webkit-scrollbar-thumb:active {
    background-color: var(--color-primary);
}


/*********************************
		 SCROLL TO TOP
*********************************/
.scrollToTop {
    display: none;
    overflow: hidden;
    margin: 1%;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background: url("/design/img/nav-arrow-down.svg") no-repeat center center;
    padding:10px;
    cursor: pointer;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10000;
    background-color: var(--color-primary);
    transform: rotate(180deg);
}

/*********************************
		 MESSAGE COOKIES
*********************************/
/* Bouton ACCEPTER */
body .termsfeed-com---palette-light .cc-nb-okagree {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    font-size: 14px !important;
}
/* Bouton REFUSER */
body .termsfeed-com---palette-light .cc-nb-reject {
    background-color: var(--color-text); /* rouge */
    color: #fff;
    border: none;
    font-size: 14px !important;
}
body .termsfeed-com---palette-light .cc-cp-foot-save {
    background-color: var(--color-primary); /* rouge */
    color: #fff;
    border: none;
    font-size: 14px !important;
}
#open_preferences_center {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--color-primary); /* bleu par défaut */
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: sans-serif;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0.5; /* moitié visible */
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    white-space: nowrap; /* pas de retour à la ligne */
    user-select: none;
    z-index: 9999;
    line-height: 1;
    height: 55px;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px !important;
}

#open_preferences_center:hover,
#open_preferences_center:focus {
    opacity: 1; /* totalement visible au survol */
    transform: translateY(-5px); /* petit effet de levée */
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}
.termsfeed-com---nb .cc-nb-text {
    font-size: 14px !important;
    line-height: 1.2;
}
.termsfeed-com---palette-light .cc-nb-title {
    line-height: 1.1;
    font-size: 16px !important;
}



/*********************************
		 BANDEAU MESSAGE
*********************************/
.top_banner {
    color: var(--color-white);
    text-align: center;
    background-color: var(--color-text);
    padding: 10px;
    font-family: var(--body-font);
}

.top_banner p {
    font-weight: var(--font-regular);
    font-size: 0.875rem /* 14px */;
}


/*********************************
		   HEADER WHITE
*********************************/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-text);
    z-index: 9999;
}

/******	  NAV	 ******/
.nav {
    height: 4rem;
    padding: 0 0 0 clamp(15px, calc(13.519px + 0.463vw), 20px);
}
.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
}
.nav__toggle {
    position: relative;
    width: 22px;
    height: 32px;
}
.nav__logo img {
    max-height: 4.5rem;
    width: auto;
    object-fit: contain;
}

/******	  BTN CONTACT NAV	 ******/
.contact_link_nav {
    height: 100%;
    position: relative;
    /*clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);*/
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.contact_link_nav:before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    transform: skewX(12deg);
    z-index: 0;
    right: -12px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.contact_link_nav .nav__link {
    height: 100%;
    padding: 0 clamp(30px, calc(25.556px + 1.389vw), 45px) 0 clamp(40px, calc(35.556px + 1.389vw), 55px);
    background: transparent;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.contact_link_nav:hover:before {
    transform: skewX(0deg);
    right: 0;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.contact_link_nav .nav__link:hover:after {
    content: "";
    display: none;
}


/******	  FIRST NAV LINKS	 ******/
.nav__link {
    color: var(--color-white);
    background-color: transparent;
    font-weight: var(--font-light);
    text-transform: uppercase;
    font-family: var(--title-font);
    padding: 1.25rem 30px;
    font-size: var(--normal-font-size);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    position: relative;
}
.nav__link:hover:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    position: absolute;
    bottom: -8px;
}

/******	  DROPDOWN	 ******/
.dropdown__item {
    cursor: pointer;
}
.dropdown__arrow {
    transition: transform .4s;
    margin-left: 5px;
}
.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    background-color: var(--color-text);
    display: flex;
    align-items: center;
    column-gap: .5rem;
    transition: background-color .3s;
    color: var(--color-white);
}
.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--color-primary);
}
.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}
/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
    max-height: 1000px;
    transition: max-height .4s ease-in;
}
/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

/******	  DROPDOWN SUBMENU	 ******/
.nav-more {
    margin-left: auto;
}
.dropdown__sublink {
    background-color: var(--color-white);
}


    /*********************************
                FIL ARIANE
    *********************************/
.fil_ariane {
    max-width: 100%;
    text-align: center;
}
.fil_ariane_content {
    display: inline;
    text-align: center;
}
.fil_ariane span,
.fil_ariane a,
.fil_ariane p {
    color: var(--color-white);
    text-transform: capitalize;
    font-size: 1rem;
}
.fil_ariane a:hover {
    color: var(--color-primary);
}
.fil_ariane .current_retour {
    display:none;
}
.fil_ariane.surtitre-gb span,
.fil_ariane.surtitre-gb a,
.fil_ariane.surtitre-gb p {
    color: var(--color-text);
}


/*********************************
		 HEADING SLIDER
*********************************/
#heading-slider {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
#heading-slider .splide__track {
    height: 100%;
}
#heading-slider .splide__slide .caption {
    position: absolute;
    width:100%;
    top:50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding: 18px 30px;
    color:#ffffff;
    text-align: center;
}
.caption_titre{
    font-size: 40px;
    font-family:'Mukta Vaani', sans-serif;
    font-weight: 700;
}
.caption_phrase_accroche{
    font-size:27px;
    font-family:'Mukta Vaani', sans-serif;
    font-style: italic;
    margin-bottom: 50px;
    position:relative;
}
.btn_slider{
    display:inline-block;
    padding: 8px 20px;
    background-color: #a3d8c3;
    font-size: 27px;
    text-transform: uppercase;
    font-weight:700;
}
.btn_slider:hover{
    background-color: #96c6b3;
}
.slide .caption a{
    color:#ffffff;
}

/******	  ARROW	 ******/
.splide__arrow {
    border-radius: unset !important;
}
.splide__arrow svg {
    display: none;
}
.splide .splide__arrow {
    width: clamp(45px, calc(37.593px + 2.315vw), 70px) !important;
    height: clamp(35px, calc(30.556px + 1.389vw), 50px) !important;
}
.splide .custom-arrow-prev {
    background: url("/design/img/prev.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.splide .custom-arrow-next {
    background: url("/design/img/next.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/******	  ARROW	BOTTOM CENTER ******/
/******	  ARROW TOP RIGHT	 ******/
/******	  ARROW BOTTOM RIGHT	 ******/

.bottom-center-arrow .splide__arrows,
.top-right-arrow .splide__arrows,
.bottom-right-arrow .splide__arrows,
.bottom-left-arrow .splide__arrows {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}
.bottom-center-arrow .custom-arrow-prev,
.top-right-arrow .custom-arrow-prev,
.bottom-right-arrow .custom-arrow-prev,
.bottom-left-arrow .custom-arrow-prev {
    left: auto;
    right: 60px;
}
.bottom-center-arrow .splide__arrow,
.top-right-arrow .splide__arrow,
.bottom-right-arrow .splide__arrow,
.bottom-left-arrow .splide__arrow {
    position: unset !important;
    transform: unset !important;
}

/******	  ARROW	BOTTOM CENTER ******/
.bottom-center-arrow .splide__arrows {
    left: 50%;
    transform: translateX(-50%);
    bottom: clamp(-80px, calc(-54.074px - 1.852vw), -60px);
}

/******	  ARROW TOP RIGHT	 ******/
.top-right-arrow .splide__arrows {
    right: 15px;
    top: -90px;
}

/******	  ARROW BOTTOM RIGHT	 ******/
.bottom-right-arrow .splide__arrows {
    right: 15px;
    bottom: -80px;
}

/******	  ARROW BOTTOM LEFT	 ******/
.bottom-left-arrow .splide__arrows {
    left: 0;
    bottom: clamp(-80px, calc(-54.074px - 1.852vw), -60px);
}

/******	  ARROW	MIDDLE CENTER ******/
.center-middle-arrow .splide__arrow--next {
    right: -1em;
}
.center-middle-arrow .splide__arrow--prev {
    left: -1em;
}


/*********************************
		     HOMEPAGE
*********************************/
.no-title {
    font-size: 0;
    visibility: hidden;
    line-height: 0;
}

/******	  HERO	 ******/
.hero_home_wrapper {
    max-height: 1080px;
    height: 100svh;
    width: 100%;
    max-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}
.hero_home__inner {
    flex: 1;
    min-height: 0;
    position: relative;
}
.hero_asset {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("/design/img/hero_asset.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    height: 100%;
    width: 100%;
}
.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background: #222222;
    background: linear-gradient(90deg, rgba(34, 34, 34, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    height: 100%;
}
.hero_home_content {
    max-width: var(--full-section-max);
    padding: 0 clamp(15px, calc(13.519px + 0.463vw), 20px);
    width: 100%;
    position: absolute;
    z-index: 5;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
}
.hero_home__inner_content {
    display: flex;
    flex-direction: column;
    max-width: 80ch;
}
.hero_home_title {
    font-size: clamp(1.750rem, calc(1.250rem + 2.5vw), 3.438rem);
    margin: 0;
}
.hero_home__desc {
    max-width: 60ch;
    display: block;
    padding: clamp(16px, calc(14.815px + 0.37vw), 20px) 0 clamp(20px, calc(9.63px + 3.241vw), 55px);
    font-size: clamp(1.000rem, calc(0.963rem + 0.185vw), 1.125rem);
}


/*** REASSURANCES ***/
.hero_home__reassurances {
    flex-shrink: 0;
    background-color: var(--color-primary);
    padding: 10px clamp(15px, calc(13.519px + 0.463vw), 20px);
}
.hero_home__reassurances_content {
    max-width: var(--full-section-max);
    margin: var(--center);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: var(--large-gap);
}
.hero_home__reassurances_item {
    font-size: 0.815rem;
    font-family: var(--title-font);
    text-transform: uppercase;
    font-weight: var(--font-light);
    color: var(--color-white);
    line-height: 1;
    white-space: nowrap;
}
.hero_home__reassurances_sep {
    line-height: 0;
}
.hero_home__reassurances_sep:last-of-type {
    display: none;
}

/*****************************
    MODE MARQUEE
*****************************/
.hero_home__reassurances.is-marquee .hero_home__reassurances_content {
    width: max-content;
    max-width: none;
    margin: 0;
    justify-content: flex-start;
    animation: reassurance-marquee 20s linear infinite;
}

@keyframes reassurance-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/*** ABOUT ***/
.about {
    background-color: var(--color-secondary);
    padding: clamp(80px, calc(65.185px + 4.63vw), 130px) clamp(15px, calc(13.519px + 0.463vw), 20px) clamp(160px, calc(130.37px + 9.259vw), 260px);
    background-image: url("/design/img/border_asset.svg");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: auto;
}
.about-content {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--medium-gap);
}
.about-desc * {
    color: var(--color-text);
}
.about-left {
    max-width: 65ch;
}
.about-right {
    padding-top: var(--medium-gap);
    max-width: 55ch;
    display: flex;
    flex-direction: column;
    gap: var(--row-gap);
}

/******	  EXPERTISES	 ******/
.quick-access {
    padding: 0 clamp(15px, calc(13.519px + 0.463vw), 20px);
    margin-top: clamp(-130px, calc(-65.185px - 4.63vw), -80px);
}
.quick-access__container {
    clip-path: polygon(clamp(25px, calc(17.593px + 2.315vw), 50px) 0, 100% 0, 100% 100%, 0 100%, 0 clamp(25px, calc(17.593px + 2.315vw), 50px));
    background-color: var(--color-text);
    max-width: var(--section-max);
    margin: var(--center);
}
.quick-access__slider{
    position:relative;
    overflow:hidden;
    transition:height .5s ease;
}

.quick-access__track{
    transition:transform .5s ease;
}

.quick-access__item {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
}
.quick-access__left {
    padding: clamp(50px, calc(35.185px + 4.63vw), 100px) clamp(20px, calc(2.222px + 5.556vw), 80px);
}
.quick-access__titre {
    color: var(--color-white);
}
.quick-access_desc {
    color: var(--color-white);
    opacity: 0.5;
    display: block;
    padding: var(--row-gap) 0;
}
.quick-access_desc * {
    color: var(--color-white);
}
.quick-access__right {
    position: relative;
}
.quick-access__img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/******** PAGINATION ********/
.quick-access__pagination{
    position:absolute;
    right:40px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:10;
}
.quick-access__dot{
    width:14px;
    height:14px;
    background: rgba(34, 34, 34, 0.7);
    border: none;
    cursor:pointer;
    transition:.3s;
}
.quick-access__dot.active{
    background: var(--color-primary);
}
.quick-access__track{
    display: block;
    will-change: transform;
}
.quick-access__slider{
    will-change:height;
    overflow: hidden;
    position: relative;
}


/******	  Réalisations	 ******/
.slider-extended {
    position: relative;
    padding: clamp(80px, calc(65.185px + 4.63vw), 130px) 0 calc(
            clamp(80px, calc(65.185px + 4.63vw), 130px)
            + clamp(25px, calc(17.593px + 2.315vw), 50px)
            + clamp(60px, calc(54.074px + 1.852vw), 80px)
    );
}
.slider-extended__header {
    padding: 0 clamp(15px, calc(13.519px + 0.463vw), 20px) var(--medium-gap);
}
.slider-extended__inner_header {
    max-width: var(--section-max);
    margin: var(--center);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--medium-gap);
    flex-wrap: wrap;
}
.slider-entended__left {
    max-width: 60ch;
}
.slider-extended__intro {
    max-width: 55ch;
    color: var(--color-text-opacity);
}
#slider-extended .splide__list {
    align-items: stretch;
}
.slider-extended__item {
    height: 100%;
}
.slider-extended__meta {
    width: 100%;
    padding-top: var(--min-column-gap);
}
.slider-extended__carousel-wrapper {
    margin-left: calc((100% - min(100%, 97rem)) / 2);
    padding: 0 0 0 clamp(15px, calc(13.519px + 0.463vw), 20px);
}
.slider-extended__img_wrapper {
    height: clamp(250px, calc(215.926px + 10.648vw), 365px);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    overflow: hidden;
}
.slider-extended__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slider-extended__item:hover .slider-extended__img_wrapper {
    clip-path: polygon(clamp(25px, calc(17.593px + 2.315vw), 50px) 0, 100% 0, 100% 100%, 0 100%, 0 clamp(25px, calc(17.593px + 2.315vw), 50px));
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.slider-extended__overlay {
    background-color: rgba(34, 34, 34, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    visibility: hidden;
    pointer-events: none;
}
.slider-extended__btn {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
}
.slider-extended__btn::before {
    border-color: var(--color-white);
}
.slider-extended__btn span {
    color: var(--color-white);
    padding: clamp(0.813em, calc(0.738em + 0.37vw), 1.063em) clamp(1.250em, calc(0.880em + 1.852vw), 2.500em);
    display: block;
    font-family: var(--title-font);
    text-transform: uppercase;
    font-weight: var(--font-light);
}
.slider-extended__btn span:before,
.slider-extended__btn a:before {
    content: url("/design/img/more.svg");
    margin-right: 7px;
}
.slider-extended__name {
    font-family: var(--title-font);
    color: var(--color-text);
    display: flex;
    align-items: center;
    line-height: 1;
    opacity: 0.5;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.slider-extended__name:after {
    content: url("/design/img/next-arrow.svg");
    margin-left: 13px;
    line-height: 0;
    opacity: 0.5;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.slider-extended__item:hover .slider-extended__name,
.slider-extended__item:hover .slider-extended__name:after {
    opacity: 1;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.slider-extended__item:hover .slider-extended__overlay,
.slider-extended__item:hover .slider-extended__btn {
    visibility: visible;
}
.slider-extended__item:hover .slider-extended__btn::before {
    transform: skewX(0deg);
}


/******	 AVIS	 ******/
.avis {
    background-color: var(--color-text);
    padding: clamp(80px, calc(65.185px + 4.63vw), 130px) clamp(15px, calc(13.519px + 0.463vw), 20px);
    background-image: url("/design/img/border_w_asset.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right bottom;
    margin-right: clamp(15px, calc(13.519px + 0.463vw), 20px);
}
.avis-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.avis-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--medium-gap);
    flex-wrap: wrap;
    padding-bottom: var(--medium-gap);
}
.avis-header__titre {
    color: var(--color-white);
}
.avis-header__left {
    max-width: 60ch;
}


/******	  PARTENAIRES	 ******/
.partenaires-wrapper {
    background: #222222;
    background: linear-gradient(180deg, rgba(34, 34, 34, 1) 0%, rgba(34, 34, 34, 1) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
    position: relative;
    z-index: 2;
}
.partenaires-inner {
    margin-left: clamp(15px, calc(13.519px + 0.463vw), 20px);
    /*margin-top: -120px;*/
    padding: clamp(30px, calc(24.074px + 1.852vw), 50px) clamp(15px, calc(13.519px + 0.463vw), 20px);
    background-color: var(--color-secondary);
    background-image: url("/design/img/border_asset.svg");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right top;
}
.partenaires-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.partenaires-titre {
    justify-content: flex-end;
    padding-bottom: var(--row-gap);
}
.un-partenaire img {
    max-width: 200px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(1);
}


/******	  FULL BG HOME	 ******/
.home-bg {
    position: relative;
    z-index: 1;
    margin-top: -114px;
}
.home-bg__img {
    width: 100%;
    min-height: 500px;
    max-height: 815px;
    height: auto;
    object-fit: cover;
    object-position: center;
}


/****** ACTUALITES ******/
.actus_home {
    padding: var(--padding);
}
.actus_home_content {
    max-width: var(--section-max);
    margin: var(--center);
}
.actus_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: var(--medium-gap);
    padding-bottom: clamp(40px, calc(35.556px + 1.389vw), 55px);
}
.actus_left {
    max-width: 65ch;
}
.actus_list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: var(--column-gap);
}
.actus_item {
    height: 100%;
    box-shadow: 0 3px 50px rgba(0, 0, 0, 0.07);
    background-color: transparent;
}
.actus_meta {
    width: 100%;
    background-color: var(--color-white);
    padding: clamp(20px, calc(17.037px + 0.926vw), 30px) clamp(20px, calc(17.037px + 0.926vw), 30px) clamp(20px, calc(11.111px + 2.778vw), 50px);
}
.actus_img__wrapper {
    height: clamp(200px, calc(182.222px + 5.556vw), 260px);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    overflow: hidden;
}
.actus_img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.actus_item:hover .actus_img__wrapper {
    clip-path: polygon(clamp(25px, calc(17.593px + 2.315vw), 50px) 0, 100% 0, 100% 100%, 0 100%, 0 clamp(25px, calc(17.593px + 2.315vw), 50px));
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.actus_overlay {
    background-color: rgba(34, 34, 34, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    visibility: hidden;
    pointer-events: none;
}
.actus_btn {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
}
.actus_btn::before {
    border-color: var(--color-white);
}
.actus_btn span {
    color: var(--color-white);
    padding: clamp(0.813em, calc(0.738em + 0.37vw), 1.063em) clamp(1.250em, calc(0.880em + 1.852vw), 2.500em);
    font-family: var(--title-font);
    text-transform: uppercase;
    font-weight: var(--font-light);
    display: block;
}
.actus_btn span:before {
    content: url("/design/img/more.svg");
    margin-right: 7px;
}
.actus_name {
    font-family: var(--title-font);
    color: var(--color-text-opacity);
    display: flex;
    align-items: center;
    line-height: 1;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.actus_item:hover .actus_overlay,
.actus_item:hover .actus_btn {
    visibility: visible;
}
.actus_item:hover .actus_btn::before {
    transform: skewX(0deg);
}
.actus_cat {
    display: block;
    background-color: var(--color-secondary);
    color: var(--color-text);
    font-weight: var(--font-bold);
    font-size: 0.815rem;
    line-height: 1;
    padding: 8px 12px;
    width: fit-content;
    margin-bottom: var(--column-gap);
}
.actus_item:hover .actus_name {
    color: var(--color-primary);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}









/*********************************
		     FOOTER
*********************************/

/***** CONTACT FOOTER ******/
.contact-footer {
    padding: 0 clamp(15px, calc(13.519px + 0.463vw), 20px);
    background: #FFF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 60%, rgba(34, 34, 34, 1) 60%, rgba(34, 34, 34, 1) 100%);
}
.contact-footer__content {
    background-color: var(--color-primary);
    overflow: hidden;
    position: relative;
    padding: clamp(30px, calc(15.185px + 4.63vw), 80px);
    clip-path: polygon(clamp(25px, calc(17.593px + 2.315vw), 50px) 0, 100% 0, 100% 100%, 0 100%, 0 clamp(25px, calc(17.593px + 2.315vw), 50px));
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
/*.contact-footer__content:hover {*/
/*    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);*/
/*    transition: all 0.5s ease 0s;*/
/*    -moz-transition: all 0.5s ease 0s;*/
/*    -webkit-transition: all 0.5s ease 0s;*/
/*}*/
.contact-footer__inner {
    position: relative;
    z-index: 2;
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--medium-gap);
}
.contact-footer__content:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("/design/img/footer_asset.png");
    opacity: 0.1;
    background-position: center right;
    background-repeat: repeat-x;
    background-size: auto;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.contact-footer__left {
    max-width: 50ch;
    color: var(--color-white);
}
.contact-footer__titre {
    color: var(--color-white);
    display: block;
    padding-bottom: var(--row-gap);
}
.contact-footer__btn::before {
    background: var(--color-white);
}
.contact-footer__btn a {
    color: var(--color-text);
}
.contact-footer__btn:hover a {
    color: var(--color-text);
}



/******	  PARTIE SUPERIEURE	 ******/
.footer_top_wrapper {
    background-color: var(--color-text);
    padding: clamp(45px, calc(34.63px + 3.241vw), 80px) clamp(15px, calc(13.519px + 0.463vw), 20px);
}
.footer_top_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
}
.footer_links {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    column-gap: var(--large-gap);
}
footer a,
footer p,
footer span {
    color: var(--color-white);
}
footer a:hover {
    color: var(--color-primary);
}
footer ul {
    margin: 0;
}
footer li {
    display: flex;
    align-items: center;
}
footer .toggleTitre {
    color: var(--color-primary);
    font-weight: var(--font-regular);
    font-family: var(--title-font);
    font-size: 1.125rem;
    margin-bottom: 20px;
}
footer .toggleTitre {
    pointer-events: none;
}
footer .toggleTexte {
    margin-top: var(--column-gap);
}
footer .footer_contact .toggleTexte li {
    padding-bottom: var(--min-column-gap);
}
.footer_toggle_picto {
    margin-right: 13px;
    /*width: 25px;*/
    height: auto;
    object-fit: contain;
}
.footer_rs {
    margin-top: 15px;
}
.footer_rs .toggleTexte {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;

}

/******	  PARTIE INFERIEURE	 ******/
.footer_bottom_wrapper {
    border-top: 1px solid #707070;
    background-color: var(--color-text);
    padding: 15px clamp(15px, calc(13.519px + 0.463vw), 20px);
}
.footer_bottom_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--column-gap);
    max-width: var(--section-max);
    margin: var(--center);
}
.footer_bottom {
    color: var(--color-text);
    font-size: 0.813rem;
}
.footer_bottom a,
.footer_bottom p,
.footer_bottom span {
    color: #707070;
}
.footer_bottom a:hover {
    color: var(--color-primary);
}


/*********************************
		    ACTUALITES
*********************************/
.actus_wrapper {
    padding:  clamp(80px, calc(65.185px + 4.63vw), 130px) clamp(15px, calc(13.519px + 0.463vw), 20px) clamp(20px, calc(9.63px + 3.241vw), 55px);
}
.actus_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: var(--column-gap);
    row-gap: var(--row-gap);
    align-items: flex-start;
}
.no-result {
    max-width: var(--section-max);
    margin: var(--center);
}


/*********************************
		   UNE ACTUALITE
*********************************/
.une-actu--slider {
    background-color: var(--color-secondary);
}
.une-actu--slider .hero_overlay {
    display: none;
}
.une-actu--slider h1 {
    color: var(--color-text);
}
.une-actu--slider .hero_asset {
    background-image: url("/design/img/border_asset_rotate.svg");
    background-size: auto;
}


/****** ARCHIVES ******/
.archivesActus_wrapper {
    padding: clamp(80px, calc(65.185px + 4.63vw), 130px) 0 calc(
            clamp(80px, calc(65.185px + 4.63vw), 100px)
            + clamp(25px, calc(17.593px + 2.315vw), 50px)
            + clamp(60px, calc(54.074px + 1.852vw), 80px)
    );
    background-color: var(--color-secondary);
}
.archivesActus_content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: center;
}
.archivesActus_left {
    max-width: 720px;
    width: 100%;
    place-self: center end;
    padding: 0 var(--large-gap) 0 clamp(15px, calc(13.519px + 0.463vw), 20px);
}
.archivesActus_title {
    display: block;
    padding-bottom: var(--row-gap);
}
.hasArchives {
    background: var(--color-secondary);
    background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-secondary) 60%, rgba(34, 34, 34, 1) 60%, rgba(34, 34, 34, 1) 100%);
}
.archivesActus_wrapper .actus_item {
    box-shadow: none;
}



/*********************************
		    PAGINATION
*********************************/
.paginationCMS{
    text-align: center;
    padding: 0 clamp(15px, calc(13.519px + 0.463vw), 20px) clamp(80px, calc(65.185px + 4.63vw), 130px);
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.paginationCMS a, .paginationCMS span{
    margin: 10px;
    font-size:1rem;
    color: var(--color-text-opacity);
    font-family: var(--title-font);
}
.paginationCMS .pageCourante{
    font-weight: var(--font-regular);
    padding: 5px 18px;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    width: 15px;
    display: flex;
    text-align: center;
    justify-content: center;
}


/*********************************
		 PAGES DYNAMIQUES
*********************************/

/******	  HERO	 ******/
.slider_top_wrapper {
    max-height: 550px;
    height: 100svh;
    width: 100%;
    max-width: 100%;
    position: relative;
}
.slider_top_wrapper .hero_home__inner_content {
    align-items: center;
    margin: var(--center);
}
.slider_top_wrapper h1 {
    text-align: center;
}



/******	  PARAGRAPHES	 ******/
.page_dynamique_content {
    display: block;
    margin: var(--center);
    padding: 0;
    width: auto;
    position: relative;
    box-sizing: border-box;
}

/******	  PARAGRAPHES	 ******/
.wrapper-textChamp {
    padding: clamp(80px, calc(65.185px + 4.63vw), 130px) 0 0;
    display: flex;
    flex-direction: column;
}
.text_champ ul,
.text_champ ul li {
    font-size: var(--normal-font-size);
    position:relative;
    margin-left: var(--column-gap);
    list-style-type:initial;
    color: var(--color-text-opacity);
}
.text_champ a:hover {
    text-decoration: underline;
}
.text_champ .btn_cta_secondary a:hover,
.text_champ .btn_cta_general a:hover {
    text-decoration: none;
}
.text_champ .btn_cta_general a span {
    color: var(--color-white) !important;
}
.text_champ .btn_cta_secondary a span {
    color: var(--color-primary) !important;
}
.text_champ p strong,
.text_champ p strong a {
    font-weight: var(--font-bold);
}
.text_champ img.imgTinyMceGauche, #tinymce img.imgTinyMceGauche{
    float: left;
    margin-right: 15px;
}
.text_champ img.imgTinyMceDroite, #tinymce img.imgTinyMceDroite{
    float: right;
    margin-left: 15px;
}
.text__wrapper:nth-child(2).dark-theme {
    margin: 0 20px clamp(80px, calc(65.185px + 4.63vw), 130px);
    background-color: var(--color-text);
    padding: var(--padding);
}


/*	  PARAGRAPHES DEROULANTS	*/
.paragraphe_deroulant__wrapper {
    padding: 0 var(--min-column-gap);
}
.paragraphe_deroulant {
    max-width: var(--section-max);
    margin: var(--center);
    width: 100%;
}
.toggleWrapper .toggleTitre {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: var(--column-gap) var(--large-gap);
    font-weight: var(--font-regular);
    font-size: 1.125rem;
    color: var(--color-text-opacity);
    background-color: var(--color-secondary);
    line-height: 1;
    font-family: var(--title-font);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.toggleWrapper .toggleTitre:after {
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    content: url("/design/img/bottom-arrow.svg");
    display: flex;
    align-items: center;
}
.toggleWrapper .toggleTitre.active {
    clip-path: polygon(0 0, 98% 0, 100% 100%, 2% 100%);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    background-color: var(--color-text);
    color: var(--color-white);
}
.toggleWrapper .toggleTitre.active:after {
    content: url("/design/img/top-arrow.svg");
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.toggleWrapper .toggleTexte {
    padding: var(--row-gap) var(--large-gap);
    color: var(--color-text-opacity);
}
.toggleWrapper .toggleTexte p {
    color: var(--color-text-opacity);
}
.toggleWrapper .toggleTexte .text_champ {
    padding: 0;
}

/*	  TEXTE SIMPLE	*/
.text__wrapper {
    padding: 0 clamp(15px, calc(13.519px + 0.463vw), 20px) clamp(80px, calc(65.185px + 4.63vw), 130px);
}
.text_simple {
    max-width: var(--section-max);
    width: 100%;
    margin: var(--center);
}

/*	  TEXTE + IMAGES	*/
.text_img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--section-max);
    margin: var(--center);
    gap: clamp(20px, calc(17.037px + 0.926vw), 30px);
}
.text_champ .texte_pag_dyn,
.text_champ figure {
    display: inline-block;
}
.text_champ .texte_pag_dyn {
    width: 50%;
}
.text_champ figure {
    width: 40%;
}
.text_champ figure a {
    display: block;
}
.text_champ figure img {
    max-height: clamp(350px, calc(275.926px + 23.148vw), 600px);
    width: 100%;
    object-fit: contain;
}
.image_droite {
    margin: 0 0 0 clamp(15px, calc(13.519px + 0.463vw), 20px);
}
.image_gauche {
    margin: 0 clamp(15px, calc(13.519px + 0.463vw), 20px) 0 0;
}
.text_champ img.imgTinyMceGauche, #tinymce img.imgTinyMceGauche{
    float: left;
    margin-right: 15px;
}
.text_champ img.imgTinyMceDroite, #tinymce img.imgTinyMceDroite{
    float: right;
    margin-left: 15px;
}


/******	  CAROUSEL	 ******/
.carousel_wrapper {
    padding: 0 clamp(15px, calc(13.519px + 0.463vw), 20px)
    calc(clamp(80px, calc(65.185px + 4.63vw), 130px) + clamp(60px, calc(54.074px + 1.852vw),80px));
}
.carousel_content {
    max-width: var(--section-max);
    margin: var(--center);
}
.splide__pagination {
    bottom: -3em !important;
    left: unset !important;
}
.splide__pagination__page {
    background: var(--color-secondary) !important;
    width: 15px !important;
    border-radius: 50px !important;
    height: 6px !important;
}
.splide__pagination__page.is-active {
    background: var(--color-primary) !important;
    width: 50px !important;
    transform: scale(1.1) !important;
}
.wrapper__carousel_pageDyn .splide__list {
    align-items: center;
}
.wrapper__carousel_pageDyn img {
    max-height: 600px;
    height: auto;
    width: 100%;
    object-fit: contain;
}


    /*********************************
                 CONTACT
    *********************************/
.contact_wrapper {
    padding: var(--padding);
}
.contact_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: minmax(0,2fr) minmax(0,1fr);
    align-items: flex-start;
    gap: var(--medium-gap);
}
.texte_accroche{
    font-size: var(--normal-font-size);
    box-sizing: border-box;
}

/******	  FORMULAIRE	******/
#formulaire {
    margin: 0 auto var(--row-gap);
}
.champs_obligatoires{
    margin-top: var(--row-gap);
}
.content-formDemande {
    margin-top: var(--medium-gap);
}

/* CHAMPS FORMULAIRE */
textarea {
    resize: none;
}
.form-group{
    padding: 10px 0;
    margin-bottom: 25px;
}
.form-label {
    font-size: 1rem;
    color: var(--color-text);
    font-family: var(--title-font);
    margin: 0 0 10px 0;
    display: block;
    opacity: 1;
    -webkit-transition: .333s ease top, .333s ease opacity;
    transition: .333s ease top, .333s ease opacity;
}
.form-control {
    display: block;
    width: 100%;
    padding: 20px 0;
    font-size: 1rem;
    box-sizing: border-box;
    line-height: 1.4;
    color: var(--color-text);
    background-color: var(--color-white);
    background-image: none;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    border-radius: 0;
    border-color: var(--color-secondary);
    border-width: 0 0 3px 0;
    border-style: none none solid none;
    box-shadow: none;
    font-family: var(--body-font);
}
.form-control:focus,
input.filled,
textarea.filled {
    box-shadow: none;
    border-color: var(--color-primary);
}
.js-hide-label {
    opacity: 0;
}
.js-unhighlight-label {
    color: var(--color-text);
    font-family: var(--body-font);
}
::-webkit-input-placeholder {
    color: #666;
    opacity: 1;
    font-family: var(--body-font);
}
:-moz-placeholder { /* Firefox 18- */
    color: #666;
    opacity: 1;
    font-family: var(--body-font);
}
::-moz-placeholder {  /* Firefox 19+ */
    color: #666;
    opacity: 1;
    font-family: var(--body-font);
}
:-ms-input-placeholder {
    color: #666;
    opacity: 1;
    font-family: var(--body-font);
}
textarea {
    resize: none;
    min-height:160px;
}
.texte_ok_contact{
    background-color: var(--color-text);
    font-family: var(--body-font);
    color: var(--color-white);
    padding: 20px;
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: var(--font-regular);
    margin-top: var(--column-gap);
}

/* BTNS FORMULAIRE */
.wrapper-btnForm {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.wrapper-btnForm .btn_cta_general span {
    display: block;
    padding: clamp(0.813em, calc(0.738em + 0.37vw), 1.063em) clamp(1.875em, calc(1.597em + 1.389vw), 2.813em);
    font-family: var(--title-font);
    font-weight: var(--font-light);
    position: relative;
    z-index: 1;
    font-size: var(--normal-font-size);
    text-transform: uppercase;
    color: var(--color-white);
}


/******	  COORDONNEES	******/
.map {
    height: clamp(300px, calc(270.37px + 9.259vw), 400px);
    width: 100%;
    margin-bottom: var(--row-gap);
}
.map iframe{
    width:100%;
    height: 100%;
}
.titleContact {
    display: block;
    color: var(--color-primary);
}
.textContact {
    margin-top: var(--min-column-gap);
}
.textContact a {
    color: var(--color-text-opacity);
    transition: 0.5s;
}
.textContact a:hover {
    color: var(--color-primary);
    transition: 0.5s;
}
.textContact li {
    margin-bottom:  var(--min-column-gap);
    display: flex;
    align-items: center;
}
.textContact li img {
    margin-right: 10px;
}
.contactRs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--min-column-gap);
}
.contactRs li img {
    margin-right: 0;
}
.rs_contact_wrap {
    padding-top: var(--row-gap);
}


/*********************************
		 MENTIONS LEGALES
*********************************/
.mentions_wrapper {
    padding: var(--padding);
}
.mentions_content {
    max-width: var(--section-max);
    margin: var(--center);
}


/*********************************
		 PLAN DU SITE
*********************************/
.plan_site_wrapper {
    padding: var(--padding);
}
.plan_site_content {
    max-width: var(--section-max);
    margin: var(--center);
    text-align: center;
}
.plan_titre {
    padding-top: var(--row-gap);
    padding-bottom: 5px;
    color: var(--color-primary);
}
.plan_titre:first-of-type {
    padding-top: 0;
}
.plan_site_content a {
    color: var(--color-text);
}
.plan_site_content a:hover {
    color: var(--color-primary);
}


/*********************************
		  REALISATIONS
*********************************/
.reals_wrapper {
    padding:  0 clamp(15px, calc(13.519px + 0.463vw), 20px);
}
.real-item .slider-extended__img_wrapper {
    height: clamp(250px, calc(235.185px + 4.63vw), 300px);
}
.reals_list {
    row-gap: var(--medium-gap);
}
.reals-filters {
    max-width: var(--section-max);
    display: flex;
    justify-content: center;
    gap: var(--min-column-gap);
    flex-wrap: wrap;
    margin: clamp(80px, calc(65.185px + 4.63vw), 130px) auto var(--medium-gap);
}
.reals-filters__item a {
    display: block;
    background-color: var(--color-secondary);
    color: var(--color-text-opacity);
    font-family: var(--title-font);
    font-size: 1rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    padding: 12px var(--medium-gap);
}
.reals-filters__item a:hover,
.reals-filters__item a.active {
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    color: var(--color-white);
    background-color: var(--color-text);
}
.realisations-paraDyns .wrapper-textChamp {
    padding-top: 0;
}
#listeProduits {
    padding-bottom: clamp(80px, calc(65.185px + 4.63vw), 130px);
}


/*********************************
		  AVIS
*********************************/
.avis-page {
    padding: var(--padding);
}
.avis-page__content {
    max-width: var(--section-max);
    margin: var(--center);
}