/*********************************
			 FONTS
*********************************/
@font-face {
    font-family: 'Urbanist';
    src: url('/design/fonts/Urbanist-Italic.eot');
    src: url('/design/fonts/Urbanist-Italic.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Urbanist-Italic.woff2') format('woff2'),
    url('/design/fonts/Urbanist-Italic.woff') format('woff'),
    url('/design/fonts/Urbanist-Italic.ttf') format('truetype'),
    url('/design/fonts/Urbanist-Italic.svg#Urbanist-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('/design/fonts/Urbanist-Medium.eot');
    src: url('/design/fonts/Urbanist-Medium.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Urbanist-Medium.woff2') format('woff2'),
    url('/design/fonts/Urbanist-Medium.woff') format('woff'),
    url('/design/fonts/Urbanist-Medium.ttf') format('truetype'),
    url('/design/fonts/Urbanist-Medium.svg#Urbanist-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('/design/fonts/Urbanist-SemiBold.eot');
    src: url('/design/fonts/Urbanist-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Urbanist-SemiBold.woff2') format('woff2'),
    url('/design/fonts/Urbanist-SemiBold.woff') format('woff'),
    url('/design/fonts/Urbanist-SemiBold.ttf') format('truetype'),
    url('/design/fonts/Urbanist-SemiBold.svg#Urbanist-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('/design/fonts/Urbanist-Regular.eot');
    src: url('/design/fonts/Urbanist-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Urbanist-Regular.woff2') format('woff2'),
    url('/design/fonts/Urbanist-Regular.woff') format('woff'),
    url('/design/fonts/Urbanist-Regular.ttf') format('truetype'),
    url('/design/fonts/Urbanist-Regular.svg#Urbanist-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('/design/fonts/Urbanist-Bold.eot');
    src: url('/design/fonts/Urbanist-Bold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Urbanist-Bold.woff2') format('woff2'),
    url('/design/fonts/Urbanist-Bold.woff') format('woff'),
    url('/design/fonts/Urbanist-Bold.ttf') format('truetype'),
    url('/design/fonts/Urbanist-Bold.svg#Urbanist-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Le Murmure';
    src: url('/design/fonts/LeMurmure-Regular.eot');
    src: url('/design/fonts/LeMurmure-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/LeMurmure-Regular.woff2') format('woff2'),
    url('/design/fonts/LeMurmure-Regular.woff') format('woff'),
    url('/design/fonts/LeMurmure-Regular.ttf') format('truetype'),
    url('/design/fonts/LeMurmure-Regular.svg#LeMurmure-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/*********************************
		CLASSES GLOBALES
*********************************/

:root {
    /******	  DEFAULT CONTENT STRUCTURE	******/
    --section-max: 1400px;
    --center: auto;
    --padding : 150px 15px;
    --border-radius : 25px;

    /******	  COULEURS	******/
    --color-text: #000000;
    --color-primary: #312783;
    --color-blue: #009FE3;
    --color-green: #009640;
    --color-pink: #E6007E;
    --color-yellow: #F9B233;
    --color-white: #fff;


    /******	  BACKGROUND COLORS	******/
    --background-primary: rgba(49, 39, 131, 0.2);
    --background-blue: rgba(0, 159, 227, 0.2);
    --background-green: rgba(0, 150, 64, 0.2);
    --background-pink: rgba(230, 0, 126, 0.2);
    --background-yellow: rgba(249, 178, 51, 0.2);

    /******	  FONT WEIGHT	******/
    --font-regular: normal;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: bold;

    /******	  FONT AND TYPOGRAPHY	******/
    --body-font: "Urbanist", sans-serif;
    --normal-font-size: 1rem;
    --title-font: "Le Murmure", 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: 17px;
    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, .hero_home_title, .like-h3, .like-h2 {
    padding: 0;
    margin:0;
    line-height: 1.1;
}
h1 {
    position: relative;
    font-size:3.438rem /* 55px */;
    margin:auto;
    font-weight: var(--font-bold);
    font-family: var(--body-font);
}
h2, .like-h2 {
    font-size: 2.813rem /* 45px */;
    margin: 0;
    font-weight: var(--font-bold);
    font-family: var(--body-font);
}
h3, .like-h3 {
    font-size: 2.813rem /* 45px */;
    font-family: var(--title-font);
    font-weight: var(--font-regular);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}


/******	  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: block;
    padding: 13px 35px;
    font-family: var(--body-font);
    border: 2px solid var(--color-primary);
    background-color:var(--color-primary);
    font-size: 1.125rem;
    border-radius: 50px;
    font-weight: var(--font-semi-bold);
    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;
    width: fit-content;
}
.btn_cta_general a,
.btn_cta_general p,
.btn_cta_general span {
    color: var(--color-white);
    text-decoration: none;
}
.btn_cta_general a:hover,
.btn_cta_general p:hover,
.btn_cta_general span:hover {
    text-decoration: none;
    color: var(--color-primary);
}
.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;
}
.btn_cta_general:hover,
.btn_cta_general:hover a,
.btn_cta_general:hover p,
.btn_cta_general:hover span {
    color: var(--color-primary);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.btn_cta_center {
    margin: var(--center);
}


/******	 LIEN PLUS	******/
.link_more {
    font-size: 1.125rem;
    font-weight: var(--font-semi-bold);
    position: relative;
    display: flex;
}
.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 {
    text-decoration: underline;
}


/******	  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-blue);
    transform: rotate(180deg);
}

/*********************************
		 MESSAGE COOKIES
*********************************/
/* Bouton ACCEPTER */
body .termsfeed-com---palette-light .cc-nb-okagree {
    background-color: var(--color-green);
    color: #fff;
    border: none;
}
/* Bouton REFUSER */
body .termsfeed-com---palette-light .cc-nb-reject {
    background-color: var(--color-primary); /* rouge */
    color: #fff;
    border: none;
}
body .termsfeed-com---palette-light .cc-cp-foot-save {
    background-color: var(--color-green); /* rouge */
    color: #fff;
    border: none;
}
#open_preferences_center {
    position: fixed;
    bottom: 1%;
    left: 1%;
    background-color: var(--color-green); /* bleu par défaut */
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: sans-serif;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0.5; /* moitié visible */
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    white-space: nowrap; /* pas de retour à la ligne */
    user-select: none;
    z-index: 9999;
    line-height: 1;
    height: 55px;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#open_preferences_center:hover,
#open_preferences_center:focus {
    opacity: 1; /* totalement visible au survol */
    transform: translateY(-5px); /* petit effet de levée */
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}


/*********************************
		 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 rgba(49, 39, 131, 0.17);
    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: 5rem;
    width: auto;
    object-fit: contain;
}

/******	  BTN CONTACT NAV	 ******/
.contact_link_nav .nav__link {
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
    color: var(--color-white);
    height: fit-content;
    padding: 13px 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: unset;
    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;
}
.insta_nav_link {
    height: 46px;
}


/******	  FIRST NAV LINKS	 ******/
.nav__link {
    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-text);
    position: absolute;
    bottom: -8px;
}

/******	  DROPDOWN	 ******/
.dropdown__item {
    cursor: pointer;
}
.dropdown__arrow {
    transition: transform .4s;
    margin-left: 5px;
}
.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem;
    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-primary);
    color: var(--color-white);
}
.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
    min-width: 200px;
}
/* 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);
}


/*********************************
		 HEADER TRANSPARENT
*********************************/
.transparent_header {
    position: absolute;
    background-color: transparent;
    box-shadow: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.transparent_header .nav__link {
    background-color: transparent;
    color: var(--color-white);
}
.transparent_header .nav__link:hover:after {
    background-color: var(--color-white);
}
.transparent_header .dropdown__arrow {
    content: url("/design/img/nav-arrow-down.svg");
}
.transparent_header .contact_link_nav .nav__link {
    background-color: var(--color-white);
    color: var(--color-text);
}
/* Quand le header est actif (survol ou menu ouvert) */
.transparent_header.active {
    background-color: var(--color-white);
}
.transparent_header.active .nav__link {
    color: var(--color-text);
}
.transparent_header.active .nav__link:hover:after {
    background-color: var(--color-text);
}
.transparent_header.active .contact_link_nav .nav__link {
    background-color: var(--color-text);
    color: var(--color-white);
}
.transparent_header.active .dropdown__arrow {
    content: url("/design/img/nav-arrow-down-black.svg");
}
.transparent_header.active .nav__logo img {
    content: url("/design/img/header/logo-active.svg");
    display: block;
}



    /*********************************
                FIL ARIANE
    *********************************/
.fil_ariane {
    display: block;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 5px;
    font-size: 1rem;
    color: var(--color-text);
    font-weight: var(--font-medium);
    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-text);
    text-transform: capitalize;
}
.fil_ariane a:hover {
    color: var(--color-text);
}
.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;
}

/******	  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: -90px;
}

/******	  ARROW BOTTOM RIGHT	 ******/
.bottom-right-arrow .splide__arrows {
    right: 15px;
    bottom: -80px;
}

/******	  ARROW BOTTOM LEFT	 ******/
.bottom-left-arrow .splide__arrows {
    left: 15px;
    bottom: -80px;
}


/*********************************
		     HOMEPAGE
*********************************/

/******	  HERO	 ******/
.hero_home_wrapper {
    max-width: 100%;
    position: relative;
    background-image: url("/design/img/blue-background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--background-blue);
    background-attachment: fixed;
    padding: 150px 15px 0;
}
.hero_home_content {
    margin: var(--center);
    max-width: var(--section-max);
    display: grid;
    grid-template-columns: minmax(0,1.5fr) minmax(0,1fr);
    column-gap: 130px;
    width: 100%;
    padding: 100px 0 150px;
}
.hero_home_title {
    font-size: 4rem;
    color: var(--color-primary);
    font-weight: var(--font-bold);
    margin-bottom: 45px;
}
.hero_home_right {
    position: relative;
    border-radius: var(--border-radius);
    background-color: var(--color-white);
    padding: 75px 45px 45px;
    height: fit-content;
    margin: auto;
}
.hero_home_right:after {
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--color-blue);
    height: 100%;
    width: 100%;
    border-radius: var(--border-radius);
    transform: rotate(-1deg);
}
.hero_home_right__title {
    display: block;
    position: absolute;
    font-family: var(--title-font);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-size: 3.75rem;
    top: -35px;
}


/******	  VIDEO	 ******/
.video {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}
.video-container {
    position: relative;
    width: 100%;
    max-width: var(--section-max);
    margin: var(--center);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--border-radius);
}
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; /* masquée tant qu’on n’a pas cliqué */
}
.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(49, 39, 131, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
    flex-direction: column;
}
.overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.play-button {
    background: var(--color-white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.play-button::before {
    content: url("/design/img/btn-play.svg");
    margin-left: 5px;
    height: 40px;
}
.play-button-sub {
    padding-top: 5px;
    display: block;
    text-align: center;
    color: var(--color-white);
    font-weight: var(--font-semi-bold);
    font-size: 1.125rem;
}


/******	  REASSURANCES	 ******/
.reassurances {
    border-top: 5px solid var(--color-white);
    background-color: #CCEAD9;
    padding: 350px 15px 150px;
    position: relative;
    margin-top: -230px;
    z-index: 1;
}
.reassurances-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.reassurances-titre {
    color: var(--color-green);
    max-width: 740px;
    margin: var(--center);
    text-align: center;
    display: block;
}
.reassurances-liste {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    align-items: flex-start;
    column-gap: 115px;
    padding-top: 80px;
}
.reassurances-item__title {
    color: var(--color-green);
}
.reassurances-item__txt {
    padding-top: 20px;
}


/******	  SECTION MEDIA (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__image {
    position: relative;
}
.section-media__numb {
    position: absolute;
    display: block;
    line-height: 1;
    left: 15px;
    top: -50px;
    font-size: 7.5rem;
    z-index: 2;
    font-family: var(--title-font);
}
.numb_pink {
    color: var(--color-pink);
}
.section-media__img {
    border-radius: var(--border-radius);
    max-height: 660px;
    width: 100%;
    object-fit: contain;
}
.numb_green {
    color: var(--color-green);
}
.numb_yellow {
    color: var(--color-yellow);
}
.section-media--reverse {
    padding: 0 15px;
}


/******	  REALISATIONS	 ******/
.slider-extended {
    position: relative;
    padding: 150px 0 200px;
    background-color: #FEF0D6;
}
.slider-extended__header {
    padding: 0 15px 80px;
    max-width: var(--section-max);
    margin: var(--center);
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1.5fr) minmax(0,1fr);
    align-items: center;
    column-gap: 80px;
}
.slider-extended_header__title {
    color: var(--color-yellow);
    width: 100%;
}
.btn_cta_yellow {
    margin-left: auto;
    background-color: var(--color-yellow);
    border: 2px solid var(--color-yellow);
}
.btn_cta_yellow:hover {
    background-color: unset;
    color: var(--color-yellow);
}
.slider-extended__item {
    border-radius: var(--border-radius);
    background-color: var(--color-white);
    position: relative;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.slider-extended__item a {
    padding: 70px;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
.slider-extended__item:after {
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-yellow);
    height: 100%;
    width: 100%;
    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;
}
.slider-extended__item:hover:after {
    top: 10px;
    left: 10px;
    transform: rotate(-1deg);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.slider-extended__carousel-wrapper {
    margin-left: calc((100% - min(100%, 83rem)) / 2);
    padding: 0 0 0 15px;
}
.slider-extended__title {
    color: var(--color-yellow);
    font-size: 2.5rem;
    display: block;
    padding-top: 20px;
    margin: 0 auto;
    text-align: center;
}
.slider-extended__img {
    max-height: 110px;
    height: 100%;
    width: auto;
}
.slider-extended__img img {
    display: block;
    margin: var(--center);
    object-fit: contain;
}
#slider-extended .custom-arrow-prev {
    left: auto;
    right: 60px;
    background: url("/design/img/prev-yellow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#slider-extended .custom-arrow-next {
    background: url("/design/img/next-yellow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#slider-extended .splide__slide {
    margin-bottom: 15px;
}


/******	  FAQ	 ******/
.faq {
    padding: var(--padding);
}
.faq-content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: flex-start;
    column-gap: 120px;
}
.faq-title {
    color: var(--color-pink);
}
.btn_cta_pink {
    background-color: var(--color-pink);
    border: 2px solid var(--color-pink);
}
.btn_cta_pink:hover {
    color: var(--color-pink);
    background-color: unset;
}
.btn_cta_green {
    background-color: var(--color-green);
    border: 2px solid var(--color-green);
}
.btn_cta_green:hover {
    color: var(--color-green);
    background-color: unset;
}
.btn_cta_blue {
    background-color: var(--color-blue);
    border: 2px solid var(--color-blue);
}
.btn_cta_blue:hover {
    color: var(--color-blue);
    background-color: unset;
}


/******	  INSTAGRAM	 ******/
.insta {
    position: relative;
    height: 600px;
    overflow: hidden;
}
.insta-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 85px 65px;
    display: flex;
    flex-direction: column;
    align-items: center;

    /* 👉 Largeur max et marge interne */
    max-width: 750px;
    width: calc(100% - 30px); /* 15px de chaque côté */
    box-sizing: border-box; /* pour que padding + width se calculent proprement */
}
.insta-title {
    color: var(--color-primary);
    display: block;
    text-align: center;
    font-size: 2.188rem;
    font-weight: var(--font-bold);
    line-height: 1.1;
}
.insta-log {
    display: block;
    text-align: center;
    padding-top: 8px;
    color: var(--color-primary);
    font-family: var(--title-font);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 2.188rem;
}
.insta iframe {
    max-width: unset;
    pointer-events: none;
}
.middle-screen {
    display: none;
}




    /******	  CONTACT	 ******/
.contact-bottom-wrapper {
    max-width: 100%;
    position: relative;
    background-image: url("/design/img/blue-background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--background-blue);
    background-attachment: fixed;
    padding: var(--padding);
}
.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;
    display: block;
    max-width: 745px;
    width: 100%;
    color: var(--color-primary);
    text-align: center;
}



/*********************************
		     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: 50px;
    align-items: flex-start;
}
.footer_logo img {
    max-width: 280px;
    width: 100%;
}
.footer_links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    column-gap: 50px;
}
footer a {
    color: var(--color-text);
}
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-family: var(--title-font);
    text-transform: uppercase;
    font-size: 2.188rem;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}
footer .toggleTitre {
    pointer-events: none;
}
footer .footer_contact .toggleTexte li {
    padding-bottom: 10px;
}
.footer_toggle_picto {
    margin-right: 15px;
    height: auto;
    object-fit: contain;
}
.footer_rs {
    margin-top: 15px;
}
.footer_rs .toggleTexte {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;

}

/******	  PARTIE INFERIEURE	 ******/
.footer_bottom_wrapper {
    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-blue);
}


/*********************************
		    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;
}
.card-slider__image-wrapper {
    height: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius);
}
.card-slider__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.card-slider__item:hover .card-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;
}
.card-slider__content {
    padding-top: 20px;
}
.card-slider__title {
    font-family: var(--body-font);
    font-weight: var(--font-bold);
    color: var(--color-text);
    font-size: 1.125rem;
    display: block;
    width: 100%;
    text-align: center;
    text-transform: unset;
}
.card-slider__more {
    color: var(--color-blue);
    text-align: center;
    font-weight: var(--font-medium);
    display: block;
    margin: var(--center);
}
.card-slider__more:hover {
    text-decoration: underline;
}
.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 {
    max-width: 100%;
    position: relative;
    background-image: url("/design/img/pink-background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--background-pink);
    background-attachment: fixed;
    padding: 150px 0;
}
.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: 40px;
    color: var(--color-pink);
}
.archivesActus_wrapper .splide .custom-arrow-prev {
    background: url("/design/img/prev-pink.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.archivesActus_wrapper .splide .custom-arrow-next {
    background: url("/design/img/next-pink.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.archivesActus_wrapper .card-slider__more {
    color: var(--color-pink);
}



/*********************************
		    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{
    border-radius: 50px;
    font-weight: var(--font-semi-bold);
    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 {
    height: 550px;
    max-width: 100%;
    position: relative;
    background-image: url("/design/img/green-background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--background-green);
    background-attachment: fixed;
    padding: 0 15px 0;
}
.slider_top_content {
    padding: 0 15px;
    position: absolute;
    z-index: 5;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-green);
    text-align: center;
    max-width: 1024px;
    width: 100%;
}
.slider_top_titles_wrapper {
    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: 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:hover {
    text-decoration: underline;
}
.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 {
    border-bottom: 1px solid var(--color-text);
}
.toggleWrapper .toggleTitre {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 0;
    font-weight: var(--font-bold);
    font-size: 1.125rem;
    color: var(--color-text);
    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:after {
    transform: rotate(180deg);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.toggleWrapper .toggleTexte {
    padding: 10px 0 30px 0;
    background-color: transparent;
}
.toggleWrapper .toggleTexte .text_champ {
    padding: 0;
}

/*	  TEXTE SIMPLE	*/
.text__wrapper {
    padding: 0 15px 150px;
}
.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 {
    max-height: 600px;
    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 200px;
}
.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;
    border-radius: var(--border-radius);
}



/******	  LIENS UTILES	 ******/
.link__wrapper {
    padding: var(--padding);
}
.link__content {
    max-width: var(--section-max);
    margin: var(--center);
}
.link_blocs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: flex-start;
    column-gap: 50px;
}
.link_bloc {
    border-radius: var(--border-radius);
    box-shadow: 9px 9px 99px #cccccc;
    padding: 30px;
}
.link_bloc .link-bloc-titre {
    text-align: center;
    font-weight: var(--font-semi-bold);
    font-size: 1.25rem;
    color: var(--color-text);
    display: block;
}
.link_bloc_container {
    padding-top: 10px;
}
.link_bloc_link {
    position: relative;
}
.link_bloc_link a {
    border-bottom: 1px solid #cccccc;
    padding: 10px 0;
    position: relative;
    width: 100%;
    display: block;
}
.link_bloc_link:after {
    content: url("/design/img/link-row.svg");
    position: absolute;
    right: 0;
    width: auto;
    top: 50%;
    transform: translateY(-50%);
}


/*********************************
             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);
    display: block;
    opacity: 1;
    -webkit-transition: .333s ease top, .333s ease opacity;
    transition: .333s ease top, .333s ease opacity;
}
.form-control {
    display: block;
    width: 100%;
    padding: 20px 0;
    font-size: 1rem;
    box-sizing: border-box;
    line-height: 1.4;
    color: var(--color-text);
    background-color: var(--color-white);
    background-image: none;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    border-radius: 0;
    border-color: var(--color-primary);
    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-blue);
}
.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-blue);
    font-family: var(--body-font);
    border-radius: var(--border-radius);
    color: var(--color-white);
    padding: 20px;
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: var(--font-semi-bold);
    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 {
    text-transform: uppercase;
    font-family: var(--title-font);
    letter-spacing: 0.3px;
    display: block;
    font-size: 2.3rem;
    color: var(--color-primary);
}
.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;
}
.rs_contact_wrap {
    padding-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: 2.3rem;
    text-transform: uppercase;
    font-family: var(--title-font);
    letter-spacing: 0.3px;
    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
*********************************/
.actus {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,3fr);
    column-gap: 60px;
    align-items: flex-start;
}
.filters {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    position: relative;
    padding: 60px 30px 90px;
    height: fit-content;
}
.filters:after {
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--color-yellow);
    height: 100%;
    width: 100%;
    border-radius: var(--border-radius);
    transform: rotate(-1deg);
    box-shadow: 9px 9px 99px rgba(49, 39, 131, 0.15);
}
.actus-filters__titre {
    display: block;
    position: absolute;
    font-family: var(--title-font);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-yellow);
    font-size: 2.813rem;
    top: -35px;
}
/* On cache le radio natif */
.filters input[type="radio"] {
    display: none;
}
/* Style du label qui va contenir le radio custom */
.filters label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-text); /* texte noir par défaut */
}
/* Cercle "vide" */
.filters label::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-yellow); /* jaune (Google Yellow par ex) */
    border-radius: 50%;
    margin-right: 8px;
    box-sizing: border-box;
}
/* Quand le radio est coché → rond jaune plein */
.filters input[type="radio"]:checked + label::before {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}
/* Couleur du texte quand actif */
.filters input[type="radio"]:checked + label {
    color: var(--color-yellow);
}
.reals_content {
    max-width: unset;
    margin: unset;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: flex-start;
    column-gap: 20px;
    row-gap: 40px;
}
.faq-real {
    background-color: var(--background-pink);
}



/*********************************
		      FAQ
*********************************/
.faqs_wrapper {
    padding: var(--padding);
}
.faqs {
    max-width: var(--section-max);
    margin: var(--center);
}


/*********************************
		   PAGE ATTENTE
*********************************/
#pageAttente {
    display: none;
}
#backgroundAttente {
    background-image: url("/design/img/blue-background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--background-blue);
    background-attachment: fixed;
}
/*** HEADER ***/
.header-attente {
    border-bottom: 5px solid var(--color-white);
    padding: 15px;
}
.header-attente__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.header-attente__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
/*** CONTENT ***/
.attente {
    padding: var(--padding);
}
.attente-content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: minmax(0,1.5fr) minmax(0,1fr);
    align-items: center;
    gap: 130px;
}
.attente-construction {
    font-family: var(--title-font);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-size: 2.5rem;
}
.attente-title {
    color: var(--color-primary);
    padding-bottom: 40px;
}
strong {
    font-weight: var(--font-bold);
}
.attente-content__right {
    position: relative;
    border-radius: var(--border-radius);
    background-color: var(--color-white);
    padding: 75px 45px 45px;
}
.attente-content__right_title {
    display: block;
    position: absolute;
    font-family: var(--title-font);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-size: 3.75rem;
    top: -35px;
}
.attente-content__right:after {
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--color-blue);
    height: 100%;
    width: 100%;
    border-radius: var(--border-radius);
    transform: rotate(-1deg);
}
.attente-content_item,
.attente-content_item a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
.attente-content_item {
    padding-bottom: 20px;
}
.attente-content_item:last-of-type {
    padding-bottom: 0;
}
/*** FOOTER ***/
.contact-footer {
    background-color: var(--color-primary);
    padding: 15px;
}
.contact-content-footer {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.contact-content-footer span,
.contact-content-footer a {
    display: block;
    color: var(--color-white);
    font-size: 0.815rem;
}