:root {
    --contour: 30px;

    --ltspace: 30px;
    --mdspace: 100px;
    --bigspace: 125px;

    --sm-side: 2.5vw;
    --md-side: 5vw;
    --bg-side: 10vw;

    --noir: #1D1B25;
    --griscasaq: #7F7D88;
    --rouge: #FF0026;
    --Blanc: #ffffff;

}


::selection {
    background-color: var(--rouge);
    color: var(--Blanc);
}

/* Firefox */
::-moz-selection {
    background-color: var(--rouge);
    color: var(--Blanc);
}

/* width */
::-webkit-scrollbar {
    width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--Blanc);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--noir);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--noir);
    width: 2px;
}

body {
    background: var(--Blanc);
}

#container {
    background: var(--Blanc);
}

* {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
}


/* Footer */



/* Crayon */

#wpadminbar {
    display: none;
}

.header-edit-link {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100005;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: #333;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.header-edit-link > a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-edit-link .dashicons {
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
}

.header-edit-link:hover {
    background-color: #000;
}


/****
GENERAL
 */

html.lenis, html.lenis body {
    height: auto;
}

html {
    overflow-x: hidden !important;
    margin: 0 !important;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    padding: 0 var(--contour) var(--contour) var(--contour);
}

h1, .h1 {
    font-size: 82px;
    font-weight: 400;
    line-height: 112%;
    letter-spacing: -1.64px;
    color: var(--rouge);
}

h2, .h2 {
    font-size: 62px;
    font-weight: 400;
    line-height: 116%;
    letter-spacing: -1.24px;
    color: var(--rouge);
    margin: 0 0 50px 0;

}

.lt-h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 122%; /* 51.24px */
    letter-spacing: -0.84px;
    color: var(--rouge);
    margin: 0 0 30px 0;
}

h3, .h3 {
    font-size: 26px;
    font-weight: 400;
    line-height: 120%;
    margin: 0 0 15px 0;
    color: var(--noir);
}

.gradient-title {
    background: linear-gradient(185deg, #DB5495 36.43%, #7680D7 84.41%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(10px);
    transition:
            opacity .8s ease,
            filter .8s ease,
            transform .8s cubic-bezier(.22, 1, .36, 1);
}
.gradient-title.is-visible {
    filter: blur(0);
}

/*.gradient-title {*/
/*    background: linear-gradient(*/
/*            185deg,*/
/*            var(--griscasaq) 0%,*/
/*            var(--griscasaq) 50%,*/
/*            #DB5495 50%,*/
/*            #7680D7 100%*/
/*    );*/
/*    !*background-size: 220% 130%;*!*/
/*    background-position: 100% 50%;*/
/*    background-size: 355% 252%;*/

/*    background-clip: text;*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*    transition: background-position 2s cubic-bezier(.22, 1, .36, 1);*/
/*}*/

/*.gradient-title.is-visible {*/
/*    background-position: 0% 50%;*/

/*}*/


.btn_base {
    background: var(--rouge);
    display: flex;
    color: white;
    padding: 7px 20px;
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    align-items: center;
    cursor: pointer;

    text-transform: uppercase;

    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1),
    box-shadow .35s ease;
}
.btn_base::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--noir);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
    z-index: -1;
}

.btn_base:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(255, 0, 38, .18);
}

.btn_base:hover::before {
    transform: scaleY(1);
}


a,
.p,
p,
.txt li {
    font-size: 18px;
    font-weight: 400;
    line-height: normal;

    color: var(--griscasaq);

}
.txt li{
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}
.txt li::before{
    content: "";
    width: 7px;
    height: 7px;
    background: var(--noir);
    position: absolute;
    top: 9px;
    left: 0;
}
.lt-p {
    font-size: 16px;
    font-weight: 400;
    color: var(--griscasaq);
}

.big-p *,
.big-p {
    font-size: 22px;
    font-weight: 400;
    color: var(--noir);
    line-height: normal;
}

#container {
    margin-top: 100px;
}

p {
    margin: 0 0 20px 0;
}

p:last-child {
    margin-bottom: 0;
}

.pd-base {
    padding-left: var(--md-side);
    padding-right: var(--md-side);
}

.link-follow {
    color: var(--rouge);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: var(--ltspace);
    position: relative;
    display: flex;
    padding-right: 17px;
    width: fit-content;
    transition: color .3s ease;
}

.link-follow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 7px;
    width: 7px;
    height: 7px;
    border: solid var(--rouge);
    border-width: 0 0 2px 2px;
    transform: translate(50%, -5px) rotate(-135deg);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.link-follow::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: calc(100% - 0px);
    height: 1px;
    background: var(--rouge);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
.link-follow:hover::before {
    transform: scaleX(1);
}

.link-follow:hover::after {
    transform: translate(85%, -5px) rotate(-135deg);
}
.scroll-down::after{
    display: none;
}
.scroll-down svg{
    position: absolute;
    top: 5px;
    right: 0px;
    width: 12px;
    height: 12px;
}
.red {
    color: var(--rouge);
}

.noir,
.noir * {
    color: var(--noir) !important;
}

/*.txt a {*/
/*    color: var(--griscasaq);*/
/*    text-decoration-line: underline;*/
/*    text-decoration-style: dotted;*/
/*    text-decoration-skip-ink: auto;*/
/*    text-decoration-thickness: auto;*/
/*    text-underline-offset: auto;*/
/*    text-underline-position: from-font;*/
/*}*/
.txt a {
    color: var(--griscasaq) !important;
    text-decoration: none;
    position: relative;
    transition: color .35s ease;


}

.txt a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    border-bottom: 2px dotted var(--griscasaq);
    clip-path: inset(0 0 0 0);

    transition: clip-path .4s cubic-bezier(.22, 1, .36, 1);
}

.txt a:hover {
    color: var(--rouge) !important;
}

.txt a:hover::after {
    border-bottom: 2px dotted var(--griscasaq);
    clip-path: inset(0 100% 0 0);

}
/*****
MENU
 */
#header {
    display: grid;
    grid-template-columns: 160px 1fr;
    grid-gap: 50px;
    align-items: center;
    padding: 30px calc(var(--md-side) + var(--contour));
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
}

.menu-toggle {
    display: none;
}

#logo-container img {
    width: 100%;
    transition: 0.4s ease-in-out all;
}
#logo-container img:hover{
    opacity: 0.6;
}

.menu {
    display: flex;
    margin-left: auto;
    width: fit-content;
}

/*.menu a {*/
/*    margin-right: 30px;*/
/*    color: var(--noir);*/
/*    transition: 0.4s ease-in-out all;*/
/*    padding-bottom: 5px;*/
/*}*/

/*.menu a:hover {*/
/*    opacity: 0.6;*/
/*}*/

/*.single-fonctionnalites #menu-item-34 > a,*/
/*#menu .menu > .current_page_item > a {*/
/*    color: var(--rouge);*/
/*    border-bottom: 1px dashed var(--rouge);*/
/*}*/

.menu a {
    margin-right: 30px;
    color: var(--noir);
    transition: color .35s ease;
    padding-bottom: 5px;
    position: relative;
}


.menu a:hover {
    color: var(--rouge);
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 2px dotted var(--rouge);
    clip-path: inset(0 100% 0 0);
    transition: clip-path .35s cubic-bezier(.22, 1, .36, 1);
}

.menu a:hover::after {
    clip-path: inset(0 0 0 0);
}

.single-blog #menu-item-29 > a::after,
.single-fonctionnalites #menu-item-34 > a::after,
#menu .menu > .current_page_item > a::after {
    clip-path: inset(0 0 0 0);
}
.single-blog #menu-item-29 > a,
.single-fonctionnalites #menu-item-34 > a,
#menu .menu > .current_page_item > a {
    color: var(--rouge);
    border-bottom: 0;
}



/*****

First page
 */

.hero__container {
    background: linear-gradient(180deg, #FFF 0%, #ECEDFC 50%, #FBDBEB 100%);
    /*padding: var(--mdspace) var(--md-side) var(--ltspace) var(--md-side);*/
    padding: 50px var(--md-side) var(--ltspace) var(--md-side);
    position: relative;
    height: calc(100vh - 130px);

}

.home-tools__video,
.home-suisse__image img,
.hero__image img {
    width: 100%;
}


.hero__content {
    position: relative;
    z-index: 6;
}

.hero__image {
    position: absolute;
    /*box-shadow: 0 0 92.857px 0 rgba(86, 44, 44, 0.20);*/
    filter: drop-shadow(0 0 92.857px rgba(86, 44, 44, 0.20));

    right: var(--md-side);
    bottom: -120px;
    width: 40vw;
    z-index: 5;
    line-height: 0;
}

.hero__intro {
    max-width: 400px;
}

.svg-round {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
}


.home-tools {
    margin-top: 200px;
}

.home-tools h2 {
    max-width: 900px;
}

.home-tools__grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    grid-gap: 80px;
}

/*.home-tools__item {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    transition: 0.5s ease-in-out all;*/
/*    padding: 8px var(--ltspace);*/
/*    background: white;*/
/*}*/

/*.home-tools__item.is-active {*/
/*    background: linear-gradient(90deg, #EAE8F2 0%, rgba(234, 232, 245, 0.00) 100%);*/

/*    padding: var(--ltspace);*/
/*}*/

.home-tools__item h3 {
    margin-bottom: 7px;
}

.home-tools__number {
    width: 40px;
    display: block;
}
.home-tools__number,
.home-tools__item-title{
    opacity: 0.5;
    transition: 0.3s ease-in-out all;
}
.home-tools__item.is-active .home-tools__number,
.home-tools__item.is-active .home-tools__item-title{
    opacity: 1;
}

.home-tools__item-content {
    width: calc(100% - 40px);
}




.home-tools__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.home-tools__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #EAE8F2 0%, rgba(234, 232, 245, 0) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
    z-index: 0;
}

.home-tools__item > * {
    position: relative;
    z-index: 1;
}

.home-tools__item.is-active {
    background: transparent;
}

.home-tools__item.is-active::before {
    transform: scaleX(1);
}

.home-tools__media {
    overflow: hidden;
}

.home-tools__media img,
.home-tools__media video {
    display: block;
    transform: scale(1.02);
    opacity: 1;
    transition: opacity .35s ease, transform .6s cubic-bezier(.22, 1, .36, 1);
}

.home-tools__media.is-changing img,
.home-tools__media.is-changing video {
    opacity: 0;
    transform: scale(1.06);
}


.home-tools__list {
    display: flex;
    flex-direction: column;
}

.home-tools__item {
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    cursor: pointer;

    /*
     * Le padding reste identique dans les deux états.
     * C'est ce qui évite le gros saut.
     */
    padding: 18px 30px;

    background: transparent;

    transition:
            transform .55s cubic-bezier(.22, 1, .36, 1);
}

.home-tools__item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
            linear-gradient(
                    90deg,
                    #EAE8F2 0%,
                    rgba(234, 232, 245, 0) 100%
            );

    opacity: 0;
    transform: scaleX(.96);
    transform-origin: left center;

    transition:
            opacity .5s ease,
            transform .65s cubic-bezier(.22, 1, .36, 1);
}

.home-tools__item.is-active::before {
    opacity: 1;
    transform: scaleX(1);
}

.home-tools__item > * {
    position: relative;
    z-index: 1;
}

.home-tools__number {
    display: block;
    flex: 0 0 40px;
    width: 40px;

    opacity: .45;

    transition:
            opacity .45s ease,
            transform .55s cubic-bezier(.22, 1, .36, 1);
}

.home-tools__item-content {
    flex: 1;
    min-width: 0;
}

.home-tools__item-title {
    margin: 0;

    opacity: .45;
    transform: translateX(0);

    transition:
            opacity .45s ease,
            transform .55s cubic-bezier(.22, 1, .36, 1),
            color .45s ease;
}

.home-tools__item.is-active .home-tools__number,
.home-tools__item.is-active .home-tools__item-title {
    opacity: 1;
}


.home-tools__item-text {
    display: grid;
    grid-template-rows: 0fr;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    /*
     * La marge reste animable sans provoquer un gros saut.
     */
    margin-top: 0;

    transition:
            grid-template-rows .65s cubic-bezier(.22, 1, .36, 1),
            opacity .4s ease,
            transform .65s cubic-bezier(.22, 1, .36, 1),
            margin-top .65s cubic-bezier(.22, 1, .36, 1),
            visibility 0s linear .65s;
}

.home-tools__item-text-inner {
    min-height: 0;
    overflow: hidden;
}

.home-tools__item-text p {
    margin: 0;
    padding-bottom: 4px;
}

.home-tools__item.is-active .home-tools__item-text {
    grid-template-rows: 1fr;

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
    margin-top: 10px;

    transition:
            grid-template-rows .65s cubic-bezier(.22, 1, .36, 1),
            opacity .45s ease .08s,
            transform .65s cubic-bezier(.22, 1, .36, 1),
            margin-top .65s cubic-bezier(.22, 1, .36, 1),
            visibility 0s linear 0s;
}

.home-tools__media > img,
.home-tools__media > video,
.home-tools__media > .home-tools__desktop-video-wrap {
    width: 100%;
}
.home-tools__desktop-video-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.home-tools__desktop-video-wrap .home-tools__video {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}




.home-tools__desktop-play {
    position: absolute;
    inset: 0;
    z-index: 4;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: 0;

    background: transparent;
    color: #fff;
    cursor: pointer;
}

.home-tools__desktop-play-icon {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;
    flex: 0 0 62px;

    border-radius: 50%;
    background: rgba(0, 0, 0, .55);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
            transform .3s cubic-bezier(.22, 1, .36, 1),
            background-color .3s ease;
}

.home-tools__desktop-play:hover
.home-tools__desktop-play-icon {
    background: rgba(0, 0, 0, .72);
    transform: scale(1.06);
}

.home-tools__desktop-play:active
.home-tools__desktop-play-icon {
    transform: scale(.92);
}

.home-tools__icon {
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;
    width: 24px;
    height: 24px;

    transform: translate(-50%, -50%) scale(1);

    transition:
            opacity .25s ease,
            transform .3s cubic-bezier(.22, 1, .36, 1);
}

/* Vidéo arrêtée : triangle visible */
.home-tools__icon--play {
    opacity: 1;
}

.home-tools__icon--pause {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.7);
}

/* Vidéo en lecture : triangle masqué */
.home-tools__desktop-video-wrap.is-playing
.home-tools__icon--play {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.7);
}

/* Vidéo en lecture : les deux traits apparaissent */
.home-tools__desktop-video-wrap.is-playing
.home-tools__icon--pause {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


.home-tools__desktop-play {
    opacity: 1;
    visibility: visible;

    transition:
            opacity .35s ease,
            visibility 0s linear 0s;
}

/* Après un petit délai, le bouton disparaît */
.home-tools__desktop-video-wrap.is-playing.is-controls-hidden
.home-tools__desktop-play {
    opacity: 0;
    visibility: hidden;

    transition:
            opacity .35s ease,
            visibility 0s linear .35s;
}

/* Il réapparaît quand on survole la vidéo */
.home-tools__desktop-video-wrap.is-playing:hover
.home-tools__desktop-play {
    opacity: 1;
    visibility: visible;

    transition-delay: 0s;
}

.home-suisse .home-suisse__title{
    font-size: 6.51vw;

}
.home-suisse {
    margin-top: var(--mdspace);
}

.home-suisse__grid {
    position: relative;
}

.home-suisse__text {
    position: absolute;
    right: var(--md-side);
    top: 0;
    width: 100%;
    max-width: 650px;
    z-index: 6;
}

.home-suisse__image {
    position: relative;

}

.home-suisse__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    z-index: 5;
    background: linear-gradient(215deg, rgba(255, 255, 255, 0.40) 33.39%, rgba(255, 255, 255, 0.00) 43.2%), linear-gradient(180deg, #FFF 1.46%, rgba(255, 255, 255, 0.70) 17.38%, rgba(255, 255, 255, 0.00) 30.53%);
}


.home-formules {
    margin-top: var(--mdspace);
}

.grid-formules {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    grid-gap: 80px;
}

.home-formules__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.home-formules__card {
    background: linear-gradient(180deg, #FFF 0%, #ECEDFC 51.92%, #FBDBEB 100%);
    padding: var(--ltspace);
}
.home-formules__price span{
    display: block;
    margin-bottom: 5px;
}
.home-formules__price strong{
    font-size: 18px;
}
.home-formules__card-text{
    margin-top: 20px;
}
.home-formules__card-intro{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--noir);
}
.home-formules__card-link{
    font-size: 14px;
}
.home-quick-links__item{
    background: white;
    display: flex;
    position: absolute;
    padding: 10px;
    z-index: 15;
    font-size: 14px;
    font-style: normal;
    line-height: 17px; /* 121.429% */
    text-transform: uppercase;
    color: var(--noir);
    /*transition: 0.3s ease-in-out all;*/

    isolation: isolate;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1),
    box-shadow .35s ease;
}
.home-quick-links__item *{
    font-weight: 500;
    transition: 0.3s ease-in-out all;
}
.home-quick-links__icon{
    line-height: 0;
}
.home-quick-links__item img{
    margin-right: 10px;
}

.home-quick-links__item:nth-child(1) {
    right: 48vw;
    bottom: 20vw;
}
.home-quick-links__item:nth-child(2) {
    right: 37vw;
    bottom: 24vw;
}
.home-quick-links__item:nth-child(3) {
    right: 24vw;
    bottom: 27vw;
}

.home-quick-links__item:nth-child(4) {
    right: 24vw;
    bottom: 21vw;
}
.home-quick-links__item:nth-child(5) {
    right: 10vw;
    bottom: 25vw;
}
.home-quick-links__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--rouge);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
    z-index: -1;
}

a.home-quick-links__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(255, 0, 38, .14);
}

a.home-quick-links__item:hover::before {
    transform: scaleY(1);
}

a.home-quick-links__item:hover * {
    color: white;
    filter: brightness(0) invert(1);
}

/*a.home-quick-links__item:hover{*/
/*    background: var(--rouge);*/
/*}*/

/*a.home-quick-links__item:hover *{*/
/*    filter: brightness(0) invert(1);*/
/*}*/



/***
fonction
 */
.home-features {
    margin-top: var(--mdspace);
}

.home-features__heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    align-items: center;
}

.home-features__heading .link-follow {
    margin-left: auto;
    margin-top: 0;
}

.home-features__title {
    margin-bottom: 0;
}

.home-features__swiper-wrapper {
    margin-top: 50px;
    position: relative;
    width: calc(100% + var(--md-side));
}

.home-features__swiper-wrapper::after {
    content: "";
    position: absolute;
    right: -30px;
    width: 10vw;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    z-index: 10;
    top: 0;
    height: 100%;
    pointer-events: none;
}
a.home-features__item{
    transition: 0.5s ease-in-out all;
}
a.home-features__item:hover{
    opacity: 0.6;
}

.home-features__swiper-wrapper .home-features__slider {
    padding-right: var(--md-side);
}

.home-features__media {
    box-shadow: 0 4px 50px 0 rgba(109, 0, 54, 0.10) inset;
    background: linear-gradient(180deg, #FFF 0%, #ECEDFC 38.46%, #FBDBEB 100%);
    line-height: 0;
}

.home-features__media * {
    width: 100%;
    height: 30vw;
    object-fit: cover;
}

body .swiper-button-prev.swiper-button-disabled,
body .swiper-button-next.swiper-button-disabled {
    display: none;
}

.home-features__nav-button {
    background: transparent;
    padding: 0;
    border: 0;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: -60px;
    z-index: 12;
}

.home-features__container .home-features__nav-button svg{
    opacity: 0;
    transition: 0.5s ease-in-out all;
}
.home-features__container:hover .home-features__nav-button svg{
    opacity: 1;
}
.home-features__nav-button--next {
    right: 5px;
    left: unset;
}

.swiper-button-disabled {
    opacity: 0;
}

.home-features__item-title {
    margin-bottom: 0;
    margin-top: 10px;
}

.home-faq {
    margin-top: var(--mdspace);
}

.home-faq__container {
    min-height: 650px;

}

.home-faq__left {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.home-faq__left > svg {
    position: absolute;
    top: 100px;
    right: 0;
    width: 100%;
    max-width: 400px;
}

.home-faq__container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 80px;
}

.home-faq__question {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 20px 40px 20px 0;
    text-align: left;
    cursor: pointer;
    position: relative;
}
.home-faq__question-text{
    transition: 0.3s ease-in-out all;
    display: block;
    margin-bottom: 0;
}
.home-faq__question:hover .home-faq__question-text{
    transform: translate(15px,0);
    color: var(--griscasaq);
}
.home-faq__question::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 7px;
    width: 9px;
    height: 9px;
    border: solid var(--rouge);
    border-width: 0 0 1px 1px;
    transform: translate(50%, -10px) rotate(-45deg);
    transition: 0.5s ease-in-out all;
}

.home-faq__item.is-active .home-faq__question::after {
    transform: translate(50%, -5px) rotate(-225deg);
}

.home-faq__item:first-of-type {
    border-top: 1px solid #CAC7DB;

}

.home-faq__item {
    border-bottom: 1px solid #CAC7DB;
}

.home-faq__answer {
    padding-bottom: 20px;
}

.home-faq__answer-inner {
    max-width: 750px;
}

/****
FOOTER
 */
footer {
    padding: var(--md-side) var(--md-side) 60px var(--md-side);
    background: var(--noir);
    margin-top: var(--mdspace);
    position: relative;
    z-index: 10;
}

.haut_footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    grid-gap: 40px;
}

.haut_footer .btn_base {
    margin-left: auto;
}

footer .menu {
    flex-direction: column;
    margin-left: 0;
}

footer .menu a {
    color: white;
    margin-bottom: 10px;
    font-size: 18px;
    display: flex;
    width: fit-content;
}

.adresse * {
    color: white;
    font-size: 18px;
}

.sur-titre {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.60);
    margin-bottom: 20px;
}

.bas_footer {
    margin-top: 60px;
}

#copyright {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

#copyright span,
#copyright span * {
    font-size: 14px;
    color: white;
    line-height: 1;
}

.partner {
    display: flex;
    align-items: center;

    justify-content: flex-end;
}

.partner a {
    margin-left: 20px;
}
.partner>svg:first-child{
    width: 95px;
    height: auto;
}
.tipiq-logo svg{
    width: 70px;
    opacity: 0.6;
    height: auto;
}


/*****
template fonctionnalité
 */
.fonction__intro {
    max-width: 600px;
}


/*****
template fonctionnalité - tableau accordéon
 */

.fonctions {
    margin-top: 200px;
}

.page-template-template-fonction .hero__image {
    box-shadow: 0 0 black;
    right: calc(-1 * var(--contour) - 5px);
    bottom: -150px;
}

.page-template-template-fonction .hero__image img {
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}
.fonction-banner__container{
    margin-bottom: calc(-1 * var(--mdspace));
}
.fonctions__container {
    width: 100%;
}

.fonctions__title {
    max-width: 900px;
}

.fonctions__table {
    width: 100%;
    border-top: 1px solid var(--noir);
}

.fonctions__header {
    display: grid;
    grid-template-columns: 1.4fr 1.6fr;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid var(--noir);
    color: var(--noir);
}

.fonctions__header-formules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*gap: 20px;*/
    gap: 5px;
}


.fonctions__formule-head .h3 {
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.fonctions__formule-head *:not(.h3) strong{
    font-size: 18px;
}
.fonctions__formule-head span {
    display: block;
}

.fonctions__formule-head p {
    margin-top: 20px;
}

.fonctions__formule-head *:not(.h3) {
    font-size: 16px;
    color: var(--noir);
}

.fonctions__row {
    border-bottom: 1px solid var(--griscasaq);
    /*background: white;*/
    transition: 0.3s ease-in-out all;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;

}


.fonctions__row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(244, 243, 252, 0.97) 0%, rgba(246, 235, 251, 0.97) 100%);

    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.fonctions__row.is-active::before {
    opacity: 1;
}

.fonctions__question,
.fonctions__answer {
    position: relative;
    z-index: 1;
}
.fonctions__question *{
    transition: 0.5s  ease-in-out all;
}
.fonctions__question:hover *{
    color: var(--griscasaq);
}
.fonctions__question:hover .fonctions__question-title{
    transform: translate(10px,0);
}

.fonctions__question {
    width: 100%;
    display: grid;
    grid-template-columns: 1.4fr 1.6fr;
    gap: 30px;
    align-items: center;
    padding: 20px 0;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.fonctions__question-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}


.fonctions__values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
}

.fonctions__value {
    display: flex;
    justify-content: center;
    min-height: 28px;
    flex-direction: column;
}

.fonctions__answer {
    display: none;
}

.fonctions__answer-inner {
    max-width: 760px;
    padding: 0 0 30px 0;
}


.fonctions__option-details {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(90deg, #EAE8F2 0%, rgba(234, 232, 245, 0.00) 100%);
}

.fonctions__option-details p,
.fonctions__option-details strong {
    font-size: 18px;
}

.fonctions__option-details strong {
    color: var(--noir);
}

.fonctions__question-title {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.fonctions__question-title {
    transition: 0.3s ease-in-out all;
}

.fonctions__row.is-active .fonctions__question-title {
    color: var(--rouge);
}

.fonctions__question-title svg {
    margin-right: 15px;
    transition: 0.3s ease-in-out all;
}

.fonctions__row.is-active .fonctions__question-title svg {
    transform: rotate(90deg);
}

.fonctions__answer-inner {
    padding-left: 25px;
}

.fonctions__options-title {
    margin-top: var(--ltspace);
    border-bottom: 1px solid var(--noir);
    padding-bottom: 20px;
    margin-bottom: 0;
}

.fonctions__value {
    font-size: 16px;
}

.fonctions__value span {
    display: block;
}

/*****
banniere
 */

.fonction-banner {
    margin-top: var(--mdspace);
}

.fonction-banner__container {
    background: linear-gradient(180deg, #FFF 0%, #ECEDFC 51.92%, #FBDBEB 100%);
    position: relative;
    padding-top: var(--ltspace);
    padding-bottom: var(--ltspace);
    min-height: 400px;
}

.fonction-banner__image {
    width: 50%;
    height: 130%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.fonction-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
}

.fonction-banner__content {
    max-width: 50%;
}

.fonction-banner__content h2 {
    margin-bottom: 20px;
}

.fonction-banner__content p {
    color: var(--noir);
}

.fonction-banner__links {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.fonction-banner__links .btn_base {
    margin-right: 10px;
}


/****
single fonctionnalite
 */
.single-fonction-hero__title {
    max-width: 850px;
}

.single-fonction-hero__breadcrumb {
    margin-bottom: 20px;
}

.single-fonction-hero__breadcrumb * {
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.12px;
    transition: 0.5s ease-in-out all;
    text-transform: uppercase;
}

.single-fonction-hero__breadcrumb *:not(:last-child) {
    padding-right: 10px;
    margin-right: 5px;
    position: relative;
}

.single-fonction-hero__breadcrumb *:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 6px;
    width: 6px;
    height: 6px;
    border: solid var(--griscasaq);
    border-width: 0 0 1px 1px;
    transform: translate(50%, -4px) rotate(-135deg);
}

.single-fonction-hero__breadcrumb a:hover {
    opacity: 0.6;
}

.single-fonction-hero__breadcrumb span {
    font-weight: 700;
}
.single-fonction-hero__image{
    height: 100%;
    object-fit: contain;
    object-position: right;
}
.single-fonction-hero__container {
    height: auto;
    padding-bottom: var(--mdspace);
}

.single-fonction-hero__media {
    filter: drop-shadow(0 0 92.857px rgba(86, 44, 44, 0.20));
    right: var(--md-side);
    bottom: -100px;
    max-width: calc(100% - 450px - var(--md-side) * 2);
    width: 50vw;
    line-height: 0;
    max-height: 75%;
    overflow: hidden;
    /*width: 100%;*/
    aspect-ratio: 16 / 9;
    z-index: 10;
}

.single-fonction-hero__media * {
    line-height: 0;

}

.single-fonction-hero__youtube {
    height: 100%;
    width: auto;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    /*display: flex;*/
    margin-left: auto;
}

.video-wrap {
    position: absolute;
    padding: 0;
    top: 0;
    height: 100%;
}

.single-avantages {
    margin-top: var(--mdspace);

}
.has-no-media.has-no-media{
    margin-top: var(--ltspace);
}

.single-avantages__big-title {
    background: linear-gradient(210deg, #FA9DCA 36.43%, #B9C0FF 84.41%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 13.7vw;
    text-align: left;
    margin-left: -20px;
}

.single-avantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 50px;
}

.single-avantages__grid h3 {
    margin-bottom: 5px;
    margin-top: 10px;
}

.single-avantages__grid p {
    color: var(--noir);
}

.single-avantages__icon img {
    height: 28px;
    width: auto;
}

.single-fonction-content {
    margin-top: var(--mdspace);
    position: relative;
    z-index: 5;
    padding: var(--mdspace) var(--bg-side);
}

.single-fonction-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 80%;
    width: 100%;
    background: linear-gradient(180deg, #FBDBEB 0%, #ECEDFC 48.08%, #FFF 100%);
    z-index: -1;
}

.single-fonction-content__row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 80px;
}

.single-fonction-content__title {
    margin-bottom: 0;
}

.single-fonction-content__row:not(:last-child) {
    border-bottom: 1px solid #D7D6DB;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.single-fonction-content__text * {
    color: var(--noir);
}


.single-related {
    margin-top: var(--mdspace);
    margin-bottom: calc(-1 * var(--mdspace) + 30px);
}

.single-related__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

/*.single-related__card {*/
/*    position: relative;*/
/*    background: #DAD6ED;*/
/*    padding: var(--ltspace);*/
/*    transition: 0.5s ease-in-out all;*/
/*}*/

/*.single-related__card > svg {*/
/*    position: absolute;*/
/*    right: var(--ltspace);*/
/*    top: var(--ltspace);*/
/*}*/


.single-related__card {
    position: relative;
    background: #DAD6ED;
    padding: var(--ltspace);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1),
    box-shadow .35s ease;
    overflow: hidden;
    isolation: isolate;
}

.single-related__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #ECEDFC 0%, #FBDBEB 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
    z-index: -1;
}

.single-related__card > svg {
    position: absolute;
    right: var(--ltspace);
    top: var(--ltspace);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.single-related__card path {
    transition: stroke .35s ease;
}

.single-related__label,
.single-related__title {
    position: relative;
    z-index: 1;
    transition: color .35s ease;
}

.single-related__card:hover {
    /*transform: translateY(-4px);*/
    /*box-shadow: 0 18px 45px rgba(109, 0, 54, .12);*/
}

.single-related__card:hover::before {
    transform: scaleY(1);
}

.single-related__card:hover > svg {
    transform: translate(5px, -5px);
}



.single-related__label {
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.12px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.single-related__card .h3 {
    max-width: 350px;
    display: block;
}

/*.single-related__card:hover {*/
/*    opacity: 0.6;*/
/*}*/

/***
PAGE A PROPOS
 */
.about-hero {
    position: relative;
    z-index: 11;
}

.about-hero__container {
    background: transparent;
    height: auto;
    padding-bottom: var(--mdspace);

}

.about-hero__media {
    aspect-ratio: 3/4;
    width: 33vw;
    top: 100px;
    bottom: unset;
    right: var(--bg-side);
}

.about-hero__youtube {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.video-wrap {
    position: absolute;
    padding: 0;
    top: 0;
    height: 100%;
}

.about-solution {
    position: relative;
    padding-top: 23vw;
    z-index: 10;
}
.about-solution__title.h1{
    font-size: 8.4vw;
}
.about-solution::after {
    content: "";
    position: absolute;
    top: 0;
    height: 30vw;
    background: linear-gradient(180deg, #FBDBEB 22.12%, #ECEDFC 65.38%, #FFF 100%);
    width: 100%;
    left: 0;
    z-index: -1;
}

.about-history__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 80px;
    align-items: center;
}

.about-history__item img {
    width: 100%;
    height: auto;
}

.about-history__nav {
    display: flex;
    width: calc(50% - 45px);
    margin-left: auto;
}

.about-history__nav-button {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.about-history__nav-button--next {
    margin-left: 20px;
}

.about-history__nav-button.swiper-button-disabled {
    opacity: 1;
}

.about-history__nav-button path {
    transition: 0.4s ease-in-out all;
}

.about-history__nav-button.swiper-button-disabled path {
    stroke: var(--griscasaq);
}

.about-partners__image {
    width: calc(100% + var(--contour) * 2);
    margin-left: calc(-1 * var(--contour));
    height: auto;
}

.about-partners__image img {
    width: 100%;
}

.about-partners {
    margin-top: var(--mdspace);
}

.about-partners__intro {
    display: grid;
    grid-template-columns: 1fr 700px;
    grid-gap: 80px;
}

.about-partners__text {
    padding-top: 80px;
}

.about-tool__container {
    padding-top: var(--mdspace);
    min-height: 700px;
    background: linear-gradient(0deg, #FFF 0%, #ECEDFC 51.92%, #FBDBEB 100%);
    margin-bottom: calc(-1 * var(--mdspace));
}

.about-tool__container h2 {
    margin-bottom: 50px;
}

.about-tool__image {
    /*bottom: unset;*/
    /*top: var(--ltspace);*/
    top: unset;
    bottom: 0;
    height: 100%;
}

.about-tool__image img {
    object-position: right bottom;
}


/*****
PAGE FAQ
 */
.faq-hero {
    background: linear-gradient(180deg, #FFF 10%, #ECEDFC 51.92%, #FBDBEB 100%);
    position: relative;
    padding-top: 20px;
    padding-bottom: var(--mdspace);
}

.faq-hero__shape {
    position: absolute;
    top: 0;

    right: calc(-1 * var(--contour));
}

.faq-filters,
.faq-filters__categories {
    display: flex;
}

.faq-filters__button {
    border: 0;
    height: 44px;
    cursor: pointer;
    background: rgba(29, 27, 37, 0.25);
}

.faq-filters__button.is-active {
    background: var(--rouge);
}

.faq-filters {
    margin-top: -44px;
    position: relative;
    z-index: 50;
    display: flex;
    width: fit-content;
}

.faq-filters__submit {
    background: rgba(29, 27, 37, 0.25);
    height: 44px;
    border: 0;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.faq-filters__search {
    display: flex;
    align-items: stretch;
}

.faq-filters__input {
    width: 0;
    min-width: 0;
    height: 44px;
    padding: 0;
    border: 0;
    opacity: 0;
    background: white;
    color: var(--noir);
    outline: none;
    transition: 0.3s ease-in-out all;
    position: absolute;
    right: 44px;
    top: 0;
    margin-top: 0;
}

.faq-filters__search.is-active .faq-filters__input {
    width: calc(100% - 44px);
    padding: 0 14px;
    opacity: 1;
}

.faq-filters__submit {
    background: rgba(29, 27, 37, 0.25);
    height: 44px;
    border: 0;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

.faq-filters__button {
    margin-right: 3px;
}

.faq-page-list__faq {
    max-width: 850px;
}

/*********
Page support
 */

.demande-form-section {
    background: linear-gradient(0deg, #FBDBEB 0%, #ECEDFC 84.5%, #FFF 98%);
    padding-top: 50px;
    padding-bottom: var(--mdspace);
}

.demande-form-section__container {
    display: grid;
    grid-template-columns: 400px 1fr;
    grid-gap: 80px;
}
.demande-form-section__address{
    margin-top: 60px;
}
.form-hp[aria-hidden="true"] {
    display: none;
}

.demande-form__field {
    display: block;
}

.demande-form__label,
.demande-form__field > label {
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--noir);
    display: block;
}

textarea,
input {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 34px 0 rgba(82, 82, 130, 0.06);
    width: 100%;
    height: 52px;
}

textarea {
    height: 200px;
    resize: none;
}

.demande-form__dropzone,
.demande-form__urgences,
input {
    margin-top: 9px;
}

.demande-form__field--full {
    width: 100%;
}

.demande-form {
    padding-top: 20px;
}

/* Urgences */
.demande-form__urgences {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.demande-form__urgence {
    position: relative;
    min-height: 102px;
    padding: 20px;
    cursor: pointer;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.8);

    transition: border-color .2s ease, background-color .2s ease;
}

.demande-form__urgence input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.demande-form__urgence span {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demande-form__urgence strong {
    font-size: 20px;
    color: var(--noir);

    font-weight: 400;
}

.demande-form__urgence small {
    font-size: 16px;
    color: var(--griscasaq);
    line-height: normal;
}

/* État sélectionné */
.demande-form__urgence.is-selected,
.demande-form__urgence:has(input:checked) {
    border-color: var(--rouge);
    background: linear-gradient(0deg, rgba(255, 0, 38, 0.10) 0%, rgba(255, 0, 38, 0.10) 100%), var(--Blanc, #FFF);
}

.demande-form__urgence.is-selected strong,
.demande-form__urgence:has(input:checked) strong {
    color: var(--rouge);

}

.demande-form__urgence.is-selected small,
.demande-form__urgence:has(input:checked) small {
    color: var(--noir);
}

/* Dropzone */
.demande-form__dropzone {
    position: relative;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 28px;
    cursor: pointer;


    border: 2px dashed rgba(127, 125, 136, 0.7);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 34px 0 rgba(82, 82, 130, 0.06);


    text-align: center;

    transition: 0.2s ease-in-out all;
    overflow: hidden;
}

.demande-form__file-input {
    position: absolute;
    inset: 0;
    z-index: 5;

    width: 100%;
    height: 100%;
    margin: 0;

    opacity: 0;
    cursor: pointer;

    background: transparent;
    box-shadow: none;
    border: 0;
    padding: 0;
}

.demande-form__dropzone svg {
    content: "";
    width: 22px;
    height: 22px;
    margin-bottom: 10px;
    /*opacity: .55;*/
    /*background-repeat: no-repeat;*/
    /*background-position: center;*/
    /*background-size: contain;*/
    /*background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16v14H4V5Z' stroke='%23705d70'/%3E%3Cpath d='m7 16 4-4 3 3 2-2 3 3' stroke='%23705d70'/%3E%3Ccircle cx='15.5' cy='8.5' r='1.5' fill='%23705d70'/%3E%3C/svg%3E");*/
}
.demande-form__dropzone *{
    text-transform: math-auto;
}
.demande-form__dropzone>span:last-child{
    color: var(--griscasaq);
    display: block;
    margin-top: 5px;
}
.under{
    text-decoration: underline;
}
.demande-form__files-list {
    margin-top: 20px;
}

.demande-form__dropzone:hover {
    border-color: var(--rouge);
    background: linear-gradient(0deg, rgba(255, 0, 38, 0.10) 0%, rgba(255, 0, 38, 0.10) 100%), var(--Blanc, #FFF);
}

.demande-form__file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.demande-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.demande-form__field {
    margin-bottom: 20px;
}

.demande-form__submit {
    display: flex;
    border: 0;
    align-items: center;
    width: fit-content;
}

.demande-form__submit svg {
    margin-left: 10px;
}


/*********
Page blog
 */
.blog-hero {
    padding-top: 50px;
    position: relative;
    z-index: 10;
}

.blog-hero::after {
    content: "";
    background: linear-gradient(180deg, #FFF 0%, #ECEDFC 51.92%, #FBDBEB 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: calc(100% - 100px);
    width: 100%;

}

.blog-hero__container {
    position: relative;
}

.blog-hero__title{
    margin-bottom: 60px;
}
.blog-featured {
    display: grid;
    grid-template-columns: 1fr 500px;
    text-decoration: none;
    grid-gap: 80px;
}


.blog-featured__image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    max-height: 600px;
}
.single-blog-hero__breadcrumb,
.blog-card__meta{
    display: flex;
    margin-bottom: 10px;
}
.single-blog-hero__breadcrumb *,
.blog-card__meta *{
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.blog-card__meta span:first-of-type::after{
    content: "";
    border-radius: 50px;
    height: 5px;
    width: 5px;
    display: flex;
    margin: 0 5px;
    background: var(--griscasaq);
}
.blog-list{
    margin-top: var(--mdspace);
}
.blog-list__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.blog-card__title{
    margin-bottom: 0;
}
/*.blog-card{*/
/*    padding-bottom: 40px;*/
/*    border-bottom: 1px solid var(--noir);*/
/*    transition: 0.5s ease-in-out all;*/
/*    display: block;*/
/*}*/
/*.blog-card:hover{*/
/*    !*opacity: 0.6;*!*/
/*}*/


.blog-card {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--noir);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
    display: block;
    position: relative;
}

.blog-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: var(--rouge);
    clip-path: inset(0 100% 0 0);
    transition: clip-path .45s cubic-bezier(.22, 1, .36, 1);
}

.blog-card__title {
    transition: color .35s ease,
    transform .35s cubic-bezier(.22, 1, .36, 1);
}

.blog-card__meta span {
    transition: color .35s ease;
}

.blog-card:hover {
    /*transform: translateY(-4px);*/
}

.blog-card:hover::after {
    clip-path: inset(0 0 0 0);
}

.blog-card:hover .blog-card__title {
    color: var(--rouge);
    /*transform: translateX(6px);*/
}

.blog-card:hover .blog-card__meta span {
    color: var(--rouge);
}


/****
PAge blog
 */
.single-blog-hero{
    padding-top: 50px;
}
.single-blog-hero h1{
    max-width: 950px;
}
.single-blog-hero__breadcrumb *:first-child::after{
    content: '';
    width: 5px;
    height: 5px;
    margin: 0 15px 0 5px;
    border: solid var(--griscasaq);
    border-width: 0 0 2px 2px;
    transform: translate(50%, 0px) rotate(-135deg);
}
.single-blog-content{
    padding-right: var(--bg-side);
    padding-left: var(--bg-side);
}
.single-blog-hero__right span{
    display: block;
    margin-bottom: 5px;
}
.single-blog-hero__top{
    display: grid;
    grid-template-columns: 1fr 250px;
    grid-gap: 50px;
}
.single-blog-hero__right{
    padding-top: 20px;
}
.single-blog-hero__media-row{
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #D7D6DB;
}
.single-blog-hero__media-row *{
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    object-fit: cover;
}
.single-blog-content__block{
    max-width: 900px;
}
.single-blog-content__block h2{
    margin-top: 60px;
}
.pom-s-title{
    margin-bottom: 10px!important;
    color: var(--rouge) !important;
    margin-top: 20px;
}
.single-blog-content__block--tableau{
    max-width: unset;
}
.single-blog-content__block{
    margin-top: 40px;
}
.single-blog-content__block--image *,
.single-blog-content__block--video *{
    width: 100%;
    cursor: pointer;
}
.single-blog-content__block--video .video-wrap{
    aspect-ratio: 16/9;
}

th, td{
    padding: 15px 0;
    text-align: left;
    border-right: 30px solid transparent;
    border-bottom: 1px solid var(--griscasaq);
}
th{
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
td{
    border-bottom: 1px solid #D7D6DB;
    color: var(--noir);
}
td *{
    color: var(--noir);
}

.single-blog-related{
    margin-top: var(--mdspace);
}
.single-blog-related{
    background: linear-gradient(180deg, #FBDBEB 0%, #ECEDFC 48.08%, #FFF 100%);
    padding-top: var(--mdspace);
    padding-bottom: var(--mdspace);
    margin-bottom: calc(-1 * var(--mdspace) + 30px);
}
.single-blog-related__grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 30px;
}
.single-blog-content__block--galerie{
    max-width: unset;
    position: relative;
}
.single-blog-content__block--galerie:not(.is-slider){
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}
.single-blog-content__block--galerie img{
    width: 100%;
    height: 23.7vw;
    object-fit: cover;
}

.single-blog-gallery__nav-button{
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    background: transparent;
    border: 0;
    padding: 0;
    left: -50px;
    z-index: 10;
    cursor: pointer;
}
.single-blog-gallery__nav-button--next{
    left: unset;
    right: -50px;
}


/*********
PAGE CONTACT
 */
.page-contact .demande-form-section{
    background: white;
}
.page-contact .demande-form-section input,
.page-contact .demande-form-section textarea{
    background: #F0E9F7;
}
.page-contact .fonction-banner__container{
    min-height: 650px;
    background: linear-gradient(0deg, #FFF 0%, #ECEDFC 51.92%, #FBDBEB 100%);
}
.page-contact .fonction-banner__image{
    bottom: unset;
    height: calc(100% - var(--ltspace) * 2);
    top: var(--ltspace);
}
.page-contact .fonction-banner{
    margin-bottom: calc(-1 * var(--mdspace) - var(--ltspace) * 1);
    margin-top: 0;
}
.page-contact .fonction-banner__content h2{
    font-size: 5vw;
}


.blog-featured {
    position: relative;
    overflow: hidden;
}

.blog-featured__image {
    overflow: hidden;
}

.blog-featured__image img {
    transition: transform .7s cubic-bezier(.22, 1, .36, 1),
    opacity .35s ease;
}

.blog-featured__title {
    transition: color .35s ease;
}

.blog-featured:hover .blog-featured__image img {
    transform: scale(1.025);
    opacity: .96;
}

.blog-featured:hover .blog-featured__title {
    color: var(--rouge);
}

.blog-featured:hover .blog-card__meta span {
    color: var(--rouge);
}


.single-credits {
    margin-top: var(--mdspace);
}

.single-credits__row {
    display: grid;
    grid-template-columns: 1fr 2fr 130px;
    grid-gap: 40px;
    padding: 40px;
    position: relative;
    border: 1px dashed #8270C9;
    background: rgba(228, 223, 251, 0.20);
}
.single-credits__row>svg{
    /*position: absolute;*/
    /*right: 40px;*/
    /*top: 40px;*/
}
.single-credits__title {
    margin-bottom: 0;
    max-width: 300px;
}

.single-credits__text * {
    color: var(--noir);
}
.single-credits__text{
    max-width: 650px;
}


.fonctions__mobile-select{
    display:none;
}
.faq-filters__mobile-select {
    display: none;
}
.page-support{
    margin-bottom: calc(-1 * var(--mdspace));
}



/****
PAGE crédits
 */
.credits-volumes__big-title{
    font-size: 13vw;
}
.credits-volumes{
    margin-top: 200px;
}
.credits-volumes__grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 30px;
}
.credits-volumes__item{
    border: 1px dashed #8270C9;
    background: rgba(228, 223, 251, 0.20);
    padding: var(--ltspace);
}
.credits-volumes__item img{
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 15px;
}








.js-reveal {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(8px);
    transition:
            opacity .9s cubic-bezier(.22, 1, .36, 1),
            transform .9s cubic-bezier(.22, 1, .36, 1),
            filter .9s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform, filter;
}

.js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.js-reveal:nth-child(2) {
    transition-delay: .05s;
}

.js-reveal:nth-child(3) {
    transition-delay: .1s;
}

.js-reveal:nth-child(4) {
    transition-delay: .15s;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .js-reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

#header {
    transition:
            padding .45s cubic-bezier(.22, 1, .36, 1),
            box-shadow .45s ease,
            background-color .45s ease,
            transform .45s cubic-bezier(.22, 1, .36, 1);
}

html.is-scrolled #header {
    padding-top: 18px;
    padding-bottom: 18px;
    box-shadow: 0 10px 40px rgba(29, 27, 37, .06);
}
.blog-featured__image,
.home-features__media,
.single-blog-content__block--image,
.about-history__image,
.about-partners__image,
.fonction-banner__image {
    overflow: hidden;
}

.blog-featured__image img,
.home-features__media img,
.single-blog-content__block--image img,
.about-history__image img,
.about-partners__image img,
.fonction-banner__image img {
    transition:
            transform 1.1s cubic-bezier(.22, 1, .36, 1),
            filter .8s ease,
            opacity .5s ease;
}

.blog-featured:hover img,
.home-features__item:hover img,
.single-related__card:hover img,
.fonction-banner__container:hover .fonction-banner__image img {
    transform: scale(1.045);
}
.blog-list__grid .js-reveal:nth-child(4n + 2),
.credits-volumes__grid .js-reveal:nth-child(4n + 2),
.single-avantages__grid .js-reveal:nth-child(4n + 2) {
    transition-delay: .08s;
}

.blog-list__grid .js-reveal:nth-child(4n + 3),
.credits-volumes__grid .js-reveal:nth-child(4n + 3),
.single-avantages__grid .js-reveal:nth-child(4n + 3) {
    transition-delay: .16s;
}

.blog-list__grid .js-reveal:nth-child(4n + 4),
.credits-volumes__grid .js-reveal:nth-child(4n + 4),
.single-avantages__grid .js-reveal:nth-child(4n + 4) {
    transition-delay: .24s;
}
input,
textarea {
    border: 1px solid transparent;
    outline: 0;
    transition:
            border-color .35s ease,
            background-color .35s ease,
            color .35s ease;
}

input:focus,
textarea:focus {
    border-color: var(--rouge);
    background: white;
}



.demande-form__field:focus-within label,
.demande-form__field:focus-within .demande-form__label {
    color: var(--rouge);
}

.demande-form__urgence,
.demande-form__dropzone {
    transition:
            border-color .35s ease,
            background-color .35s ease,
            color .35s ease;
}

.demande-form__urgence:hover,
.demande-form__dropzone:hover {
    border-color: var(--rouge);
    background: rgba(255, 0, 38, 0.06);
}

.mx-wd-impressum{
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 900px;
    margin-top: 50px;
}


/* Cookie overlay */

html.cookie-pending body {
    overflow: hidden;
}

.cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 100003;
    background: rgba(29, 27, 37, .46);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: .45s cubic-bezier(.22, 1, .36, 1);
}

.cookie-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Cookie popup */

.cookie-popup {
    position: fixed;
    left: var(--contour);
    bottom: var(--contour);
    width: min(430px, calc(100vw - var(--contour) * 2));
    z-index: 100004;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px) scale(.98);
    transition: .45s cubic-bezier(.22, 1, .36, 1);
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.cookie-popup-content {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 24px;
    background: linear-gradient(180deg, #FFF 0%, #ECEDFC 50%, #FBDBEB 100%);
    box-shadow: 0 24px 70px rgba(29, 27, 37, .22);
}

.cookie-popup-title {
    display: block;
    margin-bottom: 8px;
    color: var(--rouge);
    font-size: 24px;
    line-height: 120%;
}

.cookie-popup-content p {
    margin: 0 0 12px 0;
    color: var(--noir);
    font-size: 15px;
    line-height: 140%;
}

.cookie-popup-content a {
    color: var(--griscasaq);
    font-size: 14px;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 4px;
}

.cookie-popup-actions {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.cookie-btn {
    border: 0;
    cursor: pointer;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: .3s ease;
}

.cookie-btn--primary {
    background: var(--rouge);
    color: var(--Blanc);
}

.cookie-btn--primary:hover {
    background: var(--noir);
}

.cookie-btn--secondary {
    background: var(--noir);
    color: white;

}

.cookie-btn--secondary:hover {
    background: white;
    color: var(--noir);
}

.page-template-template-blog .fonction-banner{
    position: relative;
}
.page-template-template-blog .fonction-banner__container{
    min-height: 300px;
}
.crm-intelligent{
    position: absolute;
    right: var(--ltspace);
    bottom: var(--ltspace);
}







/* ==================================================
   CASA Q BRAIN
   ================================================== */

.casaq-brain {
    position: fixed;
    right: var(--contour);
    bottom: 30px;
    z-index: 99990;
    transform: translateY(-50%);
}

/* Petit onglet rouge */

.casaq-brain__trigger {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 8px 12px;
    border: 0;
    background: var(--rouge);
    color: white;

    font-size: 12px;
    line-height: 1;
    cursor: pointer;

    box-shadow: 0 8px 25px rgba(29, 27, 37, 0.14);


    transition:
            transform 0.4s cubic-bezier(.22, 1, .36, 1),
            box-shadow 0.3s ease;
}

.casaq-brain__trigger::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: -9px;

    border-top: 10px solid var(--rouge);
    border-left: 10px solid transparent;
}

.casaq-brain:hover .casaq-brain__trigger,
.casaq-brain.is-open .casaq-brain__trigger {
    transform: translateX(0);
}



.casaq-brain__label {
    color: white;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 300;
    line-height: 120%;
}
.casaq-brain__icon{
    width: 22px;
    height: auto;
}




.casaq-brain__trigger {
    overflow: visible;
    width: auto;
    max-width: 420px;

    transition:
            max-width .5s cubic-bezier(.22, 1, .36, 1),
            padding .5s cubic-bezier(.22, 1, .36, 1),
            transform .4s cubic-bezier(.22, 1, .36, 1),
            box-shadow .3s ease;
}

.casaq-brain__icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
}

.casaq-brain__label {
    display: block;
    overflow: hidden;

    max-width: 320px;
    opacity: 1;

    white-space: nowrap;
    transform: translateX(0);

    transition:
            max-width .5s cubic-bezier(.22, 1, .36, 1),
            opacity .3s ease,
            transform .5s cubic-bezier(.22, 1, .36, 1);
}

/* État replié après scroll */
.casaq-brain.is-collapsed .casaq-brain__trigger {
    max-width: 46px;
    padding-left: 12px;
    padding-right: 12px;
}

.casaq-brain.is-collapsed .casaq-brain__label {
    max-width: 0;
    opacity: 0;
    transform: translateX(10px);
}

/* Le texte revient au survol */
.casaq-brain.is-collapsed:hover .casaq-brain__trigger,
.casaq-brain.is-collapsed:focus-within .casaq-brain__trigger,
.casaq-brain.is-open .casaq-brain__trigger {
    max-width: 420px;
}

.casaq-brain.is-collapsed:hover .casaq-brain__label,
.casaq-brain.is-collapsed:focus-within .casaq-brain__label,
.casaq-brain.is-open .casaq-brain__label {
    max-width: 320px;
    opacity: 1;
    transform: translateX(0);
}

/* Optionnel : recentre légèrement la pointe */
.casaq-brain.is-collapsed .casaq-brain__trigger::after {
    right: 10px;
}


/* Bulle qui s’ouvre */

.casaq-brain__bubble {
    position: absolute;
    right: 0;
    bottom: 42px;

    width: clamp(300px, 28vw, 460px);
    min-height: 0;
    max-height: min(70vh, 650px);

    padding: 24px;

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
            0 30px 80px rgba(29, 27, 37, 0.24),
            0 8px 24px rgba(29, 27, 37, 0.08);

    overflow-y: auto;
    overscroll-behavior: contain;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    filter: blur(8px);

    transform:
            translateY(24px)
            translateX(10px)
            scale(0.92);

    transform-origin: bottom right;

    transition:
            opacity 0.32s ease,
            visibility 0.32s ease,
            filter 0.45s ease,
            transform 0.5s cubic-bezier(.16, 1, .3, 1);
}

.casaq-brain.is-open .casaq-brain__bubble {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    filter: blur(0);

    transform:
            translateY(0)
            translateX(0)
            scale(1);
}

.casaq-brain__heading {
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 8px;*/

/*    margin-bottom: 18px;*/

/*    color: var(--rouge);*/
/*    font-size: 13px;*/
/*    font-weight: 600;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.04em;*/
    margin-bottom: 3px;
}

.casaq-brain__heading-icon {
    font-size: 19px;
}

.casaq-brain__typing {
    color: var(--noir);
    font-size: 17px;
    line-height: 1.5;
}

.casaq-brain__text {
    color: var(--noir);
}

.casaq-brain__cursor {
    display: inline-block;

    width: 2px;
    height: 1.05em;
    margin-left: 3px;

    background: var(--rouge);
    vertical-align: -2px;

    animation: casaqBrainCursor 0.75s steps(1) infinite;
}

.casaq-brain.is-complete .casaq-brain__cursor {
    animation: none;
    opacity: 0;
}

.casaq-brain__close {
    position: absolute;
    right: 10px;
    top: 8px;

    width: 30px;
    height: 30px;

    padding: 0;
    border: 0;
    background: transparent;
    color: var(--griscasaq);

    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
.casaq-brain__typing {
    position: relative;
}

.casaq-brain__text {
    color: var(--noir);
    font-size: 16px;
    line-height: 1.5;
}

.casaq-brain__text p {
    margin: 0 0 14px;
}

.casaq-brain__text p:last-child {
    margin-bottom: 0;
}

.casaq-brain__text ul,
.casaq-brain__text ol {
    margin: 12px 0;
    padding-left: 22px;
}

.casaq-brain__text li {
    margin-bottom: 7px;
}

.casaq-brain__text strong {
    color: var(--noir);
    font-weight: 600;
}

.casaq-brain__text a {
    color: var(--rouge);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.casaq-brain__cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 3px;

    background: var(--rouge);
    vertical-align: -2px;

    animation: casaqBrainCursor 0.75s steps(1) infinite;
}
@keyframes casaqBrainCursor {
    0%,
    48% {
        opacity: 1;
    }

    49%,
    100% {
        opacity: 0;
    }
}



.casaq-brain-overlay {
    position: fixed;
    inset: 0;
    z-index: 99980;

    background: rgba(29, 27, 37, 0.52);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
            opacity 0.4s ease,
            visibility 0.4s ease;
}

.casaq-brain-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}



.home-tools__mobile-media {
    position: relative;
    overflow: hidden;
    background: #000;
}

.home-tools__mobile-media video,
.home-tools__mobile-media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.home-tools__mobile-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.home-tools__mobile-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            background-color 0.25s ease;
}

.home-tools__mobile-play:active .home-tools__mobile-play-icon {
    transform: scale(0.92);
}

.home-tools__mobile-media.is-playing
.home-tools__mobile-play-icon {
    opacity: 0;
    transform: scale(0.85);
}

.home-tools__mobile-media.is-playing
.home-tools__mobile-play {
    background: transparent;
}

@media (hover: hover) {
    .home-tools__mobile-play:hover
    .home-tools__mobile-play-icon {
        background: rgba(0, 0, 0, 0.72);
        transform: scale(1.06);
    }
}

.lien_footer a{
    text-decoration: underline;
}


.page-template-template-fonction .hero__container{
    height: auto;
    padding-bottom: var(--mdspace);
}
.scroll-down{
    margin-top: var(--mdspace);
}
.page-template-template-fonction .fonction-banner__container{
    min-height: 550px;
}


.single-fonction-hero__container{
    background: transparent;
    padding: 0;
}
.single-fonction-hero__content{
    position: relative;
    z-index: 10;
    padding: 50px var(--md-side) var(--mdspace) var(--md-side);
}
.single-fonction-hero__content::after{
    content: "";
    background: linear-gradient(180deg, #FFF 0%, #ECEDFC 51.92%, #FBDBEB 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: calc(100% - 0px);
    width: 100%;
}
.is-image-head.single-fonction-hero__media{
    /*width: 60vw;*/
    /*top: 37%;*/
    /*bottom: unset;*/
    /*aspect-ratio: unset;*/
    /*max-height: unset;*/
    /*position: static;*/
    /*display: flex;*/
    /*margin-left: auto;*/
    /*margin-top: -400px;*/

    width: 51vw;
    top: 0%;
    bottom: unset;
    aspect-ratio: unset;
    max-height: unset;
    /*position: static;*/
    display: flex;
    margin-left: auto;
    margin-top: -400px;
    max-width: unset;
    position: relative;
    z-index: 11;
    margin-bottom: -40px;
}
.about-tool__container{
    padding-bottom: 50px;
}
.faq-banner h2.faq-banner__title,
.about-tool__container h2.about-tool__title{
    font-size: 100px;

}
.about-tool__content{
    max-width: 70%;
}
.blog-featured__title{
    color: var(--griscasaq);
}
.faq-banner__content{
    max-width: 70%;
}
.page-template-template-blog .fonction-banner__container {
    padding-bottom: var(--mdspace);
}
.demande-form-section__intro p{
    margin-bottom: 10px;
}
.page-template-template-faq .faq-banner h2.faq-banner__title{
    line-height: 1;
}
.page-contact .fonction-banner__container{
    padding-top: var(--mdspace);
    padding-bottom: var(--mdspace);
    margin-bottom: 0;
}





























.casaq-assistant {
    min-height: calc(100vh - 100px);
    background:
            radial-gradient(circle at 85% 12%, rgba(251, 219, 235, .9), transparent 34%),
            linear-gradient(180deg, #fff 0%, #ecedfc 46%, #fbdbea 100%);
}

.casaq-assistant__hero {
    padding-top: 70px;
    padding-bottom: 55px;
}

.casaq-assistant__hero-inner {
     max-width: 950px;
    display: flex;
    text-align: center;
    flex-direction: column;
    margin: auto;
}

.casaq-assistant__eyebrow {
    margin-bottom: 16px;
    color: var(--griscasaq);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.casaq-assistant__title {
    margin: 0 auto 22px;
    max-width: 1000px;
}

.casaq-assistant__intro {
    max-width: 720px;
    margin: 0 auto;
}

.casaq-chat {
    padding-bottom: 90px;
}

.casaq-chat__shell {
    width: min(920px, 100%);
    margin: 0 auto;
}

.casaq-chat__messages {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 270px;
    padding-bottom: 28px;
}

.casaq-chat__message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.casaq-chat__message--user {
    justify-content: flex-end;
}

.casaq-chat__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--rouge);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .03em;
}

.casaq-chat__bubble {
    max-width: min(760px, calc(100% - 50px));
    padding: 20px 22px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 60px rgba(29, 27, 37, .08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.casaq-chat__message--user .casaq-chat__bubble {
    max-width: min(680px, 88%);
    background: var(--noir);
}

.casaq-chat__bubble p {
    color: var(--noir);
    line-height: 1.55;
}

.casaq-chat__message--user .casaq-chat__bubble p {
    color: #fff;
}

.casaq-chat__bubble p:last-child {
    margin-bottom: 0;
}

.casaq-chat__composer {
    position: sticky;
    bottom: 24px;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px;
    align-items: end;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 24px 90px rgba(29, 27, 37, .16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.casaq-chat__input {
    display: block;
    width: 100%;
    min-height: 58px;
    max-height: 180px;
    height: 58px;
    margin: 0;
    padding: 17px 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--noir);
    font-size: 17px;
    line-height: 1.4;
    resize: none;
}

.casaq-chat__input:focus {
    border: 0;
    background: transparent;
}

.casaq-chat__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border: 0;
    background: var(--rouge);
    color: #fff;
    cursor: pointer;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), opacity .3s ease;
}

.casaq-chat__submit:hover {
    transform: translateY(-2px);
}

.casaq-chat__submit:disabled {
    opacity: .45;
    cursor: wait;
    transform: none;
}

.casaq-chat__disclaimer {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
}

.casaq-chat__sources {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #d7d6db;
}

.casaq-chat__sources-title {
    display: block;
    margin-bottom: 10px;
    color: var(--griscasaq);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.casaq-chat__sources-list {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.casaq-chat__source-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    background: #f2f0f8;
    color: var(--noir);
    font-size: 15px;
    transition: background-color .3s ease, color .3s ease;
}

.casaq-chat__source-link:hover {
    background: var(--rouge);
    color: #fff;
}

.casaq-chat__contact {
    margin-top: 18px;
}

.casaq-chat__loading {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 22px;
}

.casaq-chat__loading span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--griscasaq);
    animation: casaq-assistant-loading 1.1s infinite ease-in-out;
}

.casaq-chat__loading span:nth-child(2) {
    animation-delay: .14s;
}

.casaq-chat__loading span:nth-child(3) {
    animation-delay: .28s;
}
.casaq-chat__actions {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.casaq-chat__reset {
    padding: 0;
    border: 0;
    border-bottom: 1px dotted currentColor;
    background: transparent;
    color: var(--griscasaq);
    font-size: 14px;
    cursor: pointer;

    transition:
            color .3s ease,
            border-color .3s ease;
}

.casaq-chat__reset:hover,
.casaq-chat__reset:focus-visible {
    color: var(--rouge);
    border-color: var(--rouge);
}

.casaq-chat__source-link span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.casaq-chat__source-link svg {
    flex: 0 0 auto;
}
@keyframes casaq-assistant-loading {
    0%, 70%, 100% {
        opacity: .35;
        transform: translateY(0);
    }

    35% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

@media (max-width: 980px) {
    .casaq-assistant__hero {
        padding-top: 36px;
        padding-bottom: 34px;
    }

    .casaq-chat {
        padding-left: var(--contour);
        padding-right: var(--contour);
        padding-bottom: 55px;
    }

    .casaq-chat__messages {
        min-height: 220px;
    }

    .casaq-chat__bubble {
        max-width: calc(100% - 46px);
        padding: 17px;
    }

    .casaq-chat__message--user .casaq-chat__bubble {
        max-width: 92%;
    }

    .casaq-chat__composer {
        bottom: 12px;
        grid-template-columns: minmax(0, 1fr) 52px;
    }

    .casaq-chat__input {
        min-height: 52px;
        height: 52px;
        padding: 15px 13px;
        font-size: 16px;
    }

    .casaq-chat__submit {
        width: 52px;
        height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .casaq-chat__loading span,
    .casaq-chat__submit {
        animation: none;
        transition: none;
    }
}
