/*********************************
			 FONTS
*********************************/
@font-face {
    font-family: 'Lilita One';
    src: url('/design/fonts/LilitaOne.eot');
    src: url('/design/fonts/LilitaOne.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/LilitaOne.woff2') format('woff2'),
    url('/design/fonts/LilitaOne.woff') format('woff'),
    url('/design/fonts/LilitaOne.ttf') format('truetype'),
    url('/design/fonts/LilitaOne.svg#LilitaOne') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('/design/fonts/Poppins-Bold.eot');
    src: url('/design/fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Poppins-Bold.woff2') format('woff2'),
    url('/design/fonts/Poppins-Bold.woff') format('woff'),
    url('/design/fonts/Poppins-Bold.ttf') format('truetype'),
    url('/design/fonts/Poppins-Bold.svg#Poppins-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('/design/fonts/Poppins-Italic.eot');
    src: url('/design/fonts/Poppins-Italic.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Poppins-Italic.woff2') format('woff2'),
    url('/design/fonts/Poppins-Italic.woff') format('woff'),
    url('/design/fonts/Poppins-Italic.ttf') format('truetype'),
    url('/design/fonts/Poppins-Italic.svg#Poppins-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('/design/fonts/Poppins-ExtraBold.eot');
    src: url('/design/fonts/Poppins-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Poppins-ExtraBold.woff2') format('woff2'),
    url('/design/fonts/Poppins-ExtraBold.woff') format('woff'),
    url('/design/fonts/Poppins-ExtraBold.ttf') format('truetype'),
    url('/design/fonts/Poppins-ExtraBold.svg#Poppins-ExtraBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('/design/fonts/Poppins-Regular.eot');
    src: url('/design/fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Poppins-Regular.woff2') format('woff2'),
    url('/design/fonts/Poppins-Regular.woff') format('woff'),
    url('/design/fonts/Poppins-Regular.ttf') format('truetype'),
    url('/design/fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('/design/fonts/Poppins-Medium.eot');
    src: url('/design/fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Poppins-Medium.woff2') format('woff2'),
    url('/design/fonts/Poppins-Medium.woff') format('woff'),
    url('/design/fonts/Poppins-Medium.ttf') format('truetype'),
    url('/design/fonts/Poppins-Medium.svg#Poppins-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('/design/fonts/Poppins-SemiBold.eot');
    src: url('/design/fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Poppins-SemiBold.woff2') format('woff2'),
    url('/design/fonts/Poppins-SemiBold.woff') format('woff'),
    url('/design/fonts/Poppins-SemiBold.ttf') format('truetype'),
    url('/design/fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}




/*********************************
		CLASSES GLOBALES
*********************************/

:root {
    /******	  DEFAULT CONTENT STRUCTURE	******/
    --section-max: 1180px;
    --center: auto;
    --padding: clamp(60px, 6vw, 100px) clamp(16px, 2vw, 20px);
    --border-radius : 40px;

    /******	  COULEURS	******/
    --color-primary: #F5F36A;
    --color-secondary: #3973CF;
    --color-mention: #ACCCEC;
    --color-purple: #32273B;
    --color-blue-background : #EAF2FA;
    --color-white: #fff;

    /******	  FONT WEIGHT	******/
    --font-thin: 100;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /******	  FONT AND TYPOGRAPHY	******/
    --body-font: "Poppins", sans-serif;
    --normal-font-size: 1rem;
    --title-font: "Lilita One", sans-serif;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/******	  STRUCTURE PAGE	******/
html {
    position: relative;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    font-size: 96%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: visible;
}
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-purple);
    overflow: hidden;
    content: "1";
    line-height: 1.7;
}

.tablette, .mobile {
    display: none;
}

/******	  TITRES	******/
h1, h2, h3, h4, .like-h1, .like-h2, .like-h3, .like-h4 {
    padding: 0;
    margin:0;
    line-height: 1.1;
    font-family: var(--title-font);
    font-weight: normal;
}
h1, .like-h1 {
    position: relative;
    color: var(--color-purple);
    font-size: clamp(1.563rem, calc(1.2rem + 1.5vw), 2.813rem);  /* 45px */;
    margin:auto;
}
h2, .like-h2 {
    font-size: clamp(1.75rem, calc(1.2rem + 1.2vw), 2.188rem);
    margin: 0;
}
h3, .like-h3 {
    font-size: clamp(1.4rem, calc(1.05rem + 0.8vw), 1.563rem);
    color: var(--color-secondary);
    text-decoration: none;
}
h3.strong-h3 {
    color: var(--color-purple);
    font-size: var(--normal-font-size);
    font-family: var(--body-font);
    font-weight: var(--font-semi-bold);
}

.no-title {
    line-height: 0;
    font-size: 0;
    visibility: hidden;
}

/******	  TEXTES	******/
p, table {
    color: var(--color-purple);
    font-size: var(--normal-font-size);
    margin: 0;
    padding: 0;
    line-height: 1.7;
}
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-purple);
    margin: 0;
    display: inline;
}
strong {
    font-weight: var(--font-bold);
}
.mobile {
    display: none;
}

/*********************************
		    DIVIDER
*********************************/
.divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background-repeat: repeat-x;
    height: 50px;
}
.divider-top {
    top: 0;
}
.divider-bottom {
    bottom: 0;
}


    /********** WAVES - Version corrigée  **********/
.wave-wrapper {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin: 0;
}
.wave-wrapper .hover {
    transition: all 0.2s ease-in-out;
    position: relative;
    display: inline-block;
}
.wave-wrapper .hover:before,
.wave-wrapper .hover:after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 0px;
    height: 12px;
    margin: 5px 0 0;
    transition: all 0.2s ease-in-out;
    transition-duration: 2s;
    opacity: 0;
    background-image: url("/design/img/waves.svg");
    background-repeat: repeat-x;
}
.wave-wrapper .hover.hover-1:before,
.wave-wrapper .hover.hover-1:after {
    left: 0;
}
.wave-wrapper {
    cursor: pointer;
}
.wave-wrapper .visible:before,
.wave-wrapper .visible:after {
    width: 100%;
    opacity: 1;
}


/**** NEW VERSION ****/
.wave-wrapper_new {
    position: relative;
    display: inline-block;
    text-align: center; /* centre le texte */
}
.wave-text {
    position: relative;
    z-index: 2;
}
.wave-svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* CENTRAGE CLÉ */
    bottom: -25px;
    width: 100%;
    height: 40px;
    pointer-events: none;
}
.wave-path {
    stroke: var(--color-primary);
    stroke-width: 6px;
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
}



/********** CIRCLE ***********/
.tiny-highlight {
    position: relative;
    display: inline-block;
    /*padding: 4px 14px;           !* ton padding parfait *!*/
    line-height: 1.4;
    box-sizing: border-box;
}

.tiny-highlight svg {
    position: absolute;
    top: -6px;
    left: -6px;
    width: calc(100% + 10px);    /* ← CORRIGÉ : 12px, pas 1px ! */
    height: calc(100% + 1px);   /* ← CORRIGÉ : 12px, pas 1px ! */
    pointer-events: none;
    z-index: -1;
}

.tiny-highlight rect {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 4;
    rx: 99%;     /* parfait pour une capsule très allongée */
    ry: 99%;     /* même valeur → coins très arrondis mais jamais cercle */
    width: 100%;
    height: 100%;
    x: 0;
    y: 0;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}







/******	  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: inline-block;
    padding: 1.313rem 1.938rem;
    background-color:var(--color-primary);
    font-size: 1rem;
    font-weight: var(--font-semi-bold);
    color: var(--color-purple);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    cursor: pointer;
    text-align: center;
    width: fit-content;
    border: none;
    font-family: var(--body-font);
    border-radius: 50px;
}
.btn_cta_general a,
.btn_cta_general p,
.btn_cta_general span {
    color: var(--color-purple);
    text-decoration: none;
    font-size: 0.850rem;
}
.btn_cta_general a:hover{
    text-decoration: none;
    color: var(--color-purple);
}
.btn_cta_general:hover{
    background-color: rgba(245, 243, 117, 0.8);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    text-decoration: none;
    color: var(--color-purple);
}
.btn_cta_general:hover a {
    text-decoration: none;
}
.btn_cta_center {
    margin: var(--center);
}


/******	  SLIDERS	******/
.splide__track {
    height: 100%;
}
.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*********************************
		CUSTOM SCROLLBAR
*********************************/

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-purple) #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-purple);
}
html::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-purple);
}
html::-webkit-scrollbar-thumb:active {
    background-color: var(--color-purple);
}


/*********************************
		 SCROLL TO TOP
*********************************/
.scrollToTop {
    display: none;
    overflow: hidden;
    margin: 1%;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background: url("/design/img/nav-arrow-down.svg") no-repeat center center;
    padding:10px;
    cursor: pointer;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10000;
    background-color: var(--color-primary);
    transform: rotate(180deg);
}

/*********************************
		 MESSAGE COOKIES
*********************************/
/* Bouton ACCEPTER */
body .termsfeed-com---palette-light .cc-nb-okagree {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
}
/* Bouton REFUSER */
body .termsfeed-com---palette-light .cc-nb-reject {
    background-color: var(--color-secondary); /* rouge */
    color: #fff;
    border: none;
}
body .termsfeed-com---palette-light .cc-cp-foot-save {
    background-color: var(--color-primary); /* rouge */
    color: #fff;
    border: none;
}
/*#open_preferences_center {*/
/*    position: fixed;*/
/*    bottom: 20px;*/
/*    left: 20px;*/
/*    background-color: var(--color-primary); !* bleu par défaut *!*/
/*    color: white;*/
/*    border-radius: 50px;*/
/*    text-decoration: none;*/
/*    font-weight: 600;*/
/*    font-family: sans-serif;*/
/*    box-shadow: 0 4px 8px rgba(0,0,0,0.2);*/
/*    opacity: 0.5; !* moitié visible *!*/
/*    transition: opacity 0.3s ease, transform 0.3s ease;*/
/*    cursor: pointer;*/
/*    white-space: nowrap; !* pas de retour à la ligne *!*/
/*    user-select: none;*/
/*    z-index: 9999;*/
/*    line-height: 1;*/
/*    height: 55px;*/
/*    width: 55px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

#open_preferences_center:hover,
#open_preferences_center:focus {
    opacity: 1; /* totalement visible au survol */
    transform: translateY(-5px); /* petit effet de levée */
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}


/*********************************
		 BANDEAU MESSAGE
*********************************/
.top_banner {
    color: var(--color-white);
    text-align: center;
    background-color: var(--color-purple);
    padding: 10px;
    font-family: var(--body-font);
}

.top_banner p {
    font-weight: var(--font-regular);
    font-size: 0.875rem /* 14px */;
}


/*********************************
		   HEADER WHITE
*********************************/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    z-index: 9999;
}

/******	  NAV	 ******/
.nav {
    height: 4rem;
    padding: 0 15px;
    max-width: var(--section-max);
    margin: var(--center);
}
.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;
    min-width: 0;
    object-fit: contain;
}


/******	  FIRST NAV LINKS	 ******/
.nav__link {
    color: var(--color-purple);
    background-color: transparent;
    font-weight: var(--font-medium);
    padding: 1.25rem 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    position: relative;
    white-space: nowrap;
}
.nav__link:hover {
    color: var(--color-purple);
}
.nav__link:hover:after,
.nav__link.active:after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: 1.5rem;
    text-decoration: none;
    background-image: url('/design/img/wavy_underline.svg');
    background-repeat: repeat-x;
    background-position: 0 100%;
    height: 10px;
}
.btn_cta_nav {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: clamp(10px, 1.2vw, 18px) clamp(18px, 2.5vw, 35px);
}

/******	  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-purple);
    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-purple);
    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__item .nav__link:hover:after,
.dropdown__item .nav__link.active:after {
    bottom: 30px;
}


/******	  DROPDOWN SUBMENU	 ******/
.nav-more {
    margin-left: auto;
}
.dropdown__link:hover .nav-more {
    content: url("/design/img/nav-more.svg");
    display: block;
}
.dropdown__sublink {
    color: var(--color-purple);
    background-color: var(--color-white);
}
.dropdown__sublink:hover {
    background-color: var(--color-purple);
    color: var(--color-white);
}

/****** BTNS NAVS ******/
.nav__btns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 2rem;
    height: 100%;
}
.nav__link_wrapper {
    height: 100%;
}


/*********************************
        HEADER TRANSPARENT
*********************************/
.transparent_header {
    position: fixed;
    background-color: transparent;
    box-shadow: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-bottom: none;
}
.transparent_header .nav__link {
    background-color: transparent;
    color: var(--color-purple);
}
.transparent_header .dropdown__arrow {
    content: url("/design/img/nav-arrow-down-black.svg");
}
.transparent_header .contact_link_nav .nav__link {
    background-color: var(--color-white);
    color: var(--color-purple);
}
/* Quand le header est actif (survol ou menu ouvert) */
.transparent_header.active,
.transparent_header.scrolled {
    background-color: var(--color-purple);
}
.transparent_header.active .contact_link_nav .nav__link,
.transparent_header.scrolled .contact_link_nav .nav__link {
    background-color: var(--color-purple);
}
.transparent_header .dropdown__sublink,
.transparent_header.active .dropdown__sublink,
.transparent_header.scrolled .dropdown__sublink {
    color: var(--color-white);
    background-color: var(--color-purple);
}
.transparent_header .dropdown__sublink:hover,
.transparent_header.active .dropdown__sublink:hover,
.transparent_header.scrolled .dropdown__sublink:hover {
    color: var(--color-primary);
}
.transparent_header .dropdown__link,
.transparent_header.active .dropdown__link,
.transparent_header.scrolled .dropdown__link,
.transparent_header .dropdown__sublink,
.transparent_header.active .dropdown__sublink,
.transparent_header.scrolled .dropdown__sublink {
    color: var(--color-white);
    background-color: var(--color-purple);
}
.transparent_header .dropdown__link:hover,
.transparent_header.active .dropdown__link:hover,
.transparent_header.scrolled .dropdown__link:hover,
.transparent_header .dropdown__sublink:hover,
.transparent_header.active .dropdown__sublink:hover,
.transparent_header.scrolled .dropdown__sublink:hover {
    color: var(--color-primary);
}
.transparent_header .dropdown__link .nav-more {
    content: url("/design/img/nav-more.svg");
}
.transparent_header .dropdown__link:hover .nav-more,
.transparent_header.active .dropdown__link:hover .nav-more,
.transparent_header.scrolled .dropdown__link:hover .nav-more {
    content: url("/design/img/nav-more-yellow.svg");
}
.btn_cta_contact a {
    white-space: nowrap;
}


/*********************************
		 HEADER SCROLLED
*********************************/
header.scrolled,
header.active {
    background-color: var(--color-purple);
}
/* Quand le header est actif (survol ou menu ouvert) */
header.active,
header.scrolled {
    background-color: var(--color-purple);
}
header.active .nav__link,
header.scrolled .nav__link {
    color: var(--color-white);
}
header.active .contact_link_nav .nav__link,
header.scrolled .contact_link_nav .nav__link {
    background-color: var(--color-purple);
}
header.active .dropdown__sublink,
header.scrolled .dropdown__sublink {
    color: var(--color-white);
    background-color: var(--color-purple);
}
header.active .dropdown__sublink:hover,
header.scrolled .dropdown__sublink:hover {
    color: var(--color-primary);
}
header.active .dropdown__link,
header.scrolled .dropdown__link,
header.active .dropdown__sublink,
header.scrolled .dropdown__sublink {
    color: var(--color-white);
    background-color: var(--color-purple);
}
header.active .dropdown__link:hover,
header.scrolled .dropdown__link:hover,
header.active .dropdown__sublink:hover,
header.scrolled .dropdown__sublink:hover {
    color: var(--color-primary);
}
header.active .dropdown__link:hover .nav-more,
header.scrolled .dropdown__link:hover .nav-more {
    content: url("/design/img/nav-more-yellow.svg");
}
header.scrolled .nav__logo img,
header.active .nav__logo img{
    content: url("/design/img/logo-white.svg");
    display: block;
}


    /*********************************
                FIL ARIANE
    *********************************/
.fil_ariane {
    display: block;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 5px;
    font-size: 1rem;
    color: var(--color-purple);
    text-transform: capitalize;
    text-align: center;
}
.fil_ariane_content {
    display: inline-block;
    overflow: hidden;
    position: relative;
    padding: 0;
}
.fil_ariane span,
.fil_ariane a,
.fil_ariane p {
    color: var(--color-purple);
    text-transform: capitalize;
}
.fil_ariane a:hover {
    color: var(--color-primary);
}
.fil_ariane .current_retour {
    display:none;
}


/*********************************
		 HEADING SLIDER
*********************************/
#heading-slider {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
#heading-slider .splide__slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
#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;
    opacity: 1 !important;
}
.splide__arrow svg {
    display: none;
}
.splide__arrows {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}
.splide .custom-arrow-prev {
    left: auto;
    right: 60px;
    background: url("/design/img/prev.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.splide .custom-arrow-next {
    background: url("/design/img/next.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.splide__arrow {
    position: unset !important;
    width: clamp(40px, 4vw, 50px) !important;
    height: clamp(40px, 4vw, 50px) !important;
    transform: unset !important;
}

/******	  ARROW	MIDDLE CENTER ******/
.middle-center-arrow .splide__arrows {
    left: unset;
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
    z-index: 99;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    align-items: center;
}
.middle-center-arrow .custom-arrow-prev {
    position: absolute !important;
    left: -80px;
    top: unset;
    transform: unset !important;
}
.middle-center-arrow .custom-arrow-next {
    position: absolute !important;
    right: -80px;
    top: unset;
    transform: unset !important;
}

/******	  ARROW	BOTTOM 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;
}


/*********************************
		     NEWSLETTER
*********************************/
#popup-newsletter {
    padding: 75px 50px;
    border-radius: var(--border-radius);
}
#newsletter_form {
    margin: 40px 0 0;
}
.btn_submit__newsletter {
    margin : 40px auto 0;
    display: flex;
}
.popup-newsletter__title {
    text-align: center;
}
#messageRetour {
    text-align: center;
    padding: 15px;
}
.popup-newsletter  .wave-wrapper {
    justify-content: center;
}


/*********************************
		     HOMEPAGE
*********************************/

/******	  HERO	 ******/
.hero_home_wrapper {
    background-color: var(--color-blue-background);
    min-height: 100svh;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1.5fr) minmax(0,1fr);
    align-items: center;
}
.hero_home_content {
    grid-column: 2;
    position: relative;
    width: 100%;
    max-width: 55ch;
    margin: auto;
    height: 100%;
}
.hero_home_content__inner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.hero_home__title {
    text-align: center;
}
.hero_home__intro {
    display: block;
    text-align: center;
    margin: clamp(30px, 2vw, 50px) 0 clamp(35px, 2vw, 55px);
}
.hero_btn_cta {
    display: block;
}
.hero_fusee {
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-90%);
    width: clamp(100px, 25vw, 400px);
    bottom: 30px;
}
.hero_home_img {
    display: block;
    width: clamp(100px, 13vw, 300px);
    margin-bottom: 10px;
    height: auto;
}
.hero_home__left .hero_home_img:first-of-type {
    margin-bottom: 30px;
}
.hero_home__right .hero_home_img {
    margin-left: auto;
}

    /***** HERO DIVIDER *****/
.hero-divider {
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background-repeat: repeat-x;
    height: 60px;
    margin-top: -60px;
    position: relative;
    background-position: 290px;
}

/******	  REASSURANCES	 ******/
.reassurances {
    position: relative;
    padding: var(--padding);
}
.reassurances_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 55px;
}
.reassurances__item {
    width: 100%;
    max-width: 390px;
    background-color: var(--color-primary);
    border-radius: var(--border-radius);
    padding: 40px 48px 48px;
    min-height: unset;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(20px, 3vw, 30px);
}
.reassurances__item:first-of-type,
.reassurances__item:last-of-type {
    margin-top: 70px;
}
.reassurances__img {
    display: block;
    max-height: 10em;
}
.reassurances__desc {
    max-width: 293px;
}


/******	  ABOUT	 ******/
.section-media {
    padding: var(--padding);
}
.about {
    background-color: var(--color-blue-background);
}
.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: clamp(30px, 5vw, 80px);
}
.section-media__img {
    display: block;
    width: 100%;
    max-width: clamp(280px, 50vw, 480px);
    height: auto;
}
.about .section-media__content {
    max-width: 47ch;
    margin-left: auto;
}
.about .section-media__image {
    margin: auto;
}
.about .wave-wrapper .hover:before,
.about .wave-wrapper .hover:after {
    background-image: url("/design/img/waves-blue.svg");
}
.about-title__mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: fit-content;
}
.about-title__mobile .wave-path,
.about-title__desktop .wave-path {
    stroke: var(--color-secondary);
}
.about-title__mobile .slider_top__wave_wrapper,
.about-title__desktop.slider_top__wave_wrapper {
    left: unset;
    transform: unset !important;
    text-align: left;
}
.about-title__mobile .wave-svg,
.about-title__desktop .wave-svg {
    left: 0;
    transform: unset;
}
.about-title__mobile {
    display: none;
}


/******	  COURS	 ******/
.cours .section-media__content {
    max-width: 46ch;
}
.card-stack__wrapper {
    position: relative;
}
.card-stack {
    position: relative;
    max-width: 284px;
    height: 400px;
    margin: auto;
}

.card {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: white;
    box-shadow: 2px 2px 4px #32273A1A;
    transition: transform 0.5s ease, opacity 0.5s ease;
    border: 1px solid #32273A33;
}
.card img {
    height: 100%;
    width: 100%;
    border-radius: 14px;
    object-fit: contain;
}

    /* hidden by default */
.card {
    opacity: 0;
    transform: scale(0.9);
}

/* MAIN card */
.card.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    z-index: 3;
}

/* ONLY one card behind */
.card.behind {
    opacity: 0.9;
    transform: scale(1.01) translateY(-1px) rotate(9deg);
    z-index: 2;
}

.stacked_prev {
    background: url("/design/img/prev.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    outline: none;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}

.stacked_next {
    background: url("/design/img/next.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    outline: none;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}




/******	  QCM	 ******/
.qcm {
    padding: 0 20px 100px;
}
.qcm .section-media__content {
    max-width: 46ch;
    margin-left: auto;
}
.qcm .section-media__img {
    display: block;
    margin: auto;
    max-width: clamp(280px, 40vw, 480px);
    width: 100%;
    height: auto;
}



    /******	  LES PLUS DE LA FORMATION	 ******/
.formation {
    padding: 0 20px 100px;
}
.formation_fusee {
    max-width: var(--section-max);
    margin: var(--center);
}
.formation_fusee__img {
    display: block;
    margin-left: auto;
    margin-right: clamp(40px, 10vw, 20%);
    max-width: clamp(120px, 20vw, 200px);
}
.formation_content {
    max-width: var(--section-max);
    margin: var(--center);
    background-color: var(--color-mention);
    border-radius: var(--border-radius);
    padding: clamp(40px, 6vw, 75px) clamp(24px, 6vw, 95px);
}
.formation_title {
    text-align: center;
    display: block;
    margin: 0 auto;
}
.formation_list {
    margin-top: clamp(50px, 6vw, 95px);
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: clamp(50px, 6vw, 100px);
    row-gap: clamp(30px, 4vw, 50px);
}
.formation_item {
    width: 100%;
    max-width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 30px;
}
.formation_item__img_wrapper {
    max-height: 10em;
    display: flex;
    align-items: flex-end;
}
.formation_item__desc {
    display: block;
    max-width: 20ch;
}
.formation_item:last-of-type .formation_item__desc {
    max-width: 19ch;
}


/******	  FORMULES	 ******/
.home_formules {
    background-color: var(--color-blue-background);
}
.home_formules .section-media__container {
    align-items: flex-start;
}
.home_formules .section-media__img {
    display: block;
    max-width: clamp(320px, 45vw, 640px);
    margin: auto;
    width: 100%;
    height: auto;
}
.home_formules .section-media__content {
    max-width: 50ch;
}
.home_formules .wave-wrapper .hover:before,
.home_formules .wave-wrapper .hover:after {
    background-image: url("/design/img/waves-blue.svg");
}


/******	  AVIS	 ******/
.reviews-divider {
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background-repeat: repeat-x;
    height: 47px;
    position: relative;
    background-image: url("/design/img/divider-review.svg");
}
.reviews {
    background-image: url("/design/img/yellow_background.webp");
    background-position: center center;
    background-size: contain;
    background-repeat: repeat;
}
.reviews__inner {
    padding: 70px 20px 100px;
}
.reviews_content {
    max-width: var(--section-max);
    margin: var(--center);
}
.reviews_title {
    display: block;
    text-align: center;
}
.reviews_item {
    padding: 1rem;
}
.reviews_item__inner {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: clamp(25px, 4vw, 40px);
    box-shadow: 2px 2px 4px #32273A1A;
    text-align: center;
    height: 100%;
}
.reviews_slider {
    margin-top: 50px;
}
.reviews_slider__wrapper {
    margin: var(--center);
    padding: 0 100px;
}
.reviews_name {
    display: block;
    margin: 30px auto 0;
    font-weight: bold;
    font-size: 1rem;
}
.reviews_txt,
.reviews_txt p,
.reviews_txt span,
.reviews_txt a,
.reviews_txt *{
    font-size: 1rem;
    line-height: 1.5;
}



    /*********************************
                 FOOTER
    *********************************/

/******	  PARTIE SUPERIEURE	 ******/

.footer_top_wrapper {
    background-color: var(--color-purple);
    position: relative;
}
.footer-divider {
    /*left: 0;*/
    /*width: 100%;*/
    /*overflow: hidden;*/
    /*line-height: 0;*/
    /*background-repeat: repeat-x;*/
    /*height: 48px;*/
    margin-top: -48px;
    /*position: relative;*/
    background-image: url("/design/img/footer-divider.svg");
}
.footer_inner__content {
    padding: clamp(50px, 6vw, 80px) 15px;
}
.footer_top_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: flex-start;
}
.footer_links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    column-gap: 80px;
}
footer a {
    color: var(--color-white);
    text-decoration: underline;
}
footer p {
    color: var(--color-white);
    font-size: 1rem;

}
footer a:hover {
    color: rgba(255, 255, 255, 0.5);
}
footer ul {
    margin: 0;
}
footer li {
    display: flex;
    align-items: center;
}
footer .toggleTitre {
    color: var(--color-primary);
    font-family: var(--title-font);
    font-size: 1.125rem;
    margin-bottom: 20px;
    font-weight: normal;
}
footer .toggleTitre {
    pointer-events: none;
}
footer .toggleTexte {
    margin-top: 20px;
    font-size: 1rem;
}
footer .footer_contact .toggleTexte li {
    padding-bottom: 15px;
}
footer .footer_liens .toggleTexte p,
footer .footer_pages .toggleTexte p,
footer .footer_pages .toggleTexte * {
    padding-bottom: 15px;
    font-size: 1rem;
}
.footer_toggle_picto {
    margin-right: 15px;
    width: 25px;
    height: auto;
    object-fit: contain;
}
.footer_rs {
    margin-top: 0;
}
.footer_rs .toggleTexte {
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
    padding: 0;
    margin-top: 10px;
}
.footer_logo img {
    max-height: 80px;
}
.follow-label {
    color: var(--color-white);
    display: block;
    font-weight: var(--font-medium);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    text-align: center;
    margin-top: 30px;
}


/******	  PARTIE INFERIEURE	 ******/
.footer_bottom_wrapper {
    background-color: var(--color-white);
    padding: 20px;
    position: relative;
}
.footer_bottom_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;

    max-width: var(--section-max);
    margin: var(--center);
}
.footer_bottom {
    color: var(--color-purple);
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 1rem;
}
.footer_bottom:last-of-type {
    gap: 25px;
}
.footer_bottom a {
    color: var(--color-purple);
    text-decoration: underline;
}
.footer_bottom a:hover {
    color: rgba(50, 39, 58, 0.5);
}
.brandname {
    font-weight: var(--font-bold);
    text-decoration: none !important;
}


/*********************************
		    ACTUALITES
*********************************/
/*** HEADER ***/
.pageActualites {
    background-color: #EAF2FA;
}
.pageActualites header {
    background-color: #EAF2FA;
}
.pageActualites .btn_cta_contact .btn_cta_general {
    background-color: var(--color-secondary);
    color: var(--color-white);
}
.pageActualites .dropdown__link:hover,
.pageActualites .dropdown__sublink:hover {
    background-color: var(--color-secondary);
}
.pageActualites header.active,
.pageActualites header.scrolled {
    background-color: var(--color-purple);
}
.pageActualites header.active .btn_cta_contact .btn_cta_general,
.pageActualites header.scrolled .btn_cta_contact .btn_cta_general {
    background-color: var(--color-primary);
    color: var(--color-purple);
}

/*** HERO ***/
.pageActualites .wave-path {
    stroke: var(--color-secondary);
}
.pageActualites .section-sep:first-of-type {
    padding: 80px 0 0;
}
/*** LISTE ***/
.actus_wrapper {
    padding: clamp(150px, 10vw, 200px) 15px clamp(100px, 9vw, 180px);
}
.pageActualites .section-sep:last-of-type {
    padding: 0 0 100px;
}
.pageActualites .section-sep:last-of-type img {
    display: block;
    margin: var(--center);
}
.actus_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: clamp(20px, 3vw, 40px);
}
.card-slider__item {
    background-color: #fff;
    border-radius: var(--border-radius);
    height: fit-content;
}
.card-slider__item:nth-child(2n) {
    margin-top: -50px;
}
.une_actu_wrapper a {
    display: block;
}
.card-slider__image-wrapper {
    overflow: hidden;
    height: clamp(200px, calc(183.333px + 5.208vw), 250px);
    width: 100%;
    -webkit-border-top-left-radius: 30px;
    -webkit-border-top-right-radius: 30px;
    -moz-border-radius-topleft: 30px;
    -moz-border-radius-topright: 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.card-slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -webkit-border-top-left-radius: 30px;
    -webkit-border-top-right-radius: 30px;
    -moz-border-radius-topleft: 30px;
    -moz-border-radius-topright: 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.card-slider__item:hover .card-slider__image {
    transform: scale(1.3);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.card-slider__content {
    padding: 20px 20px 40px;
    text-align: center;
}
.more {
    color: var(--color-purple);
    font-weight: var(--font-semi-bold);
    padding-bottom: 0.3px;
    border-bottom: 1px solid var(--color-purple);
    line-height: 1;
    display: block;
    width: fit-content;
    margin: var(--center);
}
.no-result {
    max-width: var(--section-max);
    margin: var(--center);
}


/*********************************
		   UNE ACTUALITE
*********************************/
.uneActu_wrapper {
    max-width: var(--section-max);
    padding: 0 30px 180px;
    margin: var(--center);
}
.uneActu_img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    padding-bottom: 80px;
}

/****** ARCHIVES ******/
.archivesActus_wrapper {
    padding: 100px 0;
    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: 40px;
}
#archives_slider .card-slider__image-wrapper {
    overflow: hidden;
    height: 400px;
    width: 100%;
}
#archives_slider .card-slider__item {
    padding-bottom: 0;
}



/*********************************
		    PAGINATION
*********************************/
.paginationCMS{
    text-align: center;
    padding: 0 15px 80px;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.paginationCMS a, .paginationCMS span{
    margin: 10px;
    font-size:1rem;
    color: var(--color-purple);
}
.paginationCMS .pageCourante{
    font-weight: var(--font-semi-bold);
    padding: 5px 18px;
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    width: 15px;
    display: flex;
    text-align: center;
    justify-content: center;
}


/*********************************
		 PAGES DYNAMIQUES
*********************************/

/******	  HERO	 ******/
.slider_top_wrapper {
    padding: clamp(100px, 12vw, 180px) 15px 0;
}
.slider_about__wrapper #heading-slider .splide__slide {
    background-position: left center;
    background-size: 100%;
}
.slider_top_content {
    max-width: var(--section-max);
    margin: var(--center);
}
.slider_top_wrapper .caption {
    display: none;
}
.slider_top__wave_wrapper {
    left: 50%;
    transform: translateX(-50%) translateZ(0) !important;
}
.slider_top_wrapper .like-h1 {
    color: var(--color-purple);
    text-align: center;
}
.slider_top_wrapper .wave-wrapper_new {
    text-align: center;
}
.slider_top__slider {
    margin-top: 100px;
}
.slider_top__slider {
    height: 600px;
    max-height: 100vh;
}
.slider_about__wrapper img {
    display: none;
}


/******	  PARAGRAPHES	 ******/
.page_dynamique_content {
    display: block;
    margin: var(--center);
    padding: 0;
    width: auto;
    position: relative;
    box-sizing: border-box;
}

/******	  PARAGRAPHES	 ******/
.wrapper-textChamp {
    padding: 100px 0 0;
    display: flex;
    flex-direction: column;
}
.text_champ ul,
.text_champ ul li {
    font-size: var(--normal-font-size);
    position:relative;
    margin-left:20px;
    list-style-type:initial;
}
.text_champ a,
.mentions_content a {
    color: unset;
    text-decoration: underline;
}
.text_champ a:hover {
    text-decoration: underline;
}
.text_champ p strong,
.text_champ p strong a {
    font-weight: var(--font-semi-bold);
}
.text_champ img.imgTinyMceGauche, #tinymce img.imgTinyMceGauche{
    float: left;
    margin-right: 15px;
}
.text_champ img.imgTinyMceDroite, #tinymce img.imgTinyMceDroite{
    float: right;
    margin-left: 15px;
}
.text_champ .wave-wrapper {
    justify-content: unset;
}


/*	  PARAGRAPHES DEROULANTS	*/
.paragraphe_deroulant__wrapper {
    padding: 0 30px;
}
.paragraphe_deroulant {
    max-width: var(--section-max);
    margin: var(--center);
    width: 100%;
}
.toggleWrapper .toggleTitre {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 30px;
    font-size: 1.25rem;
    color: var(--color-white);
    font-family: var(--title-font);
    background-color: var(--color-secondary);
    line-height: 1;
    border-radius: 20px;
}
.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;
}
.toggleWrapper .toggleTexte .text_champ {
    padding: 0;
}

/*	  TEXTE SIMPLE	*/
.text__wrapper {
    padding: 0 15px 100px;
}
.text_simple {
    max-width: var(--section-max);
    width: 100%;
    margin: var(--center);
}

/*	  TEXTE + IMAGES	*/
.text_img {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: var(--section-max);
    margin: var(--center);
    gap: clamp(50px, 5vw, 80px);
}
.text_champ .texte_pag_dyn,
.text_champ figure {
    display: inline-block;
}
.text_champ .texte_pag_dyn {
    max-width: 45%;
}
.text_champ figure {
    max-width: unset;
    width: 100%;
    margin: 0;
}
.text_champ figure a {
    display: block;
}
.text_champ figure img {
    display: block;
    width: 100%;
    max-width: clamp(320px, 45vw, 500px);
    margin: 0 auto;
    height: auto;
    object-fit: contain;
}
.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;
}

.background_blue {
    padding: var(--padding);
    background-color: var(--color-blue-background);
}
.wrapper-textChamp .qcm-title__mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: fit-content;
}
.wrapper-textChamp .qcm-title__mobile .slider_top__wave_wrapper {
    left: unset;
    transform: unset !important;
    text-align: left;
}
.wrapper-textChamp .qcm-title__mobile .wave-svg {
    left: 0;
    transform: unset;
}
.qcm-title__mobile .wave-path,
.qcm-title__desktop .wave-path {
    stroke: var(--color-secondary);
}



/******	  CAROUSEL	 ******/
.carousel_wrapper {
    padding: 0 15px 100px;
}
.carousel_content {
    max-width: var(--section-max);
    margin: var(--center);
}
.splide__pagination {
    bottom: -3em !important;
    left: unset !important;
}
.splide__pagination__page {
    background: var(--color-secondary) !important;
    width: 15px !important;
    border-radius: 50px !important;
    height: 6px !important;
}
.splide__pagination__page.is-active {
    background: var(--color-primary) !important;
    width: 50px !important;
    transform: scale(1.1) !important;
}
.wrapper__carousel_pageDyn img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}



/******	  LIENS UTILES	 ******/
.link__wrapper {
    padding: var(--padding);
}
.link__content {
    max-width: var(--section-max);
    margin: var(--center);
}
.link_blocs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: flex-start;
    column-gap: 50px;
}
.link_bloc {
    border-radius: var(--border-radius);
    box-shadow: 9px 9px 99px #cccccc;
    padding: 30px;
}
.link_bloc .link-bloc-titre {
    text-align: center;
    font-weight: var(--font-semi-bold);
    font-size: 1.25rem;
    color: var(--color-purple);
    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: 100px 15px 60px;
}
.contact_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: minmax(0,2fr) minmax(0,1fr);
    align-items: flex-start;
    gap: 50px;
}
.texte_accroche{
    font-size: var(--normal-font-size);
    box-sizing: border-box;
}

/******	  FORMULAIRE	******/
#formulaire {
    margin: 0 auto 30px;
}
.champs_obligatoires{
    margin-top: 30px;
}
.content-formDemande {
    margin-top: 50px;
}

/* CHAMPS FORMULAIRE */
textarea {
    resize: none;
}
.form-group{
    padding: 10px 0;
    margin: 0;
}
.form-label {
    font-size: 1rem;
    color: var(--color-purple);
    font-family: var(--body-font);
    margin: 0 0 5px 0;
    display: block;
    opacity: 1;
    -webkit-transition: .333s ease top, .333s ease opacity;
    transition: .333s ease top, .333s ease opacity;
}
.form-control {
    border-radius: 15px;
    display: block;
    width: 100%;
    padding: 15px 12px;
    font-size: 1rem;
    box-sizing: border-box;
    line-height: 1.4;
    color: var(--color-purple);
    background-color: #F9F9F9;
    background-image: none;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    border: 1px solid #B9B9B9;
    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-purple);
    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-mention);
    font-family: var(--body-font);
    color: var(--color-purple);
    padding: 20px;
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: var(--font-regular);
    margin-top: 20px;
}
.row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 20px;
}


/* BTNS FORMULAIRE */
.wrapper-btnForm {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/******	  COORDONNEES	******/
.map {
    height: 400px;
    width: 100%;
    margin-bottom: 30px;
}
.map iframe{
    width:100%;
    height: 100%;
    border-radius: var(--border-radius);
}
.titleContact {
    display: block;
    font-size: 1.5rem;
    font-family: var(--title-font);
}
.textContact {
    margin-top: 15px;
}
.textContact a {
    color: var(--color-purple);
    transition: 0.5s;
}
.textContact a:hover {
    color: var(--color-primary);
    text-decoration: underline;
    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: 20px;
}
.rs_contact_wrap {
    padding-top: 30px;
}


/*********************************
		 MENTIONS LEGALES
*********************************/
.mentions_wrapper {
    padding: var(--padding);
}
.mentions_content {
    max-width: var(--section-max);
    margin: var(--center);
}


/*********************************
		 PLAN DU SITE
*********************************/
.plan_site_wrapper {
    padding: var(--padding);
}
.plan_site_content {
    max-width: var(--section-max);
    margin: var(--center);
    text-align: center;
}
.plan_titre {
    padding-top: 40px;
    padding-bottom: 15px;
}
.plan_titre:first-of-type {
    padding-top: 0;
}
.plan_site_content a {
    color: var(--color-purple);
}
.plan_site_content a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}


/*********************************
		  FORMULE COURS
*********************************/

/******	  HERO	 ******/
.fiche-hero {
    background-color: var(--color-blue-background);
    min-height: 100svh;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fiche-hero__content {
    height: 100%;
    max-width: var(--section-max);
    position: absolute;
    width: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center; /* vertical */
    justify-content: center;
}
.fiche-hero__inner {
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    column-gap: 100px;
    align-items: center;
}
.fiche-hero_fusee {
    position: absolute;
    bottom: 30px;
    left: 15%;
    width: clamp(180px, 25vw, 400px);
}
.fiche-hero__title {
    max-width: 50ch;
    display: block;
}
.fiche-hero__desc {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    max-width: 50ch;
    padding-top: clamp(20px, 3vw, 30px);
    display: block;
}
.fiche-hero__img {
    width: 100%;
    max-width: clamp(320px, 45vw, 450px);
    margin-left: auto;
    display: block;
    height: auto;
}
.fiche-divider {
    background-position: -100px;
}

/******	  CONTENT COURS	 ******/
.fiche-content {
    padding: clamp(150px, 10vw, 200px) 15px clamp(100px, 9vw, 180px);
}
.fiche-content__container {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
}
.fiche-cours__container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(20px, 3vw, 40px);
    row-gap: clamp(100px, 10vw, 180px);
}
.fiche-content__item {
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: 2px 2px 4px #32273A1A;
    border: 1px solid #32273A33;
    padding: 130px 30px 50px;
    min-height: clamp(380px, 35vw, 400px);
    max-width: clamp(280px, 32vw, 400px);
    height: fit-content;
    text-align: center;
}
.fiche-content__item:nth-child(2),
.fiche-content__item:nth-child(5) {
    margin-top: -50px;
}
.fiche-content__desc {
    padding-top: 25px;
    max-width: 27ch;
    margin: auto;
}
.fiche-content__item:nth-child(2) .fiche-content__desc {
    max-width: 26ch;
}
.fiche-content__item:last-of-type .fiche-content__desc {
    max-width: 25ch;
}
.fiche-content__img {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
}


/******	  PROGRAMME	 ******/
.fiche-programme {
    padding: 0 15px 100px;
}
.fiche-programme__content {
    max-width: var(--section-max);
    margin: var(--center);
}
.fiche-programme__titles {
    text-align: center;
    max-width: 590px;
    display: block;
    margin: var(--center);
}
.fiche-programme__intro {
    padding-top: 30px;
}
/** table desktop **/
.fiche-programme__table_item {
    border-bottom: 3px solid var(--color-white);
    padding: 45px 60px;
    display: flex;
    align-items: center;
    column-gap: 25px;
}
.fiche-programme__table_label,
.fiche-programme__table_value {
    display: block;
    max-width: 36ch;
    font-size: initial;
    color: var(--color-purple);
    font-family: var(--body-font);
}
.fiche-programme__table_img {
    min-width: 46px;
    min-height: 45px;
}
.fiche-programme__table_label {
    font-weight: var(--font-bold);
}
.fiche-programme__table {
    margin: 70px auto 0;
    max-width: 1150px;
}
.fiche-programme__table_row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
}
.fiche-programme__table_row {
    background-color: var(--color-blue-background);
}
.fiche-programme__table_row:nth-child(2n) {
    background-color: #F8FBFF;
}
.fiche-programme__table_row .fiche-programme__table_item:first-of-type {
    border-right: 3px solid var(--color-white);
}
.fiche-programme__table_row:first-of-type {
    -webkit-border-top-left-radius: 11px;
    -webkit-border-top-right-radius: 11px;
    -moz-border-radius-topleft: 11px;
    -moz-border-radius-topright: 11px;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
}
.fiche-programme__table_row:last-of-type {
    -webkit-border-bottom-right-radius: 11px;
    -webkit-border-bottom-left-radius: 11px;
    -moz-border-radius-bottomright: 11px;
    -moz-border-radius-bottomleft: 11px;
    border-bottom-right-radius: 11px;
    border-bottom-left-radius: 11px;
}
.fiche-programme__table_desc {
    font-size: 1rem;
}


/** table mobile **/
.fiche-programme__table_mobile {
    max-width: 1150px;
    display: grid;
    grid-template-columns: minmax(0,1fr);
    margin: 70px auto 0;
    gap: 0;
}
.fiche-programme__table_mobile .fiche-programme__table_item {
    background-color: var(--color-blue-background);
}
.fiche-programme__table_mobile .fiche-programme__table_item:nth-child(2n) {
    background-color: #F8FBFF;
}
.fiche-programme__table_mobile .fiche-programme__table_left .fiche-programme__table_item:first-of-type {
    -webkit-border-top-left-radius: 11px;
    -webkit-border-top-right-radius: 11px;
    -moz-border-radius-topleft: 11px;
    -moz-border-radius-topright: 11px;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
}
.fiche-programme__table_mobile .fiche-programme__table_right .fiche-programme__table_item:last-of-type {
    -webkit-border-bottom-right-radius: 11px;
    -webkit-border-bottom-left-radius: 11px;
    -moz-border-radius-bottomright: 11px;
    -moz-border-radius-bottomleft: 11px;
    border-bottom-right-radius: 11px;
    border-bottom-left-radius: 11px;
}


/******	  CONTACT FORMULE	 ******/
.contact-footer {
    background-image: url("/design/img/yellow_background.webp");
    background-position: center center;
    background-size: contain;
    background-repeat: repeat;
    position: relative;
    min-height: clamp(420px, 50vw, 500px);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 40px;
}
.contact-footer__divider {
    height: 40px;
    background-image: url("/design/img/fiche-divider-top.svg");
}
.contact-footer__content {
    padding: 0 15px;
    max-width: 60ch;
    margin: var(--center);
    display: flex;
    flex-direction: column;
    text-align: center;
}
.contact-footer__title {
    font-size: clamp(2rem, 2.2vw, 2.5rem);
    font-family: var(--title-font);
    line-height: 1.1;
}
.contact-footer__label {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-family: var(--title-font);
    display: block;
    padding-bottom: clamp(20px, 2vw, 30px);
}
.contact-footer__btn {
    background-color: var(--color-secondary);
    color: var(--color-white);
    width: fit-content;
    border-radius: 50px;
}
.contact-footer__btn a,
.contact-footer__btn p,
.contact-footer__btn span {
    color: var(--color-white);
}
.contact-footer__btn:hover {
    background-color: rgba(57, 115, 207, 0.8);
    color: var(--color-white);
}
.contact-footer__btn:hover a,
.contact-footer__btn:hover p,
.contact-footer__btn:hover span {
    color: var(--color-white);
}


/**** FORMULE QCM *****/
.qcm-content {
    padding: var(--padding);
}
.fiche-qcm__container {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 45px;
}
.qcm-content__item {
    border-radius: var(--border-radius);
    box-shadow: 2px 2px 4px #32273A1A;
    border: 1px solid #32273A33;
    max-width: 615px;
    padding:
            clamp(24px, 3vw, 35px)
            clamp(24px, 4vw, 55px)
            clamp(30px, 4vw, 50px)
            clamp(24px, 4vw, 60px);
}
.qcm-content__title_row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 30px;
}
.qcm-content__img {
    width: clamp(105px, 10vw, 130px);
    height: clamp(105px, 10vw, 130px);
    max-width: 100%;
    object-fit: contain;
}
.qcm-content__title {
    font-size: clamp(1.75rem, calc(1.2rem + 1.2vw), 2rem);
}
.qcm-content__desc {
    margin-top: clamp(30px, 4vw, 50px);
}
.qcm-content__item:first-of-type .qcm-content__desc{
    max-width: 43ch;
}
.qcm-content__item:nth-child(2) .qcm-content__desc{
    max-width: 45ch;
}
.qcm-content__item:nth-child(3) .qcm-content__desc{
    max-width: 45ch;
}
.qcm-content__item:last-of-type .qcm-content__desc{
    max-width: 45ch;
}
.qcm-content__item:last-of-type {
    padding: 35px 35px 50px 60px;
}
.qcm-programme {
    background-color: var(--color-blue-background);
    padding: 100px 0;
}
.qcm-programme__content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: center;
    column-gap: clamp(30px, 5vw, 80px);
}
.qcm-programme__img {
    display: block;
    width: 100%;
    max-width: clamp(320px, 55vw, 600px);
    height: auto;
}
.qcm-programme__img_mobile {
    display: none;
}
.qcm-programe__right p,
.qcm-programe__right a {
    font-size: 1.125rem;
}
.qcm-programe__right {
    max-width: 570px;
    padding-right: 15px;
}
.qcm-programe__right .contact-footer__btn p,
.qcm-programe__right .contact-footer__btn a {
    font-size: 0.900rem;
}
.qcm-footer__divider {
    background-image: url("/design/img/qcm-divider-top.svg");
}
.qcm-hero__desc {
    max-width: 40ch;
}
.qcm-programme__texte {
    padding-top: 30px;
}
.qcm-title__mobile {
    display: none;
}
.qcm-programe__right .slider_top__wave_wrapper {
    left: unset;
    transform: unset !important;
    text-align: left;
}
.qcm-title__mobile .wave-svg {
    left: 0;
    transform: unset;
}
.qcm-programme__content .wave-path {
    stroke: var(--color-secondary);
}



/*********************************
		    FORMULES
*********************************/
.formules-list {
    padding: var(--padding);
}
.formules-list_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 40px;
}
.formules-item {
    box-shadow: 2px 2px 4px #32273A1A;
    border: 1px solid #32273A33;
    border-radius: var(--border-radius);
    position: relative;
}
.formules-promo {
    border-radius: 15px;
    background-color: var(--color-primary);
    padding: clamp(10px, 1.5vw, 15px) clamp(16px, 2.5vw, 25px);
    text-transform: uppercase;
    font-weight: var(--font-semi-bold);
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    position: absolute;
    top: clamp(-40px, -3vw, -30px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
.formules-item a {
    padding: 50px 30px;
    color: var(--color-purple);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}
.formules-item__img {
    display: block;
    margin: var(--center);
}
.formules-item__titre {
    font-weight: var(--font-medium);
    font-size: clamp(1.75rem, 2.5vw, 2.188rem);
    padding-top: 20px;
    text-align: center;
}
.formules-item__prices {
    padding: clamp(25px, 4vw, 30px) 0;
    text-align: center;
}
.formules-item__inline_price {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: flex-end;
}
.formules-item__oldprix {
    color: var(--color-secondary);
    font-size: 1.25rem;
    line-height: 1.3;
    opacity: 0.5;
}
.formules-item__prix {
    font-family: var(--title-font);
    color: var(--color-secondary);
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    display: block;
    line-height: 1.1;
}
.formules-item__sub {
    color: var(--color-purple);
    font-family: var(--title-font);
    font-size: clamp(1rem, 1.3vw, 1.25rem);
}
.formules-item__content {
    max-width: 270px;
    margin: var(--center);
}
.formules-item__legend {
    max-width: 270px;
    padding-bottom: 20px;
    margin: var(--center);
    display: block;
}
.formules-item__content-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding-bottom: 5px;
}
.formules-cta {
    margin-top: auto;
}
.btn-cta-black {
    margin: 30px auto 0;
    display: flex;
    background-color: var(--color-purple);
    color: var(--color-white);
}
.btn-cta-black:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--color-white);
}
.formules-item__img {
    max-width: 10em;
}


/*********************************
		    PAIEMENT
*********************************/
.paiement_wrapper {
    padding: 80px 15px 100px;
}
.paiement_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: minmax(0,2fr) minmax(0,1fr);
    gap: 50px;
    position: relative;
}
.paiement_form--title {
    color: var(--color-secondary);
    display: block;
    padding-bottom: 20px;
}
#btnStripe {
    margin-top: 30px;
    display: flex;
    border-radius: 50px;
}
.paiement_livraison {
    background-color: var(--color-blue-background);
    border-radius: var(--border-radius);
    padding: 50px;
    height: fit-content;
    position: sticky;
    top: 7.5rem;
}
.paiement_form--formule,
.paiement_form--prix {
    display: block;
}
.paiement_form--formule {
    padding: 0 0 15px;
}
.paiement_form--prixWrapper {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding: 15px 0 0;
}
.paiement_form--prix {
    font-weight: var(--font-medium);
}
button:focus {
    outline: none;
    border-radius: unset;
}
.paiement_form .form-label {
    margin-bottom: 2px;
}
.paiement_form .form-group {
    padding: 15px 0;
}


/*********************************
		  PAIEMENT MERCI
*********************************/
.remerciement__infos {
    padding: 30px 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.remerciement_btns {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.remerciement_btn.btn-cta-black {
    margin: 0;
    padding: 20px 40px;
    border-radius: 50px;
}
.nav {
    display: block;
}
.anim-wrap {
    position: relative;
}
#animVideo {
    height: 110px;
    display: block;
    margin: 0 auto 20px;
}
/* image cachée au départ */
#animEnd {
    display: none;
    margin: 0 auto 20px;
    height: clamp(70px, 8vw, 110px);
}
.preloader {
    display: none;
}
.paiement_top__wrapper {
    padding: clamp(100px, 8vw, 150px) 15px 0;
}



/*********************************
		 BANDEAU MESSAGE
*********************************/
.top-banner {
    background-color: var(--color-primary);
    padding: 10px 15px;
    overflow: hidden;
    position: fixed;
    width: 100vw;
    bottom: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 3rem;
    z-index: 99999;
}

.top-banner__content {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: var(--font-bold);
    white-space: nowrap;
    position: absolute;
    will-change: transform;
    animation: defilement linear infinite;
}

@keyframes defilement {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}
