/*********************************
			 FONTS
*********************************/
@font-face {
    font-family: 'Quicksand';
    src: url('/design/fonts/Quicksand-Bold.eot');
    src: url('/design/fonts/Quicksand-Bold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Quicksand-Bold.woff2') format('woff2'),
    url('/design/fonts/Quicksand-Bold.woff') format('woff'),
    url('/design/fonts/Quicksand-Bold.ttf') format('truetype'),
    url('/design/fonts/Quicksand-Bold.svg#Quicksand-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Quicksand';
    src: url('/design/fonts/Quicksand-Light.eot');
    src: url('/design/fonts/Quicksand-Light.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Quicksand-Light.woff2') format('woff2'),
    url('/design/fonts/Quicksand-Light.woff') format('woff'),
    url('/design/fonts/Quicksand-Light.ttf') format('truetype'),
    url('/design/fonts/Quicksand-Light.svg#Quicksand-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Quicksand';
    src: url('/design/fonts/Quicksand-Regular.eot');
    src: url('/design/fonts/Quicksand-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Quicksand-Regular.woff2') format('woff2'),
    url('/design/fonts/Quicksand-Regular.woff') format('woff'),
    url('/design/fonts/Quicksand-Regular.ttf') format('truetype'),
    url('/design/fonts/Quicksand-Regular.svg#Quicksand-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Quicksand';
    src: url('/design/fonts/Quicksand-Medium.eot');
    src: url('/design/fonts/Quicksand-Medium.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Quicksand-Medium.woff2') format('woff2'),
    url('/design/fonts/Quicksand-Medium.woff') format('woff'),
    url('/design/fonts/Quicksand-Medium.ttf') format('truetype'),
    url('/design/fonts/Quicksand-Medium.svg#Quicksand-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Quicksand';
    src: url('/design/fonts/Quicksand-SemiBold.eot');
    src: url('/design/fonts/Quicksand-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Quicksand-SemiBold.woff2') format('woff2'),
    url('/design/fonts/Quicksand-SemiBold.woff') format('woff'),
    url('/design/fonts/Quicksand-SemiBold.ttf') format('truetype'),
    url('/design/fonts/Quicksand-SemiBold.svg#Quicksand-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}



/*********************************
		CLASSES GLOBALES
*********************************/

:root {
    /******	  DEFAULT CONTENT STRUCTURE	******/
    --section-max: 1400px;
    --center: auto;
    --padding : 120px 20px;
    --border-radius : 25px;

    /******	  COULEURS	******/
    --color-text: #000;
    --color-title: #111827;
    --color-primary: #2f6764;
    --color-secondary: #d7dad9;
    --color-mention: #3b82f6;
    --color-white: #f9fafb;

    /******	  FONT WEIGHT	******/
    --font-light: 300;
    --font-regular: normal;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold : bold;

    /******	  FONT AND TYPOGRAPHY	******/
    --body-font: "Quicksand", sans-serif;
    --normal-font-size: 1rem;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/******	  STRUCTURE PAGE	******/
html {
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    background-size: cover; /* version standardisée */
    font-size: var(--normal-font-size);
    font-family: var(--body-font);
    font-weight: var(--font-regular);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: var(--color-text);
    overflow: hidden;
    content: "1";
    line-height: 1.5;
    background-color: var(--color-white);
}

.tablette, .mobile {
    display: none;
}

/******	  TITRES	******/
h1, h2, h3, h4 {
    padding: 0;
    margin:0;
    line-height: 1.1;
}
h1 {
    position: relative;
    color: var(--color-white);
    font-size:2.813rem /* 45px */;
    margin:auto;
    font-weight: var(--font-bold);
}
h2 {
    font-size: 1.875rem /* 30px */;
    color: var(--color-text);
    margin: 0;
    font-weight: var(--font-bold);
}
h3 {
    font-size: 1.563rem /* 25px */;
    color: var(--color-text);
    font-weight: var(--font-bold);
    text-decoration: none;
}

/******	  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-mention);
    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: 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{
    border: none;
    font-family: var(--body-font);
    font-weight: var(--font-medium);
    display: block;
    padding: 10px 24px;
    background-color:var(--color-primary);
    font-size: 1.125rem;
    border-radius: 50px;
    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;
    border: unset;
}
.btn_cta_general a,
.btn_cta_general p{
    color: var(--color-white);
    text-decoration: none;
}
.btn_cta_general,
.btn_cta_general a:hover {
    text-decoration: none;
}
.btn_cta_center {
    margin: var(--center);
}


/******	  SLIDERS	******/
.splide__track {
    height: 100%;
}
.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*********************************
		CUSTOM SCROLLBAR
*********************************/

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-text) #FFFFFF;
}
/* Chrome, Edge and Safari */
html::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}
html::-webkit-scrollbar-track {
    border-radius: 20px;
    background-color: #FFFFFF;
}
html::-webkit-scrollbar-track:hover {
    background-color: #FFFFFF;
}
html::-webkit-scrollbar-track:active {
    background-color: #FFFFFF;
}
html::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: var(--color-text);
}
html::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-text);
}
html::-webkit-scrollbar-thumb:active {
    background-color: var(--color-text);
}


/*********************************
		 SCROLL TO TOP
*********************************/
.scrollToTop {
    display: none;
    overflow: hidden;
    margin: 1%;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background: url("/design/img/nav-arrow-down.svg") no-repeat center center;
    padding:10px;
    cursor: pointer;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10000;
    background-color: var(--color-primary);
    transform: rotate(180deg);
}

/*********************************
		 MESSAGE COOKIES
*********************************/
/* Bouton ACCEPTER */
body .termsfeed-com---palette-light .cc-nb-okagree {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
}
/* Bouton REFUSER */
body .termsfeed-com---palette-light .cc-nb-reject {
    background-color: var(--color-secondary); /* rouge */
    color: #fff;
    border: none;
}
body .termsfeed-com---palette-light .cc-cp-foot-save {
    background-color: var(--color-primary); /* rouge */
    color: #fff;
    border: none;
}
#open_preferences_center {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--color-primary); /* bleu par défaut */
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: sans-serif;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0.5; /* moitié visible */
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    white-space: nowrap; /* pas de retour à la ligne */
    user-select: none;
    z-index: 9999;
    line-height: 1;
    height: 55px;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#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: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    z-index: 9999;
}

/******	  NAV	 ******/
.nav {
    height: 4rem;
    padding: 0 20px;
}
.nav__data {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}
.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
}
.nav__toggle {
    position: relative;
    width: 22px;
    height: 32px;
}
.nav__logo img {
    width: auto;
    object-fit: contain;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.nav__logo:hover img {
    transform: scale(1.1);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

/******	  BTN CONTACT NAV	 ******/
.contact_link_nav .nav__link {
    height: fit-content;
    border-radius: 50px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    background: var(--color-primary);
    padding: 10px 24px;
    color: var(--color-white);
    font-weight: var(--font-medium);
}
.contact_link_nav .nav__link:hover {
    height: fit-content;
    border-radius: 50px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    background: var(--color-primary);
    padding: 10px 24px;
    color: var(--color-white);
    font-weight: var(--font-medium);
}
.contact_link_nav .nav__link:before {
    content: "";
    background: unset;
}


/******	  FIRST NAV LINKS	 ******/
.nav-item--nodrop {
    position: relative;
}
.nav__link {
    color: var(--color-text);
    background-color: var(--color-white);
    font-weight: var(--font-medium);
    padding: 1.25rem 30px;
    display: flex;
    font-size: 1.125rem;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    position: relative;
}
.nav__link:before {
    content: '';
    background-color: #d1d5db40;
    border-radius: 6px;
    position: absolute;
    inset: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}
.nav__link:hover:before {
    transform: scaleX(1);
}
.nav__link.active {
    color: var(--color-white);
    background-color: var(--color-primary);
    border-radius: 50px;
}
.nav__link.active:before {
    display: none;
}

    /******	  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-semibold);
    transition: background-color .3s;
}
.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--color-secondary);
}
.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}
/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
    max-height: 1000px;
    transition: max-height .4s ease-in;
}
/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

/******	  DROPDOWN SUBMENU	 ******/
.nav-more {
    margin-left: auto;
}
.dropdown__sublink {
    background-color: var(--color-white);
}



/*********************************
          FIL ARIANE
*********************************/
.fil_ariane {
    display: block;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 5px;
    font-size: 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 {
    position: absolute;
    width:100%;
    top:50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding: 18px 30px;
    color:#ffffff;
    text-align: center;
}
.caption_titre{
    font-size: 40px;
    font-family:'Mukta Vaani', sans-serif;
    font-weight: 700;
}
.caption_phrase_accroche{
    font-size:27px;
    font-family:'Mukta Vaani', sans-serif;
    font-style: italic;
    margin-bottom: 50px;
    position:relative;
}
.btn_slider{
    display:inline-block;
    padding: 8px 20px;
    background-color: #a3d8c3;
    font-size: 27px;
    text-transform: uppercase;
    font-weight:700;
}
.btn_slider:hover{
    background-color: #96c6b3;
}
.slide .caption a{
    color:#ffffff;
}

/******	  ARROW	 ******/
.splide__arrow {
    border-radius: unset !important;
}
.splide__arrow svg {
    display: none;
}
.splide .splide__arrow {
    width: 40px !important;
    height: 40px !important;
}
.splide .custom-arrow-prev {
    background: url("/design/img/prev.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.splide .custom-arrow-next {
    background: url("/design/img/next.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/******	  ARROW	BOTTOM CENTER ******/
/******	  ARROW TOP RIGHT	 ******/
/******	  ARROW BOTTOM RIGHT	 ******/

.bottom-center-arrow .splide__arrows,
.top-right-arrow .splide__arrows,
.bottom-right-arrow .splide__arrows {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}
.bottom-center-arrow .custom-arrow-prev,
.top-right-arrow .custom-arrow-prev,
.bottom-right-arrow .custom-arrow-prev {
    left: auto;
    right: 60px;
}
.bottom-center-arrow .splide__arrow,
.top-right-arrow .splide__arrow,
.bottom-right-arrow .splide__arrow {
    position: unset !important;
    transform: unset !important;
}

/******	  ARROW	BOTTOM CENTER ******/
.bottom-center-arrow .splide__arrows {
    left: 50%;
    transform: translateX(-50%);
    bottom: -55px;
}

/******	  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	MIDDLE CENTER ******/
.center-middle-arrow .splide__arrow--next {
    right: -1em;
}
.center-middle-arrow .splide__arrow--prev {
    left: -1em;
}


/*********************************
		     HOMEPAGE
*********************************/

/******	  HERO	 ******/
.hero_home_wrapper {
    max-height: 450px;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    position: relative;
}
.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: #13233a;
    opacity: 0.3;
    width: 100%;
    height: 100%;
}
.hero_home_content {
    max-width: var(--section-max);
    padding: 0 20px;
    left: 50%;
    width: 100%;
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
}
.hero_home_wrapper .caption {
    display: none;
}
.hero_home_title {
    font-size: 3rem;
    max-width: 720px;
    margin: 0;
    font-weight: var(--font-bold);
}
.hero_home_cta {
    margin-top: 1.5rem;
    max-width: 720px;
    padding: 28px 54px;
    font-size: 1rem;
    line-height: 1.1;
}


/******	  SECRETARIAT	 ******/
.secretariat {
    padding: var(--padding);
}
.secretariat-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.secretariat-title {
    text-align: center;
    margin: var(--center);
    display: block;
    padding-bottom: 4rem;
}
.secretariat-sub {
    text-transform: uppercase;
    font-size: 1.7rem;
    font-weight: var(--font-bold);
    letter-spacing: 1px;
    padding-bottom: 0.5rem;
    display: block;
}
.secretariat-h2 {
    font-size: 3rem;
    font-weight: bold;
}
.secretariat-bloc {
    border: 1px solid var(--color-secondary);
    padding: 40px;
    position: relative;
}
.secretariat-bloc__full {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    column-gap: 50px;
    align-items: flex-start;
    margin-bottom: 30px;
}
.secretariat-bloc__left_h3 {
    font-weight: var(--font-bold);
    font-size: 1.8rem;
    color: var(--color-text);
    padding-bottom: 1.5rem;
    max-width: 80%;
}
.secretariat-bloc__right_img {
    height: 210px;
    width: 100%;
    object-fit: cover;
}
.secretariat-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    column-gap: 30px;
}
.secretariat-bloc__row:after {
    position: absolute;
    top: 30px;
    right: 30px;
    content: url("/design/img/arrow.svg");
    display: block;
}
.secretariat-bloc a {
    color: var(--color-text);
}
.secretariat-services__titre {
    padding: 20px 0;
}
.secretariat-services__list,
.secretariat-services__list li {
    list-style-type: initial;
    margin-left: 20px;
}


/******	  CIBLE	 ******/
.cible {
    padding: var(--padding);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.cible-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #13233a;
    opacity: 0.5;
    z-index: 1;
}
.cible-content {
    max-width: var(--section-max);
    margin: var(--center);
    z-index: 2;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: center;
    column-gap: 50px;
}
.cible-h2 {
    color: var(--color-white);
    font-size: 3rem;
    max-width: 450px;
    padding-bottom: 80px;
}
.cible_right {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.cible_item {
    background-color: var(--color-white);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
    align-items: center;
}
.cible-h3 {
    font-size: 1.125rem;
    padding-bottom: 20px;
}
.cible-item__right {
    min-width: 100px;
    min-height: 100px;
    max-width: 100px;
    max-height: 100px;
}
.cible-item__img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}


/*********************************
		 SECRETARIAT MEDICAL
*********************************/
/***** HERO ******/
.hero_page_cta {
    font-size: 1.5rem;
}
/***** SECRETARIAT MEDICAL *****/
.secretariat-medical {
    padding: var(--padding);
}
.secretariat-medical__content {
    max-width: var(--section-max);
    margin: var(--center);
}
.secretariat-medical__titre {
    display: block;
    margin: var(--center);
    text-align: center;
}
.service-h1 {
    color: var(--color-text);
    font-size: 2.5rem;
}
.secretariat-medical__intro {
    max-width: 450px;
    display: block;
    margin:  0.5rem auto 120px;
}
.secretariat-medical__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.secretariat-medical__row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 30px;
}
.secretariat-medical__item {
    display: flex;
    justify-content: center;
    --column-width: 50%;
    width: calc(var(--column-width) - 30px * ((2 - 1) / 2));
}
.service-item {
    width: 500px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0px 0px 40px 0px #0000001C;
    padding: 30px;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.secretariat-medical__item_list {
    text-align: center;
}
.secretariat-medical__item_h3 {
    text-align: center;
}


/*********************************
		 GESTION ADMINISTRATIVE
*********************************/
.gestion-administrative__row .secretariat-medical__item {
    --column-width: 33.3%;
    width: calc(var(--column-width) - 30px * ((3 - 1) / 3));
}


/*********************************
	          ABOUT
*********************************/
.about {
    padding: var(--padding);
}
.about-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.about-h1 {
    color: var(--color-text);
    display: block;
    max-width: 860px;
    margin: var(--center);
    text-align: center;
    font-size: 1.8rem;
    padding-bottom: 80px;
}
.about-txt {
    column-count: 2;
    column-gap: 50px;
}


/*********************************
	          TARIFS
*********************************/
.tarifs {
    padding: var(--padding);
}
.tarifs-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.no-title {
    font-size: 0;
    line-height: 0;
    visibility: hidden;
}
.tarifs-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    column-gap: 30px;
}
.tarifs-item {
    border-radius: 16px;
    box-shadow: 0px 12px 24px 0px #00000012;
    padding: 30px;
}
.tarifs-item__title {
    font-size: 2rem;
}
.tarifs-item__txt {
    display: block;
    margin-top: 1rem;
}
.tarifs-item__big {
    font-size: 1.4rem;
    line-height: 1.1;
}
.tarifs-cta {
    display: block;
    margin: 50px auto 0;
}




/*********************************
		     FOOTER
*********************************/

.footer {
    padding: var(--padding);
}
.footer-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.footer-list {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 40px;
    flex-wrap: wrap;
}
.footer a {
    font-weight: var(--font-medium);
    font-size: 0.815rem;
    color: var(--color-text);
}
.footer .footer-mentions {
    color: var(--color-mention);
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 30px;
    font-size: 1rem;
}



/*********************************
		    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;
}
.une_actu_img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.no-result {
    max-width: var(--section-max);
    margin: var(--center);
}


/*********************************
		   UNE ACTUALITE
*********************************/
.uneActu_wrapper {
    max-width: var(--section-max);
    padding: 0 30px 180px;
    margin: var(--center);
}
.uneActu_img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    padding-bottom: 80px;
}

/****** ARCHIVES ******/
.archivesActus_wrapper {
    padding: 150px 0;
    background-color: grey;
}
.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 20px;
}
.archivesActus_title {
    display: block;
    padding-bottom: 40px;
    font-weight: var(--font-bold);
    font-size: 1.25rem;
}



/*********************************
		    PAGINATION
*********************************/
.paginationCMS{
    text-align: center;
    padding: 0 30px 100px;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.paginationCMS a, .paginationCMS span{
    margin: 10px;
    font-size:1rem;
    color: var(--color-text);
}
.paginationCMS .pageCourante{
    font-weight: var(--font-medium);
    padding: 5px 18px;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    width: 15px;
    display: flex;
    text-align: center;
    justify-content: center;
}


/*********************************
		 PAGES DYNAMIQUES
*********************************/

/******	  HERO	 ******/
.slider_top_wrapper {
    max-height: 550px;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    position: relative;
}
.slider_top_content {
    padding: 0 20px;
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    text-align: center;
}
.slider_top_titles_wrapper {
    max-width: 1645px;
    margin: var(--center);
}
.slider_top_wrapper .caption {
    display: none;
}


/******	  PARAGRAPHES	 ******/
.page_dynamique_content {
    display: block;
    margin: var(--center);
    padding: 0;
    width: auto;
    position: relative;
    box-sizing: border-box;
}

/******	  PARAGRAPHES	 ******/
.wrapper-textChamp {
    padding: 180px 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-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%;
}
.toggleWrapper .toggleTitre {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 30px;
    font-weight: var(--font-bold);
    font-size: 1.25rem;
    color: var(--color-white);
    background-color: var(--color-primary);
    border-radius: 16px;
    text-transform: uppercase;
    line-height: 1;
}
.toggleWrapper .toggleTitre:after {
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    content: url("/design/img/nav-arrow-down.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: 30px;
    background-color: var(--color-white);
}
.toggleWrapper .toggleTexte .text_champ {
    padding: 0;
}

/*	  TEXTE SIMPLE	*/
.text__wrapper {
    padding: 0 20px 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 {
    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 20px 150px;
}
.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;
    width: 100%;
    object-fit: cover;
}



/******	  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-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: repeat(2, minmax(0,1fr));
    align-items: center;
    gap: 80px;
}
.texte_accroche{
    font-size: var(--normal-font-size);
    box-sizing: border-box;
}

/******	  FORMULAIRE	******/
.contact-form {
    background-color: var(--color-primary);
    border-radius: 60px;
    box-shadow: 0px 20px 32px 0px #00000010;
    padding: 32px 40px 40px 40px;
}
#formulaire {
    margin: 0 auto 30px;
}
.champs_obligatoires{
    margin-top: 30px;
}
.content-formDemande {
    max-width: 335px;
    margin: var(--center);
}

/* CHAMPS FORMULAIRE */
textarea {
    resize: none;
}
.form-group{
    padding: 10px 0;
}
.form-label {
    font-size: 1rem;
    color: var(--color-white);
    font-family: var(--body-font);
    font-weight: var(--font-regular);
    margin: 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: 4px;
    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-style: none;
    box-shadow: none;
    font-family: var(--body-font);
}
.form-control:focus,
input.filled,
textarea.filled {
    box-shadow: none;
}
.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-white);
    font-family: var(--body-font);
    color: var(--color-text);
    padding: 20px;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: var(--font-regular);
    margin-bottom: 20px;
}
.chkContactRGPD_label {
    color: var(--color-white);
}
.btn-cta-contact {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* BTNS FORMULAIRE */
.wrapper-btnForm {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/******	  COORDONNEES	******/
.contact-intro {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-bold);
    line-height: 1.1;
}
.contact-name {
    display: block;
    font-weight: var(--font-bold);
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 10px;
}
.coordonnees_contact {
    margin-top: 40px;
}

.map {
    height: 400px;
    width: 100%;
    margin-bottom: 30px;
}
.map iframe{
    width:100%;
    height: 100%;
}
.titleContact {
    text-transform: uppercase;
    display: block;
    font-size: 1.125rem;
    font-weight: var(--font-bold);
}
.textContact {
    margin-top: 15px;
}
.textContact a {
    color: var(--color-mention);
}
.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;
    gap: 20px;
}
.rs_contact_wrap {
    padding-top: 30px;
}


/*********************************
		 MENTIONS LEGALES
*********************************/
.mentions_wrapper {
    padding: var(--padding);
}
.mentions_content {
    max-width: var(--section-max);
    margin: var(--center);
}


/*********************************
		 PLAN DU SITE
*********************************/
.plan_site_wrapper {
    padding: var(--padding);
}
.plan_site_content {
    max-width: var(--section-max);
    margin: var(--center);
    text-align: center;
}
.plan_titre {
    font-size: 1.25rem;
    font-weight: var(--font-bold);
    color: var(--color-primary);
    padding-top: 40px;
    padding-bottom: 5px;
}
.plan_titre:first-of-type {
    padding-top: 0;
}
.plan_site_content a {
    color: var(--color-text);
}
.plan_site_content a:hover {
    color: var(--color-primary);
}