/*********************************
			 FONTS
*********************************/
@font-face {
    font-family: 'Coming Soon';
    src: url('/design/fonts/ComingSoon-Regular.eot');
    src: url('/design/fonts/ComingSoon-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/ComingSoon-Regular.woff2') format('woff2'),
    url('/design/fonts/ComingSoon-Regular.woff') format('woff'),
    url('/design/fonts/ComingSoon-Regular.ttf') format('truetype'),
    url('/design/fonts/ComingSoon-Regular.svg#ComingSoon-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Quicksand';
    src: url('/design/fonts/Quicksand-Medium.eot');
    src: url('/design/fonts/Quicksand-Medium.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Quicksand-Medium.woff2') format('woff2'),
    url('/design/fonts/Quicksand-Medium.woff') format('woff'),
    url('/design/fonts/Quicksand-Medium.ttf') format('truetype'),
    url('/design/fonts/Quicksand-Medium.svg#Quicksand-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Quicksand';
    src: url('/design/fonts/Quicksand-Regular.eot');
    src: url('/design/fonts/Quicksand-Regular.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Quicksand-Regular.woff2') format('woff2'),
    url('/design/fonts/Quicksand-Regular.woff') format('woff'),
    url('/design/fonts/Quicksand-Regular.ttf') format('truetype'),
    url('/design/fonts/Quicksand-Regular.svg#Quicksand-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Quicksand';
    src: url('/design/fonts/Quicksand-SemiBold.eot');
    src: url('/design/fonts/Quicksand-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Quicksand-SemiBold.woff2') format('woff2'),
    url('/design/fonts/Quicksand-SemiBold.woff') format('woff'),
    url('/design/fonts/Quicksand-SemiBold.ttf') format('truetype'),
    url('/design/fonts/Quicksand-SemiBold.svg#Quicksand-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/design/fonts/Manrope-SemiBold.eot');
    src: url('/design/fonts/Manrope-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Manrope-SemiBold.woff2') format('woff2'),
    url('/design/fonts/Manrope-SemiBold.woff') format('woff'),
    url('/design/fonts/Manrope-SemiBold.ttf') format('truetype'),
    url('/design/fonts/Manrope-SemiBold.svg#Manrope-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('/design/fonts/Manrope-Medium.eot');
    src: url('/design/fonts/Manrope-Medium.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Manrope-Medium.woff2') format('woff2'),
    url('/design/fonts/Manrope-Medium.woff') format('woff'),
    url('/design/fonts/Manrope-Medium.ttf') format('truetype'),
    url('/design/fonts/Manrope-Medium.svg#Manrope-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('/design/fonts/Manrope-Bold.eot');
    src: url('/design/fonts/Manrope-Bold.eot?#iefix') format('embedded-opentype'),
    url('/design/fonts/Manrope-Bold.woff2') format('woff2'),
    url('/design/fonts/Manrope-Bold.woff') format('woff'),
    url('/design/fonts/Manrope-Bold.ttf') format('truetype'),
    url('/design/fonts/Manrope-Bold.svg#Manrope-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/*********************************
		CLASSES GLOBALES
*********************************/

:root {
    /******	  DEFAULT CONTENT STRUCTURE	******/
    --section-max: 1400px;
    --center: auto;
    --padding : 150px 15px;
    --border-radius : 20px;

    /******	  COULEURS	******/
    --color-text: #000000;
    --color-primary: #348D89;
    --color-secondary: #F47A58;
    --color-orange : #FF942C;
    --color-mention: #FFEFDF;
    --color-white: #fff;

    /******	  FONT WEIGHT	******/
    --font-regular: normal;
    --font-medium : 500;
    --font-semi-bold: 600;

    /******	  FONT AND TYPOGRAPHY	******/
    --body-font: "Quicksand", sans-serif;
    --normal-font-size: 1rem;
    --title-font: "Coming Soon", sans-serif;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.tablette {
    display: none !important;
}

/******	  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;
}

main {
    padding-top: 6rem;
}

.tablette, .mobile {
    display: none;
}

/******	  TITRES	******/
h1, h2, h3, h4 {
    padding: 0;
    margin:0;
    line-height: 1.1;
}
h1 {
    position: relative;
    color: var(--color-white);
    font-size:3.125rem /* 50px */;
    margin:auto;
    font-weight: var(--font-regular);
    font-family: var(--title-font);
}
h2, .like-h2 {
    font-size: 2.5rem /* 40px */;
    margin: 0;
    font-weight: var(--font-regular);
    font-family: var(--title-font);
    text-transform: uppercase;
    color: var(--color-primary);
}
h3 {
    font-size: 1.25rem /* 20px */;
    color: var(--color-primary);
    font-weight: var(--font-regular);
    text-decoration: none;
    font-family: var(--title-font);
}
h4, h5, h6, h7, h8, h9, h10 {
    font-size: 1.25rem /* 20px */;
    text-decoration: none;
    font-weight: var(--font-medium);
    font-family: var(--body-font);
}


/******	  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-semi-bold);
}

/******	  LISTES	******/
ul, ul li {
    list-style-type:none;
    padding: 0;
    margin: 0;
}
#tinymce ul,
#tinymce ul li {
    list-style-type: initial;
    margin: 0 0 0 15px;
}
#tinymce ol,
#tinymce ol li {
    margin: 0 0 0 15px;
}

/******	  IMAGES	******/
img, iframe {
    border: none;
    max-width: 100%;
}
.image_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.background_cover {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background_parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/******	  ANIMATIONS	******/
.effect_hover {
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

/******	  CTA GENERAL	******/
.btn_cta_general{
    display: inline-block;
    padding: 15px 35px;
    background-color:var(--color-secondary);
    font-weight: var(--font-semi-bold);
    border-radius: 50px;
    font-size: 1.125rem;
    color: var(--color-white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    cursor: pointer;
    text-align: center;
    width: fit-content;
    border: 1px solid var(--color-secondary);
    font-family: var(--body-font);
}
.btn_cta_general a,
.btn_cta_general p{
    color: var(--color-white);
    text-decoration: none;
}
.btn_cta_general a:hover,
.btn_cta_general p:hover,
.btn_cta_general:hover a,
.btn_cta_general:hover p {
    text-decoration: none;
    color: var(--color-secondary);
}
.btn_cta_general:hover{
    background-color: transparent;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    color: var(--color-secondary);
}
.btn_cta_center {
    margin: var(--center);
}


/******	 LIEN PLUS	******/
.link_more {
    font-size: 1.25rem;
    font-weight: var(--font-regular);
    font-family: var(--title-font);
    position: relative;
    display: flex;
    text-decoration: underline;
}


/******	  SLIDERS	******/
.splide__track {
    height: 100%;
}
.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*********************************
		CUSTOM SCROLLBAR
*********************************/

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-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-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 {
    display: block;
    text-align: center;
    background-color: var(--color-primary);
    text-transform: uppercase;
    padding: 15px 10px;
    cursor: pointer;
}
.top-banner p,
.top-banner a {
    font-family: var(--title-font);
    font-weight: var(--font-regular);
    color: var(--color-white);
    font-size: 1.125rem;
}
.top-banner:hover p,
.top-banner:hover a {
    text-decoration: underline;
}


/*********************************
		   HEADER WHITE
*********************************/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 9px 9px 99px hsla(222, 32%, 8%, 0.09);
    z-index: 9999;
}

/******	  NAV	 ******/
.nav {
    height: 4rem;
    padding: 0 15px;
}
.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
}
.nav__toggle {
    position: relative;
    width: 22px;
    height: 32px;
}
.nav__logo img {
    max-height: 4rem;
    width: auto;
    object-fit: contain;
}

/******	  BTN CONTACT NAV	 ******/
.contact_link_nav .nav__link {
    background-color: var(--color-text);
    color: var(--color-white);
    height: fit-content;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.contact_link_nav .nav__link:hover {
    background-color: var(--color-secondary) !important;
    color: var(--color-white) !important;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.contact_link_nav .nav__link:hover:after {
    content: "";
    display: none;
}


/******	  FIRST NAV LINKS	 ******/
.nav__link {
    color: var(--color-text);
    background-color: var(--color-white);
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    position: relative;
}
.nav__link:hover:after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--color-secondary);
    position: absolute;
    bottom: -8px;
}

/******	  DROPDOWN	 ******/
.dropdown__item {
    cursor: pointer;
}
.dropdown__arrow {
    transition: transform .4s;
    margin-left: 5px;
}
.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--color-text);
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s;
}
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
}
.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}
.dropdown__link:hover .nav-more,
.dropdown__sublink:hover .nav-more {
    content: url("/design/img/nav-more.svg");
}
.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}
/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
    max-height: 1000px;
    transition: max-height .4s ease-in;
}
/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

/******	  DROPDOWN SUBMENU	 ******/
.nav-more {
    margin-left: auto;
}
.dropdown__sublink {
    background-color: var(--color-white);
}



    /*********************************
                FIL ARIANE
    *********************************/
.fil_ariane {
    display: block;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 5px;
    font-size: 1rem;
    color: var(--color-white);
    text-transform: capitalize;
    text-align: center;
    font-weight: var(--font-medium);
}
.fil_ariane_content {
    display: inline-block;
    overflow: hidden;
    position: relative;
    padding: 0;
    margin-bottom: 10px;
}
.fil_ariane span,
.fil_ariane a,
.fil_ariane p {
    color: var(--color-white);
    text-transform: capitalize;
}
.fil_ariane a:hover {
    color: var(--color-secondary);
}
.fil_ariane .current_retour {
    display:none;
}


/*********************************
		 HEADING SLIDER
*********************************/
#heading-slider {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
#heading-slider .splide__track {
    height: 100%;
}

/******	  ARROW	 ******/
.splide__arrow {
    border-radius: unset !important;
}
.splide__arrow svg {
    display: none;
}
.splide__arrows {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}
.splide .custom-arrow-prev {
    left: auto;
    right: 60px;
    background: url("/design/img/prev.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.splide .custom-arrow-next {
    background: url("/design/img/next.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.splide__arrow {
    position: unset !important;
    width: 50px !important;
    height: 50px !important;
    transform: unset !important;
}

/******	  ARROW	MIDDLE CENTER ******/
.bottom-center-arrow .splide__arrows {
    left: 50%;
    transform: translateX(-50%);
    bottom: -80px;
}

/******	  ARROW TOP RIGHT	 ******/
.top-right-arrow .splide__arrows {
    right: 15px;
    top: -90px;
}

/******	  ARROW BOTTOM RIGHT	 ******/
.bottom-right-arrow .splide__arrows {
    right: 15px;
    bottom: -80px;
}


/*********************************
		     HOMEPAGE
*********************************/

[id] {
    scroll-margin-top: 200px; /* ou la hauteur de ton header */
}

.noise_overlay {
    background-image: url("/design/img/noise_overlay.png");
    background-size: contain;
    background-repeat: repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99;
}

.no-title {
    font-size: 0;
    line-height: 0;
    visibility: hidden;
}


/******	  HERO	 ******/
.hero_home {
    max-width: 1920px;
    margin: var(--center);
}
.hero-home__slide {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: center;
    gap: 250px;
    padding: 90px 80px;
}
.hero-home__title {
    color: var(--color-primary);
    font-size: 3.75rem;
    line-height: 1.1;
    font-family: var(--title-font);
}
.hero-home__txt {
    font-weight: var(--font-medium);
    font-size: 1.125rem;
    padding: 15px 0 60px;
}
.splide__slide .hero-home__img {
    border-radius: var(--border-radius);
    width: 100%;
    object-fit: cover;
    height: 650px;
    display: block;
}
.hero-home__right {
    position: relative;
}
.hero-home__right:before {
    content: url("/design/img/hero-key.svg");
    position: absolute;
    top: -20px;
    left: -50px;
}
.hero-home__slider .splide__arrows {
    width: 100%;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}


/***** EN UN CLIC *****/
.quick-access {
    padding: 150px 15px 180px;
    background-color: var(--color-mention);
    position: relative;
    background-image: url("/design/img/orange-divider.png");
    background-repeat: repeat-x;
    background-size: contain;
    background-position: top;
}
.quick-access__content {
    max-width: var(--section-max);
    margin: var(--center);
}
.quick-access__title {
    color: var(--color-orange);
    text-align: center;
}
.quick-access__list {
    padding-top: 50px;
}
.quick-access__item {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    height: 100%;
}
.quick-access__item:hover {
    background-color: var(--color-white);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.quick-access__item a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.quick-access__img_wrapper {
    padding: 40px 40px 30px;
}
.quick-access__item .quick-access__img {
    height: 210px;
    width: 210px;
    object-fit: cover;
    display: block;
    margin: var(--center);
    border-radius: 50%;
}
.quick-access__txt {
    padding: 0 40px 40px;
    text-align: center;
}
.quick-access__item_title {
    color: var(--color-orange);
}
.quick-access__item_txt {
    color: var(--color-text);
    padding: 5px 0;
}
.quick-access__link_wrapper {
    border-top: 1px solid var(--color-orange);
    padding: 15px 40px;
    text-align: center;
    font-size: 1.125rem;
    font-family: var(--title-font);
    color: var(--color-orange);
}
.quick-access__item:hover .quick-access__link_wrapper {
    background-color: var(--color-secondary);
    border-top: 1px solid var(--color-secondary);
    color: var(--color-white);
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.quick-access__item:hover .quick-access__item_title {
    color: var(--color-secondary);
}
#quick-access__list .custom-arrow-next {
    background: url("/design/img/next_orange.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#quick-access__list .custom-arrow-prev {
    background: url("/design/img/prev_orange.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#quick-access__list .splide__list {
    display: flex;
    align-items: stretch;
}


/***** FORMATIONS  *****/
.formations {
    padding: var(--padding);
}
.formations__content {
    max-width: var(--section-max);
    margin: var(--center);
}
.formations__titles {
    max-width: 640px;
}
.formations__slider {
    padding-top: 30px;
}
.formations__slide-inner {
    margin: 20px;
    border-radius: var(--border-radius);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.formations__slide .formations__slide-inner:hover {
    box-shadow: 9px 9px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.formations__img_wrapper {
    border-radius: var(--border-radius);
    height: 300px;
    width: 100%;
}
.formations__img {
    border-radius: var(--border-radius);
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.formations__txt_wrapper {
    padding: 30px 0 0;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.formations__slide-inner:hover  .formations__txt_wrapper {
    padding: 30px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.formations__slide:hover .formations__txt_wrapper h3 {
    color: var(--color-secondary);
}
.formations__txt {
    padding-top: 5px;
    color: var(--color-text);
    font-weight: var(--font-medium);
}
body .formations__slider .splide__arrows {
    top: -50px;
}



/***** STAGES  *****/
.stages {
    padding: 0 15px 150px;
}



/***** FAQ  *****/
.faq {
    padding: var(--padding);
    background-color: #E0EEED;
    position: relative;
    background-image: url("/design/img/blue-divider.png");
    background-repeat: repeat-x;
    background-size: contain;
    background-position: top;
}
.faq__content {
    max-width: var(--section-max);
    margin: var(--center);
}
.faq__titles {
    max-width: 640px;
}
.faq__slider {
    margin: 50px 0;
}
.faq__item {
    border-radius: var(--border-radius);
    border: 1px solid var(--color-primary);
    padding: 30px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    height: 350px;
}
.faq__item a {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
.faq__item:hover {
    border: 1px solid var(--color-white);
    background-color: var(--color-white);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.faq__numb span {
    color: var(--color-primary);
    font-size: 2.5rem;
    font-family: var(--title-font);
}
.faq__txt_wrapper {
    width: 100%;
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: var(--font-medium);
    padding-bottom: 20px;
}
.faq__txt_wrapper img {
    display: block;
    margin-left: auto;
    width: auto;
    height: auto;
}
.link_more_faq {
    display: block;
    margin: var(--center);
    text-align: center;
    color: var(--color-primary);
}


/***** CONTACT  *****/
.contact {
    padding: var(--padding);
}
.contact__content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: center;
    gap: 180px;
}
.contact__img {
    border-radius: var(--border-radius);
    height: 580px;
    width: 100%;
    object-fit: cover;
}
.contact__left {
    position: relative;
}
.google-review-badge {
    position: absolute;
    bottom: -20px;
    right: -50px;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 15px;
    box-shadow: 9px 9px 99px rgba(0, 0, 0, 0.08);
    font-family: "Manrope", var(--body-font);
}
.rating-line {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}
.rating-number {
    font-size: 1.25rem;
    font-weight: bold;
    color: #d77a00;
}
.stars {
    display: flex;
}
.star {
    font-size: 1.25rem;
    color: #d77a00;
    margin-right: 1px;
    position: relative;
}
.google-text {
    font-size: 15px;
    line-height: 1.2;
    color: grey;
}
.google-name {
    font-size: 1.125rem;
    font-weight: bold;
}
.customer-review {
    font-size: 1.125rem;
    font-weight: var(--font-medium);
}


/*********************************
		     FOOTER
*********************************/
.footer {
    background-color: var(--color-mention);
    position: relative;
}
.footer__top {
    padding: 50px 15px;
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.footer_titre {
    display: block;
    max-width: 510px;
    text-align: left;
    font-size: 1.25rem;
    color: var(--color-orange);
    font-family: var(--title-font);
    line-height: 1.2;
}
.footer__certifs {
    display: flex;
    align-items: center;
    gap: 30px;
}
.footer__divider {
    display: block;
    height: 40px;
    width: 100%;
    background-image: url("/design/img/orange-divider.png");
    background-repeat: repeat-x;
    background-size: contain;
    background-position: top;
}
.footer__bottom {
    padding: 80px 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: var(--section-max);
    margin: var(--center);
}
.logo_footer {
    max-width: 240px;
}
.footer__rs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}
.footer__links {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    justify-content: flex-end;
}
.footer__links_item {
    text-align: left;
}
.footer__links_item:first-of-type {
    max-width: 50%;
}
.footer__links_item:last-of-type {
    width: fit-content;
}
.footer__links_title {
    font-family: var(--title-font);
    color: var(--color-orange);
    font-size: 1.25rem;
    display: block;
}
.footer__links_list {
    padding-top: 15px;
}
.footer__links_list li {
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer__links_list a {
    color: var(--color-text);
}
.footer__links_list a:hover {
    color: var(--color-orange);
}
.footer__copyright {
    background-color: var(--color-orange);
    padding: 15px;
}
.footer__bottom_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    gap: 30px;
    flex-wrap: wrap;
    font-family: var(--title-font);
    font-size: 0.815rem;
}
.footer__bottom_content a {
    color: var(--color-white);
    cursor: pointer;
}



/*********************************
		    ACTUALITES
*********************************/
.actus_wrapper {
    padding: 150px 15px 50px;
}
.actus__content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 50px;
    align-items: flex-start;
}
.no-result {
    max-width: var(--section-max);
    margin: var(--center);
}
.actus_wrapper .formations__slide-inner {
    margin: 0;
}


    /*********************************
               UNE ACTUALITE
    *********************************/
.une_actu {
    padding: var(--padding);
}
.une_actu__content {
    max-width: var(--section-max);
    margin: var(--center);
}


/****** ARCHIVES ******/
.archives {
    background-color: #E0EEED;
}
.archives .formations__slide-inner:hover {
    background-color : var(--color-white);
}
.texte_article img {
    width: auto;
    height: auto;
}



/*********************************
		    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	 ******/
.top_page {
    position: relative;
    z-index: 2;
}
.top_page:after {
    background-image: url("/design/img/blue-divider.png");
    background-repeat: repeat-x;
    background-size: cover;
    background-position: top;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -41px;
    height: 41px;
    width: 100%;
}
.top_page__overlay {
    position: absolute;
    display: block;
    z-index: 7;
    background: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.top_page .hero-home__left,
.top_page .hero-home__right:before {
    display: none;
}
.top_page .hero-home__slider {
    height: 415px;
    pointer-events: none;
}
.top_page .hero-home__slide {
    grid-template-columns: minmax(0,1fr);
    gap: 0;
    padding: 0;
}
.top_page .hero-home__img {
    width: 100%;
    height: 415px;
    object-fit: cover;
    border-radius: unset;
}
.top_page .splide__arrows {
    display: none;
}
.top_page__titles {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    max-width: 1024px;
    width: 100%;
}
.top_page__h1 {
    text-align: center;
}


/******	  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;
    margin-left:20px;
    list-style-type:initial;
}
.text_champ a:hover {
    text-decoration: underline;
}
.text_champ p strong,
.text_champ p strong a {
    font-weight: var(--font-semi-bold);
}
.text_champ img.imgTinyMceGauche, #tinymce img.imgTinyMceGauche{
    float: left;
    margin-right: 15px;
}
.text_champ img.imgTinyMceDroite, #tinymce img.imgTinyMceDroite{
    float: right;
    margin-left: 15px;
}


/*	  PARAGRAPHES DEROULANTS	*/
.paragraphe_deroulant__wrapper {
    padding: 0 30px;
}
.paragraphe_deroulant {
    max-width: var(--section-max);
    margin: var(--center);
    width: 100%;
    margin-bottom: 20px;
}
.toggleWrapper .toggleTitre {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 30px;
    font-weight: var(--font-regular);
    font-family: var(--title-font);
    font-size: 1.125rem;
    color: var(--color-secondary);
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    text-transform: uppercase;
    line-height: 1;
    box-shadow: 9px 9px 99px rgba(0, 0, 0, 0.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-orange.svg") !important;
    display: flex;
    align-items: center;
}
.toggleWrapper .toggleTitre.active:after {
    content: url("/design/img/nav-arrow-down.svg") !important;
    transform: rotate(180deg);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.toggleWrapper .toggleTitre.active {
    background-color: var(--color-secondary);
    color: var(--color-white);
}
.toggleWrapper .toggleTexte {
    padding: 30px;
    background-color: transparent;
}
.toggleWrapper .toggleTexte .text_champ {
    padding: 0;
}

/*	  TEXTE SIMPLE	*/
.text__wrapper {
    padding: 0 15px 150px;
}
.text_simple {
    max-width: var(--section-max);
    width: 100%;
    margin: var(--center);
}

/*	  TEXTE + IMAGES	*/
.text_img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--section-max);
    margin: var(--center);
}
.text_champ .texte_pag_dyn,
.text_champ figure {
    display: inline-block;
}
.text_champ .texte_pag_dyn {
    width: 50%;
}
.text_champ figure {
    width: 40%;
}
.text_champ figure a {
    display: block;
}
.text_champ figure img {
    max-height: 600px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.image_droite {
    margin: 0 0 0 20px;
}
.image_gauche {
    margin: 0 20px 0 0;
}
.text_champ img.imgTinyMceGauche, #tinymce img.imgTinyMceGauche{
    float: left;
    margin-right: 15px;
}
.text_champ img.imgTinyMceDroite, #tinymce img.imgTinyMceDroite{
    float: right;
    margin-left: 15px;
}


/******	  CAROUSEL	 ******/
.carousel_wrapper {
    padding: 0 15px 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: 445px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/**** FAQ FORMATIONS ****/
.faq_formations {
    background-color: #E0EEED;
    padding: var(--padding);
}
.faq_formations__content {
    max-width: var(--section-max);
    margin: var(--center);
}
.faq_formations__title {
    text-align: center;
    display: block;
}
.faq_formations__list {
    padding-top: 50px;
}
.faq_formations__list .toggleTitre {
    color: var(--color-primary);
}
.toggleWrapper .toggleTitre:after {
    content: url("/design/img/nav-arrow-down-blue.svg");
}
.faq_formations__list .toggleTitre.active {
    background-color: var(--color-primary);
}
.faq_formations__list .toggleWrapper .toggleTexte,
.faq_formations__list .text_champ p,
.faq_formations__list .text_champ a {
    color: var(--color-primary);
}
.faq_formations .toggleWrapper .toggleTitre:after {
    content: url("/design/img/nav-arrow-down-blue.svg") !important;
}
.faq_formations .toggleWrapper .toggleTitre.active::after {
    content: url("/design/img/nav-arrow-down.svg") !important;
}



/*********************************
            CONTACT
*********************************/
.contact_wrapper {
    padding: var(--padding);
}
.contact_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: minmax(0,2fr) minmax(0,1fr);
    align-items: flex-start;
    gap: 50px;
}
.texte_accroche{
    font-size: var(--normal-font-size);
    box-sizing: border-box;
}

/******	  FORMULAIRE	******/
#formulaire {
    margin: 0 auto 30px;
}
.champs_obligatoires{
    margin-top: 30px;
}
.content-formDemande {
    margin-top: 50px;
}

/* CHAMPS FORMULAIRE */
textarea {
    resize: none;
}
.form-group{
    padding: 10px 0;
    margin-bottom: 25px;
}
.form-label {
    font-size: 1rem;
    color: var(--color-text);
    font-family: var(--body-font);
    font-weight: var(--font-semi-bold);
    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-secondary);
    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-primary);
}
.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: #348d89;
    font-family: var(--body-font);
    color: var(--color-white);
    padding: 20px;
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: var(--font-semi-bold);
    margin-top: 20px;
}

/* BTNS FORMULAIRE */
.wrapper-btnForm {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/******	  COORDONNEES	******/
.map {
    height: 400px;
    width: 100%;
    margin-bottom: 30px;
}
.map iframe{
    width:100%;
    height: 100%;
    border-radius: var(--border-radius);
}
.titleContact {
    text-transform: uppercase;
    font-size: 1.125rem;
    color: var(--color-primary);
    font-weight: var(--font-semi-bold);
}
.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: 20px;
}
.rs_contact_wrap {
    padding-top: 30px;
}


/*********************************
		 MENTIONS LEGALES
*********************************/
.mentions_wrapper {
    padding: var(--padding);
}
.mentions_content {
    max-width: var(--section-max);
    margin: var(--center);
}


/*********************************
		 PLAN DU SITE
*********************************/
.plan_site_wrapper {
    padding: var(--padding);
}
.plan_site_content {
    max-width: var(--section-max);
    margin: var(--center);
    text-align: center;
}
.plan_titre {
    font-size: 1.25rem;
    font-weight: var(--font-semi-bold);
    color: var(--color-primary);
    padding-top: 40px;
    padding-bottom: 5px;
}
.plan_titre:first-of-type {
    padding-top: 0;
}
.plan_site_content a {
    color: var(--color-text);
}
.plan_site_content a:hover {
    color: var(--color-primary);
}
/********************************
		    TEMOIGNAGES
*********************************/
.temoignages_top {
    padding: var(--padding);
    background-color: #E0EEED;
}
.temoignages_top__content {
    max-width: var(--section-max);
    margin: var(--center);
}
.temoignages__welcome_message {
    display: block;
    font-size: 1.25rem;
    font-weight: var(--font-semi-bold);
    text-align: center;
    padding-bottom: 50px;
    color: var(--color-primary);
}
.message_ok {
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius);
    font-family: var(--title-font);
    color: var(--color-primary);
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    font-size: 1.125rem;
    font-weight: var(--font-regular);
    margin-bottom: 50px;
}
.temoignages_form {
    box-sizing: border-box;
    position: relative;
    max-width: 100%;
    width: 100%;
}
.temoignages_form .contact_ch_simple,
.temoignages_form .contact_ch_multi {
    box-sizing: border-box;
    border: none;
    border-radius: 5px;
    padding: 5px;
}
.temoignages_form__wrapper_btn{
    text-align: center;
}
.temoignages_form .contact_ch_simple:focus,
.temoignages_form .contact_ch_multi:focus {
    border-color: var(--color-primary);
    outline: none;
}
.temoignages_top__content .btn_cta_general {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    margin-top: 30px;
}
.temoignages_top__content .btn_cta_general:hover {
    background-color: transparent;
    color: var(--color-primary);
}
.temoignages_top__content .form-control {
    border-color: var(--color-mention);
}
.temoignages_top__content .form-control:focus,
.temoignages_top__content input.filled,
.temoignages_top__content textarea.filled {
    border-color: var(--color-primary);
}
.temoignages_top__content .wrapper-btnForm {
    justify-content: center;
}
.temoignages__wrapper {
    padding: 150px 15px 100px;
}
.temoignages__titre {
    display: block;
    text-align: center;
    padding-bottom: 50px;
}
.temoignages__list {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    align-items: flex-start;
    gap: 30px;
}
.temoignages__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 210px;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 9px 9px 99px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: -webkit-fill-available;
}
.temoignages_name {
    display: block;
    padding-top: 20px;
    font-weight: var(--font-regular);
    font-family: var(--title-font);
    text-transform: uppercase;
    color: var(--color-primary);
}

/*********************************
			FAQ
*********************************/
.faq_page {
    padding: var(--padding);
}
.faq_page__content {
    max-width: var(--section-max);
    margin: var(--center);
}
.faq_page__item {
    padding-bottom: 80px;
}
.faq_page__item:last-of-type {
    padding-bottom: 0;
}
.faq_page__txt {
    padding-top: 10px;
}
