/*********************************
			 FONTS
*********************************/
@font-face {
    font-family: 'Barlow';
    src: url('/design/fonts/Barlow-Regular.eot');
    src: url('/design/fonts/Barlow-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Barlow-Regular.woff2') format('woff2'),
    url('/design/fonts/Barlow-Regular.woff') format('woff'),
    url('/design/fonts/Barlow-Regular.ttf') format('truetype'),
    url('/design/fonts/Barlow-Regular.svg#Barlow-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow';
    src: url('/design/fonts/Barlow-SemiBold.eot');
    src: url('/design/fonts/Barlow-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Barlow-SemiBold.woff2') format('woff2'),
    url('/design/fonts/Barlow-SemiBold.woff') format('woff'),
    url('/design/fonts/Barlow-SemiBold.ttf') format('truetype'),
    url('/design/fonts/Barlow-SemiBold.svg#Barlow-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow';
    src: url('/design/fonts/Barlow-Italic.eot');
    src: url('/design/fonts/Barlow-Italic.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Barlow-Italic.woff2') format('woff2'),
    url('/design/fonts/Barlow-Italic.woff') format('woff'),
    url('/design/fonts/Barlow-Italic.ttf') format('truetype'),
    url('/design/fonts/Barlow-Italic.svg#Barlow-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/design/fonts/BarlowCondensed-SemiBold.eot');
    src: url('/design/fonts/BarlowCondensed-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/BarlowCondensed-SemiBold.woff2') format('woff2'),
    url('/design/fonts/BarlowCondensed-SemiBold.woff') format('woff'),
    url('/design/fonts/BarlowCondensed-SemiBold.ttf') format('truetype'),
    url('/design/fonts/BarlowCondensed-SemiBold.svg#BarlowCondensed-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow Condensed';
    src: url('/design/fonts/BarlowCondensed-Medium.eot');
    src: url('/design/fonts/BarlowCondensed-Medium.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/BarlowCondensed-Medium.woff2') format('woff2'),
    url('/design/fonts/BarlowCondensed-Medium.woff') format('woff'),
    url('/design/fonts/BarlowCondensed-Medium.ttf') format('truetype'),
    url('/design/fonts/BarlowCondensed-Medium.svg#BarlowCondensed-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Teko';
    src: url('/design/fonts/Teko-Medium.eot');
    src: url('/design/fonts/Teko-Medium.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Teko-Medium.woff2') format('woff2'),
    url('/design/fonts/Teko-Medium.woff') format('woff'),
    url('/design/fonts/Teko-Medium.ttf') format('truetype'),
    url('/design/fonts/Teko-Medium.svg#Teko-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Teko';
    src: url('/design/fonts/Teko-Regular.eot');
    src: url('/design/fonts/Teko-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Teko-Regular.woff2') format('woff2'),
    url('/design/fonts/Teko-Regular.woff') format('woff'),
    url('/design/fonts/Teko-Regular.ttf') format('truetype'),
    url('/design/fonts/Teko-Regular.svg#Teko-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/*********************************
		CLASSES GLOBALES
*********************************/

:root {
    /******	  DEFAULT CONTENT STRUCTURE	******/
    --section-max: 1400px;
    --center: auto;
    --padding : 115px 15px;

    /******	  COULEURS	******/
    --color-text: rgb(0, 0, 0);
    --color-primary: #EC212A;
    --color-secondary: #F7F7F7;
    --color-mention: #7F7F7F;
    --color-white: #fff;

    /******	  FONT WEIGHT	******/
    --font-regular: normal;
    --font-medium: 500;
    --font-semi-bold: 600;

    /******	  FONT AND TYPOGRAPHY	******/
    --body-font: "Barlow", sans-serif;
    --title-font: "Barlow", sans-serif;
    --sub-font: "Teko", sans-serif;
    --link-font : "Barlow Condensed", sans-serif;
    --normal-font-size: 1rem;
}

* {
    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: 16px;
    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 {
    padding: 0;
    margin:0;
    line-height: 1.1;
}
h1 {
    position: relative;
    color: var(--color-white);
    font-size:2.813rem /* 45px */;
    margin:auto;
    font-weight: var(--font-semi-bold);
}
h2 {
    font-size: 2.5rem /* 40px */;
    color: var(--color-text);
    margin: 0;
    font-weight: var(--font-semi-bold);
    font-family: var(--title-font);
}
h3 {
    font-family: var(--link-font);
    font-size: 1.563rem /* 25px */;
    color: var(--color-text);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    text-decoration: none;
}
.surtitre {
    display: block;
    font-family: var(--sub-font);
    font-weight: var(--font-medium);
    font-size: 1.563rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--color-primary);
    line-height: 1.1;
}
.surtitre-red {
    color: var(--color-primary);
}
.surtitre-white {
    color: var(--color-white);
}

/******	  TEXTES	******/
p, table {
    color: var(--color-text);
    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-semi-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;
}

/******	  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 {
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-primary);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    border: 1px solid var(--color-primary);
    font-family: var(--body-font);
    text-transform: uppercase;
    font-weight: var(--font-semi-bold);
    font-size: 1.125rem;
    color: var(--color-white);
    cursor: pointer;
}
.btn_cta_general a,
.btn_cta_general p {
    -ms-transform: skewX(20deg);
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    font-family: var(--body-font);
    text-transform: uppercase;
    font-weight: var(--font-semi-bold);
    font-size: 1.125rem;
    color: var(--color-white);
    padding: 0;
    height: fit-content;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    display: inline-block;
    background-color: transparent;
    text-decoration: none;
}
.btn_cta_general a:hover,
.btn_cta_general p:hover,
.btn_cta_general:hover a,
.btn_cta_general:hover p {
    text-decoration: none;
}
.btn_cta_general:hover{
    background-color: transparent;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    color: var(--color-primary);
}
.btn_cta_general:hover a,
.btn_cta_general:hover p {
    color: var(--color-primary);
}


/******	 LIEN PLUS	******/
.link_more {
    font-family: var(--link-font);
    color: var(--color-mention);
    letter-spacing: 0.3px;
    font-size: 1.125rem;
    font-weight: var(--font-medium);
    position: relative;
    display: flex;
    text-transform: uppercase;
}
.link_more:after {
    content: url("/design/img/arrow-link-more.svg");
    display: inline-flex;
    margin-left: 10px;
    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;
}
.link_more:hover:after  {
    margin-left: 20px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}


/******	  SLIDERS	******/
.splide__track {
    height: 100%;
}
.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/******	  DIVIDER	******/
.divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;  /* Suppression de la marge */
    padding: 0; /* Suppression du padding */
}
.divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 94.763px;
}
.divider-top {
    top: -93px;
}
.divider-bottom {
    top : unset;
    bottom: -93px;
}


/*********************************
		CUSTOM SCROLLBAR
*********************************/

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-text) #FFFFFF;
}
/* Chrome, Edge and Safari */
html::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}
html::-webkit-scrollbar-track {
    border-radius: 20px;
    background-color: #FFFFFF;
}
html::-webkit-scrollbar-track:hover {
    background-color: #FFFFFF;
}
html::-webkit-scrollbar-track:active {
    background-color: #FFFFFF;
}
html::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: var(--color-text);
}
html::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-text);
}
html::-webkit-scrollbar-thumb:active {
    background-color: var(--color-text);
}


/*********************************
		 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
*********************************/
.cc-banner {
    z-index: 99999 !important;
}
.cc-color-override-1465249541 .cc-btn:hover, .cc-color-override-1465249541 .cc-btn:focus {
    background-color: var(--color-mention) !important;
    color: var(--color-text) !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-white);
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: 9999;
}

/******	  NAV	 ******/
.nav {
    height: 4rem;
    padding: 0 15px;
}
.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: 4rem;
    width: auto;
    object-fit: contain;
}

/******	  BTN CONTACT NAV	 ******/
.contact_link_nav {
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-primary);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    border: 1px solid var(--color-primary);
}
.contact_link_nav .nav__link {
    -ms-transform: skewX(20deg);
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    font-family: var(--body-font);
    text-transform: uppercase;
    font-weight: var(--font-semi-bold);
    font-size: 1.125rem;
    color: var(--color-white);
    padding: 0;
    height: fit-content;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    display: inline-block;
    background-color: transparent;
}
.contact_link_nav:hover {
    border: 1px solid var(--color-primary);
    background-color: var(--color-white) !important;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.contact_link_nav:hover .nav__link {
    color: var(--color-primary) !important;
    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 {
    font-family: var(--title-font);
    text-transform: uppercase;
    font-size: 1.125rem;
    color: var(--color-text);
    background-color: var(--color-white);
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 30px;
    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: 4px;
    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;
    color: var(--color-text);
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s;
}
.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--color-secondary);
}
.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 {
    display: block;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 5px;
    font-size: 1.125rem;
    color: var(--color-white);
    text-transform: capitalize;
}
.fil_ariane_content {
    display: inline-block;
    overflow: hidden;
    position: relative;
    padding: 0;
}
.fil_ariane span,
.fil_ariane a,
.fil_ariane p {
    color: var(--color-white);
    text-transform: capitalize;
}
.fil_ariane a:hover {
    color: var(--color-secondary);
}
.fil_ariane .current_retour {
    display:none;
}


/*********************************
		 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;
}

#heading-slider .splide__arrows {
    bottom: 200px;
    z-index: 9;
    right: 50px;
}
#heading-slider  .custom-arrow-prev {
    left: auto;
    right: 50px;
    background: url("/design/img/prev-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#heading-slider  .custom-arrow-next {
    background: url("/design/img/next-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/******	  ARROW	 ******/
.splide__arrow {
    border-radius: unset !important;
}
.splide__arrow svg {
    display: none;
}
.splide__arrows {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    gap: 0;
}
.splide .custom-arrow-prev {
    left: auto;
    right: 50px;
    background: url("/design/img/prev-black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.splide .custom-arrow-next {
    background: url("/design/img/next-black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.splide__arrow {
    position: unset !important;
    width: 50px !important;
    height: 50px !important;
    transform: unset !important;
}

/******	  ARROW	MIDDLE CENTER ******/
.bottom-center-arrow .splide__arrows {
    left: 50%;
    transform: translateX(-50%);
    bottom: -80px;
}

/******	  ARROW TOP RIGHT	 ******/
.top-right-arrow .splide__arrows {
    right: 15px;
    top: -90px;
}

/******	  ARROW BOTTOM RIGHT	 ******/
.bottom-right-arrow .splide__arrows {
    right: 15px;
    bottom: -80px;
}


/*********************************
		     HOMEPAGE
*********************************/

/******	  HERO	 ******/
.hero_home_wrapper {
    max-height: 1080px;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    position: relative;
}
.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: var(--color-text);
    opacity: 0.5;
    width: 100%;
    height: 100%;
}
.hero_home_content {
    max-width: 1645px;
    padding: 0 15px;
    width: 100%;
    position: absolute;
    z-index: 5;
    bottom: 200px;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
    color: var(--color-white);
}
.hero_home_heading {
    max-width: 50%;
    width: 100%;
}
.hero_home_txt {
    padding: 15px 0 65px;
}
.hero_home_wrapper .caption {
    display: none;
}
.hero_home_title {
    font-size: 3.75rem;
}
.hero_home_cta:hover {
    border: 1px solid var(--color-white);
}
.hero_home_cta:hover a,
.hero_home_cta:hover p {
    color: var(--color-white);
}


/******	  SERVICES	 ******/
.quick-access {
    padding: var(--padding);
    position: relative;
    background-color: var(--color-primary);
    z-index: 10;
}
.quick-access__container {
    max-width: var(--section-max);
    margin: var(--center);
}
.quick-access__titles {
    padding-bottom: 50px;
    max-width: 50%;
}
.quick-access__h2 {
    color: var(--color-white);
}
.quick-access__link {
    position: relative;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.quick-access__img_wrapper {
    position: relative;
}
.quick-access__icon {
    height: 445px !important;
}
.quick-access__overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.quick-access__link:hover .quick-access__overlay {
    display: block;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.quick-access__header {
    z-index: 2;
    display: inline-block;
    background-color: var(--color-white);
    padding: 22px 90px 22px 70px;
    color: var(--color-text);
    position: absolute;
    left: 0;
    bottom: 30px;
    clip-path: polygon(
            0 0,                 /* top-left */
            100% 0,              /* top-right (droit) */
            calc(100% - 30px) 100%, /* bottom-right slanted */
            0 100%               /* bottom-left */
    );
}
.quick-access__link:hover .quick-access__title {
    color: var(--color-primary);
}
.quick-access .splide .custom-arrow-prev {
    background: url("/design/img/prev-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.quick-access .splide .custom-arrow-next {
    background: url("/design/img/next-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}



/******	  ABOUT	 ******/
.section-media {
    padding: 180px 15px 115px;
}
.section-media__container {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: center;
    column-gap: 130px;
}
.section-media__img {
    max-height: 660px;
    width: 100%;
    object-fit: cover;
}


/******	  REASSURANCES	 ******/
.reassurances {
    padding: 0 15px 115px;
}
.reassurances__wrapper {
    max-width: var(--section-max);
    margin: var(--center);
}
.reassurances__titles {
    max-width: 590px;
}
.reassurances__list {
    padding-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    align-items: flex-start;
    gap: 40px;
}
.reassurances__item-heading {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 30px;
}
.reassurances__item-txt {
    padding: 20px 0;
}


/******	  REALISATIONS	 ******/
.card-slider {
    margin: 95px 0;
    background-color: var(--color-secondary);
    padding: 115px 15px;
    position: relative;
}
.card-slider:after {
    pointer-events: none;
    content: url("/design/img/sable.png");
    position: absolute;
    bottom: -320px;
    right: -240px;
}
.card-slider__container {
    max-width: var(--section-max);
    margin: var(--center);
}
.card-slider__heading {
    padding-bottom: 50px;
    text-align: center;
}
#card-slider .splide__arrows {
    justify-content: space-between;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.card-slider__link {
    display: block;
    max-width: 1080px;
    width: fit-content;
    margin: var(--center);
}
.card-slider__image {
    max-height: 600px !important;
    width: 100% !important;
    object-fit: contain !important;
}
.card-slider__content {
    display: flex;
    justify-content: space-between;
    column-gap: 15px;
    align-items: center;
    padding: 20px 0;
}
.card-slider__title {
    font-weight: var(--font-semi-bold);
    font-size: 1.125rem;
    color: var(--color-text);
}
.card-slider__item:hover .link_more:after {
    margin-left: 20px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}


/******	  ACTUALITES	 ******/
.feature-slider {
    padding: var(--padding);
}
.feature-slider__container {
    margin: var(--center);
    max-width: var(--section-max);
}
.feature-slider__heading{
    padding-bottom: 50px;
    max-width: 50%;
}
.feature-slider__titles {
    padding-bottom: 50px;
    max-width: 50%;
}
.feature-slider__link {
    display: block;
    position: relative;
}
.feature-slider__image-wrapper {
    z-index: 1;
    overflow: hidden;
    position: relative;
    height: 375px;
    width: 100%;
}
.feature-slider__image {
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-slider__link:hover .feature-slider__image {
    transform: scale(1.2);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.feature-slider__content {
    padding-top: 30px;
}
.feature-slider__txt {
    padding: 10px 0 15px;
    color: var(--color-text);
}


/******	  PARTENAIRES	 ******/
.partenaires-wrapper {
    position: relative;
    margin: 95px 0;
    background-color: var(--color-secondary);
    padding: 115px 15px;
}
.partenaires-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.partenaires-titles {
    padding-bottom: 50px;
    max-width: 50%;
}
.un-partenaire img {
    max-width: 250px;
    height: 100px;
    object-fit: contain;
}


/******	  TYPE PARAGRAPHE 6 :  texte + img full à gauche	 ******/
.media-split {
    padding: 150px 0;
}
.media-split__container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    column-gap: 100px;
    align-items: center;
}
.media-split__left {
    position: relative;
    width: 100%;
    height: 100%;
}
.media-split__image {
    position: absolute;
    max-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.media-split__right {
    position: relative;
    max-width: 650px;
    place-self: center start;
    padding: 150px 15px 150px 0;
}
.media-split__text {
    padding: 40px 0;
}


/******	  TYPE PARAGRAPHE 7 :  texte + img full à droite	 ******/
.media-split--reverse {
    padding: 150px 0;
}
.media-split--reverse__container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    column-gap: 100px;
    align-items: center;
}
.media-split--reverse__right {
    position: relative;
    width: 100%;
    height: 100%;
}
.media-split--reverse__image {
    position: absolute;
    max-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.media-split--reverse__left {
    position: relative;
    max-width: 650px;
    place-self: center end;
    padding: 150px 0 150px 15px;
}
.media-split--reverse__text {
    padding: 40px 0;
}


/******	  AVIS	 ******/
.slider-extended {
    position: relative;
    padding: 150px 0;
}
.slider-extended__header {
    padding: 0 15px 80px;
    max-width: var(--section-max);
    margin: var(--center);
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: center;
    column-gap: 80px;
}
#slider-extended .splide__list {
    align-items: flex-end;
}
.slider-extended__item {
    border: 1px solid var(--color-text);
    border-radius: var(--border-radius);
    padding: 20px;
    height: 100%;
}
.slider-extended__meta {
    width: 100%;
    padding-top: 30px;
}
.slider-extended__author,
.slider-extended__date {
    display: block;
    font-weight: var(--font-semi-bold);
}
.slider-extended__carousel-wrapper {
    margin-left: calc((100% - min(100%, 89rem)) / 2);
    padding: 0 0 0 15px;
}


/******	  CONTACT	 ******/
.contact-bottom-wrapper {
    padding: var(--padding);
    background: #a6a6a6;
}
.contact-bottom-content {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-bottom-title {
    padding-bottom: 40px;
}


/*********************************
		     FOOTER
*********************************/

/******	  PARTIE SUPERIEURE	 ******/
.footer_top_wrapper {
    background-color: var(--color-primary);
    padding: 80px 15px;
}
.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: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    column-gap: 80px;
}
footer a,
footer p {
    color: var(--color-white);
}
footer a:hover {
    color: var(--color-white);
}
footer ul {
    margin: 0;
}
footer li {
    display: flex;
    align-items: center;
}
footer .toggleTitre {
    color: var(--color-white);
    font-weight: var(--font-regular);
    font-family: var(--sub-font);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 1.563rem;
    margin-bottom: 20px;
}
footer .toggleTitre {
    pointer-events: none;
}
footer .toggleTexte {
    margin-top: 20px;
}
footer .footer_contact .toggleTexte li {
    padding-bottom: 25px;
}
.footer_toggle_picto {
    margin-right: 15px;
}
.footer_rs {
    margin-top: -25px;
}
.footer_rs .toggleTexte {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;

}

/******	  PARTIE INFERIEURE	 ******/
.footer_bottom_wrapper {
    border-top: 1px solid var(--color-white);
    background-color: var(--color-primary);
    padding: 15px 30px;
}
.footer_bottom_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;

    max-width: var(--section-max);
    margin: var(--center);
}
.footer_bottom {
    color: var(--color-white);
    font-size: 0.813rem;
}
.footer_bottom a {
    color: var(--color-white);
}
.footer_bottom a:hover {
    color: var(--color-white);
}


/*********************************
		    ACTUALITES
*********************************/
.actus_wrapper {
    padding: var(--padding);
}
.actus_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 50px;
    align-items: flex-start;
}
.une_actu_wrapper a {
    display: block;
}
.no-result {
    max-width: var(--section-max);
    margin: var(--center);
}


/*********************************
		   UNE ACTUALITE
*********************************/
.uneActu_wrapper {
    max-width: var(--section-max);
    padding: 0 30px 180px;
    margin: var(--center);
}
.uneActu_img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    padding-bottom: 80px;
}

/****** ARCHIVES ******/
.archivesActus_wrapper {
    padding: 150px 0;
    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 80px 0 15px;
}
.archivesActus_title {
    padding-bottom: 60px;
}



/*********************************
		    PAGINATION
*********************************/
.paginationCMS{
    text-align: center;
    padding: 0 30px 100px;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.paginationCMS a, .paginationCMS span{
    margin: 10px;
    font-size:1rem;
    color: var(--color-text);
}
.paginationCMS .pageCourante{
    font-weight: var(--font-medium);
    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: 600px;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    position: relative;
}
.slider_top_wrapper .divider {
    z-index: 3;
    bottom: -1px;
}
.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: var(--color-text);
    opacity: 0.25;
    width: 100%;
    height: 100%;
}
.slider_top_content {
    padding: 0 15px;
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    text-align: center;
}
.slider_top_titles_wrapper {
    max-width: 1645px;
    margin: var(--center);
}
.slider_top_wrapper .caption {
    display: none;
}


/******	  PARAGRAPHES	 ******/
.page_dynamique_content {
    display: block;
    margin: var(--center);
    padding: 0;
    width: auto;
    position: relative;
    box-sizing: border-box;
}

/******	  PARAGRAPHES	 ******/
.wrapper-textChamp {
    padding: 115px 0 0;
    display: flex;
    flex-direction: column;
}
.text_champ ul,
.text_champ ul li {
    font-size: var(--normal-font-size);
    position:relative;
    padding-left:20px;
    list-style-type:initial;
}
.text_champ a:hover {
    text-decoration: none;
}
.text_champ p strong,
.text_champ p strong a {
    font-weight: var(--font-semi-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;
}


/*	  PARAGRAPHES DEROULANTS	*/
.paragraphe_deroulant__wrapper {
    padding: 0 30px;
}
.paragraphe_deroulant {
    max-width: var(--section-max);
    margin: var(--center);
    width: 100%;
    margin-bottom: 20px;
}
.toggleWrapper .toggleTitre {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 40px;
    font-weight: var(--font-semi-bold);
    font-family: var(--link-font);
    font-size: 1.25rem;
    color: var(--color-text);
    background-color: var(--color-secondary);
    text-transform: uppercase;
    line-height: 1;
}
.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/nav-arrow-down-black.svg");
    display: flex;
    align-items: center;
}
.toggleWrapper .toggleTitre.active {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.toggleWrapper .toggleTitre.active:after {
    transform: rotate(180deg);
    content: url("/design/img/nav-arrow-down.svg");
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.toggleWrapper .toggleTexte {
    padding: 30px 40px;
    background-color: var(--color-white);
}
.toggleWrapper .toggleTexte .text_champ {
    padding: 0;
}

/*	  TEXTE SIMPLE	*/
.text__wrapper {
    padding: 0 15px 115px;
}
.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);
}
.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 {
    height: 600px;
    width: 100%;
    object-fit: cover;
}
.image_droite {
    margin: 0 0 0 20px;
}
.image_gauche {
    margin: 0 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 15px 115px;
}
.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 img {
    height: 445px !important;
}



/*********************************
             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: 50px;
}
.texte_accroche{
    font-size: var(--normal-font-size);
    box-sizing: border-box;
}

/******	  FORMULAIRE	******/
#formulaire {
    margin: 0 auto 30px;
}
.champs_obligatoires{
    margin-top: 30px;
}
.content-formDemande {
    margin-top: 50px;
}

/* CHAMPS FORMULAIRE */
textarea {
    resize: none;
}
.form-group{
    padding: 10px 0;
    margin-bottom: 25px;
}
.form-label {
    color: var(--color-text);
    font-weight: var(--font-semi-bold);
    font-family: var(--body-font);
    text-transform: uppercase;
    font-size: 1.125rem;
    letter-spacing: 0.5px;
    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 12px;
    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-mention);
}
.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-secondary);
    font-family: var(--body-font);
    color: var(--color-text);
    padding: 20px;
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: var(--font-regular);
    margin-top: 20px;
}

/* BTNS FORMULAIRE */
.wrapper-btnForm {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/******	  COORDONNEES	******/
.map {
    height: 400px;
    width: 100%;
    margin-bottom: 30px;
}
.map iframe{
    width:100%;
    height: 100%;
}
.titleContact {
    text-transform: uppercase;
    display: block;
    font-size: 1.125rem;
    font-weight: var(--font-semi-bold);
}
.textContact {
    margin-top: 15px;
}
.textContact a {
    color: var(--color-text);
    transition: 0.5s;
}
.textContact a:hover {
    color: var(--color-primary);
    transition: 0.5s;
}
.textContact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.textContact li img {
    margin-right: 15px;
}
.rs_contact_wrap {
    margin-top: 30px;
}
.contactRs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}


/*********************************
		 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 {
    font-size: 1.25rem;
    font-weight: var(--font-semi-bold);
    color: var(--color-primary);
    font-family: var(--link-font);
    text-transform: uppercase;
    padding-top: 40px;
    padding-bottom: 5px;
}
.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);
}