/*********************************
			 FONTS
*********************************/
@font-face {
    font-family: 'Poppins';
    src: url('/design/fonts/Poppins-Light.woff2') format('woff2'),
    url('/design/fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('/design/fonts/Poppins-Medium.woff2') format('woff2'),
    url('/design/fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('/design/fonts/Poppins-Regular.woff2') format('woff2'),
    url('/design/fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('/design/fonts/Poppins-Italic.woff2') format('woff2'),
    url('/design/fonts/Poppins-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}


/*********************************
		CLASSES GLOBALES
*********************************/

:root {
    /******	  DEFAULT CONTENT STRUCTURE	******/
    --section-max: 1400px;
    --center: auto;
    --padding : 130px 30px;
    --border-radius : 3px;

    /******	  COULEURS	******/
    --color-text: #0D0D0D;
    --color-primary: #BA9731;
    --color-secondary: #DACE84;
    --color-mention: #F2F2F2;
    --color-white: #fff;

    /******	  FONT WEIGHT	******/
    --font-light: 300;
    --font-regular: normal;
    --font-medium: 500;

    /******	  FONT AND TYPOGRAPHY	******/
    --body-font: "Poppins", sans-serif;
    --normal-font-size: 1rem;
    --title-font: "Poppins", sans-serif;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/******	  STRUCTURE PAGE	******/
html {
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    font-size: 15px;
    scroll-behavior: smooth;
}
body {
    background-size: cover; /* version standardisée */
    font-size: var(--normal-font-size);
    -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";
    font-family: var(--body-font);
    font-weight: var(--font-light);
}

.tablette, .mobile {
    display: none;
}

/******	  TITRES	******/
h1, h2, h3, h4 {
    padding: 0;
    margin:0;
}
h1 {
    position: relative;
    color: var(--color-white);
    font-size:2.813rem /* 65px */;
    margin:auto;
    font-weight: var(--font-medium);
    line-height: 1.1;
}
h2 {
    font-size: 1.875rem /* 30px */;
    color: var(--color-primary);
    padding: 0 0 50px;
    margin: 0;
    font-weight: var(--font-medium);
    line-height: 1.2;
}
h3 {
    font-size: 1.563rem /* 25px */;
    font-weight: var(--font-regular);
    text-decoration: none;
}
h4 {
    font-size: 1.125rem /* 20px */;
    font-weight: var(--font-medium);
}

/******	  TEXTES	******/
p, table {
    color: var(--color-text);
    font-size: var(--normal-font-size);
    margin: 0;
    padding: 0;
}
a {
    outline: none;
    color: var(--color-primary);
    text-decoration: none;
}
em, i /* pour marquer un texte sur lequel on veut insister */ {
    font-size: var(--normal-font-size);
    text-decoration: none;
    padding: 0;
    color: var(--color-text);
    margin: 0;
    display: inline;
}
strong {
    font-weight: var(--font-medium);
}

/******	  LISTES	******/
ul, ul li {
    list-style-type:none;
    padding: 0;
    margin: 0;
}

/******	  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: 10px 45px;
    font-size: 1rem;
    color: var(--color-primary);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    font-weight: var(--font-medium);
    letter-spacing: 1.1px;
    position: relative;
    transition: 0.20s;
    text-align: center;
}
.btn_cta_general a,
.btn_cta_general p{
    color: var(--color-primary);
    text-decoration: none;
    font-weight: var(--font-medium);
}
.btn_cta_general a:hover,
.btn_cta_general p:hover,
.text_champ.btn_cta_general a:hover {
    text-decoration: none !important;
}
.btn_cta_general:hover a,
.btn_cta_general:hover p{
    color: var(--color-primary);
}
.btn_cta_general:before {
    content:"";
    position:absolute;
    left:0px;
    top:-11px;
    bottom:-11px;
    border:1px solid var(--color-primary);
    border-radius: 50px;
    transition: 0.20s;
}
.btn_cta_general:after {
    content:"";
    position:absolute;
    right:0px;
    top:-11px;
    bottom:-11px;
    border:1px solid var(--color-primary);
    border-radius: 50px;
    transition: 0.20s;
}
.btn_cta_wrapper {
    position: relative;
    width: fit-content;
}
.btn_cta_wrapper:after {
    content:"";
    position:absolute;
    bottom:0px;
    right:-11px;
    left:-11px;
    border:1px solid var(--color-primary);
    border-radius: 50px;
    transition: 0.20s;
}
.btn_cta_wrapper:before {
    content:"";
    position:absolute;
    top:0px;
    right:-11px;
    left:-11px;
    border:1px solid var(--color-primary);
    border-radius: 50px;
    transition: 0.20s;
}
.btn_cta_wrapper:hover:after,
.btn_cta_wrapper:hover:before {
    right:-13px;
    left:-13px;
    transition: 0.20s;
}
.btn_cta_wrapper:hover .btn_cta_general:after,
.btn_cta_wrapper:hover .btn_cta_general:before {
    top:-13px;
    bottom:-13px;
    transition: 0.20s;
}
.btn_cta_wrapper:hover .btn_cta_general{
    padding: 10px 50px;
}


/*********************************
		CUSTOM SCROLLBAR
*********************************/

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary) #FFFFFF;
}
/* Chrome, Edge and Safari */
html::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}
html::-webkit-scrollbar-track {
    border-radius: 20px;
    background-color: var(--color-white);
}
html::-webkit-scrollbar-track:hover {
    background-color: var(--color-white);
}
html::-webkit-scrollbar-track:active {
    background-color: var(--color-white);
}
html::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: var(--color-secondary);
}
html::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-secondary);
}
html::-webkit-scrollbar-thumb:active {
    background-color: var(--color-secondary);
}


/*********************************
		 SCROLL TO TOP
*********************************/
.scrollToTop {
    display: none;
    overflow: hidden;
    margin: 1%;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: url("/design/img/arrow-up.svg") no-repeat center center;
    padding: 25px;
    cursor: pointer;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10000;
    background-color: var(--color-secondary);
}


/*********************************
		 MESSAGE COOKIES
*********************************/
body .cc_banner-wrapper {
    z-index: 999999;
}
body .cc_container {
    font-size: 1rem;
    text-align: center;
}
body .cc_container p {
    color: var(--color-white);
}
body .cc_container .cc_message {
    display: block;
    text-align: center;
    font-size: var(--normal-font-size);
    margin: 0;
}
body .cc_container .cc_btn, body .cc_container body .cc_btn:visited {
    color: var(--color-white);
    background-color: var(--color-primary);
}
body .cc_container a, body .cc_container a:visited {
    text-decoration: none;
    color: #333;
    background: var(--color-white);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-top: 10px;
    padding: 7px 10px;
    float: none;
    font-size: var(--normal-font-size);
    display: inline-block;
    max-width: 140px;
    text-align: center;
}
body .cc_banner-wrapper .cc_container .cc_btn {
    float: none;
    max-width: 140px !important;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    font-size: var(--normal-font-size);
    margin-left: 0;
    margin-right: 10px;
}
body .cc_banner-wrapper .cc_container .cc_btn.cc_btn_refuse{
    background: var(--color-text);
}
body .cc_container a:hover, body .cc_container a:visited:hover {
    background: #666;
    color: var(--color-white);
}
.iframeContenuRemplacement{
    border: 1px solid #bbb;
    padding: 10px;
}
a.cc_btn.cc_btn_refuse:hover {
    color: var(--color-white);
}


/*********************************
		 BANDEAU MESSAGE
*********************************/
.top_banner {
    color: var(--color-white);
    text-align: center;
    background-color: var(--color-text);
    padding: 10px;
    font-family: var(--body-font);
}

.top_banner p {
    font-weight: var(--font-regular);
    font-size: 0.875rem /* 14px */;
}


/*********************************
		     HEADER
*********************************/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 9999;
}

/******	  NAV	 ******/
.nav {
    height: 8rem;
    padding: 0 30px;
}
.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;
    z-index: 999999;
}

/******	  FIRST NAV LINKS	 ******/
.nav__link {
    color: var(--color-white);
    background-color: transparent;
    font-weight: var(--font-regular);
    padding: 1.25rem 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-bottom-width .3s;
    white-space: nowrap;
    position: relative;
}
.nav__link:hover:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-white);
    position: absolute;
    bottom: 45px;
}
.nav__contact:hover:after {
    content: none;
    display: none;
}

/******	  DROPDOWN	 ******/
.dropdown__item {
    cursor: pointer;
}
.dropdown__arrow {
    transition: transform .4s;
    margin-left: 5px;
}
.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--color-white);
    background-color: var(--color-text);
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-medium);
    transition: background-color .3s;
}
.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--color-text);
}
.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-text);
}

/******	  BTN CONTACT	 ******/
.btn_header_contact {
    color: var(--color-white);
    font-weight: var(--font-regular);
    letter-spacing: 0;
}
.btn_header_contact a,
.btn_header_contact p{
    color: var(--color-white);
}
.btn_header_contact:hover a,
.btn_header_contact:hover p{
    color: var(--color-white);
}
.btn_header_contact:before {
    border:1px solid var(--color-white);
}
.btn_header_contact:after {
    border:1px solid var(--color-white);
}
.nav__link .btn_cta_wrapper:after {
    border:1px solid var(--color-white);
}
.nav__link  .btn_cta_wrapper:before {
    border:1px solid var(--color-white);
}


/*********************************
		    FIL ARIANE
*********************************/
.fil_ariane {
    display: block;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 5px;
    font-size: 0.813rem;
    color: var(--color-white);
    text-transform: capitalize;
}
.fil_ariane_content {
    display: inline-block;
    overflow: hidden;
    position: relative;
    padding: 0;
    margin-bottom: 10px;
}
.fil_ariane span,
.fil_ariane a,
.fil_ariane p {
    color: var(--color-white);
    text-transform: capitalize;
}
.fil_ariane a:hover {
    color: var(--color-secondary);
}
.fil_ariane .current_retour {
    display:none;
}


/*********************************
		     HOMEPAGE
*********************************/

/******	  HERO	 ******/
.hero_wrapper {
    max-height: 1080px;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    position: relative;
}
#heading-slider {
    width: 100%;
    height: 100%;
}
.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: var(--color-text);
    opacity: 0.5;
    width: 100%;
    height: 100%;
}
.hero_content {
    padding: var(--padding);
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: var(--color-white);
}
.hero_inner_content {
    max-width: var(--section-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
}
.hero_inner_content h1,
.hero_txt,
.hero_inner_content .btn_cta_wrapper {
    grid-column: 1;
}
.hero_inner_content .hero_txt {
    padding: 20px 0 85px;
    font-size: 1.125rem;
    font-weight: var(--font-regular);
}
/* hero btn cta general */
.hero_content .btn_cta_general{
    color: var(--color-primary);
    background: var(--color-mention);
}
.hero_content .btn_cta_general a,
.hero_content .btn_cta_general p{
    font-weight: var(--font-medium);
}
.hero_content .btn_cta_general:hover a,
.hero_content .btn_cta_general:hover p{
    color: var(--color-mention);
}
.hero_content .btn_cta_general:before {
    border:1px solid var(--color-mention);
}
.hero_content .btn_cta_general:after {
    border:1px solid var(--color-mention);
}
.hero_content .btn_cta_wrapper:after {
    border:1px solid var(--color-mention);
}
.hero_content .btn_cta_wrapper:before {
    border:1px solid var(--color-mention);
}
/* hero bottom cta */
.hero_bottom_cta {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--color-mention);
    padding: 40px;
    z-index: 5;
    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: var(--border-radius);
    -moz-border-radius-topleft: var(--border-radius);
    border-top-left-radius: var(--border-radius);
}
.hero_bottom_cta a {
    display: flex;
    color: var(--color-primary);
    max-width: 70%;
    font-weight: var(--font-regular);
    align-items: center;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.hero_bottom_cta a:before {
    content: url("/design/img/arrow-down-gold.svg");
    display: inline-flex;
    margin-right: 25px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.hero_bottom_cta:hover {
    background-color: var(--color-text);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.hero_bottom_cta:hover a {
    color: var(--color-white);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.hero_bottom_cta:hover a:before {
    content: url("/design/img/arrow-down-white.svg");
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}


/******	  ASSURANCES	 ******/
.assurances_wrapper {
    background-color: var(--color-text);
    padding: var(--padding);
}
.assurances_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.une_assurance {
    margin-right: 190px;
}
.une_assurance:last-of-type {
    margin-right: 0;
}
.une_assurance__h3 {
    font-size: 1.125rem;
    color: var(--color-white);
    font-weight: var(--font-regular);
    line-height: 1.1;
    padding-top: 10px;
}
.une_assurance__txt {
    color: var(--color-white);
    padding-top: 30px;
}
.une_assurance__txt p,
.une_assurance__txt span,
.une_assurance__txt a {
    color: var(--color-white);
}

/******	  A PROPOS	 ******/
.about_wrapper {
    background-color: var(--color-mention);
    padding: var(--padding);
}
.about_content {
    margin: var(--center);
    max-width: var(--section-max);
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    column-gap: 100px;
    align-items: center;
}
.about_left__img {
    height: 660px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.about_right__numb {
    padding: 60px 0 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.un_numb {
    display: flex;
    align-items: center;
    margin-right: 30px;
}
.un_numb:last-of-type  {
    margin-right: 0;
}
.numb {
    font-size: 3rem;
    font-weight: var(--font-medium);
    letter-spacing: 1.05px;
    color: var(--color-primary);
}
.numb_sub {
    padding-left: 10px;
    font-weight: var(--font-medium);
    letter-spacing: 1.05px;
}
.about_right .btn_cta_wrapper {
    margin: 0 auto;
}

/******	  SERVICES	 ******/
.services_wrapper {
    padding: 130px 0;
}
.services_content__h2 {
    max-width: 40%;
    margin: var(--center);
    text-align: center;
    padding: 0 30px;
}
.services_list {
    padding-top: 100px;
}
.un_service {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-template-rows: minmax(0,1fr);
}
.un_service__left {
    position: relative;
}
.un_service__img {
    display: flex;
    position: absolute;
    max-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-border-top-right-radius: var(--border-radius);
    -webkit-border-bottom-right-radius: var(--border-radius);
    -moz-border-radius-topright: var(--border-radius);
    -moz-border-radius-bottomright: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}
.un_service__right {
    padding: 130px 30px 130px 125px;
    max-width: 730px;
}
.un_service__numb {
    font-size: 2.188rem;
    color: var(--color-secondary);
}
.un_service__h3 {
    font-size: 1.563rem;
    padding-bottom: 50px;
}
.un_service:nth-child(2n) .un_service__right {
    grid-column: 1;
    grid-row: 1;
    place-self: center end;
    padding: 130px 125px 130px 30px;
}
.un_service:nth-child(2n) .un_service__img {
    -webkit-border-top-right-radius: unset;
    -webkit-border-bottom-right-radius:  unset;
    -moz-border-radius-topright:  unset;
    -moz-border-radius-bottomright:  unset;
    border-top-right-radius:  unset;
    border-bottom-right-radius:  unset;
    -webkit-border-top-left-radius: var(--border-radius);
    -webkit-border-bottom-left-radius: var(--border-radius);
    -moz-border-radius-topleft: var(--border-radius);
    -moz-border-radius-bottomleft: var(--border-radius);
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}


/******	  TEMOIGNAGES	 ******/
.avis_wrapper {
    padding: 15px 30px 130px;
}
.avis_content {
    max-width: var(--section-max);
    margin: var(--center);
    position: relative;
}
.avis_content:before {
    content:"";
    position:absolute;
    top:0px;
    right:-15px;
    left:-15px;
    border:1px solid;
    border-image:   linear-gradient(to right, var(--color-primary) 15%, var(--color-white) 15%, var(--color-white) 65%,var(--color-white) 65%, var(--color-white) 85%, var(--color-primary) 85%) 5;
    border-radius: 50px;
}
.avis_content:after {
    content:"";
    position:absolute;
    bottom:0px;
    right:-15px;
    left:-15px;
    border:1px solid;
    border-image:   linear-gradient(to right, var(--color-primary) 15%, var(--color-white) 15%, var(--color-white) 65%,var(--color-white) 65%, var(--color-white) 85%, var(--color-primary) 85%) 5;
    border-radius: 50px;
}
.avis {
    position: relative;
    padding: 75px 185px 130px;
}
.avis:before {
    content:"";
    position:absolute;
    left:0px;
    top:-15px;
    bottom:-15px;
    border:1px solid var(--color-primary);
    border-radius: 50px;
}
.avis:after {
    content:"";
    position:absolute;
    right:0px;
    top:-15px;
    bottom:-15px;
    border:1px solid var(--color-primary);
    border-radius: 50px;
}
.avis h2 {
    padding-left: 64px;
}
.avis_caption_name {
    color: var(--color-primary);
    font-weight: var(--font-medium);
    font-size: 1.125rem;
    padding-top: 13px;
}
.avis_caption_wrapper {
    display: flex;
}
.avis_caption_wrapper:before {
    content: url("/design/img/icon-quote.svg");
    display: inline-flex;
    margin-right: 20px;
}


/******	  PARTENAIRES	 ******/
.partenaires_wrapper {
    padding: 0 30px 130px;
}
.partenaires_content {
    max-width: var(--section-max);
    margin: var(--center);
}
.partenaires_h2 {
    text-align: center;
    font-size: 1.125rem;
}
#partenaires-slider .splide__slide img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}


/******	  ACTUALITES	 ******/
.actus_home_wrapper {
    background-color: var(--color-text);
    padding: var(--padding);
}
.actus_home_content {
    max-width: var(--section-max);
    margin: var(--center);
}
.actus_home_content h2 {
    color: var(--color-secondary);
}
.actus_list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    column-gap: 15px;
    align-items: flex-start;
    position: relative;
    margin: 40px 0 100px
}
.actus_list:before {
    content: "";
    width: 1.3px;
    height: 100%;
    position: absolute;
    left: -30px;
    background-color: var(--color-white);
}
.actus_home_wrapper .une_actu a {
    color: var(--color-white);
}
.une_actu:hover .une_actu__img {
    transform: scale(1.02);
}
.une_actu__date {
    opacity: 0.27;
    font-size: 0.813rem;
    font-weight: var(--font-medium);
}
.une_actu_resume {
    padding: 20px 0 40px;
    max-width: 90%;
    font-size: 1rem;
    font-weight: var(--body-font);
}
.actus_home_content .btn_cta_wrapper {
    margin-left: auto;
}
.une_actu__img {
    height: 300px !important;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease-in-out;
}
.actus_home_wrapper .btn_cta_general {
    color: var(--color-secondary);
}
.actus_home_wrapper .btn_cta_wrapper:before,
.actus_home_wrapper .btn_cta_wrapper:after,
.actus_home_wrapper .btn_cta_general:before,
.actus_home_wrapper .btn_cta_general:after {
    border: 1px solid var(--color-secondary);
}


    /******	  BANDEAU CONTACT	 ******/
.contact_home_wrapper {
    padding: var(--padding);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.contact_home_overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(13, 13, 13, 0.11);*/
    z-index: 1;
}
.contact_home_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    z-index: 2;
    position: relative;
}
.contact_home_content h2 {
    grid-column: 1;
    padding-bottom: 20px;
    color: var(--color-primary);
}
.contact_txt {
    grid-column: 1;
}
.contact_assurances {
    grid-column: 1;
    padding: 70px 0 80px;
}
.contact_une_assurance {
    font-weight: var(--font-regular);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    line-height: 1.2;
}
.contact_une_assurance:last-of-type {
    padding-bottom: 0;
}
.contact_une_assurance:before {
    content: url("/design/img/icon-check.svg");
    margin-right: 17px;
}
.contact_home_content .btn_cta_wrapper {
    grid-column: 1;
}
.contact_home_content .btn_cta_general {
    color: var(--color-primary);
}
.contact_home_content .btn_cta_wrapper:before,
.contact_home_content .btn_cta_wrapper:after,
.contact_home_content  .btn_cta_general:before,
.contact_home_content  .btn_cta_general:after {
    border: 1px solid var(--color-primary);
}




/*********************************
             FOOTER
*********************************/

/******	  PARTIE SUPERIEURE	 ******/
.footer_top_wrapper {
    padding: 65px 30px;
}
.footer_top_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
footer a {
    color: var(--color-text);
}
footer a:hover {
    color: var(--color-secondary);
}
footer ul {
    margin: 0;
}
footer li {
    display: flex;
    align-items: center;
}
footer .toggleTitre {
    color: var(--color-primary);
    font-weight: var(--font-medium);
}
footer .toggleTitre {
    pointer-events: none;
}
footer .toggleTexte {
    margin-top: 13px;
}
.footer_toggle_picto {
    margin-right: 5px;
}
.footer_rs .toggleTexte {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    align-items: center;
}
.footer_right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 50%;
    width: 100%;
    column-gap: 50px;
}
.footer_logo {
    max-width: 25%;
}


/******	  PARTIE INFERIEURE	 ******/
.footer_bottom_wrapper {
    background-color: var(--color-primary);
    padding: 15px 30px;
}
.footer_bottom_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    max-width: var(--section-max);
    margin: var(--center);
}
.footer_bottom {
    color: var(--color-white);
    font-size: 0.813rem;
}
.footer_bottom a {
    color: var(--color-white);
}
.footer_bottom a:hover {
    color: var(--color-secondary);
}


/*********************************
		    ACTUALITES
*********************************/
.hero_title {
    position: relative;
    color: var(--color-white);
    font-size:4.063rem /* 65px */;
    margin:auto;
    font-weight: var(--font-medium);
    line-height: 1.1;
}
.actus_wrapper {
    padding: var(--padding);
}
.actus_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 50px;
    align-items: flex-start;
    margin: var(--center);
    max-width: var(--section-max);
}
.une_actu_wrapper a {
    display: block;
}
.une_actu_img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.actus_wrapper .une_actu__date,
.archivesActus_wrapper .une_actu__date{
    color: var(--color-primary);
    opacity: 0.7;
}
.actus_wrapper .une_actu_resume,
.archivesActus_wrapper .une_actu_resume {
    color: var(--color-text);
}
.uneActu_content h1 {
    font-size: 1.875rem /* 30px */;
    color: var(--color-primary);
    padding: 0 0 50px;
    margin: 0;
    font-weight: var(--font-medium);
    line-height: 1.2;
}


/*********************************
		   UNE ACTUALITE
*********************************/
.uneActu_wrapper {
    padding: 130px 30px;
}
.uneActu {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    column-gap: 100px;
    align-items: center;
}
.uneActu_img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.uneActu_wrapper .btn_cta_wrapper {
    margin: 80px auto 0;
    grid-column: 1/3;
}

/****** ARCHIVES ******/
.archivesActus_wrapper {
    padding: 0 30px 130px;
}
.archivesActus_content {
    margin: var(--center);
    max-width: var(--section-max);
    display: flex;
    align-items: center;
    flex-direction: column;
}
.archivesActus_title {
    font-size: 1.875rem /* 30px */;
    color: var(--color-primary);
    font-weight: var(--font-medium);
    line-height: 1.2;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}
#archives_slider {
    margin: 50px 0 0;
    width: 100%;
}


/*********************************
		    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;
}


/*********************************
		     SLIDER
*********************************/
.splide__track {
    height: 100%;
}
.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.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;
}


/*********************************
		 PAGES DYNAMIQUES
*********************************/

/******	  HERO	 ******/
.slider_top_wrapper {
    max-height: 550px;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    position: relative;
}
.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: var(--color-text);
    opacity: 0.25;
    width: 100%;
    height: 100%;
}
.slider_top_content {
    padding: 0 30px 80px;
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    color: var(--color-white);
}
.slider_top_titles_wrapper {
    max-width: var(--section-max);
    margin: 0 auto;
}



/******	  PARAGRAPHES	 ******/
.page_dynamique_content {
    display: block;
    margin: var(--center);
    padding: 0;
    width: auto;
    position: relative;
    box-sizing: border-box;
}

/******	  PARAGRAPHES	 ******/
.wrapper-textChamp {
    padding: 130px 30px 0;
    display: flex;
    flex-direction: column;
}
.text_champ ul,
.text_champ ul li {
    font-size: var(--normal-font-size);
    position:relative;
    padding-left:20px;
    list-style-type:initial;
}
.text_champ a:hover {
    text-decoration: underline;
}
.text_champ p strong,
.text_champ p strong a {
    font-weight: var(--font-medium);
}
.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 {
    max-width: var(--section-max);
    margin: var(--center);
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
}
.toggleWrapper .toggleTitre {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 15px 30px;
    font-weight: var(--font-medium);
    font-size: 1.125rem;
    color: var(--color-white);
    background-color: var(--color-primary);
    line-height: 1;
    border-radius: var(--border-radius);
}
.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/arrow-down-white.svg");
    display: flex;
    align-items: center;
}
.toggleWrapper .toggleTitre.active:after {
    transform: rotate(180deg);
}
.toggleWrapper .toggleTexte {
    padding: 30px;
    background-color: var(--color-white);
}
.toggleWrapper .toggleTexte .text_champ {
    padding: 0;
}

/*	  TEXTE SIMPLE	*/
.text_simple {
    max-width: var(--section-max);
    width: 100%;
    margin: var(--center);
    padding: 0 0 130px;
}

/*	  TEXTE + IMAGES	*/
.text_img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--section-max);
    padding: 0 0 130px;
    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: 45%;
}
.text_champ figure a {
    display: block;
}
.text_champ figure img {
    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-bottom: 140px;
}
#carousel-slider {
    max-width: var(--section-max) !important;
    margin: var(--center) !important;
    padding: 0;
}
.wrapper__carousel_pageDyn {
    margin-bottom: 100px;
}
.carousel_slide img {
    height: 500px;
    border-radius: var(--border-radius);
}
#carousel-slider .splide__arrow--next {
    right: -3rem;
}
#carousel-slider .splide__arrow--prev {
    left: -3rem;
}


/*********************************
		     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-primary);
    font-family: var(--body-font);
    font-weight: var(--font-medium);
    margin: 0 0 10px 0;
    display: block;
    opacity: 1;
    -webkit-transition: .333s ease top, .333s ease opacity;
    transition: .333s ease top, .333s ease opacity;
}
.form-control {
    display: block;
    width: 100%;
    padding: 20px 12px 20px 0;
    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;
    color: var(--color-text);
}
.texte_ok_contact{
    background-color: var(--color-primary);
    font-family: var(--body-font);
    color: var(--color-white);
    padding: 20px;
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: var(--font-regular);
    margin-top: 50px;
    border-radius: var(--border-radius);
}

/* BTNS FORMULAIRE */
.wrapper-btnForm {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.wrapper-btnForm .btn_cta_general {
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.125rem;
}


/******	  COORDONNEES	******/
.map {
    height: 400px;
    width: 100%;
    margin-bottom: 30px;
}
.map iframe{
    width:100%;
    height: 100%;
    border-radius: var(--border-radius);
}
.titleContact {
    font-size: 1.125rem;
    font-weight: var(--font-medium);
    color: var(--color-primary);
}
.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 {
    margin-top: 50px;
}


/*********************************
		 MENTIONS LEGALES
*********************************/
.mentions_wrapper {
    max-width: var(--section-max);
    margin: var(--center);
    padding: var(--padding);
}


/*********************************
		 PLAN DU SITE
*********************************/
.plan_site_wrapper {
    max-width: var(--section-max);
    margin: var(--center);
    padding: var(--padding);
}
.plan_titre {
    font-size: 1.25rem;
    font-weight: var(--font-medium);
    color: var(--color-primary);
    padding-top: 40px;
    padding-bottom: 5px;
}
.plan_titre:first-of-type {
    padding-top: 0;
}
.plan_site_content a {
    color: var(--color-text);
}
.plan_site_content a:hover {
    color: var(--color-primary);
}