/*********************************
			 FONTS
*********************************/
@font-face {
    font-family: 'Changa';
    src: url('/design/fonts/Changa-Regular.eot');
    src: url('/design/fonts/Changa-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Changa-Regular.woff2') format('woff2'),
    url('/design/fonts/Changa-Regular.woff') format('woff'),
    url('/design/fonts/Changa-Regular.ttf') format('truetype'),
    url('/design/fonts/Changa-Regular.svg#Changa-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Changa';
    src: url('/design/fonts/Changa-Medium.eot');
    src: url('/design/fonts/Changa-Medium.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Changa-Medium.woff2') format('woff2'),
    url('/design/fonts/Changa-Medium.woff') format('woff'),
    url('/design/fonts/Changa-Medium.ttf') format('truetype'),
    url('/design/fonts/Changa-Medium.svg#Changa-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('/design/fonts/DMSans-Regular.eot');
    src: url('/design/fonts/DMSans-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/DMSans-Regular.woff2') format('woff2'),
    url('/design/fonts/DMSans-Regular.woff') format('woff'),
    url('/design/fonts/DMSans-Regular.ttf') format('truetype'),
    url('/design/fonts/DMSans-Regular.svg#DMSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('/design/fonts/DMSans-Italic.eot');
    src: url('/design/fonts/DMSans-Italic.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/DMSans-Italic.woff2') format('woff2'),
    url('/design/fonts/DMSans-Italic.woff') format('woff'),
    url('/design/fonts/DMSans-Italic.ttf') format('truetype'),
    url('/design/fonts/DMSans-Italic.svg#DMSans-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('/design/fonts/DMSans-SemiBold.eot');
    src: url('/design/fonts/DMSans-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/DMSans-SemiBold.woff2') format('woff2'),
    url('/design/fonts/DMSans-SemiBold.woff') format('woff'),
    url('/design/fonts/DMSans-SemiBold.ttf') format('truetype'),
    url('/design/fonts/DMSans-SemiBold.svg#DMSans-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}



/*********************************
		CLASSES GLOBALES
*********************************/

:root {
    /******	  DEFAULT CONTENT STRUCTURE	******/
    --section-max: 1400px;
    --center: auto;
    --padding : 150px 15px;
    --border-radius : 15px;

    /******	  COULEURS	******/
    --color-text: #212121;
    --color-primary: #FFB12B;
    --color-secondary: #F8F8F8;
    --color-mention: #FFF5E3;
    --color-white: #fff;

    /******	  FONT WEIGHT	******/
    --font-medium: 500;
    --font-semi-bold: 600;

    /******	  FONT AND TYPOGRAPHY	******/
    --body-font: "DM Sans", sans-serif;
    --normal-font-size: 1rem;
    --title-font: "Changa", 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: 16px;
    scroll-behavior: smooth;
}
body {
    background-size: cover; /* version standardisée */
    font-size: var(--normal-font-size);
    font-family: var(--body-font);
    font-weight: normal;
    -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, .contact-bottom-title {
    padding: 0;
    margin:0;
    line-height: 1.1;
    font-family: var(--title-font);
    font-weight: var(--font-medium);
}
h1 {
    position: relative;
    color: var(--color-white);
    font-size: 3.125rem /* 50px */;
    margin:auto;
}
h2,
.contact-bottom-title {
    font-size: 2.5rem /* 40px */;
    color: var(--color-text);
    margin: 0;
}
h3 {
    font-size: 1.438rem /* 23px */;
}


/******	  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{
    display: inline-block;
    padding: 15px 37px;
    background-color:var(--color-primary);
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: var(--font-semi-bold);
    font-family: var(--body-font);
    color: var(--color-white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    cursor: pointer;
    text-align: center;
    border: none;
    width: fit-content;
}
.btn_cta_general a,
.btn_cta_general p{
    color: var(--color-white);
    text-decoration: none;
}
.btn_cta_general a:hover,
.btn_cta_general p:hover {
    text-decoration: none;
    color: var(--color-white);
}
.btn_cta_general:hover{
    color: var(--color-white);
    background-color: var(--color-text);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.btn_cta_general:hover a,
.btn_cta_general:hover p,
.btn_cta_general:hover span {
    text-decoration: none;
    color: var(--color-white);
}
.btn_cta_center {
    margin: var(--center);
}


/******	 LIEN PLUS	******/
.link_more {
    font-size: 1.125rem;
    font-weight: var(--font-semi-bold);
    position: relative;
    display: flex;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.link_more:after {
    content: url("/design/img/link-more-after.svg");
    display: inline-flex;
    margin-left: 10px;
    align-items: center;
    line-height: 1;
}
.link_more:hover {
    padding-bottom: 5px;
}
.link_more_tiny {
    font-size: 1.125rem;
    font-weight: var(--font-semi-bold);
    position: relative;
    display: block;
    color: var(--color-primary);
}
.link_more_tiny a,
.link_more_tiny p {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    font-size: 1.125rem;
}
.link_more_tiny:after {
    content: url("/design/img/link-more-after.svg");
    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_tiny a:hover,
.link_more_tiny p:hover {
    padding-bottom: 5px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    text-decoration: none !important;
}


/******	  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-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-primary) !important;
}

/*********************************
		    TOP BAR
*********************************/
.topbar_wrapper {
    background-color: var(--color-primary);
    padding: 15px;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    margin-bottom: 15px;
}
.topbar_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 15px;
}
.topbar_left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 15px;
}
.topbar_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 15px;
}
.topbar_item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
}
.topbar_item a,
.topbar_item p {
    color: var(--color-white);
    font-weight: var(--font-medium);
}




/*********************************
		   HEADER WHITE
*********************************/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 9999;
}

/******	  NAV	 ******/
.nav {
    background-color: var(--color-text);
    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 .nav__link {
    background-color: var(--color-primary);
    color: var(--color-white);
    height: fit-content;
    padding: 15px 40px;
    border-radius: 50px;
    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 {
    background-color: var(--color-white) !important;
    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 {
    color: var(--color-white);
    background-color: transparent;
    font-weight: var(--font-medium);
    font-size: 1.125rem;
    padding: 1.25rem 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    position: relative;
}
.dropdown__item:hover .nav__link {
    color: var(--color-primary);
}
.dropdown__item:hover .nav__link .dropdown__arrow {
    content: url("/design/img/nav-arrow-down-yellow.svg");
    display: block;
}

/******	  DROPDOWN	 ******/
.dropdown__item {
    cursor: pointer;
}
.dropdown__arrow {
    transition: transform .4s;
    margin-left: 5px;
}
.dropdown__link,
.dropdown__sublink {
    min-width: 200px;
    padding: 1.25rem;
    color: var(--color-white);
    background-color: var(--color-text);
    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-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-text);
}



/*********************************
            FIL ARIANE
*********************************/
.fil_ariane {
    display: block;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    font-size: 1rem;
    color: var(--color-white);
    text-transform: capitalize;
}
.fil_ariane_content {
    display: inline-block;
    overflow: hidden;
    position: relative;
    padding: 0;
    margin-bottom: 5px;
}
.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%;
}

/******	  ARROW	 ******/
.splide__arrow {
    border-radius: unset !important;
}
.splide__arrow svg {
    display: none;
}
.splide__arrows {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}
.splide .custom-arrow-prev {
    left: auto;
    right: 60px;
    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;
}
.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: -100px;
}

/******	  ARROW BOTTOM RIGHT	 ******/
.bottom-right-arrow .splide__arrows {
    right: 15px;
    bottom: -80px;
}

/******	  ARROW BOTTOM RIGHT	 ******/
.bottom-left-arrow .splide__arrows {
    left: 0;
    bottom: -90px;
}


/*********************************
		     HOMEPAGE
*********************************/

/******	  HERO	 ******/
.hero_home_wrapper {
    max-height: 900px;
    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: var(--section-max);
    padding: 0 15px;
    width: 100%;
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
}
.hero_home_wrapper .caption {
    display: none;
}
.hero_home_title {
    font-size: 4.375rem;
    display: block;
    max-width: 60%;
    padding-bottom: 50px;
    margin-left: 0;
}
.hero_home_cta {
    width: fit-content;
    margin-left: auto;
}


/******	  TYPE PARAGRAPHE 1 : slider titre + icone + texte	 ******/
.quick-access {
    padding: 0 15px;
    margin-top: -100px;
    position: relative;
    z-index: 5;
}
.quick-access__container {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    max-width: var(--section-max);
    margin: var(--center);
    box-shadow: 9px 9px 99px rgba(33, 33, 33, 0.23);
}
.quick-access__content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
}
.quick-access__item {
    padding: 40px;
    border-right: 1px solid #E9E9E9;
}
.quick-access__item:last-of-type {
    border-right: unset;
}
.quick-access__title {
    color: var(--color-primary);
    padding: 15px 0;
    font-size: 1.25rem;
}



/******	  TYPE PARAGRAPHE 2 : texte + image à gauche	 ******/
.section-media {
    padding: var(--padding);
}
.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 {
    border-radius: var(--border-radius);
    max-height: 660px;
    width: 100%;
    object-fit: cover;
}
.section-media__text {
    padding: 0 0 40px 0;
}
.section-media__nb {
    border-left: 1px solid #E9E9E9;
}
.section-media__unNb {
    padding-left: 30px;
    font-family: var(--title-font);
    font-weight: normal;
    font-size: 1.563rem;
}
.nb {
    color: var(--color-primary);
}
.section-media__link {
    margin-top: 60px;
    grid-column: 1/3;
    text-align: center;
}
.link-more {
    display: block;
    font-weight: var(--font-semi-bold);
    color: var(--color-primary);
    font-size: 1.125rem;
}
.link-more:after {
    content: url("/design/img/link-more-after.svg");
    display: block;
    margin: var(--center);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.link-more:hover:after {
    padding-top: 5px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}


/******	  AVIS	 ******/
.card-slider {
    padding: var(--padding);
    background-color: var(--color-secondary);
}
.card-slider__container {
    max-width: var(--section-max);
    margin: var(--center);
}
.card-slider__heading {
    padding-bottom: 50px;
    max-width: 50%;
}
.card-slider__item {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    height: fit-content;
}
.card-slider__txt {
    padding: 30px;
}
.card-slider__link {
    display: block;
}
.card-slider__content {
    border-top: 1px solid #E9E9E9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 20px 30px;
}
.card-slider__title {
    color: var(--color-primary);
    font-family: var(--title-font);
    font-weight: var(--font-medium);
    font-size: 1.25rem;
}
.card-slider__date {
    font-size: 0.813rem;
    font-style: italic;
}


/******	  EXPERTISE	 ******/
.feature-slider {
    padding: 150px 15px 200px;
    background-color: var(--color-mention);
}
.feature-slider__container {
    margin: var(--center);
    max-width: var(--section-max);
}
.feature-slider__heading{
    padding-bottom: 50px;
    max-width: 50%;
}
.feature-slider__item {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.feature-slider__link {
    display: block;
    position: relative;
}
.feature-slider__title {
    text-align: center;
}
.feature-slider__image-wrapper {
    z-index: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    position: relative;
    height: 360px;
    width: 100%;
}
.feature-slider__image {
    border-radius: var(--border-radius);
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.feature-slider__content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 15px;
}
#feature-slider .feature-slider__more {
    width: auto;
    height: auto;
    object-fit: contain;
}
.feature-slider__item:hover {
    background-color: var(--color-text);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.feature-slider__item:hover .feature-slider__title {
    color: var(--color-white);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.feature-slider__item:hover .feature-slider__more {
    content: url("/design/img/icon-more-white.svg");
    display: block;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}


/******	  REALISATIONS	 ******/
.slider-extended {
    position: relative;
    padding: 150px 0 180px;
    overflow: hidden;
}
.slider-extended__header {
    padding: 0 15px 50px;
    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;
}
.card-slider__cta {
    margin-left: auto;
}
#slider-extended .splide__list {
    align-items: flex-end;
}
.slider-extended__item {
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.slider-extended__image-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}
#slider-extended .slider-extended__image {
    border-radius: var(--border-radius);
    height: 450px;
}
.slider-extended__overlay {
    display: none;
}
.slider-extended__item:hover .slider-extended__overlay {
    background-color: rgba(33, 33, 33, 0.7);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
#slider-extended .slider-extended__more {
    width: auto;
    height: auto;
    object-fit: unset;
}
.slider-extended__meta {
    width: 100%;
    padding-top: 15px;
}
.slider-extended__carousel-wrapper {
    margin-left: calc((100% - min(100%, 87.5rem)) / 2);
    padding: 0 0 0 15px;
}
.slider-extended__date {
    color: var(--color-text);
    font-weight: var(--font-medium);
}


/******	  CONTACT	 ******/
.contact-bottom-wrapper {
    padding: var(--padding);
    overflow: hidden;
    background-color: var(--color-primary);
    position: relative;
}
.contact-bottom-wrapper:before {
    content: url("/design/img/contact-before.svg");
    display: block;
    right: -50px;
    top: 0;
    position: absolute;
    z-index: 1;
}
.contact-bottom-wrapper:after {
    content: url("/design/img/contact-after.svg");
    display: block;
    left: -50px;
    bottom: -10px;
    z-index: 1;
    position: absolute;
}
.contact-bottom-content {
    position: relative;
    z-index: 2;
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-bottom-title {
    display: block;
    margin: var(--center);
    max-width: 650px;
    padding-bottom: 40px;
    color: var(--color-white);
    text-align: center;
}
.btn_cta_white {
    color: var(--color-primary);
    background-color: var(--color-white);
}


/*********************************
		     FOOTER
*********************************/

/******	  PARTIE SUPERIEURE	 ******/
.footer_top_wrapper {
    background-color: var(--color-text);
    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_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer_links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    column-gap: 80px;
}
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: normal;
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-family: var(--title-font);
}
footer .toggleTitre {
    pointer-events: none;
}
footer .toggleTexte {
    margin-top: 20px;
}
footer .footer_contact .toggleTexte li {
    padding-bottom: 10px;
}
.footer_toggle_picto {
    margin-right: 15px;
    width: 25px;
    max-height: 25px;
    height: auto;
    object-fit: contain;
}
.footer_rs {
    margin-top: 15px;
}
.footer_rs .toggleTexte {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;

}

/******	  PARTIE INFERIEURE	 ******/
.footer_bottom_wrapper {
    border-top: 1px solid var(--color-primary);
    background-color: var(--color-text);
    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-primary);
    font-size: 0.813rem;
}
.footer_bottom a {
    color: var(--color-primary);
}
.footer_bottom a:hover {
    color: var(--color-primary);
}


/*********************************
		    ACTUALITES
*********************************/
.actus_wrapper {
    padding: var(--padding);
}
.actus_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: flex-start;
}
.actus_content .feature-slider__item {
    box-shadow: 9px 9px 99px rgba(0, 0, 0, 0.09);
}
.actus_content .feature-slider__image-wrapper {
    height: 280px;
}
.actus_content .feature-slider__content {
    align-items: flex-start;
}
.actus_content .feature-slider__more {
    margin: var(--center);
}
.feature-slider__date {
    background-color: var(--color-white);
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 0.813rem;
    font-weight: var(--font-semi-bold);
    color: var(--color-text);
}
.feature-slider__resume {
    color: var(--color-text);
}
.feature-slider__item:hover .feature-slider__resume {
    color: var(--color-white);
}


/*********************************
		   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-mention);
    overflow: hidden;
}
.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 {
    display: block;
    padding-bottom: 50px;
    font-weight: var(--font-medium);
    font-size: 2.5rem /* 40px */;
    font-family: var(--title-font);
    line-height: 1.1;
}
#archives_slider .feature-slider__item {
    height: auto;
}
#archives_slider .feature-slider__more {
    height: auto;
    width: auto;
    object-fit: contain;
}
#archives_slider .feature-slider__image-wrapper {
    height: 280px;
}



/*********************************
		    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;
}
.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;
    left: 50%;
    bottom: 120px;
    transform: translateX(-50%);
    color: var(--color-white);
    text-align: center;
    width: 100%;
}
.slider_top_titles_wrapper {
    max-width: 1400px;
    margin: var(--center);
}
.slider_top_titles_wrapper h1 {
    padding-bottom: 50px;
    font-size: 2.5rem;
}



/******	  PARAGRAPHES	 ******/
.page_dynamique_content {
    display: block;
    margin: var(--center);
    padding: 0;
    width: auto;
    position: relative;
    box-sizing: border-box;
}

/******	  PARAGRAPHES	 ******/
.wrapper-textChamp {
    padding: 150px 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,
.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 35px;
    font-weight: var(--font-semi-bold);
    font-size: 1.125rem;
    color: var(--color-primary);
    background-color: var(--color-secondary);
    line-height: 1;
    border-radius: 15px;
}
.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-yellow.svg");
    display: flex;
    align-items: center;
}
.toggleWrapper .toggleTitre.active:after {
    transform: rotate(180deg);
    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.svg");
}
.toggleWrapper .toggleTitre.active {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.toggleWrapper .toggleTexte {
    padding: 35px;
    background-color: var(--color-white);
}
.toggleWrapper .toggleTexte .text_champ {
    padding: 0;
}

/*	  TEXTE SIMPLE	*/
.text__wrapper {
    padding: 0 15px 100px;
}
.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: 550px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.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 100px;
}
.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: 400px;
    border-radius: var(--border-radius);
}



/*********************************
             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 {
    font-size: 1rem;
    color: var(--color-text);
    font-family: var(--body-font);
    font-weight: var(--font-semi-bold);
    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-mention);
    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-primary);
    border-radius: 10px;
    font-family: var(--body-font);
    color: var(--color-white);
    padding: 20px;
    box-sizing: border-box;
    font-size: 1.125rem;
    font-weight: var(--font-medium);
    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%;
    border-radius: var(--border-radius);
}
.titleContact {
    font-family: var(--title-font);
    display: block;
    font-size: 1.25rem;
    font-weight: var(--font-medium);
    color: var(--color-primary);
}
.textContact {
    margin-top: 10px;
}
.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: 10px;
    width: 25px;
    max-height: 25px;
}
.rs_contact_wrap {
    margin-top: 30px;
}
.contactRs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}


/*********************************
		 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);
    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);
}


/*********************************
		   REALISATIONS
*********************************/
.reals_wrapper {
    padding: var(--padding);
}
.reals_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: flex-start;
}
.slider-extended__image {
    height: 450px;
    border-radius: var(--border-radius);
    display: block;
    width: 100%;
    object-fit: cover;
}

/*********************************
		  UNE REALISATION
*********************************/
#archives_real_slider .feature-slider__item {
    height: auto;
}
#archives_real_slider .slider-extended__image {
    height: 350px;
}
#archives_real_slider-list .slider-extended__more {
    width: auto;
    height: auto;
    object-fit: cover;
}