/*********************************
			 FONTS
*********************************/
@font-face {
    font-family: 'Nohemi';
    src: url('/design/fonts/Nohemi-Light.eot');
    src: url('/design/fonts/Nohemi-Light.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Nohemi-Light.woff2') format('woff2'),
    url('/design/fonts/Nohemi-Light.woff') format('woff'),
    url('/design/fonts/Nohemi-Light.ttf') format('truetype'),
    url('/design/fonts/Nohemi-Light.svg#Nohemi-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nohemi';
    src: url('/design/fonts/Nohemi-Regular.eot');
    src: url('/design/fonts/Nohemi-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Nohemi-Regular.woff2') format('woff2'),
    url('/design/fonts/Nohemi-Regular.woff') format('woff'),
    url('/design/fonts/Nohemi-Regular.ttf') format('truetype'),
    url('/design/fonts/Nohemi-Regular.svg#Nohemi-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nohemi Med';
    src: url('/design/fonts/Nohemi-Medium.eot');
    src: url('/design/fonts/Nohemi-Medium.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Nohemi-Medium.woff2') format('woff2'),
    url('/design/fonts/Nohemi-Medium.woff') format('woff'),
    url('/design/fonts/Nohemi-Medium.ttf') format('truetype'),
    url('/design/fonts/Nohemi-Medium.svg#Nohemi-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Instrument Sans';
    src: url('/design/fonts/InstrumentSans-Regular.eot');
    src: url('/design/fonts/InstrumentSans-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/InstrumentSans-Regular.woff2') format('woff2'),
    url('/design/fonts/InstrumentSans-Regular.woff') format('woff'),
    url('/design/fonts/InstrumentSans-Regular.ttf') format('truetype'),
    url('/design/fonts/InstrumentSans-Regular.svg#InstrumentSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans';
    src: url('/design/fonts/InstrumentSans-Bold.eot');
    src: url('/design/fonts/InstrumentSans-Bold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/InstrumentSans-Bold.woff2') format('woff2'),
    url('/design/fonts/InstrumentSans-Bold.woff') format('woff'),
    url('/design/fonts/InstrumentSans-Bold.ttf') format('truetype'),
    url('/design/fonts/InstrumentSans-Bold.svg#InstrumentSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans';
    src: url('/design/fonts/InstrumentSans-Italic.eot');
    src: url('/design/fonts/InstrumentSans-Italic.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/InstrumentSans-Italic.woff2') format('woff2'),
    url('/design/fonts/InstrumentSans-Italic.woff') format('woff'),
    url('/design/fonts/InstrumentSans-Italic.ttf') format('truetype'),
    url('/design/fonts/InstrumentSans-Italic.svg#InstrumentSans-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}




/*********************************
		CLASSES GLOBALES
*********************************/

:root {
    /******	  DEFAULT CONTENT STRUCTURE	******/
    --section-max: 1400px;
    --center: auto;
    --padding : clamp(80px, calc(74px + 1.8vw), 100px) clamp(20px, calc(-3.7px + 7.4vw), 100px);
    --border-radius : 25px;

    /******	  COULEURS	******/
    --color-text: #121B33;
    --color-primary: #121B33;
    --color-title : #566299;
    --color-secondary: #E1E2E5;
    --color-mention: rgba(18, 27, 51, 0.3);
    --color-white: #fff;

    /******	  FONT WEIGHT	******/
    --font-light: 300;
    --font-regular: normal;
    --font-medium: 500;
    --font-bold: bold;

    /******	  FONT AND TYPOGRAPHY	******/
    --body-font: "Instrument Sans", sans-serif;
    --normal-font-size: 1rem;
    --title-font: "Nohemi", sans-serif;
    --title-font-medium: "Nohemi Med", sans-serif;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/******	  STRUCTURE PAGE	******/
html {
    overflow-x: hidden;
    position: relative;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    font-size: 98%;
    scroll-behavior: smooth;
    height: 100%;
}
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);
    content: "1";
    line-height: 1.5;
    background-color: #F9F9F9;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    background-color: #F9F9F9;
    position: relative;
    z-index: 20; /* supérieur au header */
    /*padding-bottom: clamp(80px, calc(74px + 1.8vw), 100px); !* optionnel pour effet de chevauchement *!*/
    flex: 1;
}


.tablette, .mobile {
    display: none;
}

/******	  TITRES	******/
h1, h2, h3, h4,
.like-h2, .like-h3 {
    padding: 0;
    margin:0;
    line-height: 1.4;
}
h1 {
    position: relative;
    color: var(--color-primary);
    margin:auto;
    font-weight: var(--font-light);
    font-family: var(--title-font);
    font-size: 0;
    visibility: hidden;
    line-height: 0;
}
h2, .like-h2 {
    font-size: 1.563rem /* 30px */;
    color: var(--color-title);
    font-weight: var(--font-light);
    font-family: var(--title-font);
    padding-bottom: 35px;
}
h3, .like-h3 {
    font-size: 1.4rem /* 30px */;
    color: var(--color-title);
    font-weight: var(--font-light);
    font-family: var(--title-font);
}
.no-title {
    font-size: 0;
    line-height: 0;
    visibility: hidden;
}



/******	  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-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{
    font-family: var(--title-font);
    display: inline-block;
    vertical-align: middle;
    padding: 20px 30px;
    letter-spacing: 1.2px;
    background-color: transparent;
    font-size: 1rem;
    font-weight:normal;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    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;
    line-height: 1;
}
.btn_cta_general:after {
    display: inline-block;
    content: "";
    width: 14px;
    height: 14px;
    background: url(/design/img/cta_arrow.svg) no-repeat center;
    background-size: contain;
    flex-shrink: 0;
    margin-left: 8px;
    line-height: 1;
}
.btn_cta_general:hover:after {
    background-image: url("/design/img/cta_arrow_white.svg");
}
.btn_cta_general a,
.btn_cta_general p,
.btn_cta_general * {
    color: var(--color-primary);
    text-decoration: none;
    display: inline-block;
    line-height: 1;
}
.btn_cta_general:hover{
    background-color: var(--color-primary);
    color: var(--color-white);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.btn_cta_general:hover a,
.btn_cta_general:hover p,
.btn_cta_general:hover * {
    color: var(--color-white);
}
.btn_cta_general a:hover,
.btn_cta_general p:hover,
.btn_cta_general *:hover {
    text-decoration: none !important;
}
.btn_cta_center {
    margin: var(--center);
}


/******	 LIEN PLUS	******/
.link_more {
    font-size: 1rem;
    font-weight: normal;
    position: relative;
    display: inline-block;
    border-bottom: 1px solid var(--color-primary);
    width: fit-content;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    color: var(--color-primary);
}
.link_more p,
.link_more a,
.link_more span,
.link_more * {
    font-size: 1rem;
    font-weight: normal;
    color: var(--color-primary);
}
.link_more:after {
    content: url("/design/img/link-row.svg");
    display: inline-flex;
    margin-left: 8px;
    align-items: center;
}
.link_more:hover {
    padding-bottom: 3px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.link_more:hover a,
.link_more a:hover {
    text-decoration: none !important;
}


    /******	  SLIDERS	******/
/*.splide__track {*/
/*    height: 100%;*/
/*}*/
.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*********************************
		CUSTOM SCROLLBAR
*********************************/

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-text) #FFFFFF;
}
/* Chrome, Edge and Safari */
html::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}
html::-webkit-scrollbar-track {
    border-radius: 20px;
    background-color: #FFFFFF;
}
html::-webkit-scrollbar-track:hover {
    background-color: #FFFFFF;
}
html::-webkit-scrollbar-track:active {
    background-color: #FFFFFF;
}
html::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: var(--color-text);
}
html::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-text);
}
html::-webkit-scrollbar-thumb:active {
    background-color: var(--color-text);
}


/*********************************
		 SCROLL TO TOP
*********************************/
.scrollToTop {
    display: block;
    height: 51px;
    width: 51px;
    background: url("/design/img/top.svg") no-repeat center center;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 85px;
    z-index: 9999;
}

/*********************************
		 MESSAGE COOKIES
*********************************/
/* Bouton ACCEPTER */
body .termsfeed-com---palette-light .cc-nb-okagree {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    font-size: 14px !important;
}
/* Bouton REFUSER */
body .termsfeed-com---palette-light .cc-nb-reject {
    background-color: var(--color-secondary); /* rouge */
    color: var(--color-text);
    border: none;
    font-size: 14px !important;
}
body .termsfeed-com---palette-light .cc-cp-foot-save {
    background-color: var(--color-primary); /* rouge */
    color: #fff;
    border: none;
    font-size: 14px !important;
}
#open_preferences_center {
    position: fixed;
    bottom: 20px;
    right: 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.3; /* 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: 51px;
    width: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px !important;
}

#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);
}
.termsfeed-com---nb .cc-nb-text {
    font-size: 14px !important;
    line-height: 1.2;
}
.termsfeed-com---palette-light .cc-nb-title {
    line-height: 1.1;
    font-size: 16px !important;
}


/*********************************
		 BANDEAU MESSAGE
*********************************/
.top_banner {
    color: var(--color-white);
    text-align: center;
    background-color: var(--color-text);
    padding: 10px;
    font-family: var(--body-font);
}

.top_banner p {
    font-weight: var(--font-regular);
    font-size: 0.875rem /* 14px */;
}


/*********************************
		   HEADER WHITE
*********************************/
header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    z-index: 9999;
    height: fit-content;
    padding: clamp(20px, calc(11px + 2.7vw), 50px);
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: clamp(80px, calc(74px + 1.8vw), 100px);
}

/***** HEADER BRAND ******/
.header-brand span {
    color: var(--color-white);
    font-family: var(--title-font);
    font-size: clamp(1.3rem, 10vw, 7rem);
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -0.03em;
    max-width: 8ch;
    display:block;
    white-space:nowrap;
}
.header-nav {
    display: flex;
    align-items: stretch;
}


/******	  NAV	 ******/
.nav__data {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
}
.nav__logo img {
    max-width: clamp(100px, calc(76px + 7vw), 180px);
}
.nav__toggle {
    position: relative;
    width: 22px;
    height: 32px;
    z-index: 9999;
}


/******	  FIRST NAV LINKS	 ******/
.nav__link {
    color: rgba(255, 255, 255, 0.36);
    background-color: transparent;
    padding: 1.25rem 30px;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.nav__link:hover,
.nav__link.active {
    color: var(--color-white);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.nav__link:hover:before,
.nav__link.active:before {
    content: "";
    display: block;
    width: 55px;
    height: 1px;
    background-color: var(--color-white);
    position: absolute;
    left: -71px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

/******	  DROPDOWN	 ******/
.dropdown__item {
    cursor: pointer;
}
.dropdown__arrow {
    transition: transform .4s;
    margin-left: 5px;
}
.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--color-text);
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s;
}
.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--color-secondary);
}
.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}
/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
    max-height: 1000px;
    transition: max-height .4s ease-in;
}
/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

/******	  DROPDOWN SUBMENU	 ******/
.nav-more {
    margin-left: auto;
}
.dropdown__sublink {
    background-color: var(--color-white);
}

    /*********************************
                FIL ARIANE
    *********************************/
.fil_ariane {
    display: block;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 5px;
    font-size: 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%;
}

    /******	  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: 25px;
}
.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: -60px;
}

/******	  ARROW	MIDDLE CENTER ******/
.center-middle-arrow .splide__arrow--next {
    right: -1em;
}
.center-middle-arrow .splide__arrow--prev {
    left: -1em;
}


/*********************************
		     HOMEPAGE
*********************************/

/**** TEXTE SUR DEUX COLONNES ****/
.tiny-cols__content {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    justify-content: space-between;
    column-gap: clamp(20px, calc(11px + 2.7vw), 50px);
    align-items: flex-start;
}
.surtitre {
    font-size: 1.3rem;
    font-weight: var(--font-medium);
    font-family: var(--title-font-medium);
    text-transform: uppercase;
    color: var(--color-text);
    line-height: 1;
    display: block;
    padding-bottom: 5px;
    letter-spacing: 0.5px;
}
.tiny-cols__left {
    min-width: 200px;
}
.tiny-cols__right {
    max-width: 930px;
    width: 100%;
}
.tiny-cols__title {
    padding-bottom: 35px;
}
.tiny-cols__txt {
    column-count: 2;
    column-gap: clamp(20px, calc(11px + 2.7vw), 50px);
}
.tiny-cols__img {
    padding-top: clamp(20px, calc(11px + 2.7vw), 50px);
}

.tiny-cols__txt.link_more,
.tiny-cols__txt .link_more,
.tiny-cols__txt.btn_cta_general,
.tiny-cols__txt .btn_cta_general {
    column-count: 1;
}


/**** AVIS ****/
.reviews {
    padding: 0 clamp(80px, calc(74px + 1.8vw), 100px) clamp(80px, calc(74px + 1.8vw), 100px);
}
.reviews-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.reviews-inner-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: clamp(80px, calc(74px + 1.8vw), 100px);
    padding-top: clamp(20px, calc(11px + 2.7vw), 50px);
    max-width: var(--section-max);
    margin: var(--center);
}
.reviews-inner-left {
    max-width: 180px;
}
.reviews-moyenne {
    margin-top: 13px;
}
.reviews-inner-right {
    max-width: 930px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0,1fr);
    column-gap: 20px;
}
.slider-reviews__meta {
    margin-top: clamp(20px, calc(11px + 2.7vw), 50px);
}
.slider-reviews__author {
    font-weight: var(--font-medium);
    font-size: 1.25rem;
    color: var(--color-primary);
    font-family: var(--title-font-medium);
}
.slider-reviews__star,
.reviews-moyenne__star {
    display: inline-flex;
    gap: 5.5px;
}
.reviews-slider--wrapper {
    position: relative;
}
.reviews-slider--wrapper .bottom-right-arrow .splide__arrows {
    bottom: 0;
}
#slider-reviews .splide__list {
    align-items: flex-start;
    height: auto;
}
.slider-reviews__text {
    font-size: 1.3rem;
    color: var(--color-primary);
}
.slider-reviews__item {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity .35s ease, transform .35s ease;
    height: 0 !important;
}

.slider-reviews__item.is-active {
    opacity: 1;
    transform: translateY(0);
    height: auto !important;
}
.reviews-inner-img {
    max-width: 60px;
}
.slider-reviews__item .h2, .slider-reviews__item .like-h2 {
    padding-bottom: 0;
}



/**** MOVIE *****/
.movie-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    max-height: 550px; /* ajuste ici */
}
/* Thumbnail + vidéo */
.video-overlay {
    background-color: rgba(16, 16, 16, 0.11);
    z-index: 1;
}
.video-overlay,
.video-thumb,
.video-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .3s ease;
}
.video-player {
    object-fit: contain;
    opacity: 0;
    background-color: #000;
    pointer-events: none;
}
/* BOUTON PLAY/PAUSE */
.video-control {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5) url('/design/img/play.svg') center/50% no-repeat;
    cursor: pointer;
    transition: background .3s ease;
    background-size: auto;
    z-index: 2;
}
/* État pause */
.video-control.pause {
    background: rgba(255, 255, 255, 0.5) url('/design/img/pause.svg') center/50% no-repeat;
    background-size: auto;
}
.video-wrapper.playing .video-player {
    opacity: 1;
    pointer-events: auto;
}
.video-wrapper.playing .video-thumb {
    opacity: 0;
}



/******	  TYPE PARAGRAPHE 1 : slider titre + icone + texte	 ******/
.quick-access {
    padding: var(--padding);
}
.quick-access__container {
    max-width: var(--section-max);
    margin: var(--center);
}
.quick-access__header {
    display: flex;
    justify-content: flex-start;
    column-gap: 30px;
    padding-bottom: 20px;
}
.quick-access__icon {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
}


/******	  TYPE PARAGRAPHE 2 : texte + image à gauche	 ******/
.section-media {
    padding: var(--padding);
}
.section-media__container {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: center;
    column-gap: 130px;
}
.section-media__img {
    border-radius: var(--border-radius);
    max-height: 660px;
    width: 100%;
    object-fit: contain;
}
.section-media__text {
    padding: 40px 0;
}


/******	  TYPE PARAGRAPHE 4 : SLIDER + texte + img grande	 ******/
.card-slider {
    padding: var(--padding);
}
.card-slider__container {
    max-width: var(--section-max);
    margin: var(--center);
}
.card-slider__heading {
    padding-bottom: clamp(20px, calc(11px + 2.7vw), 50px);
    max-width: 50%;
}
#card-slider {
    padding-bottom: 65px;
}
.card-slider__link {
    display: block;
}
.card-slider__image-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius);
}
.card-slider__image {
    border-radius: var(--border-radius);
    height: 445px !important;
    width: 100% !important;
    object-fit: cover !important;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.card-slider__link: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 {
    display: flex;
    justify-content: space-between;
    column-gap: 15px;
    align-items: center;
    padding: 20px;
}
.card-slider__icon {
    height: 35px !important;
    width: 35px !important;
    object-fit: contain !important;
}


/******	  FEATURE SLIDER	 ******/
.feature-slider {
    padding: var(--padding);
}
.feature-slider__container {
    margin: var(--center);
    max-width: var(--section-max);
}
.feature-slider__heading{
    padding-bottom: clamp(20px, calc(11px + 2.7vw), 50px);
    max-width: 50%;
}
#feature-slider {
    padding-bottom: 65px;
}
.feature-slider__link {
    display: block;
    position: relative;
}
.feature-slider__image-wrapper {
    z-index: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    position: relative;
    height: 350px;
    width: 100%;
}
.feature-slider__overlay {
    background-color: var(--color-text);
    opacity: 0.3;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.feature-slider__image {
    border-radius: var(--border-radius);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.feature-slider__link:hover .feature-slider__image {
    transform: scale(1.2);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.feature-slider__content {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 20px;
    right: 20px;
}


/******	  PARTENAIRES	 ******/
.partenaires-wrapper {
    padding: 0 20px clamp(80px, calc(74px + 1.8vw), 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;
    text-align: center;
}
.un-partenaire img {
    max-width: 200px;
    height: 80px;
    object-fit: contain;
}


/******	  TYPE PARAGRAPHE 6 :  texte + img full à gauche	 ******/
.media-split {
    padding: clamp(80px, calc(74px + 1.8vw), 100px) 0;
}
.media-split__container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    column-gap: clamp(80px, calc(74px + 1.8vw), 100px);
    align-items: center;
}
.media-split__left {
    position: relative;
    width: 100%;
    height: 100%;
}
.media-split__image {
    position: absolute;
    max-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.media-split__right {
    position: relative;
    max-width: 650px;
    place-self: center start;
    padding: 150px 20px 150px 0;
}
.media-split__text {
    padding: 40px 0;
}


/******	  TYPE PARAGRAPHE 7 :  texte + img full à droite	 ******/
.media-split--reverse {
    padding: 150px 0;
}
.media-split--reverse__container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    column-gap: clamp(80px, calc(74px + 1.8vw), 100px);
    align-items: center;
}
.media-split--reverse__right {
    position: relative;
    width: 100%;
    height: 100%;
}
.media-split--reverse__image {
    position: absolute;
    max-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.media-split--reverse__left {
    position: relative;
    max-width: 650px;
    place-self: center end;
    padding: 150px 0 150px 20px;
}
.media-split--reverse__text {
    padding: 40px 0;
}


/******	  AVIS	 ******/
.slider-extended {
    position: relative;
    padding: 150px 0;
}
.slider-extended__header {
    padding: 0 20px 80px;
    max-width: var(--section-max);
    margin: var(--center);
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: center;
    column-gap: 80px;
}
#slider-extended .splide__list {
    align-items: flex-end;
}
.slider-extended__item {
    border: 1px solid var(--color-text);
    border-radius: var(--border-radius);
    padding: 20px;
    height: 100%;
}
.slider-extended__meta {
    width: 100%;
    padding-top: 30px;
}
.slider-extended__author,
.slider-extended__date {
    display: block;
    font-weight: var(--font-semi-bold);
}
.slider-extended__carousel-wrapper {
    margin-left: calc((100% - min(100%, 89rem)) / 2);
    padding: 0 0 0 20px;
}


/******	  CONTACT	 ******/
.contact-bottom-wrapper {
    padding: var(--padding);
    background: #a6a6a6;
}
.contact-bottom-content {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-bottom-title {
    padding-bottom: 40px;
}


/*********************************
		     FOOTER
*********************************/
footer {
    position: sticky;
    left: 0;
    bottom: 0;
    z-index: 0;
    margin-top: auto;
}
.footer {
    background-color: var(--color-secondary);
    padding: clamp(20px, calc(11px + 2.7vw), 50px);
}
.footer-content {
    margin-right: calc((100% - min(100%, 87.5rem)) / 2);
    position: relative;
}
.footer-contact {
    margin-bottom: clamp(20px, calc(11px + 2.7vw), 40px);
}
.footer-contact p {
    font-size: 1rem;
    line-height: 1.2;
    color: var(--color-primary);
}
.footer-mentions {
    color: var(--color-primary);
}
.footer_rs {
    padding-top: 0.2em;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}




/*********************************
		    ACTUALITES
*********************************/
.actus_wrapper {
    padding: clamp(80px, calc(74px + 1.8vw), 100px) clamp(80px, calc(74px + 1.8vw), 100px);
}
.actus_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    flex-direction: column;
    gap: clamp(80px, calc(74px + 1.8vw), 100px);
}
.actus-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: clamp(80px, calc(74px + 1.8vw), 100px);
    position: relative;
    padding-bottom: clamp(20px, calc(11px + 2.7vw), 50px);
    margin-bottom: clamp(20px, calc(11px + 2.7vw), 50px);
    border-bottom: 1px solid var(--color-mention);
}
.actus-row--double::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: clamp(20px, calc(11px + 2.7vw), 50px);
    left: 50%;
    width: 1px;
    background: var(--color-mention);
    transform: translateX(-50%);
}
.actus-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.actus-item__date {
    padding: 7px 17px;
    background-color: var(--color-secondary);
    color: var(--color-primary);
}
.actus-item__title {
    padding: 22px 0 0;
}
.actus-item__txt {
    margin-top: 5px;
    max-width: 90%;
    color: var(--color-text);
}
.actus-item__txt *,
body .actus-item__txt span,
body .actus-item__txt p {
    color: var(--color-text) !important;
}
.actus-item__img img {
    margin-top: clamp(20px, calc(11px + 2.7vw), 50px);
    width: 100%;
    height: 305px;
    object-fit: cover;
    display: block;
}
.no-result {
    max-width: var(--section-max);
    margin: var(--center);
}
.actus-year {
    margin-bottom: clamp(80px, calc(74px + 1.8vw), 100px);
    border-top: 4px solid var(--color-primary);
}
.actus-year span {
    display: block;
    padding-top: 10px;
    color: var(--color-primary);
    padding-bottom: 0;
}
.actus-row:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.actus-row:last-of-type:before {
    bottom: 0;
}




/*********************************
		   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-semi-bold);
    font-size: 1.25rem;
}



/*********************************
		    PAGINATION
*********************************/
.paginationCMS{
    text-align: center;
    padding: clamp(80px, calc(74px + 1.8vw), 100px) 20px 0;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.paginationCMS a, .paginationCMS span{
    margin: 10px;
    font-size: 1.125rem;
    color: var(--color-text);
    font-family: var(--title-font);
    font-weight: var(--font-regular);
    display: flex;
    text-align: center;
    justify-content: center;
}
.paginationCMS .pageCourante{
    padding: 0 8px;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}


/*********************************
		 PAGES DYNAMIQUES
*********************************/

/******	  HERO	 ******/
.slider_top_wrapper {
    height: auto;
    width: 100%;
    max-width: 100%;
    position: relative;
}
.slider_top_wrapper .splide__slide img {
    object-fit: cover;
    object-position: top;
    max-height: 550px;
}



    /******	  PARAGRAPHES	 ******/
.page_dynamique_content {
    display: block;
    margin: var(--center);
    padding: 0;
    width: auto;
    position: relative;
    box-sizing: border-box;
}

/******	  PARAGRAPHES	 ******/
.wrapper-textChamp {
    padding: clamp(80px, calc(74px + 1.8vw), 100px) 0 0;
    display: flex;
    flex-direction: column;
}
.text_champ ul,
.text_champ ul li {
    font-size: var(--normal-font-size);
    position:relative;
    padding-left: 5px;
    list-style-type:initial;
    margin-left: 5px;
}
.text_champ ol,
.text_champ ol li {
    font-size: var(--normal-font-size);
    position:relative;
    padding-left:5px;
    margin-left: 5px;
}
.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 clamp(80px, calc(74px + 1.8vw), 100px);
}
.paragraphe_deroulant {
    max-width: var(--section-max);
    margin: var(--center);
    width: 100%;
    border-top: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    margin-bottom: 20px;
}
.toggleWrapper .toggleTitre {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px clamp(20px, calc(11px + 2.7vw), 50px);
    font-weight: var(--font-regular);
    font-size: 1.3rem;
    color: var(--color-primary);
    background-color: transparent;
    line-height: 1;
    font-family: var(--title-font);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.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/more.svg");
    display: flex;
    align-items: center;
}
.toggleWrapper .toggleTitre.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.toggleWrapper .toggleTitre.active:after {
    content: url("/design/img/less.svg");
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.toggleWrapper .toggleTexte {
    padding: clamp(20px, calc(11px + 2.7vw), 50px);
    background-color: transparent;
}
.toggleWrapper .toggleTexte .text_champ {
    padding: 0;
}

/*	  TEXTE SIMPLE	*/
.text__wrapper {
    padding: 0 clamp(80px, calc(74px + 1.8vw), 100px) clamp(80px, calc(74px + 1.8vw), 100px);
}
.text_simple {
    max-width: var(--section-max);
    width: 100%;
    margin: var(--center);
}
.text_simple img,
.text__cols .text_champ img {
    height: auto;
}
.text__wrapper.text-simple-before-cols {
    padding-bottom: 0;
}

    /*	  TEXTE + IMAGES	*/
.text_img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--section-max);
    margin: var(--center);
    column-gap: clamp(80px, calc(74px + 1.8vw), 100px);
}
.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: auto;
    width: 100%;
    object-fit: contain;
}
.text_champ img.imgTinyMceGauche, #tinymce img.imgTinyMceGauche{
    float: left;
    margin-right: 15px;
}
.text_champ img.imgTinyMceDroite, #tinymce img.imgTinyMceDroite{
    float: right;
    margin-left: 15px;
}

/**** 3 et 4 colonnes *****/
.text__cols {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    align-items: flex-start;
    gap: clamp(20px, calc(11px + 2.7vw), 50px);
}
.grid-col-3 {
    grid-template-columns: repeat(3, minmax(0,1fr));
}
.grid-col-4 {
    grid-template-columns: repeat(4, minmax(0,1fr));
}


/******	  CAROUSEL	 ******/
.carousel_wrapper {
    padding: 0 clamp(80px, calc(74px + 1.8vw), 100px) 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 {
    max-height: 550px;
    width: 100%;
    object-fit: contain;
    height: auto;
}



/******	  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: clamp(20px, calc(11px + 2.7vw), 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: clamp(80px, calc(74px + 1.8vw), 100px) clamp(80px, calc(74px + 1.8vw), 100px);
}
.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: clamp(80px, calc(74px + 1.8vw), 100px);
}
.texte_accroche{
    font-size: var(--normal-font-size);
    box-sizing: border-box;
}

/******	  FORMULAIRE	******/
#formulaire {
    margin: 0 auto;
}
.champs_obligatoires{
    margin-top: clamp(20px, calc(11px + 2.7vw), 50px);
}
.content-formDemande {
    margin-top: clamp(20px, calc(11px + 2.7vw), 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(--title-font);
    letter-spacing: 0.5px;
    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: 20px 0;
    font-size: 1rem;
    box-sizing: border-box;
    line-height: 1.4;
    color: var(--color-primary);
    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-mention);
    border-width: 0 0 2px 0;
    border-style: none none solid none;
    box-shadow: none;
    font-family: var(--body-font);
}
.form-control:focus,
input.filled,
textarea.filled {
    box-shadow: none;
    border-color: var(--color-primary);
}
.js-hide-label {
    opacity: 0;
}
.js-unhighlight-label {
    color: var(--color-text);
    font-family: var(--body-font);
}
::-webkit-input-placeholder {
    color: var(--color-text);
    opacity: 1;
    font-family: var(--body-font);
}
:-moz-placeholder { /* Firefox 18- */
    color: var(--color-text);
    opacity: 1;
    font-family: var(--body-font);
}
::-moz-placeholder {  /* Firefox 19+ */
    color: var(--color-text);
    opacity: 1;
    font-family: var(--body-font);
}
:-ms-input-placeholder {
    color: var(--color-text);
    opacity: 1;
    font-family: var(--body-font);
}
textarea {
    resize: none;
    min-height:160px;
}
.texte_ok_contact{
    background-color: var(--color-primary);
    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: clamp(20px, calc(11px + 2.7vw), 50px);
}

/* BTNS FORMULAIRE */
.wrapper-btnForm {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/******	  COORDONNEES	******/
.map {
    height: 400px;
    width: 100%;
    margin-bottom: clamp(20px, calc(11px + 2.7vw), 50px);
}
.map iframe{
    width:100%;
    height: 100%;
}
.titleContact {
    display: block;
    font-size: 1.563rem;
    font-family: var(--title-font);
    color: var(--color-primary);
}
.textContact {
    margin-top: 15px;
    color: var(--color-primary);
}
.textContact a,
.textContact p,
.textContact span {
    color: var(--color-primary);
    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;
    gap: 10px;
}
.rs_contact_wrap {
    padding-top: clamp(20px, calc(11px + 2.7vw), 50px);
}
.recap_mail {
    padding-top: 20px;
}


/*********************************
		 MENTIONS LEGALES
*********************************/
.mentions_wrapper {
    padding: clamp(80px, calc(74px + 1.8vw), 100px) clamp(80px, calc(74px + 1.8vw), 100px);
}
.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);
}


/*********************************
		    ADHERENTS
*********************************/
.adherents {
    padding: clamp(80px, calc(74px + 1.8vw), 100px) clamp(80px, calc(74px + 1.8vw), 100px);
}
.adherents_content {
    max-width: var(--section-max);
    margin: var(--center);
}
.adherents_item:first-of-type {
    border-top: 1px solid var(--color-mention);
}
.adherents_item {
    border-bottom: 1px solid var(--color-mention);
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    column-gap: clamp(20px, calc(11px + 2.7vw), 50px);
}
.adherents_name {
    font-size: 1.9rem;
    color: var(--color-primary);
}
.adherents__numb {
    font-family: var(--title-font-medium);
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.1;
}
.adherents__infos {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.adherents__infos_item a,
.adherents__infos_item span,
.adherents_contact {
    display: block;
    color: var(--color-primary);
    font-size: 1.125rem;
}
.adherents_contact {
    max-width: 30ch;
}
.adherents__infos_contact {
    line-height: 1.3;
}
.adherents_img {
    display: flex;
    background-color: #fff;
}
.adherents__infos_item .link_more,
.adherents__infos_contact {
    word-break: break-all;
}
.adherents_img a {
    margin: auto;
    display: block;
}

/*** FILTRES ***/
.adherents_filters {
    padding: clamp(80px, calc(74px + 1.8vw), 100px) clamp(20px, calc(-3.7px + 7.4vw), 100px) 0;
}
.adherents_filters__content {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.9rem;
    column-gap: 30px;
}
.adherents_content {
    transition: opacity .2s ease;
}
.adherents_content.is-loading {
    opacity: .4;
    pointer-events: none;
}
.adherents_filter {
    flex: 0 0 auto;
    white-space: nowrap;
    background: transparent;
    cursor: pointer;
    transition: .2s ease;
    user-select: none;
    font-family: var(--title-font);
    color: var(--color-title);
    font-size: 0.9rem;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1;
    border: none;
    letter-spacing: 0.9px;
    opacity: 0.5;
}
.adherents_filter:hover,
.adherents_filter.active {
    opacity: 1;
    font-weight: var(--font-bold);
}