@charset "UTF-8";
h1, h2, h3, h4 {
    margin: 0;
}

ol, ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    margin: 0;
}

figure {
    margin: 0;
}

picture {
    display: block;
}

canvas {
    display: block;
}

iframe {
    display: block;
    border: 0;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

tbody, thead, tr, th, td {
    padding: 0;
}

svg {
    display: block;
}

video {
    display: block;
}

blockquote {
    margin: 0;
}

dl, dd {
    margin: 0;
}

button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    cursor: pointer;
    padding: 0;
    border: 0;
}

:root {
    --font-1: "Montserrat", sans-serif;
    --font-2: "Blop11", sans-serif;
    --ctr-width: 1802px;
    --header-height: 100px;
    --color-text: #262626;
    --color-text-reverse: #fff;
    --color-red: #FC0000;
    --color-gray-90: #E8E8E8;
    --color-gray-65: #AEAEAE;
    --color-gray-50: #8b8b8b;
    --color-gray-35: #696969;
    --color-gray-20: #474747;
    --color-gray-10: #262626;
    --color-0: #19239e;
    --color-1: #41A09F;
    --color-2: #2E62D0;
    --color-2-bis: #1225E0;
    --color-3: #7216C6;
    --color-4: #BC4AAD;
    --color-5: #EC6360;
    --color: #41A09F;
}

/* breakpoint mobile first */
/* breakpoint desktop first */
@media (max-width: 991px) {
    :root {
        --gap: 1rem;
        --ctr-offset: 1.6rem;
        --header-height: 8rem;
        --margin-sm: 6rem;
        --margin: 12rem;
        --margin-md: 14rem;
    }
}
@media (min-width: 769px) {
    :root {
        --ctr-offset: 3rem;
    }
}
@media (min-width: 992px) {
    :root {
        --gap: 4rem;
        --ctr-offset: 6rem;
        --header-height: 12rem;
        --margin-sm: 6rem;
        --margin: 12rem;
        --margin-md: 14rem;
    }
}
[data-mode=darkmode] {
    --color-text: #fff;
    --color-text-reverse: #000;
    --color-gray-10: #191919;
}

[data-theme=color-1] {
    --color: var(--color-1);
}

[data-theme=color-2] {
    --color: var(--color-2);
}

[data-theme=color-3] {
    --color: var(--color-3);
}

[data-theme=color-4] {
    --color: var(--color-4);
}

[data-theme=color-5] {
    --color: var(--color-5);
}

/* Montserrat */
@font-face {
    font-family: "Montserrat";
    src: url(/assets/fonts/Montserrat-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Montserrat";
    src: url(/assets/fonts/Montserrat-Italic.woff2) format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Montserrat";
    src: url(/assets/fonts/Montserrat-Medium.woff2) format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Montserrat";
    src: url(/assets/fonts/Montserrat-MediumItalic.woff2) format("woff2");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Montserrat";
    src: url(/assets/fonts/Montserrat-SemiBold.woff2) format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Montserrat";
    src: url(/assets/fonts/Montserrat-Bold.woff) format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Montserrat";
    src: url(/assets/fonts/Montserrat-BoldItalic.woff2) format("woff2");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
/* Blop11 */
@font-face {
    font-family: "Blop11";
    src: url(/assets/fonts/Blop11-Bold.woff2) format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Blop11";
    src: url(/assets/fonts/Blop11.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
html {
    font-size: 62.5%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--font-1);
    font-size: 1.6rem;
    line-height: 1;
    margin: 0;
    overflow-anchor: none;
    overscroll-behavior: none;
    overflow: overlay;
    color: var(--color-text);
    background-color: #fff;
}
body.overlayed {
    height: 100vh;
    overflow: hidden !important;
    position: relative;
    touch-action: none;
    -webkit-overflow-scrolling: touch;
}

.container {
    max-width: var(--ctr-width);
    margin-right: auto;
    margin-left: auto;
    padding-left: var(--ctr-offset);
    padding-right: var(--ctr-offset);
}

@media (min-width: 1300px) {
    main {
        padding-top: var(--header-height);
    }
}

.strate {
    margin-bottom: var(--margin);
}
.strate .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: var(--gap);
}

.margin-sm {
    --margin: var(--margin-sm);
}

.margin-md {
    --margin: var(--margin-md);
}

.margin-lg {
    --margin: var(--margin-lg);
}

.margin-none {
    --margin: 0;
}

s .color-1 {
    --color: var(--color-1);
}

.color-2 {
    --color: var(--color-2);
}

.color-3 {
    --color: var(--color-3);
}

.color-4 {
    --color: var(--color-4);
}

.color-5 {
    --color: var(--color-5);
}

[data-mode=darkmode] {
    background-color: var(--color-gray-10);
}

@media (min-width: 1300px) {
    .page-template-page-homepage #header .level-0 {
        display: none !important;
    }
    .page-template-page-homepage #header .baseline {
        display: none !important;
    }
}
.btn-1 {
    display: inline-flex;
    height: 60px;
    padding: 0px 30px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 30px;
    border: 1px solid var(--color-text);
    transition: all 0.3s ease;
    font-weight: 600;
    box-sizing: border-box;
}
.btn-1.dark {
    background-color: var(--color-text);
    color: var(--color-text-reverse);
}
.btn-1.light {
    border: 1px solid #fff;
    color: #fff;
}
.btn-1:before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--color-red);
    transition: clip-path 0.3s ease;
    clip-path: polygon(2px 9px, 15.8px 9px, 15.8px 9px, 19.8px 9px, 19.3px 10px, 19.3px 11px, 15.8px 11px, 15.8px 11px, 2px 11px);
    flex: 0 0 20px;
}
.btn-1:hover {
    padding: 0 40px 0 20px;
    background-color: #fff;
    color: #000;
}
.btn-1:hover:before {
    clip-path: polygon(16.8px 10px, 15.8px 9px, 11.2px 3.7px, 12.8px 2.3px, 19.3px 10px, 12.8px 17.7px, 11.2px 16.3px, 15.8px 11px, 16.8px 10px);
}
@media (max-width: 991px) {
    .btn-1 {
        height: 50px;
        padding: 0px 20px;
    }
}

.btn-picto {
    display: inline-grid;
    grid-template-columns: 20px 1fr;
    height: 6rem;
    padding: 0px 3rem;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 3rem;
    border: 1px solid var(--color-text);
    transition: all 0.3s ease;
    font-weight: 600;
    line-height: 1.76rem;
}
.btn-picto.dark {
    background-color: var(--color-text);
    color: var(--color-text-reverse);
}
.btn-picto.light {
    border: 1px solid #fff;
    color: #fff;
}
.btn-picto .icon {
    grid-column: 1;
    grid-row: 1;
    transition: opacity 0.3s ease;
}
.btn-picto span {
    display: inline-block;
    transition: transform 0.3s ease;
    grid-column: 2;
    grid-row: 1;
}
.btn-picto:before {
    content: "";
    grid-column: 1;
    grid-row: 1;
    width: 20px;
    height: 20px;
    background-color: var(--color-red);
    clip-path: path("M12.8,2.3L11.2 3.7 15.8 9 16.6 10 16.6 10 15.8 11 11.2 16.3 12.8 17.7 19.3 10 z");
    margin-left: -0.6rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-picto:hover:before {
    opacity: 1;
}
.btn-picto:hover {
    background-color: #fff;
    color: #000;
}
.btn-picto:hover span {
    transform: translateX(-0.6rem);
}
.btn-picto:hover .icon {
    opacity: 0;
}
@media (max-width: 991px) {
    .btn-picto {
        height: 50px;
        padding: 0px 20px;
    }
}

[data-mode=darkmode] .btn-1.light,
[data-mode=darkmode] .btn-picto.light {
    background-color: #fff;
    color: var(--color-text-reverse);
}

.title-1 {
    font-size: 5.2rem;
    font-weight: 700;
    font-family: var(--font-2);
    font-weight: 700;
}
@media (min-width: 769px) {
    .title-1 {
        font-size: 10.4rem;
    }
}
@media (min-width: 1300px) {
    .title-1 {
        font-size: 17.4rem;
    }
}

.title-2, .rte h2 {
    font-size: 4rem;
    line-height: 4.4rem;
    font-weight: 700;
    font-family: var(--font-2);
    font-weight: 700;
    text-transform: uppercase;
}
@media (min-width: 992px) {
    .title-2, .rte h2 {
        font-size: 7.2rem;
        line-height: 7.9rem;
    }
}

.title-3, .rte h3 {
    font-size: 2.4rem;
    line-height: 3.6rem;
    font-weight: 700;
}
@media (min-width: 992px) {
    .title-3, .rte h3 {
        font-size: 3.6rem;
        line-height: 5.4rem;
    }
}

.title-4, .rte h4 {
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 700;
}
@media (min-width: 992px) {
    .title-4, .rte h4 {
        font-size: 2.4rem;
        line-height: 3.6rem;
    }
}

.title-5, .rte h5 {
    font-size: 1.8rem;
    line-height: 2.7rem;
    font-weight: 400;
}
@media (min-width: 992px) {
    .title-5, .rte h5 {
        font-size: 2rem;
        line-height: 3rem;
    }
}

.rte .color {
    color: var(--color-1);
}
.rte p {
    line-height: 160%;
}
.rte .color-1 {
    color: var(--color);
}
.rte strong {
    font-weight: 700;
}
.rte small {
    font-weight: 400;
}
.rte a {
    text-decoration: underline;
}
.rte ul,
.rte ol {
    line-height: 150%;
}
.rte ul li,
.rte ol li {
    position: relative;
    padding-left: 2.9rem;
}
.rte ul li:before,
.rte ol li:before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
}
.rte ul li:not(:last-child),
.rte ol li:not(:last-child) {
    margin-bottom: 1rem;
}
.rte ul li:before {
    top: 0.4rem;
    width: 1.4rem;
    height: 1.5rem;
    background: var(--color-text);
    -webkit-mask: url(/assets/img/icons/bullet.svg);
    mask: url(/assets/img/icons/bullet.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    margin-left: 1rem;
}
.rte ol {
    counter-reset: list;
}
.rte ol li {
    counter-increment: list;
}
.rte ol li:before {
    content: counter(list);
    font-weight: 700;
}
.rte *:nth-last-child(1) {
    margin-bottom: 0 !important;
}
.rte img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 991px) {
    .rte h2 {
        margin-bottom: 1.5rem;
    }
    .rte h3 {
        margin-bottom: 1.5rem;
    }
    .rte h4 {
        margin-bottom: 1.5rem;
    }
    .rte h5 {
        margin: 0 0 1.5rem;
    }
    .rte .chapo {
        font-size: 2rem;
        line-height: 3rem;
        margin-bottom: 1.5rem;
    }
    .rte.chapo p {
        font-size: 2rem;
        line-height: 3rem;
        margin-bottom: 1.5rem;
    }
    .rte p {
        margin-bottom: 1.5rem;
    }
    .rte ul,
.rte ol {
        margin-bottom: 1.5rem;
    }
}
@media (min-width: 992px) {
    .rte h2 {
        margin-bottom: 1rem;
    }
    .rte h3 {
        margin-bottom: 1rem;
    }
    .rte h4 {
        margin-bottom: 1rem;
    }
    .rte h5 {
        margin: 0 0 1rem;
    }
    .rte .chapo {
        font-size: 2.4rem;
        line-height: 3.4rem;
        margin-bottom: 2.3rem;
    }
    .rte.chapo p {
        font-size: 2.4rem;
        line-height: 3.4rem;
        margin-bottom: 2.3rem;
    }
    .rte p {
        margin-bottom: 2.2rem;
    }
    .rte ul,
.rte ol {
        margin-bottom: 4rem;
    }
}

.mode label {
    display: grid;
    align-items: center;
    width: 112px;
    border: 1px solid var(--color-text);
    height: 60px;
    border-radius: 4rem;
    padding: 2px 8px;
    box-sizing: border-box;
    cursor: pointer;
}
.mode label:before {
    content: "";
    display: block;
    width: 43px;
    height: 43px;
    background-color: var(--color-text);
    grid-area: 1/1;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.mode .icons {
    z-index: 2;
    grid-area: 1/1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 1px;
}
.mode .icons .icon:first-of-type {
    fill: var(--color-red);
}
.mode .icons .icon:last-of-type {
    fill: var(--color-text);
}
.mode input {
    display: none;
}
.mode input:checked + label .icon:first-of-type {
    fill: var(--color-text);
}
.mode input:checked + label .icon:last-of-type {
    fill: var(--color-red);
}
.mode input:checked + label:before {
    transform: translateX(calc(100% + 6px));
}
[data-mode=darkmode] .mode label {
    border-color: #fff;
}
[data-mode=darkmode] .mode label:before {
    background-color: #fff;
}

.accordion {
    display: grid;
}
.accordion details {
    overflow: hidden;
}
.accordion details[open] summary {
    background-color: #fff;
    color: var(--color);
}
.accordion details[open] summary svg path:nth-child(1) {
    opacity: 0;
}
.accordion summary {
    font-weight: 700;
    font-family: var(--font-2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    letter-spacing: 0.048rem;
    text-transform: uppercase;
    border: 1px solid var(--color-gray-35);
    overflow: hidden;
    position: relative;
    z-index: 0;
    letter-spacing: 0.03rem;
}
.accordion summary svg {
    transition: all 0.5s ease;
}
.accordion summary path {
    transition: all 0.2s ease;
    transform-origin: 50% 50%;
}
.accordion .panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 8.28%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(0, 0, 0, 0.35);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
}
@media (max-width: 991px) {
    .accordion details[open] summary {
        border-radius: 1rem 1rem 0 0;
    }
    .accordion summary {
        border-radius: 1rem;
        font-size: 2.4rem;
        padding: 3rem;
        padding-bottom: 2rem;
    }
    .accordion .panel {
        padding: 4rem 2rem;
        border-radius: 0 0 1rem 1rem;
    }
}
@media (min-width: 992px) {
    .accordion details[open] summary {
        border-radius: 2rem 2rem 0 0;
    }
    .accordion summary {
        border-radius: 2rem;
        font-size: 3.1rem;
        padding: 3rem;
        padding-bottom: 1.6rem;
    }
    .accordion .panel {
        padding: 7.1rem 11.8rem;
        border-radius: 0 0 2rem 2rem;
    }
}

[data-mode=darkmode] .accordion .panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 8.28%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
}

#header {
    width: 100%;
    height: var(--header-height);
    z-index: 100;
}
#header:before {
    content: "";
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease, height 0s linear 0.3s;
}
#header:after {
    content: "";
    z-index: -1;
    width: 100%;
    height: var(--header-height);
    border-bottom: 1px solid var(--color-gray-65);
    position: absolute;
    display: block;
    top: 0;
    background-color: #fff;
    transition: all 0.25s ease;
}
#header .container {
    display: grid;
    height: var(--header-height);
    align-items: center;
}
#header .logo {
    grid-area: 1/1;
    justify-self: start;
    z-index: 2;
    display: flex;
    align-items: center;
    --color-text: #878787;
}
#header .logo .logo-design {
    fill: #878787;
}
#header .logo .baseline {
    text-transform: uppercase;
    padding-left: 2.4rem;
    margin-left: 2.4rem;
    border-left: 1px solid var(--color-gray-65);
    line-height: 1.72rem;
}
#header .cta {
    z-index: 3;
}
#header .action {
    grid-area: 1/1;
    justify-self: end;
    z-index: 2;
    display: flex;
    gap: 2.4rem;
}
#header #nav {
    position: relative;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1299px) {
    #header {
        position: relative;
        /* .action {
            margin-top: auto;
            height: var(--header-height);
            flex: 0 0 var(--header-height);
            display: flex;
            align-items: center;
        }*/
        /* .action {
            width: 100%;
            display: flex;

            .cta {
                flex: 1;
            }
        }*/
        margin-bottom: 40px;
    }
    #header.sticky {
        position: fixed;
        top: 0;
    }
    #header .logo svg {
        height: 40px;
        width: 105px;
    }
    #header .logo .baseline {
        font-size: 1.3rem;
        line-height: 1.44rem;
        margin-left: 0.4rem;
        padding-left: 2rem;
    }
    #header .desc {
        display: none;
    }
    #header #nav {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background: var(--color-text-reverse);
        flex-direction: column;
        padding: var(--ctr-offset);
        box-sizing: border-box;
        display: flex;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        margin-top: calc(var(--header-height));
        height: calc(100dvh - var(--header-height));
        justify-content: start;
    }
    #header #nav .cta {
        height: 40px;
        flex: 0 0 40px;
        translate: 0 10px;
        width: 100%;
    }
    #header #nav .nav-header {
        margin-top: 4.4rem;
        margin-bottom: 2rem;
    }
    #header #nav .nav-header .type {
        text-transform: uppercase;
        margin-bottom: 0.8rem;
    }
    #header #nav .nav-header .title {
        font-size: 1.7rem;
        font-weight: 800;
    }
    #header #nav.open {
        visibility: visible;
        opacity: 1;
        pointer-events: initial;
        transition: all 0.3s ease;
        align-items: start;
    }
    #header .level-1 {
        pointer-events: initial;
    }
    #header .level-0 {
        position: relative;
        z-index: 10;
        display: grid;
        gap: 5rem;
        margin-bottom: 3rem;
    }
    #header .level-0 span {
        box-decoration-break: clone;
        -webkit-box-decoration-break: clone;
        font-family: var(--font-2);
        font-weight: 700;
        font-size: 9.1rem;
        text-transform: uppercase;
        padding-top: 1.2rem;
        background: linear-gradient(107deg, #56BBB8 11.74%, #1225E0 36.84%, #A422C5 62.04%, #EC635F 84.29%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: block;
        margin-bottom: 0.4rem;
    }
    #header .level-0 span:nth-of-type(1):after {
        content: "...";
    }
    #header .level-0 span:nth-of-type(2):before {
        content: "...";
    }
    #header .level-0 button {
        display: none;
    }
    #header .level-0 .links {
        display: grid;
        gap: 1rem;
        line-height: 1.82rem;
        font-size: 1.4rem;
        font-weight: 500;
    }
    #header .level-0 .links a {
        display: flex;
    }
    #header .level-0 .links a:before {
        content: "";
        display: block;
        width: 10px;
        height: 18px;
        margin-right: 5px;
        background: var(--color-text);
        -webkit-mask: url(/assets/img/icons/chevron.svg) no-repeat;
        mask: url(/assets/img/icons/chevron.svg) no-repeat;
    }
    #header:after {
        transition: all 0s ease;
    }
    #header .btn-nav {
        grid-area: 1/1;
        justify-self: end;
        display: inline-flex;
        gap: 0.7rem;
        flex-direction: column;
        height: 4rem;
        padding: 0px 2.5rem;
        justify-content: center;
        align-items: center;
        border-radius: 3rem;
        border: 1px solid var(--color-gray-65);
        transition: all 0.25s ease-in-out;
        z-index: 10;
    }
    #header .btn-nav span {
        background-color: var(--color-red);
        width: 3rem;
        height: 2px;
        display: block;
        transition: all 0.3s ease;
        transform-origin: 50% 50%;
    }
    #header .btn-nav.open {
        background-color: #fff;
    }
    #header .btn-nav.open span {
        transform: rotate(45deg);
    }
    #header .btn-nav.open span:first-of-type {
        transform: rotate(-45deg);
    }
    #header .btn-nav.open span:last-of-type {
        margin-top: -9px;
    }
    #header .card-page {
        display: none;
    }
    #header .container {
        grid-template-columns: min-content auto min-content min-content;
        gap: 1rem;
    }
    #header .container:after {
        content: "";
        position: absolute;
        top: 100%;
        width: 100%;
        height: 46px;
        background-color: #fff;
        left: 0;
    }
    #header .logo {
        grid-column: 1;
        grid-row: 1;
    }
    #header .cta {
        grid-column: 1/-1;
        grid-row: 1;
        align-self: end;
        translate: 0 100%;
        height: 40px;
    }
    #header .action {
        grid-column: 3;
        grid-row: 1;
    }
    #header .icons {
        padding: 0;
    }
    #header .btn-nav {
        grid-column: 4;
        grid-row: 1;
    }
    #header:after {
        border: none !important;
    }
    #header .mode label {
        height: 40px;
        width: 40px;
        padding: 0;
    }
    #header .mode label:before {
        height: 38px;
        width: 38px;
    }
    #header .mode label svg {
        width: 38px;
        height: 38px;
    }
    #header .mode input:checked + label::before {
        transform: translateX(0);
    }
    #header .mode input + label .icon:nth-child(1) {
        fill: var(--color-red);
    }
    #header .mode input + label .icon:nth-child(2) {
        fill: #fff;
    }
    #header .mode input:checked + label .icon:nth-child(2) {
        display: none;
    }
    #header .mode input:not(:checked) + label .icon:nth-child(1) {
        display: none;
    }
}
@media (min-width: 1300px) {
    #header {
        position: fixed;
    }
    #header .cta-nav {
        display: none;
    }
    #header .container {
        transition: all 0.25s ease;
        grid-auto-columns: min-content auto min-content min-content;
        gap: 2rem;
    }
    #header .logo {
        grid-column: 1;
        grid-row: 1;
    }
    #header .cta {
        grid-column: 3;
        grid-row: 1;
    }
    #header #nav {
        grid-column: 1/5;
        grid-row: 1;
    }
    #header .btn-nav {
        display: none;
    }
    #header .action {
        grid-column: 4;
        grid-row: 1;
        /* position: absolute;
        right: 0;*/
    }
    #header .nav-header {
        display: none;
    }
    #header .level-0 {
        z-index: 10;
        display: flex;
        gap: 1rem;
    }
    #header .level-0 > li {
        display: inline;
    }
    #header .level-0 .mobile,
#header .level-0 .links {
        display: none;
    }
    #header .level-0 button {
        font-family: var(--font-2);
        font-weight: 700;
        font-size: 4.4rem;
        text-transform: uppercase;
        display: inline-grid;
        padding-top: 1.2rem;
        position: relative;
        z-index: 10;
    }
    #header .level-0 button span {
        grid-area: 1/1;
        color: var(--color-gray-65);
        transition: all 0.3s ease;
    }
    #header .level-0 button::before, #header .level-0 button::after {
        content: attr(data-text);
        grid-area: 1/1;
        transition: all 0.3s ease;
        opacity: 0;
    }
    #header .level-0 button::before {
        background: linear-gradient(164deg, #56BBB8 11%, #1225E0 36%, #A422C5 62%, #EC635F 84%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    #header .level-0 button::after {
        background: linear-gradient(107deg, #56BBB8 11%, #1225E0 36%, #A422C5 62%, #EC635F 84%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    #header .level-0 button.active span {
        opacity: 0;
    }
    #header .level-0 button.active::after {
        opacity: 0 !important;
    }
    #header .level-0 button.active::before {
        opacity: 1 !important;
    }
    #header .level-0 button.current span {
        opacity: 0;
    }
    #header .level-0 button.current:after {
        opacity: 1;
    }
    #header .level-0 button.current:before {
        opacity: 0;
    }
    #header .level-1 {
        display: grid;
        gap: 2rem;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        display: flex;
        padding-top: 70px;
        margin-top: 80px;
        pointer-events: none;
        opacity: 0;
        transform: translateY(50px);
    }
    #header .level-1 .desc {
        line-height: 160%;
        padding-top: 9rem;
        flex: 0 0 280px;
    }
    #header .level-1 .cards {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        height: 315px;
        gap: 1.4rem;
        flex: 1;
    }
    #header .level-1.show {
        transition: transform 0.3s ease, opacity 0.3s ease;
        display: flex;
        transform: translateY(0);
        opacity: 1;
        pointer-events: initial;
    }
    #header .level-1.hide {
        opacity: 0;
        transform: translateY(50px);
    }
    #header.open:after {
        height: 21rem;
    }
    #header.open:before {
        opacity: 1;
        height: 100vw;
        transition: opacity 0.3s ease, height 0s linear 0s;
    }
    #header.small {
        --header-height: 8rem;
    }
}

[data-mode=darkmode] #header:before {
    background-color: rgba(0, 0, 0, 0.8);
}
[data-mode=darkmode] #header:after {
    background-color: var(--color-gray-10);
    border-bottom: 1px solid var(--color-gray-35);
}
[data-mode=darkmode] #header .logo-design {
    fill: var(--color-text);
}
[data-mode=darkmode] #header .level-0 button span {
    color: #fff;
}
@media (max-width: 1299px) {
    [data-mode=darkmode] #header .container:after {
        background-color: var(--color-gray-10);
    }
}

#footer {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}
#footer .container {
    display: flex;
    align-items: center;
}
#footer nav ul {
    display: flex;
}
#footer .logo {
    --color-text: #878787;
}
#footer .logo-design {
    fill: #878787;
}
#footer .shares {
    display: flex;
}
#footer .shares a {
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: grid;
}
#footer .shares a:before {
    content: "";
    border-radius: 50%;
    border: 1px solid var(--color-text);
    grid-area: 1/1;
    opacity: 0.35;
}
#footer .shares a .icon {
    transition: all 0.3s ease;
    fill: var(--color-text);
    grid-area: 1/1;
}
#footer .shares a:hover {
    background-color: var(--color-text);
}
#footer .shares a:hover .icon {
    fill: var(--color-text-reverse);
}
@media (max-width: 1299px) {
    #footer .container {
        padding-top: 3rem;
        padding-bottom: 3rem;
        flex-wrap: wrap;
    }
    #footer .shares {
        width: 100%;
        margin-top: 4rem;
        gap: 0.625rem;
    }
    #footer nav {
        order: 9;
        margin-top: 3rem;
    }
    #footer nav ul {
        flex-direction: column;
        gap: 1.3rem;
    }
    #footer .logo {
        margin-right: auto;
    }
}
@media (min-width: 1300px) {
    #footer .container {
        height: 11rem;
        gap: 4rem;
    }
    #footer nav {
        margin-left: auto;
    }
    #footer nav ul {
        gap: 2rem;
    }
    #footer .shares {
        gap: 2rem;
    }
}

[data-mode=darkmode] #footer .logo-design {
    fill: var(--color-text);
}

[data-mode=lightmode] #footer {
    border-top: 1px solid var(--color-gray-65);
}

.card-page {
    height: 100%;
    box-sizing: border-box;
    border-radius: 2rem;
    border: 1px solid var(--color-gray-20);
    background-color: var(--color-gray-10);
    position: relative;
    z-index: 0;
    transition: all 0.3s ease;
    color: #fff;
}
.card-page a {
    display: grid;
}
.card-page.color-1 {
    --pos: 146.85% 168.48% at -13.8% 104.76%;
}
.card-page.color-2 {
    --pos: 136.96% 171.59% at 123.79% 58.57%;
}
.card-page.color-3 {
    --pos: 171.65% 184.37% at 65.52% 109.37%;
}
.card-page.color-4 {
    --pos: 120.32% 152.28% at -3.62% 78.32%;
}
.card-page.color-5 {
    --pos: 111.18% 139.12% at 111.38% 50.16%;
}
.card-page:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    opacity: 0.7;
    background: radial-gradient(var(--pos), var(--color) 0%, rgba(25, 25, 25, 0) 100%);
    transition: opacity 0.3s ease;
}
.card-page img {
    width: 100%;
    height: auto;
    border-radius: 1.2rem;
}
.card-page h2 {
    line-height: 2.26rem;
    font-size: 2rem;
    font-weight: 500;
    padding-right: 2rem;
}
.card-page .icon {
    justify-self: end;
    fill: #fff;
    transition: fill 0.3s ease;
}
@media (max-width: 991px) {
    .card-page {
        padding: 1rem 2rem 1rem 1rem;
    }
    .card-page a {
        grid-template-columns: 1fr 1fr;
        gap: 1.4rem;
        align-items: center;
    }
    .card-page picture {
        width: 100px;
        height: 100px;
        margin-bottom: 0;
    }
    .card-page img {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        height: 100%;
        border-radius: 0.6rem;
        object-fit: cover;
    }
    .card-page h2 {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        font-size: 1.6rem;
        line-height: 113%;
    }
    .card-page .icon {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
    }
}
@media (min-width: 992px) {
    .card-page {
        padding: 1rem 1rem 3rem;
    }
    .card-page a {
        gap: 4rem;
    }
    .card-page img {
        grid-column: 1;
        grid-row: 1;
    }
    .card-page h2 {
        grid-column: 1;
        grid-row: 2;
    }
    .card-page .icon {
        grid-column: 1;
        grid-row: 2;
        align-self: end;
    }
    .card-page:hover {
        transform: translateY(-50px);
        background-color: #fff;
        color: var(--color);
    }
    .card-page:hover:before {
        opacity: 0;
    }
    .card-page:hover .icon {
        fill: var(--color);
    }
}

[data-mode=lightmode] .card-page {
    background-color: #fff;
    border: rgba(0, 0, 0, 0) 1px solid;
    border-width: 0;
}
[data-mode=lightmode] .card-page.color-1 {
    --color: #56BBB8;
}
[data-mode=lightmode] .card-page.color-1:before {
    background: linear-gradient(246deg, #294AC0 5.35%, #56BBB8 55.24%);
}
[data-mode=lightmode] .card-page.color-2 {
    --color: #2703C8;
}
[data-mode=lightmode] .card-page.color-2:before {
    background: linear-gradient(145deg, #41A09F 7.13%, #2703C8 104.01%);
}
[data-mode=lightmode] .card-page.color-3 {
    --color: #BC4AAD;
}
[data-mode=lightmode] .card-page.color-3:before {
    background: linear-gradient(50deg, #1225E0 -29.69%, #BC4AAD 58.47%);
}
[data-mode=lightmode] .card-page.color-4 {
    --color: #BD4AAE;
}
[data-mode=lightmode] .card-page.color-4:before {
    background: linear-gradient(40deg, #BD4AAE 11.24%, #EC6360 74.18%);
}
[data-mode=lightmode] .card-page.color-5 {
    --color: #ED6461;
}
[data-mode=lightmode] .card-page.color-5:before {
    background: linear-gradient(202deg, #313FB9 20.43%, #ED6461 73.65%);
}
[data-mode=lightmode] .card-page:before {
    opacity: 1;
}
[data-mode=lightmode] .card-page:hover {
    border: rgba(0, 0, 0, 0.2) 1px solid;
    color: var(--color);
}
[data-mode=lightmode] .card-page:hover:before {
    opacity: 0;
}

.hero-homepage {
    position: relative;
}
.hero-homepage video {
    width: 100%;
    height: 39.5rem;
    object-fit: cover;
    border-radius: 2rem;
    transition: opacity 0.3s ease;
}
.hero-homepage picture {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    overflow: hidden;
    background-color: #1225E0;
}
.hero-homepage .type {
    text-transform: uppercase;
}
.hero-homepage .type strong {
    font-weight: 600;
}
.hero-homepage .level-0 {
    position: relative;
    z-index: 10;
    scroll-margin-top: calc(var(--header-height) + 3.7rem);
}
.hero-homepage .level-0 span {
    font-family: var(--font-2);
    font-weight: 700;
    font-size: 23.3rem;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 1px;
    white-space: nowrap;
}
.hero-homepage .level-0 .text-stroke span {
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px;
    -webkit-text-stroke-color: var(--color-gray-50);
    cursor: pointer;
    opacity: 1;
}
.hero-homepage .level-0 .text-stroke span.hide, .hero-homepage .level-0 .text-stroke span.active {
    opacity: 0;
}
.hero-homepage .level-0 .text-strokegradient {
    justify-content: space-between;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
}
.hero-homepage .level-0 .text-strokegradient span {
    background: linear-gradient(90deg, #56BBB8 0%, #1225E0 31.54%, #2703C8 52.94%, #A422C5 71.81%, #EC635F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    -webkit-text-stroke: 2px;
    -webkit-text-stroke-color: transparent;
    opacity: 0;
}
.hero-homepage .level-0 .text-strokegradient span.show {
    opacity: 1;
}
.hero-homepage .level-0 .text-gradient {
    justify-content: space-between;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
}
.hero-homepage .level-0 .text-gradient span {
    background: var(--Gradient-Uniques, linear-gradient(90deg, #56BBB8 0%, #1225E0 31.54%, #2703C8 52.94%, #A422C5 71.81%, #EC635F 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
}
.hero-homepage .level-0 .text-gradient span.active {
    opacity: 1;
}
.hero-homepage.open video, .hero-homepage.hover video {
    opacity: 0.4;
}
.hero-homepage.open .text-stroke span, .hero-homepage.hover .text-stroke span {
    -webkit-text-stroke-color: var(--color-gray-65);
}
.hero-homepage nav {
    container-type: inline-size;
}
@media (min-width: 769px) {
    .hero-homepage .level-1 .cards {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 991px) {
    .hero-homepage {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .hero-homepage .cta {
        margin-top: 2rem;
    }
    .hero-homepage .type {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    .hero-homepage h1 {
        font-size: 2rem;
        margin-bottom: 3.2rem;
    }
    .hero-homepage .tiret {
        display: none;
    }
    .hero-homepage video {
        height: 24rem;
        margin-bottom: 5rem;
    }
    .hero-homepage .card-page a {
        grid-template-columns: min-content 1fr;
    }
    .hero-homepage .card-page h2 {
        font-size: 1.6rem;
        line-height: 113%;
    }
    .hero-homepage .card-page picture {
        /* margin-bottom: 5rem;*/
        width: 100px;
        height: 100px;
        margin-bottom: 0;
        border-radius: 0.6rem;
    }
    .hero-homepage .card-page picture img {
        object-fit: cover;
    }
    .hero-homepage .level-0 {
        scroll-margin-top: calc(var(--header-height) + 3.7rem);
    }
    .hero-homepage .level-0 > div {
        display: grid;
    }
    .hero-homepage .level-0 span {
        font-size: 9.2rem;
        font-size: 24.9cqw;
        width: min-content;
    }
    .hero-homepage .level-1 {
        opacity: 0;
        transition: opacity 0.3s ease;
        display: none;
    }
    .hero-homepage .level-1 .desc {
        display: none;
    }
    .hero-homepage .level-1 .cards {
        width: 100%;
        display: grid;
        gap: 1rem;
    }
    .hero-homepage .level-1.show {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        pointer-events: initial;
    }
    .hero-homepage.open {
        padding-bottom: 40px;
    }
}
@media (min-width: 992px) {
    .hero-homepage {
        padding-top: 3.7rem;
        padding-bottom: 3rem;
    }
    .hero-homepage .tiret {
        pointer-events: none;
        line-height: 0;
        align-self: start;
        margin-top: 2.6cqw;
    }
    .hero-homepage .type {
        font-size: 2.4rem;
    }
    .hero-homepage h1 {
        font-size: 3.6rem;
        line-height: 5.4rem;
        margin-bottom: 5.2rem;
    }
    .hero-homepage video {
        height: 39.5rem;
        margin-bottom: 5.9rem;
    }
    .hero-homepage picture {
        margin-bottom: 5.9rem;
    }
    .hero-homepage .level-0 {
        scroll-margin-top: calc(var(--header-height) + 3.7rem);
    }
    .hero-homepage .level-0 .text-stroke,
.hero-homepage .level-0 .text-strokegradient,
.hero-homepage .level-0 .text-gradient {
        display: flex;
    }
    .hero-homepage .level-0 span {
        font-size: 12vw;
        font-size: 12.6cqw;
    }
    .hero-homepage .level-1 {
        display: grid;
        gap: 2rem;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: flex;
        margin-top: -3.4vw;
        pointer-events: none;
        opacity: 0;
        transform: translateY(50px);
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 10;
    }
    .hero-homepage .level-1 .desc {
        display: none;
    }
    .hero-homepage .level-1 .cards {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        height: 315px;
        gap: 1.4rem;
        flex: 1;
    }
    .hero-homepage .level-1.show {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        pointer-events: initial;
    }
    .hero-homepage.open .cta {
        margin-top: 380px;
    }
}
@media (min-width: 1300px) {
    .hero-homepage .cta {
        /*display: none;*/
    }
}
@media (min-width: 1882px) {
    .hero-homepage .level-1 .desc {
        line-height: 160%;
        padding-top: 9rem;
        flex: 0 0 280px;
        display: block;
    }
}

[data-mode=lightmode] .hero-homepage .level-0 .text-gradient span.show {
    opacity: 1;
}

[data-mode=darkmode] .hero-homepage .level-0 .text-strokegradient span {
    -webkit-text-fill-color: var(--color-gray-10);
}
[data-mode=darkmode] .hero-homepage .level-0 .text-gradient span.show {
    opacity: 1;
}
[data-mode=darkmode] .hero-homepage.open .text-stroke span, [data-mode=darkmode] .hero-homepage.hover .text-stroke span {
    -webkit-text-stroke-color: var(--color-gray-20);
}

.hero-page {
    padding-left: var(--ctr-offset);
    padding-right: var(--ctr-offset);
    display: grid;
}
.hero-page h1 {
    text-transform: uppercase;
}
.hero-page picture img {
    border-radius: 2rem;
    width: 100%;
    height: auto;
}
.hero-page .cta {
    justify-self: start;
}
@media (max-width: 991px) {
    .hero-page {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .hero-page h1 {
        margin-bottom: 1rem;
    }
    .hero-page picture {
        order: -1;
        margin-bottom: 4rem;
    }
    .hero-page picture img {
        border-radius: 1rem;
    }
    .hero-page .cta {
        margin-top: 4rem;
    }
    .hero-page .rte.chapo p {
        margin-bottom: 2.5rem;
    }
}
@media (min-width: 992px) {
    .hero-page {
        grid-template-columns: repeat(12, 1fr);
        grid-column-gap: var(--gap);
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
    .hero-page h1 {
        grid-column: 1/8;
        grid-row: 1;
        margin-top: 5rem;
        margin-bottom: 2rem;
    }
    .hero-page .rte {
        grid-column: 1/8;
        grid-row: 2;
    }
    .hero-page.full h1 {
        grid-column: 1/-1;
    }
    .hero-page.full .rte {
        grid-column: 1/-1;
    }
    .hero-page picture {
        grid-column: 8/-1;
        grid-row: 1/5;
        margin-left: 2rem;
    }
    .hero-page picture img {
        border-radius: 2rem;
    }
    .hero-page .cta {
        grid-column: 1/-1;
        grid-row: 3;
        margin-top: 4rem;
    }
}
@media (min-width: 1882px) {
    .hero-page h1 {
        margin-top: 10rem;
    }
    .hero-page .rte {
        grid-column: 1/6;
    }
}

.strate-accordion .text {
    display: grid;
}
.strate-accordion .rte li:before {
    background-color: var(--color);
}
.strate-accordion .cards {
    display: grid;
    margin-top: 2.4rem;
}
.strate-accordion .cards img {
    width: 100%;
}
.strate-accordion h3 {
    font-size: 1.6rem;
}
.strate-accordion .accordion details summary {
    cursor: pointer;
}
.strate-accordion .accordion details summary:before, .strate-accordion .accordion details summary:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: opacity 0.3s ease;
    z-index: -1;
}
.strate-accordion .accordion details summary:before {
    background: radial-gradient(94% 250% at 27% 120%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
}
.strate-accordion .accordion details summary:after {
    background: radial-gradient(155% 284% at 5.47% 204%, var(--color) 0%, rgba(30, 30, 30, 0) 100%);
    opacity: 0;
}
.strate-accordion .accordion .panel {
    box-sizing: border-box;
}
@media (max-width: 991px) {
    .strate-accordion .accordion {
        gap: 2.5rem;
        grid-column: 1/-1;
    }
    .strate-accordion .accordion summary {
        font-size: 3rem;
        line-height: 3rem;
        padding: 2.5rem 2rem 1.5rem;
    }
    .strate-accordion .accordion summary svg {
        margin-left: 3rem;
        margin-top: -0.8rem;
    }
    .strate-accordion .rte p {
        margin-bottom: 1rem;
    }
    .strate-accordion h3 {
        margin-top: 4.6rem;
    }
    .strate-accordion .cards {
        gap: 2rem;
        grid-template-columns: 1fr 1fr;
    }
    .strate-accordion .panel {
        padding: 3rem 3rem;
    }
}
@media (min-width: 992px) {
    .strate-accordion .accordion {
        gap: 2.5rem;
        grid-column: 1/-1;
    }
    .strate-accordion .accordion details[open] summary:after {
        background: radial-gradient(155% 284% at 0% 304%, var(--color) 0%, rgba(30, 30, 30, 0) 100%);
    }
    .strate-accordion .accordion details[open]:hover summary:after {
        opacity: 1;
    }
    .strate-accordion .accordion details[open]:hover svg {
        translate: -30px;
    }
    .strate-accordion .accordion details:not([open]):hover summary {
        color: #fff;
    }
    .strate-accordion .accordion details:not([open]):hover summary:before {
        opacity: 0;
    }
    .strate-accordion .accordion details:not([open]):hover summary:after {
        opacity: 1;
    }
    .strate-accordion .accordion details:not([open]):hover summary svg {
        translate: -40px;
        rotate: -90deg;
    }
    .strate-accordion .accordion summary {
        font-size: 4.8rem;
        line-height: 5.2rem;
        padding: 4.2rem 3rem 2.6rem;
    }
    .strate-accordion .accordion summary svg {
        margin-left: 3rem;
        margin-top: -1rem;
    }
    .strate-accordion .panel {
        padding: 6rem 6rem;
    }
    .strate-accordion h3 {
        margin-bottom: 2rem;
    }
    .strate-accordion .text {
        gap: 4rem;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 3rem;
    }
    .strate-accordion .cards {
        gap: 2.8rem;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    .strate-accordion p {
        margin-bottom: 1rem;
    }
}
@media (min-width: 1300px) {
    .strate-accordion .accordion {
        grid-column: 2/-2;
    }
    .strate-accordion .panel {
        padding: 6rem 14rem;
    }
}

[data-mode=lightmode] .strate-accordion {
    /* summary {
        &:before {
            background: radial-gradient(94% 250% at 27% 120%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.00) 100%);
            opacity: 1;
        }

        &:after {
            // background: radial-gradient(155% 284% at 0% 304%, var(--color) 0%, rgba(30, 30, 30, 0) 100%);
            background: radial-gradient(155% 284% at 5.47% 204%, var(--color) 0%, rgba(30, 30, 30, 0.0) 100%);
            opacity: 0;
        }
    }*/
}
[data-mode=lightmode] .strate-accordion details[open] summary {
    color: #fff;
}
[data-mode=lightmode] .strate-accordion details[open] summary:before {
    background: linear-gradient(5deg, #EC6360 5%, var(--color) 100%);
    opacity: 1;
}
[data-mode=lightmode] .strate-accordion details[open] summary:after {
    display: none;
}

.strate-citation blockquote {
    font-size: 7.6rem;
    font-weight: 700;
    line-height: 7.63rem;
}
.strate-citation blockquote:before {
    content: "“";
    font-weight: 700;
    color: var(--color);
    display: block;
    line-height: 0;
    margin-top: 80px;
}
.strate-citation figcaption {
    margin-top: 5rem;
    display: grid;
    gap: 1rem;
    font-size: 2.4rem;
}
.strate-citation .name {
    color: var(--color);
    font-weight: 700;
}
.strate-citation .function {
    color: var(--color);
}
.strate-citation.big blockquote {
    font-size: 9.6rem;
    line-height: 10.46rem;
}
@media (max-width: 991px) {
    .strate-citation figure {
        grid-column: 1/-1;
    }
    .strate-citation figure blockquote p {
        font-size: 3.2rem;
        line-height: 109%;
    }
    .strate-citation figure blockquote:before {
        font-size: 9.4rem;
    }
    .strate-citation figure figcaption {
        font-size: 2rem;
    }
}
@media (min-width: 992px) {
    .strate-citation figure {
        grid-column: 2/-2;
    }
    .strate-citation figcaption {
        text-align: right;
        margin-top: 5.8rem;
    }
    .strate-citation blockquote:before {
        content: "“";
        font-size: 18.4rem;
        margin-bottom: 3rem;
    }
}
@media (min-width: 1882px) {
    .strate-citation figure {
        grid-column: 3/-3;
    }
}

.strate-highlight_col h2 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.88rem;
    grid-column: 3/6;
}
.strate-highlight_col .chapo {
    color: var(--color);
}
.strate-highlight_col h4 {
    color: var(--color);
}
@media (max-width: 991px) {
    .strate-highlight_col h2 {
        padding-top: 3.5rem;
        border-top: 1px solid var(--color-gray-20);
        grid-column: 1/-1;
        margin-bottom: 3.5rem;
    }
    .strate-highlight_col .text {
        grid-column: 1/-1;
    }
}
@media (min-width: 992px) {
    .strate-highlight_col .container:before {
        content: "";
        border-top: 1px solid var(--color-gray-20);
        width: 100%;
        height: 0;
        display: block;
        grid-column: 3/-3;
        margin-bottom: 5.2rem;
    }
    .strate-highlight_col .rte p {
        margin-bottom: 1.4rem;
    }
    .strate-highlight_col .rte .chapo {
        line-height: 3.6rem;
    }
    .strate-highlight_col h2 {
        grid-column: 3/6;
    }
    .strate-highlight_col .text {
        grid-column: 7/-3;
    }
}

.strate-image_multi .strate-content {
    display: flex;
    gap: 3rem;
}
.strate-image_multi li {
    flex: 1;
}
.strate-image_multi img {
    width: 100%;
    height: auto;
}
.strate-image_multi figcaption {
    margin-top: 2rem;
    font-style: italic;
    line-height: 2.5rem;
}
@media (max-width: 991px) {
    .strate-image_multi .strate-content {
        flex-direction: column;
        grid-column: 1/-1;
    }
}
@media (min-width: 992px) {
    .strate-image_multi .strate-content {
        grid-column: 2/-2;
    }
}

.strate-image_text .wrapper {
    grid-column: 2/-2;
    display: grid;
}
.strate-image_text header {
    margin-bottom: 3.2rem;
}
.strate-image_text img {
    width: 100%;
    height: auto;
}
@media (max-width: 991px) {
    .strate-image_text .wrapper {
        grid-column: 1/-1;
    }
    .strate-image_text img {
        margin-bottom: 4rem;
        border-radius: 1rem;
    }
}
@media (min-width: 992px) {
    .strate-image_text .wrapper {
        grid-column: 1/-1;
        grid-template-columns: 1fr 1.8fr;
        gap: 5.8rem;
        align-items: center;
    }
    .strate-image_text .chapo {
        margin-bottom: 2.5rem;
    }
    .strate-image_text img {
        border-radius: 2rem;
    }
    .strate-image_text.reverse .wrapper {
        grid-template-columns: 1.8fr 1fr;
    }
    .strate-image_text.reverse .strate-content {
        grid-column: 1;
        grid-row: 1;
    }
    .strate-image_text.reverse img {
        grid-column: 2;
        grid-row: 1;
    }
}
@media (min-width: 1882px) {
    .strate-image_text .wrapper {
        grid-column: 2/-2;
        grid-template-columns: 1.24045fr 1fr;
        gap: 10.8rem;
    }
    .strate-image_text.reverse .wrapper {
        grid-template-columns: 1fr 1.24045fr;
    }
}

@media (max-width: 991px) {
    .strate-keynumbers .container {
        display: block;
    }
}
.strate-keynumbers .strate-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.2rem;
    grid-column: 1/-1;
    justify-content: center;
}
.strate-keynumbers .strate-content .rte p {
    line-height: 160%;
}
.strate-keynumbers .strate-content .rte .chapo {
    line-height: 150%;
}
.strate-keynumbers .strate-content .rte p .chapo {
    line-height: 150%;
}
@media (max-width: 991px) {
    .strate-keynumbers .strate-content {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (min-width: 992px) {
    .strate-keynumbers .strate-content.grid-1 {
        grid-template-columns: 1fr;
    }
    .strate-keynumbers .strate-content.grid-2 {
        grid-template-columns: repeat(2, 25%);
    }
    .strate-keynumbers .strate-content.grid-3 {
        grid-template-columns: repeat(3, 25%);
    }
}
@media (min-width: 1882px) {
    .strate-keynumbers .strate-content {
        grid-column: 2/-2;
    }
}
.strate-keynumbers .value {
    font-family: var(--font-2);
    font-weight: 400;
    font-size: 12.6rem;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: var(--color);
    letter-spacing: 0.063rem;
    line-height: 9rem;
}
@media (max-width: 991px) {
    .strate-keynumbers .value {
        font-size: 11rem;
    }
}
@media (min-width: 992px) {
    .strate-keynumbers .value {
        font-size: 6.6rem;
    }
    .strate-keynumbers .value .unit {
        font-size: 6rem;
    }
}
@media (min-width: 1300px) {
    .strate-keynumbers .value {
        font-size: 12.6rem;
    }
}
.strate-keynumbers .unit {
    font-size: 8rem;
    letter-spacing: 0.04rem;
}
.strate-keynumbers .card-keynumber {
    border-radius: 2rem;
    padding: 12rem 2.5rem;
    text-align: center;
    box-sizing: border-box;
}
@media (max-width: 991px) {
    .strate-keynumbers .card-keynumber {
        border-radius: 10px;
    }
}
@media (min-width: 992px) {
    .strate-keynumbers .card-keynumber {
        padding: 4rem 2rem;
    }
}
@media (min-width: 1300px) {
    .strate-keynumbers .card-keynumber {
        padding: 12rem 4.4rem;
    }
}
@media (max-width: 991px) {
    .strate-keynumbers .rte {
        font-size: 1.6rem;
    }
    .strate-keynumbers .rte strong {
        font-size: 2rem;
    }
}

[data-mode=darkmode] .strate-keynumbers .card-keynumber {
    background: #262626;
}

@media (max-width: 991px) {
    .strate-picto_text .container {
        display: block;
    }
}
.strate-picto_text .strate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    grid-column: 1/-1;
}
@media (min-width: 992px) {
    .strate-picto_text .strate-content {
        grid-column: 2/-2;
    }
}
@media (min-width: 1882px) {
    .strate-picto_text .strate-content {
        grid-column: 3/-3;
    }
}
@media (max-width: 991px) {
    .strate-picto_text .strate-content {
        display: block;
    }
    .strate-picto_text .strate-content .rte p {
        margin-bottom: 3.6rem;
    }
}
.strate-picto_text img {
    margin-bottom: 3.7rem;
    width: 6.2rem;
    height: auto;
}
.strate-picto_text li {
    padding-left: 3rem;
    border-left: 1px solid var(--color-4);
}
@media (min-width: 992px) {
    .strate-picto_text .rte p {
        margin-bottom: 1.6rem;
    }
}

.strate-push_more_content {
    border-top: 1px solid var(--color-gray-20);
    display: grid;
    background-color: #3b60c9;
    color: #fff;
}
.strate-push_more_content:before, .strate-push_more_content:after {
    content: "";
    grid-area: 1/1;
    transition: opacity 0.4s ease;
}
.strate-push_more_content:before {
    background: radial-gradient(80% 117% at -10% 8%, var(--color) 0%, rgba(30, 30, 30, 0) 100%);
    z-index: 1;
    opacity: 1;
}
.strate-push_more_content:after {
    z-index: 2;
    opacity: 0;
}
.strate-push_more_content h2 {
    font-weight: 700;
    font-family: var(--font-2);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.strate-push_more_content .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
    grid-area: 1/1;
    z-index: 3;
}
.strate-push_more_content .label {
    font-weight: 700;
}
.strate-push_more_content .cta {
    margin-top: 3rem;
}
@media (max-width: 991px) {
    .strate-push_more_content .strate-content {
        grid-column: 1/-1;
    }
    .strate-push_more_content .label {
        font-size: 2rem;
        line-height: 3rem;
        grid-column: 1/-1;
        margin-bottom: 2rem;
        padding-right: 30%;
    }
    .strate-push_more_content h2 {
        font-size: 3.6rem;
        line-height: 3.96rem;
    }
}
@media (min-width: 992px) {
    .strate-push_more_content .strate-content {
        grid-column: 5/-4;
    }
    .strate-push_more_content .label {
        font-size: 2.4rem;
        line-height: 3.6rem;
        grid-column: 2/4;
    }
    .strate-push_more_content h2 {
        font-size: 4.8rem;
        line-height: 5.28rem;
    }
}

[data-mode=darkmode] .strate-push_more_content {
    background-color: rgba(0, 0, 0, 0);
}
[data-mode=darkmode] .strate-push_more_content:before {
    background: radial-gradient(80% 327% at 25% 258%, var(--color) 0%, rgba(30, 30, 30, 0) 100%);
}
[data-mode=darkmode] .strate-push_more_content:after {
    background: radial-gradient(60% 383% at 30% 154%, var(--color) 0%, rgba(30, 30, 30, 0) 100%);
}
[data-mode=darkmode] .strate-push_more_content:hover:before {
    opacity: 0;
}
[data-mode=darkmode] .strate-push_more_content:hover:after {
    opacity: 1;
}

.strate-team header {
    margin-bottom: 3.4rem;
    grid-column: 3/-3;
}
.strate-team header .text {
    margin-top: 3.5rem;
}
.strate-team .strate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
    .strate-team .strate-content {
        grid-column: 1/-1;
    }
    .strate-team img {
        width: 10.2rem;
        height: 10.2rem;
    }
    .strate-team .strate-content {
        gap: 3rem;
    }
}
@media (min-width: 992px) {
    .strate-team .strate-content {
        grid-column: 3/-3;
        gap: 3rem 6rem;
    }
}
.strate-team .card-team {
    display: grid;
}
.strate-team .card-team img {
    border-radius: 50%;
}
@media (max-width: 991px) {
    .strate-team .card-team {
        gap: 1rem;
    }
    .strate-team .card-team h3 {
        font-size: 2rem;
        line-height: 3rem;
        margin-bottom: 1rem;
    }
}
@media (min-width: 992px) {
    .strate-team .card-team {
        grid-template-columns: 13rem 1fr;
        align-items: center;
        gap: 3rem;
    }
    .strate-team .card-team h3 {
        font-size: 2.4rem;
        line-height: 2.6rem;
        margin-bottom: 1.4rem;
    }
}

.strate-text_2_col header {
    margin-bottom: 3.2rem;
}
.strate-text_2_col .strate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.4rem;
}
.strate-text_2_col .rte ul li:before {
    background: var(--color);
}
@media (max-width: 768px) {
    .strate-text_2_col .container {
        display: block;
    }
    .strate-text_2_col .strate-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .strate-text_2_col .rte p {
        margin-bottom: 2.2rem;
    }
    .strate-text_2_col .rte ul li {
        margin-bottom: 2.2rem;
    }
}
@media (min-width: 769px) {
    .strate-text_2_col header {
        grid-column: 1/-1;
    }
    .strate-text_2_col .strate-content {
        grid-column: 1/-1;
    }
}
@media (min-width: 1300px) {
    .strate-text_2_col header {
        grid-column: 3/-3;
    }
    .strate-text_2_col .strate-content {
        grid-column: 3/-3;
    }
}

@media (max-width: 991px) {
    .strate-text .container {
        display: block;
    }
}
.strate-text header {
    margin-bottom: 3.4rem;
    grid-column: 1/-1;
}
@media (min-width: 992px) {
    .strate-text header {
        grid-column: 2/-2;
    }
}
@media (min-width: 1882px) {
    .strate-text header {
        grid-column: 3/-3;
    }
}
.strate-text .text {
    grid-column: 1/-1;
}
@media (min-width: 992px) {
    .strate-text .text {
        grid-column: 2/-2;
    }
}
@media (min-width: 1882px) {
    .strate-text .text {
        grid-column: 3/-3;
    }
}
@media (max-width: 991px) {
    .strate-text .text .rte p {
        margin-bottom: 3rem;
    }
}

.gradient-1 {
    --color-start: var(--color-1);
    --color-end: var(--color-0);
}

.gradient-2 {
    --color-start: var(--color-0);
    --color-end: var(--color-3);
}

.gradient-3 {
    --color-start: var(--color-3);
    --color-end: var(--color-5);
}

.gradient-8 {
    --color-start: var(--color-1);
    --color-end: var(--color-2);
}

.gradient-9 {
    --color-start: var(--color-2);
    --color-end: var(--color-4);
}

.gradient-10 {
    --color-start: var(--color-4);
    --color-end: var(--color-5);
}

.strate-values_creation .sidebar {
    --color: var(--color-5);
}
.strate-values_creation .sidebar .cards {
    display: grid;
}
.strate-values_creation .sidebar h2 {
    color: var(--color);
}
.strate-values_creation .sidebar img {
    margin-bottom: 2.4rem;
    opacity: 0;
}
.strate-values_creation .accordion {
    gap: 0.8rem;
}
.strate-values_creation .accordion .cards {
    display: grid;
}
.strate-values_creation .accordion details summary {
    padding: 0;
    border-radius: 0;
    background: none;
    border: none;
    transition: background 0.3s ease;
    color: #fff;
    display: grid;
    justify-content: stretch;
}
.strate-values_creation .accordion details summary h2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.strate-values_creation .accordion details summary .wrapper {
    grid-area: 1/1;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 2.2rem 3rem 1rem;
    margin-bottom: 2.4rem;
}
.strate-values_creation .accordion details summary .bg {
    stroke: var(--color-gray-35);
    grid-area: 1/1;
    height: 100%;
    width: 100%;
}
.strate-values_creation .accordion details summary .bg-gradient {
    opacity: 0.6;
}
.strate-values_creation .accordion details summary stop {
    transition: all 0.3s ease;
}
.strate-values_creation .accordion details .content {
    padding-top: 0.8rem;
}
.strate-values_creation .accordion details:hover summary .bg-gradient {
    opacity: 1;
}
.strate-values_creation .accordion details[open] summary {
    color: var(--color);
}
.strate-values_creation .accordion details[open] summary stop {
    stop-color: #fff !important;
}
.strate-values_creation .accordion details[open] summary h2 {
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    background: linear-gradient(93deg, var(--color-start) 2%, var(--color-end) 97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.strate-values_creation .accordion details[open] summary .icon {
    stroke: var(--color-red);
}
.strate-values_creation .accordion details[open] summary .bg-gradient {
    opacity: 1;
}
@media (max-width: 1881px) {
    .strate-values_creation .accordion .panel {
        border-radius: 1rem;
        padding: 6rem 6rem;
    }
    .strate-values_creation .accordion details[open] summary {
        border-radius: 1rem;
    }
}
@media (min-width: 1882px) {
    .strate-values_creation .accordion .panel {
        border-radius: 2rem;
    }
}
.strate-values_creation picture {
    background-color: var(--color);
    -webkit-mask: var(--src);
    -webkit-mask-repeat: no-repeat;
    mask: var(--src);
    mask-repeat: no-repeat;
}
.strate-values_creation .card-desc h3 {
    color: var(--color);
    margin-bottom: 0.6rem;
}
.strate-values_creation .card-desc img {
    margin-bottom: 2.4rem;
    opacity: 0;
}
.strate-values_creation .card-desc .rte p {
    margin-bottom: 0.8rem;
}
.strate-values_creation .card-desc .rte ul li:not(:last-child), .strate-values_creation .card-desc .rte ol li:not(:last-child) {
    margin-bottom: 0.8rem;
}
@media (max-width: 991px) {
    .strate-values_creation .card-desc {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
    }
}
@media (max-width: 991px) {
    .strate-values_creation .container {
        grid-row-gap: 0;
    }
    .strate-values_creation .strate-content {
        grid-column: 1/-1;
    }
    .strate-values_creation .text {
        grid-column: 1/-1;
        margin-top: 4rem;
    }
    .strate-values_creation .sidebar {
        margin-top: 4rem;
        grid-column: 1/-1;
        border-top: var(--color) 1px solid;
        padding-top: 3rem;
    }
    .strate-values_creation .sidebar h2 {
        margin-bottom: 2rem;
    }
    .strate-values_creation .sidebar .cards {
        gap: 2rem;
    }
    .strate-values_creation .sidebar li {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 2rem;
    }
    .strate-values_creation .accordion .cards {
        gap: 3rem;
    }
}
@media (min-width: 992px) {
    .strate-values_creation .container {
        grid-row-gap: 0;
    }
    .strate-values_creation .strate-content {
        grid-column: 2/9;
        grid-row: 1;
    }
    .strate-values_creation .sidebar {
        grid-column: 9/-2;
        grid-row: 1/4;
        border-left: var(--color) 1px solid;
        padding-left: 3rem;
        margin-left: 3rem;
        align-self: start;
    }
    .strate-values_creation .sidebar h2 {
        margin-top: -0.6rem;
        margin-bottom: 3.8rem;
        line-height: 3.2rem;
    }
    .strate-values_creation .sidebar .cards {
        gap: 4rem;
    }
    .strate-values_creation .text {
        grid-column: 2/9;
        grid-row: 2;
        margin-top: 7rem;
    }
    .strate-values_creation .accordion .cards {
        grid-template-columns: 1fr 1fr;
        gap: 6rem 8rem;
    }
}
@media (min-width: 1882px) {
    .strate-values_creation .accordion .cards {
        gap: 6rem 13rem;
    }
}

@media (max-width: 991px) {
    .strate-video .container {
        display: block;
    }
}
.strate-video .video {
    display: grid;
    margin-bottom: 2.7rem;
    grid-column: 1/-1;
}
@media (min-width: 992px) {
    .strate-video .video {
        grid-column: 2/-2;
    }
}
@media (min-width: 1882px) {
    .strate-video .video {
        grid-column: 3/-3;
    }
}
.strate-video .video iframe {
    grid-area: 1/1;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease 0.3s;
    pointer-events: none;
    object-fit: center;
}
.strate-video .video iframe.show {
    opacity: 1;
    pointer-events: initial;
}
.strate-video .video .placeholder {
    grid-area: 1/1;
    display: grid;
    place-items: center;
    z-index: 0;
    cursor: pointer;
}
.strate-video .video .placeholder .btn-placeholder {
    width: 8.9rem;
    height: 8.9rem;
    border: 2px solid #fff;
    border-radius: 50%;
    grid-area: 1/1;
}
.strate-video .video .placeholder img {
    width: 100%;
    height: auto;
    grid-area: 1/1;
}
.strate-video .transcription {
    grid-column: 1/-1;
}
@media (min-width: 992px) {
    .strate-video .transcription {
        grid-column: 2/-2;
    }
}
@media (min-width: 1882px) {
    .strate-video .transcription {
        grid-column: 3/-3;
    }
}
.strate-video .transcription .btn-transcription[aria-expanded=true] {
    display: none;
}
.strate-video .transcription .btn-transcription[aria-expanded=true] + .transcription-text {
    display: block;
}
.strate-video .transcription .transcription-text {
    display: none;
}
@media (max-width: 991px) {
    .strate-video .transcription .transcription-text p {
        margin-bottom: 2.7rem;
    }
}

.page-404 {
    height: calc(100vh - var(--header-height) - var(--footer-height));
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
}

/*# sourceMappingURL=app.css.map*/