/*********************************
			 FONTS
*********************************/
@font-face {
    font-family: 'Sora';
    src: url('/design/fonts/Sora-Light.eot');
    src: url('/design/fonts/Sora-Light.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Sora-Light.woff2') format('woff2'),
    url('/design/fonts/Sora-Light.woff') format('woff'),
    url('/design/fonts/Sora-Light.ttf') format('truetype'),
    url('/design/fonts/Sora-Light.svg#Sora-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sora';
    src: url('/design/fonts/Sora-SemiBold.eot');
    src: url('/design/fonts/Sora-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Sora-SemiBold.woff2') format('woff2'),
    url('/design/fonts/Sora-SemiBold.woff') format('woff'),
    url('/design/fonts/Sora-SemiBold.ttf') format('truetype'),
    url('/design/fonts/Sora-SemiBold.svg#Sora-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sora';
    src: url('/design/fonts/Sora-Regular.eot');
    src: url('/design/fonts/Sora-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Sora-Regular.woff2') format('woff2'),
    url('/design/fonts/Sora-Regular.woff') format('woff'),
    url('/design/fonts/Sora-Regular.ttf') format('truetype'),
    url('/design/fonts/Sora-Regular.svg#Sora-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/*********************************
		CLASSES GLOBALES
*********************************/

:root {
    /******	  DEFAULT CONTENT STRUCTURE	******/
    --section-max: 1400px;
    --center: auto;
    --padding : 140px 15px;

    /******	  COULEURS	******/
    --color-text: #212529;
    --color-primary: #BA181B;
    --color-secondary: #E9ECEF;
    --color-mention: #E5383B;
    --color-grey: #6C757D;
    --color-white: #fff;

    /******	  FONT WEIGHT	******/
    --font-light: 300;
    --font-regular: normal;
    --font-semi-bold: 600;

    /******	  FONT AND TYPOGRAPHY	******/
    --body-font: "Sora", sans-serif;
    --normal-font-size: 1rem;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/******	  STRUCTURE PAGE	******/
html {
    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-light);
    -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);
    content: "1";
    line-height: 1.5;
    background-color: #F8F9FA;
    overflow-x: hidden;
}

.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: 3rem /* 40px */;
    font-weight: var(--font-semi-bold);
}
h2 {
    font-size: 1.875rem /* 30px */;
    color: var(--color-text);
    font-weight: var(--font-semi-bold);
}
h3 {
    font-size: 1.125rem /* 18px */;
    color: var(--color-text);
    font-weight: var(--font-regular);
    text-decoration: none;
}



/******	  TEXTES	******/
p, table {
    color: var(--color-text);
    font-size: var(--normal-font-size);
    margin: 0;
    padding: 0;
}
a {
    outline: none;
    color: unset;
    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: flex;
    width: fit-content;
    line-height: 1;
    padding: 25px 45px;
    background-color:var(--color-primary);
    font-size: 1.125rem;
    font-weight: var(--font-regular);
    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;
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn_cta_general:after {
    content: url("/design/img/cta-arrow.svg");
    display: inline-block;
    margin-left: 15px;
}
.btn_cta_general a,
.btn_cta_general p{
    color: var(--color-white);
    text-decoration: none;
}
.btn_cta_general a:hover{
    text-decoration: none;
}
.btn_cta_general:hover{
    background-color: var(--color-mention);
    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;
    transform: rotate(180deg);
    margin: 0;  /* Suppression de la marge */
    padding: 0; /* Suppression du padding */
}
.divider svg {
    position: relative;
    display: block;
    width: calc(156% + 1.3px);
    height: 110px;
}
/* Divider black */
.divider-black .divider .shape-fill {
    fill: var(--color-text);
}
/* Divider white */
.divider-white .divider .shape-fill {
    fill: #F8F9FA;
}
/* Divider grey */
.divider-grey .divider .shape-fill {
    fill: var(--color-grey);
}
/* Divider light grey */
.divider-light-grey .divider .shape-fill {
    fill: var(--color-secondary);
}


/*********************************
		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: 50px;
    width: 50px;
    border-radius: 50%;
    background: url("/design/img/toggle-arrow-hover.svg") no-repeat center center;
    padding:10px;
    cursor: pointer;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10000;
    background-color: var(--color-primary);
}


/*********************************
		 MESSAGE COOKIES
*********************************/
body .cc_banner-wrapper {
    z-index: 99999;
}
body .cc_container {
    font-size: 1rem;
    text-align: center;
}
body .cc_container p {
    color: var(--color-white);
}
body .cc_container .cc_message {
    display: block;
    text-align: center;
    font-size: var(--normal-font-size);
    margin: 0;
}
body .cc_container .cc_btn, body .cc_container body .cc_btn:visited {
    color: var(--color-white);
    background-color: var(--color-primary);
}
body .cc_container a, body .cc_container a:visited {
    text-decoration: none;
    color: #333;
    background: var(--color-white);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-top: 10px;
    padding: 7px 10px;
    float: none;
    font-size: var(--normal-font-size);
    display: inline-block;
    max-width: 140px;
    text-align: center;
}
body .cc_banner-wrapper .cc_container .cc_btn {
    float: none;
    max-width: 140px !important;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    font-size: var(--normal-font-size);
    margin-left: 0;
    margin-right: 10px;
}
body .cc_banner-wrapper .cc_container .cc_btn.cc_btn_refuse{
    background: var(--color-grey);
}
body .cc_container a:hover, body .cc_container a:visited:hover {
    background: #666;
    color: var(--color-white);
}
.iframeContenuRemplacement{
    border: 1px solid #bbb;
    padding: 10px;
}
a.cc_btn.cc_btn_refuse:hover {
    color: var(--color-white);
}



/*********************************
		 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
*********************************/
header {
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    background-color: var(--color-white);
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: 9999;
}

/******	  NAV	 ******/
.nav {
    height: 4rem;
    padding: 0 0 0 15px;
}
.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
}
.nav__logo img {
    height: 5rem;
}
.nav__toggle {
    position: relative;
    width: 22px;
    height: 32px;
}

/******	  FIRST NAV LINKS	 ******/
.nav__link {
    color: var(--color-text);
    background-color: var(--color-white);
    font-weight: var(--font-regular);
    padding: 1.25rem 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    position: relative;
}
.nav__link:hover {
    background-color: var(--color-white);
}
.nav__link:hover:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    position: absolute;
    bottom: 25px;
}
.contact_header_link .nav__link {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0 50px;
}
.contact_header_link .nav__link:after {
    content: url("/design/img/cta-arrow.svg");
    display: inline-block;
    margin-left: 15px;
}
.contact_header_link .nav__link:hover:after {
    height: unset;
    width: unset;
    background-color: unset;
    position: unset;
    bottom: unset;
}
.contact_header_link .nav__link:hover {
    background-color: var(--color-mention);
}


/******	  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-regular);
    transition: background-color .3s;
}
.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.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: 0.813rem;
    color: var(--color-white);
    text-transform: capitalize;
}
.fil_ariane_content {
    display: inline-block;
    overflow: hidden;
    position: relative;
    padding: 0;
    margin-bottom: 10px;
}
.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 {
    display: none;
}



/*********************************
		     HOMEPAGE
*********************************/

/******	  HERO	 ******/
.hero_wrapper {
    max-height: 800px;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}
.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: var(--color-text);
    opacity: 0.5;
    width: 100%;
    height: 100%
}
.hero_content {
    padding: 0 15px;
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    width: 100%;
    right: 0;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    max-width: var(--section-max);
}
.hero_content .btn_cta_general {
    margin-top: 60px;
}
.hero_content h1 {
    max-width: 50%;
}


/******	  ABOUT	 ******/
.custom-shape-divider-bottom-1739263074 {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1739263074 svg {
    position: relative;
    display: block;
    width: calc(105% + 1.3px);
    height: 68px;
}

.custom-shape-divider-bottom-1739263074 .shape-fill {
    fill: var(--color-text);
}
.about-wrapper {
    background-color: var(--color-text);
    position: relative;
    margin-top: -50px;
    z-index: 9;
}
.about-wrapper .divider {
    top: auto;
}
.about-content {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.about-left {
    max-width: 60%;
    padding: 50px 180px 80px 15px;
}
.about-right {
    max-width: 40%;
}
.about-img {
    height: 745px;
    width: 40%;
    object-fit: cover;
    position: absolute;
    top: -10%;
    right: 15px;
    z-index: 2;
}
.about-txt {
    padding: 30px 0 80px;
    color: var(--color-white);
}
.about-txt p,
.about-txt a,
.about-txt h2{
    color: var(--color-white);
}
.about-titre {
    color: var(--color-white);
}


/******	  SERVICES	 ******/
.services-wrapper {
    padding: 200px 15px 100px;
}
.services-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.services-top {
    max-width: 60%;
}
.service-txt {
    padding: 40px 0 70px;
}
.un-service {
    height: 420px;
    position: relative;
    overflow: hidden;
}
.un-service-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.un-service-overlay {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(33,37,41,0.85) 72%, rgba(33,37,41,1) 100%);
}
.un-service .link-more {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}
.un-service:hover .un-service-img {
    -webkit-filter: none; /* Safari 6.0 - 9.0 */
    filter: none;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transform: scale(1.2); /* IE 9 */
    -webkit-transform: scale(1.2); /* Safari 3-8 */
    transform: scale(1.2);
}
.link-more {
    font-weight: var(--font-regular);
    font-size: 1.125rem;
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1.1;
}
.link-more:before {
    padding-right: 10px;
}
.link-more a,
.link-more p,
.link-more span {
    text-decoration: none;
}
.link-more-white {
    color: var(--color-white);
}
.link-more-white:before {
    content: url("/design/img/link-arrow-white.svg");
}
.link-more-grey,
.link-more-grey a,
.link-more-grey p,
.link-more-grey span {
    color: var(--color-grey);
}
.link-more-grey:before {
    content: url("/design/img/link-arrow-grey.svg");
}
.link-more-grey:hover,
.link-more-grey a:hover,
.link-more-grey p:hover,
.link-more-grey span:hover {
    color: var(--color-white);
}
.link-more-grey:hover:before {
    content: url("/design/img/link-arrow-white.svg");
}
.link-more-light-grey,
.link-more-light-grey a,
.link-more-light-grey p,
.link-more-light-grey span {
    color: #ADB5BD;
}
.link-more-light-grey:before {
    content: url("/design/img/link-arrow-light-grey.svg");
}
.link-more-light-grey:hover,
.link-more-light-grey a:hover,
.link-more-light-grey p:hover,
.link-more-light-grey span:hover {
    color: var(--color-grey);
}
.link-more-light-grey:hover:before {
    content: url("/design/img/link-arrow-grey.svg");
}
.link-more-red,
.link-more-red a,
.link-more-red p,
.link-more-red span {
    color: var(--color-primary);
}
.link-more-red:before {
    content: url("/design/img/link-arrow-red.svg");
}
.link-more-red:hover,
.link-more-red a:hover,
.link-more-red p:hover,
.link-more-red span:hover {
    color: var(--color-mention);
}
.link-more-red:hover:before {
    content: url("/design/img/link-arrow-light-red.svg");
}
.link-more-black,
.link-more-black a,
.link-more-black p,
.link-more-black span {
    color: var(--color-text);
}
.link-more-black:before {
    content: url("/design/img/link-arrow-black.svg");
}
.link-more-black:hover,
.link-more-black a:hover,
.link-more-black p:hover,
.link-more-black span:hover {
    color: var(--color-grey);
}
.link-more-black:hover:before {
    content: url("/design/img/link-arrow-grey.svg");
}


.splide__arrow {
    border-radius: unset !important;
}
.splide__arrow svg {
    display: none;
}
.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;
    right: 0;
    left: auto;
    background-position: center;
}
.splide__arrow {
    width: 57px !important;
    height: 50px !important;
    top: 0 !important;
    transform: unset !important;
}
.custom-splide-arrow {
    top: -70px !important;
}


/******	  PARTENAIRES	 ******/
.partenaires-wrapper {
    padding: 0 15px 100px;
}
.partenaires-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.partenaires-titre {
    font-size: 1.25rem;
    font-weight: var(--font-regular);
    padding-bottom: 30px;
    display: block;
}
.un-partenaire img {
    max-width: 200px;
    height: 80px;
    object-fit: contain;
}


/******	  REALISATIONS / AVIS	 ******/
/* realisations */
.reals-avis-wrapper {
    background-color: var(--color-text);
    position: relative;
    padding: 0 0 180px;
}
.reals-home-wrapper {
    padding: 180px 15px 150px;
}
.reals-home-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.reals-home-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 170px;
    padding-bottom: 75px;
}
.reals-home-titre {
    max-width: 50%;
    width: 100%;
    color: var(--color-white);
}
.reals-home-txt {
    max-width: 50%;
    width: 100%;
    color: var(--color-white);
}
.reals-home-txt p {
    color: var(--color-white);
}
.reals-home-list {
    display: grid;
    grid-template-columns: minmax(0,2fr)  minmax(0,1fr) minmax(0,1fr);
    grid-template-rows: repeat(2, minmax(0,1fr));
    gap: 13px;
    padding-bottom: 95px;
}
.reals-home-list .une-real:first-of-type {
    grid-column: 1;
    grid-row: 1/3;
    height: 100%;
}
.une-real {
    height: 300px;
    position: relative;
    overflow: hidden;
}
.une-real-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.une-real-overlay {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(33,37,41,0.85) 72%, rgba(33,37,41,1) 100%);
}
.une-real .link-more {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}
.une-real:hover .une-real-img {
    -webkit-filter: none; /* Safari 6.0 - 9.0 */
    filter: none;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transform: scale(1.2); /* IE 9 */
    -webkit-transform: scale(1.2); /* Safari 3-8 */
    transform: scale(1.2);
}
.link_more_center {
    justify-content: center;
}

/* avis */
.avis-wrapper {
    position: relative;
}
.divider-border-grey {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    margin: 0;  /* Suppression de la marge */
    padding: 0; /* Suppression du padding */
}
.divider-border-grey svg {
    position: relative;
    display: block;
    width: calc(156% + 1.3px);
    height: 90px;
}
.divider-border-grey .shape-fill {
    fill: var(--color-text);
}
.avis-top {
    padding: 150px 15px 80px;
    max-width: var(--section-max);
    margin: var(--center);
    position: relative;
}
.avis-top:before {
    content: url("/design/img/quote.svg");
    position: absolute;
    top: -30px;
    left: 15px;
}
.avis-titre {
    color: var(--color-white);
    max-width: 40%;
}
#avis-slider-list {
    align-items: flex-end;
}
.un-avis {
    background-color: var(--color-white);
    height: 100%;
}
.un-avis-top {
    padding: 30px;
}
.un-avis-bottom {
    width: 100%;
    height: fit-content;
    background: var(--color-grey);
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    color: var(--color-white);
    padding: 40px 30px 30px;
}
.un-avis-name,
.un-avis-date {
    display: block;
    font-weight: var(--font-regular);
}
.un-avis:nth-child(2n) .un-avis-bottom {
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
}
.avis-slider-wrapper {
    margin-left: calc((100% - min(100%, 89rem)) / 2);
    padding: 0 0 0 15px;
}
.splide .bottom-arrow-prev {
    right: 75px;
}
.splide .bottom-arrow-next {
    right: 15px;
}
.bottom-splide-arrow {
    bottom: -100px !important;
    top: auto !important;
}


/******	  CONTACT	 ******/
.contact-wrapper {
    position: relative;
    padding: 0 15px 100px;
}
.contact-content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: flex-end;
    column-gap: 160px;
}
.contact-left {
    padding: 100px 0 0;
}
.contact-pages-wrapper .contact-txt p {
    color: var(--color-white);
}
.contact-txt {
    padding: 30px 0;
}
.contact-tel {
    display: flex;
    align-items: center;
    padding-bottom: 50px;
}
.contact-tel-img {
    padding-right: 25px;
}
.contact-tel span {
    font-weight: var(--font-regular);
    color: var(--color-text);
}
.contact-right iframe {
    height: 570px;
    width: 100%;
    z-index: 99;
    position: relative;
}



/*********************************
		     FOOTER
*********************************/

/******	  PARTIE SUPERIEURE	 ******/
.footer_top_wrapper {
    background-color: var(--color-white);
    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 {
    color: var(--color-text);
}
footer a:hover {
    color: var(--color-primary);
}
footer ul {
    margin: 0;
}
footer li {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}
footer .toggleTitre {
    color: var(--color-text);
    font-weight: var(--font-semi-bold);
    font-size: 1.125rem;
    margin-bottom: 20px;
}
footer .toggleTitre {
    pointer-events: none;
}
footer .toggleTexte {
    margin-top: 20px;
}
.footer_toggle_picto {
    margin-right: 5px;
}
.footer_rs {
    margin-top: 15px;
}
.footer_rs .toggleTexte {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    align-items: center;

}

/******	  PARTIE INFERIEURE	 ******/
.footer_bottom_wrapper {
    border-top: 1px solid #ADB5BD;
    background-color: var(--color-white);
    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-text);
    font-size: 0.813rem;
}
.footer_bottom a {
    color: var(--color-text);
}
.footer_bottom a:hover {
    color: var(--color-primary);
}


/*********************************
		    REALISATIONS
*********************************/

/******	  HERO	 ******/
.slider_top_divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 999;
}
.slider_top_divider svg {
    position: relative;
    display: block;
    width: calc(105% + 1.3px);
    height: 68px;
}
.slider_top_divider .shape-fill {
    fill: #f8f9fa;
}

.slider_divider_reals .shape-fill {
    fill: var(--color-secondary);
}

/******	  INTRO	 ******/
.intro-reals-wrapper {
    padding: var(--padding);
    background-color: var(--color-secondary);
    position: relative;
}
.intro-reals-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.intro-reals-txt {
    border-left: 5px solid var(--color-text);
    padding-left: 55px;
}
.intro-reals-wrapper .divider {
    top: 100%;
    bottom: unset;
}

/******	  LISTE REALISATIONS	 ******/
.reals-wrapper {
    position: relative;
    padding: 180px 15px 140px;
}
.reals-content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    align-items: stretch;
    column-gap: 15px;
    row-gap: 35px;
}
.no-results {
    max-width: var(--section-max);
    margin: var(--center);
}

/******	  CONTACT	 ******/
.contact-pages-wrapper {
    background-color: var(--color-text);
}
.contact-pages-wrapper .contact-titre,
.contact-pages-wrapper .contact-txt,
.contact-pages-wrapper .contact-tel,
.contact-pages-wrapper .contact-tel span {
    color: var(--color-white);
}


/*********************************
		  UNE REALISATION
*********************************/

/******	  DESCRIPTION REALISATION	 ******/
.desc-real-wrapper {
    padding: 90px 15px 150px;
}
.desc-real-content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: minmax(0,2fr) minmax(0,1fr);
    align-items: flex-start;
    column-gap: 85px;
}

/* partie droite */
#main-carousel img {
    max-height: 445px;
    object-fit: contain;
}
#thumbnail-carousel {
    margin-top: 25px;
}
#thumbnail-carousel .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#thumbnail-carousel .splide__slide {
    opacity: 0.6;
}
#thumbnail-carousel .splide__slide.is-active {
    opacity: 1;
}
.splide .custom-catalogue-prev {
    background: url("/design/img/prev.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50% !important;
    transform: translateY(-50%) !important;
}
.splide .custom-catalogue-next {
    background: url("/design/img/next.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50% !important;
    transform: translateY(-50%) !important;
}
#thumbnail-carousel .splide__list {
    justify-content: center;
    align-items: center;
}
.desc-real-txt {
    padding-top: 130px;
}

/* description droite */
.desc-real-right {
    margin-top: -180px;
    z-index: 1000;
    position: sticky;
    top: calc(5rem + 2rem);
    background-color: var(--color-text);
}
.desc-real-sticky-titre {
    display: block;
    padding: 45px 40px;
    border-bottom: 2px solid #343A40;
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: var(--font-regular);
    line-height: 1.1;
}
.desc-real-sticky-list {
    padding: 50px 40px;
    color: var(--color-white);
}
.desc-real-label {
    display: block;
    font-weight: var(--font-semi-bold);
}
.desc-real-sticky-list li {
    padding-bottom: 30px;
}
.desc-real-sticky-list li:last-of-type {
    padding-bottom: 0;
}
.desc-real-sticky-ctas {
    display: flex;
    flex-direction: column;
    height: fit-content;
    background: #343A40;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    color: var(--color-white);
    padding: 70px 40px 40px;
    text-align: center;
}
.desc-real-sticky-ctas .btn_cta_general {
    margin: 20px auto 0;
    width: fit-content;
}



/******	  LISTE REALISATIONS	 ******/
.reals-slider-wrapper {
    background-color: var(--color-secondary);
    position: relative;
    padding: var(--padding);
}
.reals-slider-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.reals-slider-titre {
    max-width: 35%;
}
#reals-slider {
    margin: 70px 0 90px;
}
.reals-slider-wrapper .link-more-reals {
    justify-content: center;
}
.reals-slider-wrapper .custom-splide-arrow {
    top: -120px !important;
}



/*********************************
            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: 15px;
    row-gap: 50px;
    align-items: flex-start;
}
.une_actu_wrapper {
    position: relative;
    overflow: hidden;
}
.une_actu_img_wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.une_actu_img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.une_actu_overlay {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(33,37,41,0.85) 72%, rgba(33,37,41,1) 100%);
}
.une_actu_wrapper .link-more {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}
.une_actu_wrapper:hover .une_actu_img {
    -webkit-filter: none; /* Safari 6.0 - 9.0 */
    filter: none;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transform: scale(1.2); /* IE 9 */
    -webkit-transform: scale(1.2); /* Safari 3-8 */
    transform: scale(1.2);
}
.une_actu_resume {
    padding-top: 25px;
}
.une_actu_wrapper h2 {
    padding-top: 25px;
    font-size: 1.25rem;
    font-weight: var(--font-regular);
    color: var(--color-text);
}


/*********************************
		   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 {
    max-width: var(--section-max);
    padding: 0 30px 180px;
    margin: var(--center);
}
.archivesActus_content {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/*********************************
		    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-regular);
    padding: 5px 18px;
    color: var(--color-white);
    background-image: url("/design/img/pagination.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    display: flex;
    text-align: center;
    justify-content: center;
}


/*********************************
		 PAGES DYNAMIQUES
*********************************/

/******	  HERO	 ******/
.slider_top_wrapper {
    max-height: 550px;
    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%;
}
.slider_top_content {
    padding: var(--padding);
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    width: 100%;
    right: 0;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    max-width: var(--section-max);
}
.slider_top_titles_wrapper {
    max-width: 50%;
}



/******	  PARAGRAPHES	 ******/
.page_dynamique_content {
    display: block;
    margin: var(--center);
    padding: 0;
    width: auto;
    position: relative;
    box-sizing: border-box;
}

/******	  PARAGRAPHES	 ******/
.wrapper-textChamp {
    padding: 100px 0 0;
    display: flex;
    flex-direction: column;
}
.text_champ ul,
.text_champ ul li {
    font-size: var(--normal-font-size);
    position:relative;
    margin-left:15px;
    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: 10px;
}
.toggleWrapper {
    position: relative;
}
.toggleWrapper .toggleTitre {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: var(--font-regular);
    font-size: 1.25rem;
    color: var(--color-white);
    background-color: var(--color-text);
    line-height: 1;
    padding: 25px 150px 25px 50px;
    position: relative;
}
.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/toggle-arrow.svg");
    display: flex;
    align-items: center;
    background-color: var(--color-primary);
    padding: 25px 40px 25px 60px;
    position: absolute;
    right: 0;
    clip-path: polygon(0 100%, 40% 0, 100% 0, 100% 100%);
    top: 0;
    bottom: 0;
}
.toggleWrapper .toggleTitre.active:after {
    content: url("/design/img/toggle-arrow-hover.svg");
}
.toggleWrapper .toggleTexte {
    padding: 30px;
    background-color: transparent;
}
.toggleWrapper .toggleTexte .text_champ {
    padding: 0;
}

/*	  TEXTE SIMPLE	*/
.text__wrapper {
    padding: 0 30px 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: 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 30px 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;
}
.wrapper__carousel_pageDyn .bottom-splide-arrow {
    bottom: -80px !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 {
    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: transparent;
    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-grey);
}
.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: 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 {
    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: 10px;
}
.contactRs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.rs_contact_wrap {
    padding-top: 30px;
}


/*********************************
		 MENTIONS LEGALES
*********************************/
.mentions_wrapper {
    max-width: var(--section-max);
    margin: var(--center);
    padding: var(--padding);
}

/*********************************
		 PLAN DU SITE
*********************************/
/*********************************
		 PLAN DU SITE
*********************************/
.plan_site_wrapper {
    padding: var(--padding);
}
.plan_titre {
    font-size: 1.25rem;
    font-weight: var(--font-semi-bold);
    color: var(--color-text);
    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);
}
.plan_site_content {
    text-align: center;
    max-width: var(--section-max);
    margin: var(--center);
}