/* Style rapide globale*/

#header {
    display: none;
}

#footer {
    display: none;
}

p {
    font-weight: 300 !important;
    color: #222 !important;
}

body,
#content {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 12px;
    /*background: transparent linear-gradient(180deg, #FEE2D7 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;*/
    background-image: linear-gradient(to top, rgba(201, 237, 237, 0), rgba(201, 237, 237, 1));
}

i {
    font-style: italic !important;
}

legend {
    font-weight: normal !important;
    font-size: 12px !important;
}

/* Centrage et marges automatiques pour un conteneur principal, évitant les bords de l'écran */
.container {
    max-width: 1440px !important;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.switch-on button {
    background-color: #e5432c;
    color: white;
}

.switch-off button {
    background-color: transparent;
    color: #e5432c;
    border: 1px solid #e5432c;
}

.switch-off button:hover,
.switch-on button:hover {
    color: white !important;
}


.container-small {
    max-width: 1220px !important;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    margin: auto;
    margin-top: 38px;
}

/* --- Navigation --- */
/* Centrage des éléments dans la navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Typography --- */
/* Forçage du poids des titres et textes en gras pour être plus lisibles */
h1,
h1 span,
b {
    font-weight: bolder;
}

h2 {
    font-size: 36px !important;
    margin: 20px 0 !important;
}

p,
li,
a {
    font-size: 18px !important;
    line-height: normal;
}

h3 {
    font-size: 24px !important;
    margin-bottom: 1rem !important;
}

h4 {
    font-size: 20px !important;
    margin-bottom: 1rem !important;
}

h1,
h2,
h3,
b,
strong,
h4 {
    color: #222 !important;
    font-weight: 700 !important;
    font-family: 'Poppins', 'Poppins Fallback', sans-serif !important;
}

li {
    margin-bottom: 0 !important;
}

.card p {
    font-size: 18px;
    margin-bottom: 30px;
}

.font-size-12 {
    font-size: 12px !important;
}

.font-size-14 {
    font-size: 14px !important;
}

.font-size-16 {
    font-size: 16px !important;
}

.font-size-18 {
    font-size: 18px !important;
}

.font-size-20 {
    font-size: 20px !important;
}

.font-size-24 {
    font-size: 24px !important;
}


/* --- Utility Classes --- */
/* Classes de flexbox utilitaires pour différents alignements et directions */
.d-flex {
    display: flex;
    flex-wrap: nowrap;
    width: 100% !important;
    /* Empêche le retour à la ligne */
}


.flex-between {
    justify-content: space-between;
}

.flex-around {
    justify-content: space-around;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

/* Classes pour gérer la taille des éléments en flex */
.w-full {
    width: 100%;
    box-sizing: border-box;
}

.h-full {
    height: 100%;
}

.w-auto {
    width: auto;
}

.h-auto {
    height: auto;
}

/* --- Margin and Padding Utilities --- */
.m-auto {
    margin: auto;
}

.p-0 {
    padding: 0;
}

.m-0 {
    margin: 0;
}

.px-1 {
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.py-1 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.m-0 {
    margin: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.m-auto {
    margin: auto !important
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
}

.mx-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
}

.mx-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
}

.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
}

.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important
}

.mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
}

.my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mt-auto {
    margin-top: auto !important
}

.me-0 {
    margin-right: 0 !important
}

.me-1 {
    margin-right: .25rem !important
}

.me-2 {
    margin-right: .5rem !important
}

.me-3 {
    margin-right: 1rem !important
}

.me-4 {
    margin-right: 1.5rem !important
}

.me-5 {
    margin-right: 3rem !important
}

.me-auto {
    margin-right: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.mb-auto {
    margin-bottom: auto !important
}

.ms-0 {
    margin-left: 0 !important
}

.ms-1 {
    margin-left: .25rem !important
}

.ms-2 {
    margin-left: .5rem !important
}

.ms-3 {
    margin-left: 1rem !important
}

.ms-4 {
    margin-left: 1.5rem !important
}

.ms-5 {
    margin-left: 3rem !important
}

.ms-auto {
    margin-left: auto !important
}

.block-flap .paragraph--pg-relay-3 .col-12,
.block-flap .paragraph--pg-relay-3 .col-lg-4.bundle--name-pg-testimony .col-lg-4,
.block-flap .paragraph--pg-relay-3 .col-lg-4.bundle--name-pg-testimony .col-lg-8,
.block-flap .paragraph--pg-relay-3 .col-lg-6.bundle--name-pg-testimony .col-lg-4,
.block-flap .paragraph--pg-relay-3 .col-lg-6.bundle--name-pg-testimony .col-lg-8,
.col-lg-4.bundle--name-pg-testimony .block-flap .paragraph--pg-relay-3 .col-lg-4,
.col-lg-4.bundle--name-pg-testimony .block-flap .paragraph--pg-relay-3 .col-lg-8,
.col-lg-4.bundle--name-pg-testimony .pl-lg-6,
.col-lg-4.bundle--name-pg-testimony .pr-lg-6,
.col-lg-6.bundle--name-pg-testimony .block-flap .paragraph--pg-relay-3 .col-lg-4,
.col-lg-6.bundle--name-pg-testimony .block-flap .paragraph--pg-relay-3 .col-lg-8,
.col-lg-6.bundle--name-pg-testimony .pl-lg-6,
.col-lg-6.bundle--name-pg-testimony .pr-lg-6,
.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.px-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
}

.px-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
}

.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pe-0 {
    padding-right: 0 !important
}

.pe-1 {
    padding-right: .25rem !important
}

.pe-2 {
    padding-right: .5rem !important
}

.pe-3 {
    padding-right: 1rem !important
}

.pe-4 {
    padding-right: 1.5rem !important
}

.pe-5 {
    padding-right: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}

.ps-0 {
    padding-left: 0 !important
}

.ps-1 {
    padding-left: .25rem !important
}

.ps-2 {
    padding-left: .5rem !important
}

.ps-3 {
    padding-left: 1rem !important
}

.ps-4 {
    padding-left: 1.5rem !important
}

.ps-5 {
    padding-left: 3rem !important
}

.gap-0 {
    gap: 0 !important
}

.gap-1 {
    gap: .25rem !important
}

.gap-2 {
    gap: .5rem !important
}

.gap-3 {
    gap: 1rem !important
}

.gap-4 {
    gap: 1.5rem !important
}

.gap-5 {
    gap: 3rem !important
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem
}

@media (min-width: 576px) {
    .col-sm {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%
    }

    .row-cols-sm-1 > *,
    .row-cols-sm-auto > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1 > * {
        width: 100%
    }

    .row-cols-sm-2 > *,
    .row-cols-sm-3 > *,
    .row-cols-sm-4 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3 > *,
    .row-cols-sm-4 > * {
        width: 33.33333333%
    }

    .row-cols-sm-4 > * {
        width: 25%
    }

    .col-sm-1,
    .col-sm-auto,
    .row-cols-sm-5 > *,
    .row-cols-sm-6 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%
    }

    .col-sm-1,
    .col-sm-auto,
    .row-cols-sm-6 > * {
        width: 16.66666667%
    }

    .col-sm-1,
    .col-sm-auto {
        width: auto
    }

    .col-sm-1 {
        width: 8.33333333%
    }

    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7 {
        width: 25%
    }

    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7 {
        width: 33.33333333%
    }

    .col-sm-5,
    .col-sm-6,
    .col-sm-7 {
        width: 41.66666667%
    }

    .col-sm-6,
    .col-sm-7 {
        width: 50%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-8,
    .col-sm-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-9 {
        width: 75%
    }

    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        width: 83.33333333%
    }

    .col-sm-11,
    .col-sm-12 {
        width: 91.66666667%
    }

    .col-sm-12 {
        width: 100%
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333333%
    }

    .offset-sm-2 {
        margin-left: 16.66666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333333%
    }

    .offset-sm-5 {
        margin-left: 41.66666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333333%
    }

    .offset-sm-8 {
        margin-left: 66.66666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333333%
    }

    .offset-sm-11 {
        margin-left: 91.66666667%
    }

    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0
    }

    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0
    }

    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 768px) {
    .col-md {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%
    }

    .row-cols-md-1 > *,
    .row-cols-md-auto > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1 > * {
        width: 100%
    }

    .row-cols-md-2 > *,
    .row-cols-md-3 > *,
    .row-cols-md-4 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3 > *,
    .row-cols-md-4 > * {
        width: 33.33333333%
    }

    .row-cols-md-4 > * {
        width: 25%
    }

    .col-md-1,
    .col-md-auto,
    .row-cols-md-5 > *,
    .row-cols-md-6 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%
    }

    .col-md-1,
    .col-md-auto,
    .row-cols-md-6 > * {
        width: 16.66666667%
    }

    .col-md-1,
    .col-md-auto {
        width: auto
    }

    .col-md-1 {
        width: 8.33333333%
    }

    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7 {
        width: 25%
    }

    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7 {
        width: 33.33333333%
    }

    .col-md-5,
    .col-md-6,
    .col-md-7 {
        width: 41.66666667%
    }

    .col-md-6,
    .col-md-7 {
        width: 50%
    }

    .col-md-7 {
        width: 58.33333333%
    }

    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-8,
    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-9 {
        width: 75%
    }

    .col-md-10,
    .col-md-11,
    .col-md-12 {
        width: 83.33333333%
    }

    .col-md-11,
    .col-md-12 {
        width: 91.66666667%
    }

    .col-md-12 {
        width: 100%
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333333%
    }

    .offset-md-2 {
        margin-left: 16.66666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333333%
    }

    .offset-md-5 {
        margin-left: 41.66666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333333%
    }

    .offset-md-8 {
        margin-left: 66.66666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333333%
    }

    .offset-md-11 {
        margin-left: 91.66666667%
    }

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 992px) {
    .col-lg {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%
    }

    .row-cols-lg-1 > *,
    .row-cols-lg-auto > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1 > * {
        width: 100%
    }

    .row-cols-lg-2 > *,
    .row-cols-lg-3 > *,
    .row-cols-lg-4 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3 > *,
    .row-cols-lg-4 > * {
        width: 33.33333333%
    }

    .row-cols-lg-4 > * {
        width: 25%
    }

    .col-lg-1,
    .col-lg-auto,
    .row-cols-lg-5 > *,
    .row-cols-lg-6 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%
    }

    .col-lg-1,
    .col-lg-auto,
    .row-cols-lg-6 > * {
        width: 16.66666667%
    }

    .col-lg-1,
    .col-lg-auto {
        width: auto
    }

    .col-lg-1 {
        width: 8.33333333%
    }

    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7 {
        width: 25%
    }

    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7 {
        width: 33.33333333%
    }

    .col-lg-5,
    .col-lg-6,
    .col-lg-7 {
        width: 41.66666667%
    }

    .col-lg-6,
    .col-lg-7 {
        width: 50%
    }

    .col-lg-7 {
        width: 58.33333333%
    }

    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-8,
    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-9 {
        width: 75%
    }

    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        width: 83.33333333%
    }

    .col-lg-11,
    .col-lg-12 {
        width: 91.66666667%
    }

    .col-lg-12 {
        width: 100%
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333333%
    }

    .offset-lg-2 {
        margin-left: 16.66666667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333333%
    }

    .offset-lg-5 {
        margin-left: 41.66666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333333%
    }

    .offset-lg-8 {
        margin-left: 66.66666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333333%
    }

    .offset-lg-11 {
        margin-left: 91.66666667%
    }

    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0
    }

    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0
    }

    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem
    }

    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem
    }

    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem
    }

    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%
    }

    .row-cols-xl-1 > *,
    .row-cols-xl-auto > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1 > * {
        width: 100%
    }

    .row-cols-xl-2 > *,
    .row-cols-xl-3 > *,
    .row-cols-xl-4 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3 > *,
    .row-cols-xl-4 > * {
        width: 33.33333333%
    }

    .row-cols-xl-4 > * {
        width: 25%
    }

    .col-xl-1,
    .col-xl-auto,
    .row-cols-xl-5 > *,
    .row-cols-xl-6 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%
    }

    .col-xl-1,
    .col-xl-auto,
    .row-cols-xl-6 > * {
        width: 16.66666667%
    }

    .col-xl-1,
    .col-xl-auto {
        width: auto
    }

    .col-xl-1 {
        width: 8.33333333%
    }

    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7 {
        width: 25%
    }

    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7 {
        width: 33.33333333%
    }

    .col-xl-5,
    .col-xl-6,
    .col-xl-7 {
        width: 41.66666667%
    }

    .col-xl-6,
    .col-xl-7 {
        width: 50%
    }

    .col-xl-7 {
        width: 58.33333333%
    }

    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl-8,
    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl-9 {
        width: 75%
    }

    .col-xl-10,
    .col-xl-11,
    .col-xl-12 {
        width: 83.33333333%
    }

    .col-xl-11,
    .col-xl-12 {
        width: 91.66666667%
    }

    .col-xl-12 {
        width: 100%
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333333%
    }

    .offset-xl-2 {
        margin-left: 16.66666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333333%
    }

    .offset-xl-5 {
        margin-left: 41.66666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333333%
    }

    .offset-xl-8 {
        margin-left: 66.66666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333333%
    }

    .offset-xl-11 {
        margin-left: 91.66666667%
    }

    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0
    }

    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0
    }

    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%
    }

    .row-cols-xxl-1 > *,
    .row-cols-xxl-2 > *,
    .row-cols-xxl-auto > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxl-1 > *,
    .row-cols-xxl-2 > * {
        width: 100%
    }

    .row-cols-xxl-2 > * {
        width: 50%
    }

    .row-cols-xxl-3 > *,
    .row-cols-xxl-4 > *,
    .row-cols-xxl-5 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-xxl-4 > *,
    .row-cols-xxl-5 > * {
        width: 25%
    }

    .row-cols-xxl-5 > * {
        width: 20%
    }

    .col-xxl-1,
    .col-xxl-2,
    .col-xxl-auto,
    .row-cols-xxl-6 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-1,
    .col-xxl-2,
    .col-xxl-auto {
        width: auto
    }

    .col-xxl-1,
    .col-xxl-2 {
        width: 8.33333333%
    }

    .col-xxl-2 {
        width: 16.66666667%
    }

    .col-xxl-3,
    .col-xxl-4,
    .col-xxl-5,
    .col-xxl-6,
    .col-xxl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4,
    .col-xxl-5,
    .col-xxl-6,
    .col-xxl-7 {
        width: 33.33333333%
    }

    .col-xxl-5,
    .col-xxl-6,
    .col-xxl-7 {
        width: 41.66666667%
    }

    .col-xxl-6,
    .col-xxl-7 {
        width: 50%
    }

    .col-xxl-7 {
        width: 58.33333333%
    }

    .col-xxl-10,
    .col-xxl-11,
    .col-xxl-12,
    .col-xxl-8,
    .col-xxl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxl-10,
    .col-xxl-11,
    .col-xxl-12,
    .col-xxl-9 {
        width: 75%
    }

    .col-xxl-10,
    .col-xxl-11,
    .col-xxl-12 {
        width: 83.33333333%
    }

    .col-xxl-11,
    .col-xxl-12 {
        width: 91.66666667%
    }

    .col-xxl-12 {
        width: 100%
    }

    .offset-xxl-0 {
        margin-left: 0
    }

    .offset-xxl-1 {
        margin-left: 8.33333333%
    }

    .offset-xxl-2 {
        margin-left: 16.66666667%
    }

    .offset-xxl-3 {
        margin-left: 25%
    }

    .offset-xxl-4 {
        margin-left: 33.33333333%
    }

    .offset-xxl-5 {
        margin-left: 41.66666667%
    }

    .offset-xxl-6 {
        margin-left: 50%
    }

    .offset-xxl-7 {
        margin-left: 58.33333333%
    }

    .offset-xxl-8 {
        margin-left: 66.66666667%
    }

    .offset-xxl-9 {
        margin-left: 75%
    }

    .offset-xxl-10 {
        margin-left: 83.33333333%
    }

    .offset-xxl-11 {
        margin-left: 91.66666667%
    }

    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0
    }

    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0
    }

    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem
    }
}

/* Centrage horizontal et vertical avec des marges automatiques */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

/* --- Text Alignment --- */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* --- Flex Direction Utilities --- */
.flex-column {
    flex-direction: column;
}

/* --- Custom Colors --- */
.text-corail {
    color: var(--corail_mh_brand);
    font-weight: bolder !important;
    font-weight: 700 !important;
}

/* --- Layout Helpers --- */
.flex-center {
    justify-content: center;
    align-items: center;
}

.align-center {
    align-items: center;
}

/* --- Spacing Utilities --- */
.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

/* --- Border Radius Utilities --- */
.rounded {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 50%;
}

/* --- Column Grid System --- */
/* Classes pour la gestion des colonnes, utile pour un système de grille */
.col-1,
.col-1b {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-3b {
    width: 28%;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);


}

.col-4b {
    width: 29%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    border-radius: 10px;
    padding: 20px;
}

.col-4 {
    width: 33.33%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
}


.col-5 {
    width: 41.66%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    border-radius: 10px;
    padding: 20px 0;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

/* Continuer jusqu'à .col-12 */

/* Reset for flex container */
.col {
    flex: 1;
}

/* --- Titles Visibility --- */
/* Gestion de la visibilité des titres selon les écrans */
.title-min {
    display: unset !important;
}

.title-max {
    display: none !important;
}

/* --- Header Section --- */
/* Alignement flex et centrage du contenu du header */
.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.header p {
    color: var(--corail_mh_brand);
    font-size: 28px;
    font-weight: bold;
}

.btn-primaire-h40 {
    background: var(--corail_mh_brand);
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 40px;
    height: 40px;
    padding: 8px 24px;
    font-size: 16px;
    display: inline-block;
    box-sizing: border-box;
    margin-top: 1rem !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.gris_background_bg,
.gris_background_bg_content:after,
.gris_background_bg_content:before {
    background-color: var(--gris_background);
}

@media screen and (width >=20rem) {
    .titre-sm-22 {
        letter-spacing: normal;
        font-size: 1.375rem;
        font-style: normal;
        font-weight: 400;
        font-stretch: 100%;
        line-height: 1.36;
    }

    .titre-sm-14 {
        letter-spacing: normal;
        font-size: .875rem;
        font-style: normal;
        font-weight: 400;
        font-stretch: 100%;
        line-height: 1.36;
    }
}

@media screen and (width >=64rem) {
    .titre-md-42 {
        letter-spacing: normal;
        font-size: 2.625rem;
        font-style: normal;
        font-weight: 400;
        font-stretch: 100%;
        line-height: 1.33;
    }

    .titre-md-22 {
        letter-spacing: normal;
        font-size: 1.375rem;
        font-style: normal;
        font-weight: 400;
        font-stretch: 100%;
        line-height: 1.36;
    }
}

h2,
.h2 {
    letter-spacing: normal;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    line-height: 1.33;
}

.title-border {
    outline-offset: -.25rem;
    outline: .25rem solid;
    padding: 0 .5rem;
    display: inline-block;
}

.ds-bold,
.ds-card__content-label,
.popover .popover-header,
b {
    font-weight: 900;
}

@media screen and (min-width: 1280px) {

    h1,
    h1 span {
        font-size: 42px !important;
    }

    .title-min {
        display: none !important;
    }

    .title-max {
        display: unset !important;
    }

    .header {
        display: flex !important;
        flex-direction: row;
    }
}

/* --- Menu Styles --- */
/* Style pour le bloc du menu, espacement interne et arrondis */
#block-menuhp {
    display: flex;
    padding: 10px 20px;
    border-radius: 10px;
}

/* --- Logo Style --- */
#block-menuhp .logo img {
    height: 50px;
}

/* --- Menu Items --- */
/* Gestion du layout des items du menu, espacement, ombre, etc. */
#menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

#menu-items a {
    text-decoration: none;
    font-size: 14px;
    color: #000;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* --- Active and Hover States --- */
#menu-items a.active {
    background-color: var(--corail_mh_brand);
    color: #fff;
}

#menu-items a:hover {
    background-color: var(--corail_mh_brand);
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Burger Menu for Mobile --- */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 4px 0;
    border-radius: 5px;
}

/* --- Popup Menu --- */
#menu-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

/* --- Popup Content --- */
.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
}

.popup-content ul {
    list-style-type: none;
    padding: 0;
}

.popup-content ul li {
    margin: 10px 0;
}

.popup-content ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

/* --- Close Button for Popup --- */
.close-popup {
    cursor: pointer;
    color: var(--corail_mh_brand);
    font-weight: bold;
}

/* Style pour les éléments sans retour à la ligne */
.no-wrap {
    white-space: nowrap;
    /* Empêche le retour à la ligne pour le texte */
}



/* Styles pour la barre de navigation latéral */
.sidebar {
    width: 250px;
    background-color: white;
    padding: 24px;
    border-radius: 20px;
}

.sidebar h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px !important;
}

.sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style-type: none;
    padding: 0;
    margin: unset !important;
}

.sidebar ul li {
    display: flex;
    cursor: pointer;
    font-size: 14px;
    margin: unset !important;
}

.sidebar ul li img {
    width: 30px;
    height: 30px;
}

/* Section de détails */
.container-detail-box {
    display: flex;
    gap: 20px;
}

.detail-box {
    flex-grow: 1;
    padding: 20px;
    background-color: white;
    border-radius: 20px;
    gap: 24px;
}

.detail-box h2 {
    margin-top: 0;
}

.detail-box h3 {
    font-size: 18px;
    font-weight: bold;
}

.detail-box p {
    font-size: 14px;
}

.detail-box a {
    font-size: 16px;
    font-weight: bold;
}

.detail-card div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.tags {
    gap: 12px;
}

.tag {
    display: inline-block;
    background-color: #e0f7fa;
    color: black;
    padding: 5px 10px;
    margin-right: 10px;
    font-size: 12px;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.detail-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 1440px) {
    .detail-content {
        grid-template-columns: repeat(1, 1fr);
    }
}

.detail-card {
    display: flex;
    align-items: flex-start;
    /* Aligner l'image et le texte sur la même ligne */
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    /* Espacement entre les cartes */
    transition: box-shadow 0.3s ease;
}

.detail-card h3 {
    margin-top: 0;
}

.detail-card a {
    color: var(--corail_mh_brand);
    text-decoration: none;
    font-weight: bold;
}

.detail-card a:hover {
    text-decoration: underline;
}

.hidden {
    opacity: 0;
}

/* Container for the block */
.block-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    max-width: 1200px;
    margin: 20px auto;
}

/* Left content */
.left-content {
    display: flex;
    flex-direction: column;
}

.left-content h3 {
    font-weight: bold;
}

.left-content h3 span {
    font-weight: bold;
}

.left-content ul {
    list-style: none;
}

.left-content ul li {
    font-size: 1.2rem;
    color: #333;
    padding: 10px;
    border-radius: 50px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

/* Hover effect for list items */
.left-content ul li.hover-item:hover {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Right image */
.right-image {
    width: 300px;
}

.right-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* --- Responsive Card Styles --- */

@media (max-width: 750px) {
    .block-container {
        flex-direction: column;
    }

    .sidebar {
        width: unset !important;
    }

    h1,
    h1 span {
        font-size: 26px !important;
    }

    h2 {
        font-size: 22px !important;
    }

    .hide {
        display: none !important;
    }

    .col-4,
    .col-5,
    .col-3b {
        width: 100% !important;
        padding: 0 !important;
    }

    .col-5 h3 {
        padding-top: 40px !important;
    }

    .col-3b {
        margin-top: 20px !important;
    }

    .col-3b .d-flex {
        flex-direction: row !important;
    }

    .col-3b h4 {
        padding: 20px !important;
    }

    .col-3b img {
        padding: 20px 0 0 0 !important;
    }

    .col-3b p {
        padding: 0 20px 20px 20px !important;
    }

    .d-flex {
        flex-direction: column !important;

    }

    .container-small {
        width: 100% !important;
    }

}

@media (max-width: 768px) {
    .card {
        width: 75%;
    }

    .detail-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .card-container {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Responsive burger menu display */
@media (max-width: 1440px) {
    .burger-menu {
        display: flex;
    }

    #menu-items {
        display: none;
    }
}

/* --- Responsive Grid Adjustments --- */
@media (max-width: 1050px) {
    /* .container-paragraphe-block-right, .container-paragraphe-block-left {
        flex-direction: column !important;
    } */
}

/* Modern Comparison Cards */
.comparison-cards {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.comparison-column {
    flex: 1;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.comparison-column h3 {
    text-align: center;
    color: var(--corail_mh_brand);
    font-weight: bold;
    margin-bottom: 15px;
}

.button-left-actif {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.button-right-retraite {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.comparison-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comparison-item span {
    font-size: 1.2rem;
    margin-right: 10px;
}

.comparison-item p {
    margin: 0;
    color: #333;
}

/* Icon style */
.icon {
    width: 25px;
    height: 25px;
    display: inline-block;
    background: var(--corail_mh_brand);
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    line-height: 25px;
    margin-right: 10px;
}

.thumb img {
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.container-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.container-footer {
    margin-bottom: -105px !important;
}

@media (width >=44rem) {
    .thumb {
        flex: 0 0 25%;
        align-self: stretch;
        height: auto;
        margin: 0 4rem 0 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        flex-direction: column !important;
    }

    .comparison-cards {
        flex-direction: column;
    }

    .container-card {
        flex-direction: column !important;
    }

    .container-card .thumb,
    .container-card .card {
        width: 100%;
    }
}

/* Bouton de la carte avec style de hover */
.card-button {
    background-color: var(--corail_mh_brand);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    font-size: 14px;
}

#card-button:hover,
#card-button:active {
    background: var(--corail_mh_dark);
    transition: all .3s ease;
    outline: none !important;
    color: white !important;
}

/* Additional Information */
.additional-info {
    font-size: 0.9rem;
    color: #222;
    line-height: 1.6;
    padding: 15px;
    border-radius: 8px;
}

.additional-info p {
    line-height: 2.1;
}

.additional-info strong {
    color: #222;
    font-weight: bold;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .banner-image {
        flex-direction: column;
        display: none;
    }

    .banner-texte {
        margin: 24px;
    }

    .container-infos {
        flex-direction: column;
        align-items: center;
    }

    .container-garanties {
        grid-template-columns: 1fr;
    }
}

.container-banner {
    background-color: #FF4B33;
    color: white;
    width: 100%;
    justify-content: center;
    display: flex;
    height: 405px;
}

.container-banner p {
    color: white;
}

.container-banner .img-banner img {
    object-fit: contain;
    width: 321px;
    height: 472px;
    margin: 19px 76px;
}

.container-banner .text-banner {
    display: flex;
    align-items: center;
}

.container-banner .text-banner .text-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}

.container-banner .text-banner .text-banner-content h2,
.container-banner .text-banner .text-banner-content p {
    color: white !important;
}

.container-banner h2 {
    font-size: 28px !important;
    font-weight: normal !important;
}

.container-banner p {
    font-size: 18px !important;
    font-weight: normal !important;
}

.container-rebond {
    background-color: #E3E3E3;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 50px;
}

.container-rebond h3 {
    margin-top: unset !important;
    font-weight: bold !important;
}

.container-rebond .boutonCorail {
    padding: unset !important;
    width: fit-content;
}

.container-rebond a {
    padding: 10px 24px;
}

.container-rebond .rebond-texte {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-rebond .rebond-texte p {
    margin-bottom: 1rem !important;
}

.container-rebond .rebond-texte .faq-button-reverse {
    margin-top: 0px !important;
}


.faq-button-reverse {
    display: inline-block;
    margin: 10px 0;
    padding: 5px 10px !important;
    width: fit-content;
    font-size: 14px !important;
    color: white;
    background-color: #e2250c;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 50px !important;
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
}

.faq-button-reverse a {
    color: white !important;
    text-decoration: none !important;
}

.faq-button-reverse:hover {
    background-color: transparent !important;
    border: 2px solid #e2250c;
    color: #e2250c;
}

.faq-button-reverse:hover a {
    color: #e2250c !important;
}

.container-card .points {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    width: 80vw;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    display: flex;
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 520px;
    gap: 20px;
}

.item-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.carousel-item h3 {
    font-weight: bold;
    font-size: 18px !important;
}

.carousel-item img {
    object-fit: contain;
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.accompagnement {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.accompagnement img {
    flex: 1;
    max-width: 300px;
    border-radius: 50%;
}

.accompagnement-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accompagnement-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.accompagnement-blocks {
    display: flex;
    gap: 20px;
}

.block {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.block h3 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.block a {
    text-decoration: underline;
    color: blue;
}

.block a:hover {
    text-decoration: underline;
}

.block p {
    text-align: center !important;
}

.points {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.points .point {
    display: flex;
    gap: 10px;
}

.point img {
    width: 24px;
    height: 24px;
}

.faq {
    margin-top: 40px;
}

.faq h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-item button {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item button:focus {
    outline: none;
}

.faq-item .answer {
    display: none;
    margin-top: 10px;
    font-size: 16px;
    color: #555;
}

.faq-item.active .answer {
    display: block;
}

.faq-item.active button span {
    transform: rotate(180deg);
}

.faq-item.active button {
    font-weight: bold !important;
    color: #FF4B33;
}

.faq-item button span {
    transition: transform 0.3s ease;
}

.faq-item button:not(:disabled):not(.disabled):hover,
.faq-item button:not(:disabled):not(.disabled):focus {
    background-color: transparent;
    transition: none;
}

.rebond-columns {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rebond-columns h3 {
    font-size: 16px !important;
    margin-bottom: unset !important;
}

.rebond-columns p {
    font-size: 12px !important;
}

.rebond-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rebond-column svg {
    margin-bottom: 12px;
}

.text-banner-content {
    color: white !important;
}

.sante-container {
    border-radius: 8px;
}

.sante-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.sante-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 3px 6px #00000029;
}

.sante-description ul {
    list-style: none;
    padding: 0;
}

.sante-description ul li::before {
    content: "-";
    margin-right: 8px;
}

.sante-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.sante-image-container img {
    width: 400px;
    height: 281px;
}

.sante-button {
    text-decoration: none;
    background-color: #ff4b33;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
}

.sante-button:hover {
    background-color: #e5432c;
}

.sante-remises {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}

.sante-remises div {
    text-align: center;
}

.sante-remises h3 {
    color: #ff4b33;
    font-size: 34px;
    margin: 0;
}

.sante-remises p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

.sante-description ul {
    list-style: none;
    padding: 0;
}

.epargne-container {
    border-radius: 8px;
}

.epargne-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.epargne-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 3px 6px #00000029;
}


.epargne-content-reverse {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    gap: 20px;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 3px 6px #00000029;
}

.epargne-description ul {
    list-style: none;
    padding: 0;
}

.epargne-description li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px !important;
    font-size: 15px !important;
    font-weight: 600;
}

.epargne-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.epargne-image-container img {
    width: 400px;
    height: 281px;
}

.epargne-button {
    text-decoration: none;
    background-color: #ff4b33;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
}

.epargne-button:hover {
    background-color: #e5432c;
}

.epargne-remises {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.epargne-remises div {
    text-align: center;
}

.epargne-remises h3 {
    color: #ff4b33;
    font-size: 34px;
    margin: 0;
}

.epargne-remises p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

.emprunteur-container {
    border-radius: 8px;
}

.emprunteur-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.emprunteur-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 3px 6px #00000029;

}

.emprunteur-description ul {
    list-style: none;
    padding: 0;
}

.emprunteur-description li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px !important;
}

.emprunteur-description ul li::before {
    content: "";
    margin-right: 8px;
}

.emprunteur-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.emprunteur-image-container img {
    width: 236px;
    height: 281px;
}

.emprunteur-button {
    text-decoration: none;
    background-color: #ff4b33;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
}

.emprunteur-button:hover {
    background-color: #e5432c;
}

.emprunteur-remises {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.emprunteur-remises div {
    text-align: center;
}

.emprunteur-remises h3 {
    color: #ff4b33;
    font-size: 34px;
    margin: 0;
}

.emprunteur-remises p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

.emprunteur-content-reverse {
    flex-direction: row-reverse;
}

.prevoyance-container {
    border-radius: 8px;
}

.prevoyance-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.prevoyance-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 3px 6px #00000029;
}

.prevoyance-description ul {
    list-style: none;
    padding: 0;
}

.prevoyance-description li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px !important;
}

.prevoyance-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.prevoyance-image-container img {
    width: 236px;
    height: 281px;
}

.prevoyance-image-container img,
.emprunteur-image-container img,
.sante-image-container img,
.epargne-image-container img {
    object-fit: contain;
}



.prevoyance-button {
    text-decoration: none;
    background-color: #ff4b33;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
}

.prevoyance-button:hover {
    background-color: #e5432c;
}

.prevoyance-remises {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.prevoyance-remises div {
    text-align: center;
}

.prevoyance-remises h3 {
    color: #ff4b33;
    font-size: 34px;
    margin: 0;
}

.prevoyance-remises p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

.prevoyance-content-reverse {
    flex-direction: row-reverse;
}

#content-actif,
#content-retraite {
    opacity: 0;
    animation: apparition ease 1s forwards;
}

.sante-content,
.prevoyance-content,
.emprunteur-content,
.epargne-content {
    opacity: 0;
    animation: apparition ease 1s forwards;
}

.boutons {
    width: 90% !important;
}

.boutons-1 {
    width: 60% !important;
}

.container-button {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    width: 100% !important;

}

.bouton {
    display: inline-block;
    margin: 10px;
    padding: 5px 20px !important;
    font-size: 14px !important;
    color: white;
    background-color: #e2250c;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 50px !important;
    border: 2px solid transparent;
    justify-content: center;
}

.bouton a {
    color: white !important;
    text-decoration: none !important;
}

.bouton:hover {
    background-color: transparent !important;
    border: 2px solid #e2250c;
    color: #e2250c;
}

.bouton:hover a {
    color: #e2250c !important;
}

.bg-rose-chair {
    background: #F9E2DB !important;
    border-radius: 20px !important;
}

.bg-bleu {
    background: #bdeef0 !important;
    border-radius: 20px !important;
}

.bg-blanc {
    background: #FFFFFF !important;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /*background-color: white;*/
}

.cartouche-numero {
    max-width: 150px !important;
}

.illustration-contact {
    max-width: 150px !important;
    margin-top: 24px !important;
}

.col-4 ul {
    list-style-type: disc;
    list-style-position: inside;
}

.col-5 ul {
    list-style-type: disc;
    padding: 0 20px !important;

}

.col-3b ul {
    list-style-type: disc;
    padding: 0 20px !important;

}

.col-3b ul li {
    font-size: 16px !important;

}

.d-flex .col-1b img {
    width: 16px !important;
}

.col-10 a {
    font-size: 14px !important;
}

.bloc-3col .col-4,
.bloc-3colb .col-4 {
    text-align: left !important;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}

.bloc-3col {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 18px;
}

.bloc-3colb {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    text-align: left !important;
}

.col-4 .bg-blanc {
    padding: 0 !important;
    margin: 0 !important;
}

.mentions-legales {
    text-align: center !important;
    margin: 0 auto !important;
}

.mentions-legales ul {
    display: flex !important;
    flex-direction: row !important;
}

.mentions-legales ul li {
    margin: 10px !important;
    text-decoration: underline !important;
    font-size: 14px !important;
    color: #636363 !important;
}

.mentions-legales ul li a {
    text-decoration: underline !important;
    font-size: 14px !important;
    color: #636363 !important;
}

/* CLIQUE DEPLIE */
.ouvrir {
    float: right !important;
}

.ouvrir img {
    width: 50px !important;
}

.cache {
    display: none;
    padding: 20px 0 !important;
}

.texteBlanc {
    color:#FFFFFF !important;
    text-decoration: none !important;
}

@keyframes apparition {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@media (max-width: 768px) {

    .sante-content,
    .epargne-content,
    .emprunteur-content {
        flex-direction: column;
        text-align: center;
    }

    .sante-remises {
        flex-direction: column;
    }

    .epargne-remises,
    .emprunteur-remises {
        grid-template-columns: repeat(2, 1fr);
    }

    .emprunteur-remises .emprunteur-container-button {
        grid-column: span 2;
    }
}




@media (max-width: 758px) {
    .container-banner {
        flex-direction: column;
        align-items: center;
        height: unset;
        padding: 40px 0px !important;
    }

    .container-banner img {
        transform: translateY(0px);
    }

    .container-banner h2 {
        font-size: 23px !important;
        font-weight: normal !important;
    }

    .container-banner p {
        font-size: 16.5px !important;
        font-weight: normal !important;
    }

    .container-banner .text-banner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 0px;
        gap: 20px;
    }

    .carousel-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .accompagnement {
        align-items: center;
        flex-direction: colum.col-4n;
    }

    .accompagnement img {
        max-width: 300px;
        border-radius: 50%;
    }

    .accompagnement-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .accompagnement-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .accompagnement-blocks {
        flex-direction: column;
    }

    .rebond-columns {
        grid-template-columns: repeat(1, 1fr);
    }

    .carousel {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
    }

    .carousel-item {
        min-width: unset !important;
    }

    .prevoyance-content-reverse {
        flex-direction: column !important;
    }

    .prevoyance-remises > div {
        display: flex;
        flex-direction: column;
    }

    .prevoyance-remises {
        display: flex;
        justify-content: center;
    }

    .prevoyance-content {
        flex-direction: column !important;
        align-items: center !important;

    }

    .boutons {
        width: 100% !important;
    }

    .boutons-1 {
        width: 100% !important;
    }

    .container-button {
        display: inline-block !important;
        flex-direction: column !important;
        text-align: center !important;
        width: 100% !important;
    }

    .bouton {
        display: inline-block !important;
        margin-top: 10px;
        padding: 5px 10px !important;
        font-size: 14px !important;
        color: white;
        background-color: #e2250c;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s, color 0.3s;
        border-radius: 50px !important;
        border: 2px solid transparent;
        justify-content: center;

    }

    .bg-bleu {
        background: none !important;
        border-radius: 20px !important;
    }

    .col-4 {
        background: #bdeef0 !important;
        border-radius: 20px !important;
        padding: 20px 0 !important;
        margin-top: 10px !important;
    }

    .col-4 p {
        padding: 20px !important;
    }

    .font-size-12 {
        font-size: 12px !important;
    }

    .font-size-14 {
        font-size: 14px !important;
    }

    .font-size-16 {
        font-size: 16px !important;
    }

    .font-size-18 {
        font-size: 18px !important;
    }

    .font-size-20 {
        font-size: 18px !important;
    }

    .font-size-24 {
        font-size: 18px !important;
    }

    .col-4b {
        width: 90% !important;
    }

    .col-4b .d-flex,
    .col-4 .d-flex {
        display: flex !important;
        flex-direction: row !important;
    }

    .col-4 .col-1b {
        padding-left: 20px !important;
    }

    .col-4 h3,
    .col-4b h3 {
        text-align: center !important;
        padding: 0 20px !important;
    }

    .my-2 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
}
}
