/*********************************
			 FONTS
*********************************/
@import url("https://use.typekit.net/nfb1otl.css");

@font-face {
    font-family: 'Playball';
    src: url('/design/fonts/Playball-Regular.eot');
    src: url('/design/fonts/Playball-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Playball-Regular.woff2') format('woff2'),
    url('/design/fonts/Playball-Regular.woff') format('woff'),
    url('/design/fonts/Playball-Regular.ttf') format('truetype'),
    url('/design/fonts/Playball-Regular.svg#Playball-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satisfy';
    src: url('/design/fonts/Satisfy-Regular.eot');
    src: url('/design/fonts/Satisfy-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Satisfy-Regular.woff2') format('woff2'),
    url('/design/fonts/Satisfy-Regular.woff') format('woff'),
    url('/design/fonts/Satisfy-Regular.ttf') format('truetype'),
    url('/design/fonts/Satisfy-Regular.svg#Satisfy-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 : 10px;

    /******	  COULEURS	******/
    --color-text: #646464;
    --color-primary: #233A61;
    --color-secondary: #00519C;
    --color-mention: #eef3ff;
    --color-red: #BC1818;
    --color-white: #fff;

    /******	  FONT WEIGHT	******/
    --font-regular: normal;
    --font-medium: 500;
    --font-semibold : 600;
    --font-bold: 700;

    /******	  FONT AND TYPOGRAPHY	******/
    --body-font: "museo-sans-rounded", sans-serif;
    --normal-font-size: 1rem;
    --mention-font: "Satisfy", "Playball", sans-serif;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/******	  STRUCTURE PAGE	******/
html {
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    background-size: cover; /* version standardisée */
    font-size: var(--normal-font-size);
    font-family: var(--body-font);
    font-weight: 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;
}

/******	  TITRES	******/
h1, h2, h3, h4, .subtitle, .like-h2 {
    padding: 0;
    margin:0;
    line-height: 1.1;
}
h1 {
    position: relative;
    color: var(--color-white);
    font-size:3.3rem /* 56px */;
    margin:auto;
    font-weight: var(--font-semibold);
}
h2, .like-h2 {
    font-size: 2.5rem /* 40px */;
    color: var(--color-primary);
    margin: 0;
    font-weight: var(--font-semibold);
}
h3, .like-h3 {
    font-size: 1.25rem /* 20px */;
    color: var(--color-secondary);
    font-weight: var(--font-medium);
}
.subtitle {
    display: block;
    padding-top: 10px;
    font-family: var(--mention-font);
    font-size: 2rem;
    color: var(--color-secondary);
    line-height: 1.1;
}

/******	  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-secondary);
    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-semibold);
}

/******	  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 40px;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid var(--color-secondary);
    font-size: 1.125rem;
    font-weight: var(--font-semibold);
    color: var(--color-secondary);
    font-family: var(--body-font);
    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-secondary);
    text-decoration: none;
}
.btn_cta_general a:hover,
.btn_cta_general p:hover,
.btn_cta_general span:hover {
    text-decoration: none;
    color: var(--color-secondary);
}
.btn_cta_general:hover{
    color: var(--color-white);
    background-color: var(--color-secondary);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.btn_cta_general:hover a,
.btn_cta_general:hover p,
.btn_cta_general:hover span {
    color: var(--color-white);
}
.btn_cta_center {
    margin: var(--center);
}

/* BTN CTA WHITE */
.btn_cta_white {
    border: 1px solid var(--color-white);
    color: var(--color-white);
}
.btn_cta_white a,
.btn_cta_white p,
.btn_cta_white span {
    color: var(--color-white);
}
.btn_cta_white a:hover,
.btn_cta_white p:hover,
.btn_cta_white span:hover {
    color: var(--color-secondary);
}
.btn_cta_white:hover{
    color: var(--color-secondary);
    background-color: var(--color-white);
}
.btn_cta_white:hover a,
.btn_cta_white:hover p,
.btn_cta_white:hover span {
    color: var(--color-secondary);
}



/******	  SLIDERS	******/
.splide__track {
    height: 100%;
}
.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/******	  DIVIDER	******/
.divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    margin: 0;  /* Suppression de la marge */
    padding: 0; /* Suppression du padding */
}
.divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 65px;
}
/* Divider top */
.divider-top {
    top: -5px;
}
/* Divider bottom */
.divider-bottom {
    bottom: -5px;
}
/* Divider blue */
.divider-blue .shape-fill {
    fill: #233a61;
}
/* Divider white */
.divider-white .shape-fill {
    fill: #fff;
}
/* Divider grey */
.divider-grey .shape-fill {
    fill: var(--color-mention);
}


/*********************************
		CUSTOM SCROLLBAR
*********************************/

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) #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-primary);
}
html::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-primary);
}
html::-webkit-scrollbar-thumb:active {
    background-color: var(--color-primary);
}


/*********************************
		 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-secondary);
    transform: rotate(180deg);
}

/*********************************
		 MESSAGE COOKIES
*********************************/
/* Bouton ACCEPTER */
body .termsfeed-com---palette-light .cc-nb-okagree {
    background-color: var(--color-secondary);
    color: #fff;
    border: none;
}
/* Bouton REFUSER */
body .termsfeed-com---palette-light .cc-nb-reject {
    background-color: var(--color-red); /* rouge */
    color: #fff;
    border: none;
}
body .termsfeed-com---palette-light .cc-cp-foot-save {
    background-color: var(--color-secondary); /* rouge */
    color: #fff;
    border: none;
}
#open_preferences_center {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--color-secondary); /* 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 {
    background-color: var(--color-primary);
    padding: 10px 15px;
    overflow: hidden;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 3rem;
}

.top-banner__content {
    display: inline-block;
    color: var(--color-white);
    font-weight: var(--font-regular);
    font-size: 1.2rem;
    white-space: nowrap;
    position: absolute;
    will-change: transform;
    animation: defilement linear infinite;
}

@keyframes defilement {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}




/*********************************
		   HEADER WHITE
*********************************/

/**** TOP HEADER *****/
.header-top {
    border-bottom: 1px solid var(--color-white);
    padding: 15px;
}
.header-top__content {
    margin: var(--center);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.header-top__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.header-top__item a,
.header-top__item p {
    color: var(--color-white);
    font-size: 1rem;
}

header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: 9999;
}

/******	  NAV	 ******/
.nav-wrapper{
    padding: 0 15px;
}
.nav {
    height: 4rem;
    padding: 0;
}
.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
}
.nav__toggle {
    position: relative;
    width: 22px;
    height: 32px;
}
.nav__logo img {
    max-height: 4rem;
    width: auto;
    object-fit: contain;
}
.nav-sep:last-of-type {
    display: none;
}


/******	  BTN CONTACT NAV	 ******/
.nav-contact {
    display: flex;
    align-items: center;
}
.btn_cta_header {
    background-color: var(--color-white);
    color: var(--color-secondary);
}
.btn_cta_header a,
.btn_cta_header p,
.btn_cta_header span {
    color: var(--color-secondary);
}
.btn_cta_header:hover {
    background-color: transparent;
    color: var(--color-white);
}
.btn_cta_header:hover a,
.btn_cta_header:hover p,
.btn_cta_header:hover span {
    color: var(--color-white);
}



/******	  FIRST NAV LINKS	 ******/
.nav__link {
    color: var(--color-text);
    background-color: var(--color-white);
    font-weight: var(--font-medium);
    padding: 1.25rem 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    position: relative;
    font-size: 1.125rem;
}
.nav__link:hover:after {
    content: "";
    background-image: url("/design/img/underline-white.svg");
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: -4px;
}

/******	  DROPDOWN	 ******/
.dropdown__item {
    cursor: pointer;
}
.dropdown__arrow {
    transition: transform .4s;
    margin-left: 5px;
}
.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--color-text);
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-regular);
    transition: background-color .3s;
    min-width: 200px;
}
.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}
.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}
/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
    max-height: 1000px;
    transition: max-height .4s ease-in;
}
/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

/******	  DROPDOWN SUBMENU	 ******/
.nav-more {
    margin-left: auto;
}
.dropdown__sublink {
    background-color: var(--color-white);
}


/*********************************
		 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 {
}
.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);
}

.tablette, .mobile {
    display: none;
}



    /*********************************
                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;
}
.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__arrows {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}
.splide .custom-arrow-prev {
    left: auto;
    right: 60px;
    background: url("/design/img/prev-blue.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.splide .custom-arrow-next {
    background: url("/design/img/next-blue.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;
}


/*********************************
		     HOMEPAGE
*********************************/

/******	  HERO	 ******/
.hero_home_wrapper {
    max-height: 1080px;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    position: relative;
}
.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}
.hero_home_content {
    max-width: 960px;
    padding: 0 15px;
    width: 100%;
    position: absolute;
    z-index: 5;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    text-align: center;
}
.hero_home_wrapper .caption {
    display: none;
}
.hero_home_title {
    font-size: 4rem;
}
.hero_home_subtitle {
    color: var(--color-white);
    font-size: 2rem;
}
.hero_home_cta {
    margin: 70px auto 0;
}



    /******	  REASSURANCES	 ******/
.reassurances {
    background-color: var(--color-mention);
    padding: 100px 15px;
}
.reassurances_content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    max-width: var(--section-max);
    margin: var(--center);
}
.reassurances_item {
    padding: 0 60px;
    border-right: 1px solid rgba(0, 81, 156, 0.2);
}
.reassurances_item:last-of-type {
    border-right: none;
}
.reassurances_img__wrapper {
    height: 103px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reassurances_img {
    display: block;
    margin: auto;
}
.reassurances_title {
    line-height: 1.1;
    display: block;
    text-align: center;
    padding: 20px 0 10px;
    font-size: 1.563rem;
    color: var(--color-secondary);
    font-family: var(--mention-font);
}
.reassurances_txt {
    text-align: center;
}

/******	  BLOCS	 ******/
/* bloc 1 et bloc 3 */
.media-split--reverse {
    padding: 0;
}
.media-split--reverse__container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: center;
}
.media-split--reverse__right {
    position: relative;
    width: 100%;
    min-height: 650px;
    height: 100%;
}
.media-split--reverse__image {
    position: absolute;
    max-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.media-split--reverse__left {
    position: relative;
    max-width: 715px;
    width: 100%;
    place-self: center end;
    padding: 0 70px 0 15px;
}
.media-split--reverse__text {
    padding: 70px 0;
}
.first-media-split {
    padding-top: 150px;
}

/* bloc 2 */
.media-split {
    padding: 0;
}
.media-split__container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: center;
}
.media-split__left {
    position: relative;
    width: 100%;
    min-height: 650px;
    height: 100%;
}
.media-split__image {
    position: absolute;
    max-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.media-split__right {
    position: relative;
    max-width: 715px;
    width: 100%;
    place-self: center start;
    padding: 0 15px 0 70px;
}
.media-split__text {
    padding: 70px 0;
}


/******	  ACCES RAPIDES	 ******/
.quick-access {
    padding: var(--padding);
}
.quick-access__container {
    max-width: var(--section-max);
    margin: var(--center);
}
.quick-access__titles {
    text-align: center;
    padding-bottom: 70px;
}
.quick-access__link {
    display: block;
}
.quick-access__image-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius);
}
.quick-access__overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    display: none;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.quick-access__cta {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--color-white);
    color: var(--color-white);
    display: none;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    white-space: nowrap;
}
.quick-access__image {
    height: 350px !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;
}
.quick-access__link:hover .quick-access__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;
}
.quick-access__title {
    padding-top: 20px;
    font-size: 1.25rem;
    font-weight: var(--font-medium);
    color: var(--color-text);
    text-align: center;
    line-height: 1.2;
}
.quick-access__item:hover .quick-access__cta,
.quick-access__item:hover  .quick-access__overlay {
    display: block;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}


/******	  OFFRES	 ******/
.card-slider {
    padding: 180px 15px 250px;
    background-color: var(--color-primary);
    position: relative;
}
.card-slider__container {
    max-width: var(--section-max);
    margin: var(--center);
}
.card-slider__titles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 70px;
}
.card-slider__heading {
    max-width: 600px;
    color: var(--color-white);
}
.card-slider__left .subtitle {
    color: var(--color-white);
}
#card-slider {

}
.card-slider__link {
    display: grid;
    grid-template-columns: minmax(0,1.5fr) minmax(0,2fr);
    align-items: flex-start;
    height: 100%;
}
.card-slider__image-wrapper {
    background-color: #F7F7F7;
    position: relative;
    width: 100%;
    min-height: 325px;
    height: 100%;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.card-slider__image {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    max-height: 240px;
    height: 100%;
    max-width: 100%;
    width: 100%;
    transform: translate(-50%, -50%);
    object-fit: contain !important;
}
.card-slider--cat {
    position: absolute;
    border-radius: 50px;
    left: 20px;
    top: 20px;
    right: 20px;
    display: block;
    padding: 10px 35px;
    background-color: var(--color-white);
    color: var(--color-secondary);
    font-weight: var(--font-medium);
    font-size: 1.125rem;
    width: fit-content;
}
.card-slider__content {
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    height: 100%;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}
.card-slider__top {
    padding: 30px;
    width: 100%;
}
.card-slider__prices_wrap {
    border-bottom: 1px solid rgba(112, 112, 112, 0.22);
    padding: 10px 0 25px;
}
.card-slider__prices {
    line-height: 1.1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
}
.card-slider__size {
    font-size: 1.25rem;
    font-weight: var(--font-medium);
    color: var(--color-primary);
}
.card-slider__price {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 5px;
}
.card-slider__newPrice {
    color: var(--color-red);
    font-size: 1.25rem;
    font-weight: var(--font-medium);
}
.card-slider__oldPrice {
    color: rgba(100, 100, 100, 0.55);
    font-style: italic;
    text-decoration: line-through;
    font-size: 1rem;
}
.card-slide__desc {
    padding: 25px 0 0;
    color: var(--color-text);
}
.card-slider__bottom {
    width: 100%;
    background-color: var(--color-secondary);
    padding: 15px 30px;
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    align-items: center;
}
.card-slider__eco {
    color: var(--color-red);
}
.card-slider--arrrow {
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
}
.card-slider__date {
    font-weight: var(--font-regular);
    color: var(--color-white);
    line-height: 1.1;
}
#card-slider .custom-arrow-prev {
    left: auto;
    right: 60px;
    background: url("/design/img/prev-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#card-slider .custom-arrow-next {
    background: url("/design/img/next-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


/******	  ACTUALITES	 ******/
.feature-slider {
    padding: var(--padding);
}
.feature-slider__container {
    margin: var(--center);
    max-width: var(--section-max);
}
.feature-slider__titles{
    padding-bottom: 70px;
    display: block;
    margin: var(--center);
    text-align: center;
}
.feature-slider__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 40px;
    padding-bottom: 65px;
}
.feature-slider__link {
    display: block;
}
.feature-slider__image-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius);
}
.feature-slider__overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    display: none;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    border-radius: var(--border-radius);
}
.feature-slider__cta {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--color-white);
    color: var(--color-white);
    display: none;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    white-space: nowrap;
}
.feature-slider__image {
    height: 350px !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;
    border-radius: var(--border-radius);
}
.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__title {
    padding-top: 20px;
    font-size: 1.25rem;
    font-weight: var(--font-medium);
    color: var(--color-text);
    text-align: center;
    line-height: 1.2;
}
.feature-slider__item:hover .feature-slider__cta,
.feature-slider__item:hover  .feature-slider__overlay {
    display: block;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}



/******	  CONTACT	 ******/
.contact-bottom-wrapper {
    position: relative;
    padding: 0 15px 180px;
    background: var(--color-mention);
}
.contact-bottom-content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 75px;
    align-items: flex-end;
}
.contact-bottom-title {
    padding-bottom: 40px;
}
.contact-bottom__left div {
    padding: 180px 0 0;
}
.contact-bottom__right {
    margin-top: -150px;
    height: 100%;
}
.contact-bottom__right .map {
    height: 100% !important;
    box-shadow: 9px 9px 99px rgba(0, 0, 0, 0.03);
    margin-bottom: 0;
}



/*********************************
		     FOOTER
*********************************/

/******	  PARTIE SUPERIEURE	 ******/
.footer_top_wrapper {
    background-color: var(--color-primary);
    padding: 80px 15px;
}
.footer_top_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
}
.footer_links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    column-gap: 50px;
}
footer a,
footer p,
footer span {
    color: var(--color-white);
}
footer a:hover
{
    color: var(--color-mention);
}
footer ul {
    margin: 0;
}
footer li {
    display: flex;
    align-items: center;
}
footer .toggleTitre {
    color: var(--color-white);
    font-weight: var(--font-medium);
    font-size: 1.25rem;
    margin-bottom: 20px;
}
footer .toggleTitre {
    pointer-events: none;
}
footer .toggleTexte {
    margin-top: 20px;
}
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 {
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    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: rgba(255, 255, 255, 0.6);
    font-size: 0.813rem;
}
.footer_bottom a {
    color: rgba(255, 255, 255, 0.6);
}
.footer_bottom a:hover {
    color: var(--color-mention);
}


/*********************************
		    ACTUALITES
*********************************/
.actus_wrapper {
    padding: var(--padding);
}
.actus_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    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 {
    position: relative;
    padding: 180px 0 230px;
    background-color: var(--color-mention);
}
.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: 30px;
}



/*********************************
		    PAGINATION
*********************************/
.paginationCMS{
    text-align: center;
    padding: 0 30px 100px;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.paginationCMS a, .paginationCMS span{
    margin: 10px;
    font-size:1rem;
    color: var(--color-text);
}
.paginationCMS .pageCourante{
    font-weight: var(--font-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 15px;
    position: absolute;
    z-index: 5;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    text-align: center;
    width: 100%;
}
.slider_top_titles_wrapper {
    max-width: 955px;
    margin: var(--center);
}
.slider_top_wrapper .caption {
    display: none;
}
.slider-top__subtitle {
    color: var(--color-white);
}


/******	  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-semibold);
}
.text_champ img.imgTinyMceGauche, #tinymce img.imgTinyMceGauche{
    float: left;
    margin-right: 15px;
}
.text_champ img.imgTinyMceDroite, #tinymce img.imgTinyMceDroite{
    float: right;
    margin-left: 15px;
}


/*	  PARAGRAPHES DEROULANTS	*/
.paragraphe_deroulant__wrapper {
    padding: 0 30px;
}
.paragraphe_deroulant {
    max-width: var(--section-max);
    margin: var(--center);
    width: 100%;
    margin-bottom: 20px;
}
.toggleWrapper .toggleTitre {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 40px;
    font-weight: var(--font-medium);
    font-size: 1.125rem;
    color: var(--color-white);
    background-color: var(--color-primary);
    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 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;
    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 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;
}



/******	  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;
}
.contact_intro {
    max-width: var(--section-max);
    margin: var(--center);
    padding-bottom: 50px;
}
/******	  FORMULAIRE	******/
#formulaire {
    margin: 0 auto 30px;
}
.champs_obligatoires{
    margin-top: 30px;
}


/* 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-medium);
    margin: 0 0 10px 0;
    display: block;
    opacity: 1;
    -webkit-transition: .333s ease top, .333s ease opacity;
    transition: .333s ease top, .333s ease opacity;
}
.form-control {
    display: block;
    width: 100%;
    padding: 20px 12px;
    font-size: 1rem;
    box-sizing: border-box;
    line-height: 1.4;
    color: var(--color-text);
    background-color: var(--color-white);
    background-image: none;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    border-radius: 0;
    border-color: var(--color-mention);
    border-width: 0 0 3px 0;
    border-style: none none solid none;
    box-shadow: none;
    font-family: var(--body-font);
}
.form-control:focus,
input.filled,
textarea.filled {
    box-shadow: none;
    border-color: var(--color-secondary);
}
.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-secondary);
    font-family: var(--body-font);
    color: var(--color-white);
    padding: 20px;
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: var(--font-medium);
    margin-bottom: 30px;
}

/* 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;
    display: block;
    font-size: 1.125rem;
    font-weight: var(--font-medium);
    color: var(--color-secondary);
}
.textContact {
    margin-top: 15px;
}
.textContact a {
    color: var(--color-text);
    transition: 0.5s;
}
.textContact a:hover {
    color: var(--color-primary);
    transition: 0.5s;
}
.textContact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.textContact li img {
    margin-right: 10px;
}
.contactRs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.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-medium);
    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-secondary);
}


/*********************************
		     OFFRES
*********************************/
.offres_wrapper {
    padding: 80px 15px 150px;
}
.offres_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 40px;
}
/* FILTRES */
.offres_filtres {
    padding: 150px 15px 0;
}
.offres_filtres__content {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 10px;
}
.offres_filtres__item {
    position: relative;
}
.offres_filtres__item a {
    color: var(--color-secondary);
    font-weight: var(--font-semibold);
    font-size: 1.125rem;
}
.offres_filtres__item:hover:after,
.offres_filtres__item.active:after{
    content: "";
    position: absolute;
    bottom: -5px;
    background-image: url("/design/img/underline-blue.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    height: 4px;
    width: 100%;
}
.offres_filtres__sep:last-of-type {
    display: none;
}
.offres_item .card-slider__content {
    background-color: rgba(242, 243, 246, 0.3);
}
.offres_item .card-slider__image-wrapper {
    background-color: rgba(100, 100, 100, 0.05);
}

/*********************************
		    PARTENAIRES
*********************************/
.partenaire_wrapper {
    padding: var(--padding);
}
.partenaire_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    align-items: flex-start;
    column-gap: 50px;
    row-gap: 80px;
}
.partenaire-item__content {
    margin-top: 20px;
}
.partenaire-item__content .like-h3 {
    padding-bottom: 5px;
}
.partenaire-item__image-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
}