/* =============================================================================
    Global
   ========================================================================== */
.title_mod {

    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 0 0 30px 0;

    .title {
        margin: 0;

    }

    .content-title {
        display: flex;
        justify-content: space-between;
        text-transform: none;
        flex-direction: column;
        gap: 4px;
        position: relative;

        .headline {
            color: var(--rouge-ebra);
            text-transform: uppercase;
            margin: 0 0 16px 0;
            /*font-weight: bold;*/
            letter-spacing: 1px;
        }

        .title {
            position: relative;
            line-height: 1;

            &:before {
                display: none !important;
            }
        }
    }

    .btn {
        display: flex;
        gap: 8px;

        p {
            width: max-content;
            font-size: var(--f-xs);
        }
    }

}

@media screen and (max-width: 1000px) {
    .title_mod {
        padding: 0 16px;
    }
}

@media screen and (max-width: 800px) {
    .title_mod {
        flex-direction: column;
    }
}

/* =============================================================================
    GWEB
   ========================================================================== */
.GWEB_contentModel[data-model*="Model1"]:not(.engagements) {
    .titre h1 {
        color: var(--white) !important;
    }
}


@media screen and (max-width: 1000px) {
    .GWEB_contentModel[data-model*="Model1"]:not(.engagements) {
        padding: 0 16px;
    }
}

.GWEB_contentModel .content-title .headline {
    color: var(--rouge-ebra);
}

.GWEB_contentModel[data-model*="Model2"]:not(.engagements) {
    position: relative;
    background-color: var(--white) !important;

    .Model2 {
        display: flex;
        gap: 40px;
        min-width: var(--constrain_medium);
        max-width: 80%;
        width: 100%;
        margin: auto;
        .content {
            display: flex;
            flex-direction: column;
            width: 45%;

            p {
                margin: 0 0 8px 0;
                line-height: 1.4;
            }
        }

        img {
            width: 50%;
            aspect-ratio: 2 / 1;
            object-fit: cover;
            box-shadow: var(--shadow-1);
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 50px 0 0 50px;
        }

        .btn.light {
            margin-bottom: 50px;
        }

        &::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: -30px;
            left: -30px;
            border: 1px solid var(--bleu-ebra);
            z-index: -1;
        }

        &.noImg {
            justify-content: center;
            text-align: center;

            .content {
                align-items: center;

                .btn.light {
                    margin-bottom: 0;
                    margin-top: 24px;
                }
            }
        }
    }
}

.sectionWhy .GWEB_contentModel[data-model*="Model2"]:not(.engagements),
.sectionMarques .GWEB_contentModel[data-model*="Model2"]:not(.engagements),
.sectionSolutions .GWEB_contentModel[data-model*="Model2"]:not(.engagements) {
    background-color: transparent !important;

    .Model2::before {
        display: none;
    }
}

.sectionWhy .GWEB_contentModel[data-model*="Model2"]:not(.engagements) {
    .Model2 .content {
        width: 45%;
    }
}

.sectionMarques .GWEB_contentModel[data-model*="Model2"]:not(.engagements),
.sectionSolutions .GWEB_contentModel[data-model*="Model2"]:not(.engagements) {
    margin-top: 42px;

    .Model2 .content {
        width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .GWEB_contentModel[data-model*="Model2"]:not(.engagements) {
        .Model2 {
            .content {
                padding: 0 16px;
                width: 100%;
            }
        }
    }
}

.GWEB_contentModel[data-model*="Model3"] {
    .Model3 {
        background-size: cover;
        position: relative;

        &::before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient);
            opacity: 0.8;
        }

        .content {
            z-index: 1;
            position: relative;
            margin: 0;
            padding-left: 32px;
            display: flex;
            flex-direction: column;
            gap: 24px;

            .imageTop {
                width: 250px;
            }

            h1,
            p,
            strong {
                color: var(--white);
            }

            h1 {
                display: flex;
                flex-direction: column;

                &.aliasImg {
                    height: 100px;
                    text-indent: -3333px;
                    background-size: contain;
                    background-repeat: no-repeat;
                }

                span {
                    color: var(--bleu);
                    font-style: italic;
                }
            }

            p {
                font-size: var(--f-m);
                width: 70%;
            }

            .content-cta {
                display: flex;
                gap: 8px;
            }
        }
    }
}

@media screen and (max-width: 1000px) {
    .GWEB_contentModel[data-model*="Model3"] {
        .Model3 {
            .content {
                padding-left: 0;
            }
        }
    }
}

.GWEB_contentModel[data-model*="Model4"] {
    background-color: var(--bleu-ebra) !important;
    padding: 0;
    position: relative;

    .constrain {
        display: flex;
        gap: 18px;

        .content {
            display: flex;
            flex-direction: column;
            justify-content: center;

            .headline {
                color: var(--bleu);
            }

            .title {
                color: var(--white);
            }

            .text {
                color: var(--white);
                background-color: var(--background-transparent);
                border-radius: 16px;
                padding: 30px;
            }

            p {
                color: var(--text-medium);
            }

            .illustration img {
                width: 40%;
            }
        }

        .illustration {
            display: flex;
            justify-content: center;
            align-items: center;

            img {
                width: 600px;
                object-fit: contain;
            }
        }
    }

    .btn {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    /*
    &::before{
        content: '';
        background-color: var(--bleu-ebra);
        position: absolute;
        left: 0;
        top: 200px;
        height: 400px;
        width: 80%;
        z-index: -1;
        display: block;

    }
*/
}

@media screen and (max-width: 1000px) {
    .GWEB_contentModel[data-model*="Model4"] {
        .constrain {
            padding: 0 16px;
        }
    }
}

@media screen and (max-width: 800px) {
    .GWEB_contentModel[data-model*="Model4"] {
        .constrain {
            flex-direction: column;
        }
    }
}

.GWEB_contentModel[data-model*="Model5"] {
    figure {
        width: 250px;
        margin: auto;
    }

    .content {
        width: 350px;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 8px;

        h1 {
            font-weight: lighter;
        }

        .text {
            text-align: center;
        }
    }
}

.GWEB_contentModel[data-model*="Model6"] {
    .content {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 16px;

        ul {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(119px, 1fr));
            display: flex;
            gap: 8px;
            padding: 24px 0;

            li {
                color: var(--noir_diverto);
                display: flex;
                align-items: center;
                gap: 8px;
                font-weight: 800;
                font-size: var(--f-m);
                justify-content: center;
                text-align: center;
                position: relative;
                padding-right: 24px;
                color: var(--bleu-ebra);

                &:not(:last-child)::after {
                    font-family: 'icoEBA2' !important;
                    font-style: normal;
                    font-weight: normal;
                    font-variant: normal;
                    text-transform: none;
                    line-height: 1;
                    vertical-align: middle;
                    display: inline-block;
                    content: 'dot';
                    color: var(--rouge-ebra);
                    font-size: var(--f-m);
                    position: absolute;
                    right: 0;
                }
            }
        }
    }
}

/** Engagements  */
.GWEB_listElementsModel {
    .engagements {
        .title {
            color: var(--white);
        }
    }

    &.Model1 {
        .headline {
            color: var(--rouge-ebra);
        }
        .listSolution {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 18px;

            .card {
                background-color: var(--white);
                border-radius: 8px;
                box-shadow: var(--shadow-2);

                figure {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    max-height: 170px;
                    height: 170px;
                    border-bottom: 1px solid var(--grey-light);

                    img {
                        width: 100%;
                        height: 100%;
                        max-width: 70%;
                        max-height: 70%;
                        object-fit: contain;
                    }

                    .image-wrap {
                        display: flex;
                        width: 100%;
                        max-height: 170px;
                        align-items: center;

                        img {
                            width: 50%;
                        }
                    }
                }

                .content {
                    display: flex;
                    flex-direction: column;
                    gap: 8px;
                    padding: 16px;


                    h2 {
                        font-size: var(--f-l);
                    }

                }
            }
        }

    }

    &.Model2 {
        .listSolution {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;

            .card {
                background-color: var(--white);
                border-radius: 8px;
                box-shadow: var(--shadow-2);
                padding: 32px;

                .content {
                    display: flex;
                    flex-direction: column;
                    gap: 8px;

                    h2 {
                        font-size: var(--f-2xl);
                    }

                    .number {
                        font-weight: 700;
                        background-color: var(--rouge-ebra);
                        width: 30px;
                        aspect-ratio: 1 / 1;
                        border-radius: calc(infinity * 1px);
                        color: var(--white);
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }
                }
            }
        }
    }

    &.Model3 {
        .listStory {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
            gap: 18px;

            .card {
                background-color: var(--white);
                border-radius: 8px;
                box-shadow: var(--shadow-2);
                padding: 16px;

                .content {
                    display: flex;
                    flex-direction: column;
                    gap: 8px;

                    h2 {
                        font-size: var(--f-xl);
                    }

                    .number {
                        font-weight: 700;
                        background-color: var(--rouge-ebra);
                        width: 30px;
                        aspect-ratio: 1 / 1;
                        border-radius: calc(infinity * 1px);
                        color: var(--white);
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }
                }
            }
        }
    }
}

.GWEB_contentModel.engagements {
    &[data-model*="Model1"] {
        color: var(--white);

        .text {
            p {
                color: inherit;
            }
        }
        .headline {
            color: var(--rouge-ebra);
        }

        .titre {
            h2 {
                color: inherit;
            }
        }

        .content {
            display: flex;
            flex-direction: column;
            gap: 18px;

            ul {
                display: flex;
                flex-direction: column;
                gap: 8px;

                li {
                    display: flex;
                    align-items: flex-start;
                    gap: 16px;

                    &::before {
                        content: "line_start";
                        font-family: 'icoEBA2' !important;
                        font-style: normal;
                        font-weight: normal;
                        font-variant: normal;
                        text-transform: none;
                        line-height: 1.5;
                        font-size: 1.4rem;
                        vertical-align: middle;
                        display: inline-block;
                        color: inherit;
                    }
                }
            }

        }
    }

    &[data-model*="Model2"] {
        color: var(--white);

        .content {
            width: 60%;
            margin: auto;
        }

        .text {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            text-transform: uppercase;
            font-style: italic;
            text-align: center;

            &::before,
            &::after {
                font-family: 'icoEBA2' !important;
                font-style: normal;
                font-weight: normal;
                font-variant: normal;
                text-transform: none;
                line-height: 1;
                vertical-align: middle;
                display: inline-block;
                color: inherit;
            }

            &::before {
                content: 'quote-open';
                margin-top: -10px;
                font-size: 8rem;
            }

            &::after {
                content: 'quote-close';
                margin-bottom: -10px;
                font-size: 5.4rem;
            }

            p {
                color: inherit;
            }
        }

        .titre {
            h2 {
                color: inherit;
            }
        }
    }

}

.GWEB_cta {
    display: flex;
    justify-content: center;
    align-items: center;

    .btn {
        color: var(--white) !important;
        border-color: var(--white) !important;
    }
}

[data-pagekey="ebra-story"] {
    .sectionMiddle {
        margin-top: -60px;
        z-index: 1;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 32px;
        background-color: var(--color03);
        border-radius: 18px 18px 0 0;
        padding-bottom: 62px;

        >*:not(.GWEB_cta) {
            padding: 0 62px;

            &:first-child {}
        }

        [data-model="Model6"]:first-child {
            padding-top: 62px;
        }
    }

    .GWEB_videoModel {
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 18px;

        .videoContent {
            width: 100%;
            display: flex;
            justify-content: center;

            iframe {
                width: 70%;
                aspect-ratio: 16 / 9;
                height: auto;
            }
        }
    }

    .GWEB_cta {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--grey);

        .btn {
            color: var(--bleu-ebra) !important;
            border-color: var(--bleu-ebra) !important;
        }
    }

}



/* =============================================================================
    GRDC
   ========================================================================== */
.content-aLaUne {
    display: flex;
    flex-direction: column;
    padding: 40px 0;
    gap: 16px;

    .aLaUne {
        display: grid;
        gap: 20px;
    }

}

/* module a la une GRDC_List_Model[data-model*="Modele_1"] */
.content-aLaUne.actus {
    .aLaUne {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 16px;
    }

    article {
        height: 100%;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        box-shadow: var(--shadow-2);

        figure {
            width: 100%;
            aspect-ratio: 16/9;
            background-color: var(--grey-light);

            img {
                border-radius: 8px 8px 0 0;
                width: 100%;
            }
        }

        .corps {
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            height: 100%;
            background: #FFF;
            border-radius: 0 0 8px 8px;

            .tag {
                color: var(--rouge-ebra);
                background-color: var(--background-alt);
                padding: 6px 8px;
                font-size: 1rem;
                text-transform: uppercase;
                border-radius: 8px;
                width: fit-content;
            }

            .link {
                margin-top: auto;

                a::after {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                }
            }

            h3 {
                line-height: 1;
            }

            .link {
                a {
                    font-size: var(--f-s);
                }
            }

        }
    }
}


/* module chiffres GRDC_List_Model[data-model*="Modele_8"]*/
.realisations {
    background: var(--gradient);

    .headline {
        color: var(--bleu);
    }

    .title {
        color: var(--white);
    }

    .showMore {
        color: var(--white) !important;
        border-color: var(--white) !important;
    }


    .aLaUne {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 16px;

        li {
            position: relative;
            min-height: 400px;
            display: flex;
            align-items: flex-end;
            border-radius: 8px;
            overflow: hidden;

            article {
                width: 100%;

            }

            a {
                &:hover {
                    text-decoration: none;

                    .link {
                        border-color: inherit;
                    }
                }
            }

            figure {
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;

                img {
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                }
            }

            .corps {
                position: relative;
                z-index: 1;
                background-color: var(--bleu-transparent);
                color: var(--white);
                padding: 16px;
                display: flex;
                flex-direction: column;
                gap: 10px;

                &::before {
                    content: "";
                    position: absolute;
                    top: -70px;
                    left: 0;
                    height: 70px;
                    width: 100%;
                    background: linear-gradient(0deg, var(--bleu-transparent) 0%, var(--bleu-transparent) 40%, rgba(255, 255, 255, 0) 100%);
                }

                .tag {
                    background-color: var(--rouge-ebra);
                    padding: 4px 12px;
                    color: inherit;
                    border-radius: 18px;
                    width: fit-content;
                    font-size: var(--f-xxs);
                }

                p,
                h3 {
                    color: inherit;
                }

                .link {
                    display: flex;
                    gap: 8px;
                    width: fit-content;
                    border-bottom: 1px solid transparent;

                    p,
                    span {
                        font-size: var(--f-xs);
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 1000px) {

    .content-aLaUne.actus,
    .realisations {
        .aLaUne {
            grid-template-columns: 1fr;
        }
    }
}

/* module chiffres GRDC_List_Model[data-model*="Modele_2"]*/
.content-chiffre {
    background: var(--gradient) !important;
    padding: 72px 32px;
    position: relative;
    overflow: hidden;

    .constrain-small {
        z-index: 1;
    }

    .content-wrap {
        z-index: 1;
        background-size: cover;
        padding: 16px 0;
    }

    .title_mod {
        justify-content: center;

        .content-title {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            gap: 16px;

            .headline {
                color: var(--bleu);
            }

            .title {
                color: var(--white);
            }
        }
    }

    .chiffres {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
        grid-auto-rows: 1fr;
        gap: 16px;
        justify-items: center;

        li {
            width: 100%;
            padding: 25px;
            position: relative;
            border-radius: 16px;
            background-color: var(--white);

            .content {
                z-index: 1;
                position: relative;
                display: flex;
                flex-direction: column;
                height: 100%;
                text-align: center;

                .count-Number p {
                    font-weight: bold;
                    font-size: var(--f-chiffre-valeur);
                    color: var(--bleu);
                    line-height: 1;

                    .count {
                        color: var(--bleu-ebra);
                        font-size: var(--f-chiffre);
                        -webkit-text-stroke: 4px var(--bleu-ebra);
                        letter-spacing: 4px;

                    }
                }

                .corps {
                    .chiffre {
                        color: var(--bleu-ebra);
                    }

                    p {
                        font-size: var(--f-s);
                        color: var(--bleu-ebra);
                    }

                    .citation {
                        color: var(--bleu-ebra);
                        font-size: var(--f-xxs);
                        margin-top: 8px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 1000px) {
    .content-chiffre {
        .chiffres {
            padding: 0 16px;
            grid-template-columns: 1fr;

            li {
                padding: 12px;
                width: 100%;
            }
        }
    }
}

@media screen and (max-width: 800px) {
    .content-chiffre {
        .title_mod .content-title {
            text-align: left;
            align-items: flex-start;
        }
    }
}

/* module marques GRDC_List_Model[data-model*="Modele_3"] */
.content-vignette {
    .nosMarques {
        gap: 28px;
        padding: 12px;
        /*background-color: var(--background-alt);*/
        border-radius: 8px;

        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
        padding: 10px;

        li {
            width: 100%;
            max-height: 100px;
            aspect-ratio: 16 / 9;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: filter 0.3s ease;
            border: 1px solid var(--text-medium);
            border-radius: 8px;
            background-color: var(--white);

            &:hover {
                box-shadow: var(--shadow-1);
            }

            article {
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;

                a {
                    height: 100%;

                }

                figure {
                    height: 100%;
                    padding: 10px;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    img {
                        max-width: 100%;
                        max-height: 100%;
                        object-fit: contain;
                        border-radius: 0;
                    }
                }
            }

            a {
                &::after {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                }
            }



        }
    }
}

/* module PDF GRDC_List_Model[data-model*="Modele_4"] */

.GRDC_List_Model[data-model*="Modele_4"] .listPDF,
.GRDC_List_Model[data-model*="Modele_5"] .listPDF {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(226px, 1fr));
    gap: 32px;
}

.GRDC_List_Model[data-model*="Modele_4"] .listPDF .cardPDF,
.GRDC_List_Model[data-model*="Modele_5"] .listPDF .cardPDF {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    border: 1px solid var(--grey-light);
    box-shadow: var(--shadow-2);
    padding: 20px;
    gap: 10px;
}

.GRDC_List_Model[data-model*="Modele_4"] .listPDF .cardPDF h2,
.GRDC_List_Model[data-model*="Modele_5"] .listPDF .cardPDF h2 {
    font-size: var(--f-l);
    margin: 0;
    min-height: 53px;
    display: flex;
    align-items: center;
}

.GRDC_List_Model[data-model*="Modele_4"] .listPDF .cardPDF a,
.GRDC_List_Model[data-model*="Modele_5"] .listPDF .cardPDF a {
    display: flex;
    border-radius: 4px;
    padding: 8px;
    align-items: center;
    background: var(--color03);
    font-size: var(--f-xs);
}

.GRDC_List_Model[data-model*="Modele_4"] .listPDF .cardPDF a .ico_EBA2,
.GRDC_List_Model[data-model*="Modele_5"] .listPDF .cardPDF a .ico_EBA2 {
    padding: 0 10px 0 0;
}

.GRDC_List_Model[data-model*="Modele_4"] .listPDF .cardPDF a:hover,
.GRDC_List_Model[data-model*="Modele_5"] .listPDF .cardPDF a:hover {
    text-decoration: none;
    background: var(--bleu);
    color: var(--bleu-ebra);
}

.GRDC_List_Model[data-model*="Modele_6"] {
    position: relative;
    min-height: fit-content;
    margin-top: 42px;

    article {
        display: flex;
        border-radius: 8px;
        border: 1px solid var(--color18);
        box-shadow: var(--shadow-2);

        .content {
            display: flex;
            flex-direction: column;
            padding: 16px;
            flex: 2;

            .tag {
                background-color: var(--rouge-ebra);
                padding: 4px 12px;
                color: var(--white);
                border-radius: 18px;
                width: fit-content;
                font-size: var(--f-xs);
            }
        }

        figure {
            border-radius: 0 8px 8px 0;
            overflow: hidden;
            flex: 1;
        }
    }
}

@media screen and (max-width: 1000px) {
    .GRDC_List_Model[data-model*="Modele_6"] {
        padding: 0 16px;
    }

}

@media screen and (max-width: 800px) {
    .GRDC_List_Model[data-model*="Modele_6"] {
        padding: 0;
        background-color: var(--color09);

        article {
            padding-bottom: 16px;
            flex-direction: column-reverse;

            figure {
                width: 100%;
                border-radius: 0;

                img {
                    width: 100%;
                }
            }

            .content {
                padding: 0 16px;
            }
        }
    }

}

.GRDC_List_Model[data-model*="Modele_7"] {
    padding: 24px 0;

    .liste {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
        gap: 18px;

        li:not(.nos-realisations) {
            box-shadow: var(--shadow-2);
            border-radius: 8px;
            overflow: hidden;
            min-height: 295px;

            article {
                position: relative;
                height: 100%;
                display: flex;
                flex-direction: column;

                figure {
                    width: 100%;
                    aspect-ratio: 16 / 9;
                    background-color: var(--grey-light);
                    flex: 1;
                    img {
                        width: 100%;
                    }
                }

                .corps {
                    padding: 16px;
                    flex: auto;
                    display: flex;
                    flex-direction: column;

                    h3 {
                        line-height: 1;
                    }

                    time {
                        margin-top: auto;
                        font-size: var(--f-s);
                    }
                }

                .tag {
                    background-color: var(--rouge-ebra);
                    padding: 4px 12px;
                    color: var(--white);
                    border-radius: 18px;
                    width: fit-content;
                    font-size: var(--f-xs);
                }
            }

            a {
                &::after {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                }
            }
        }

        li.nos-realisations {
            position: relative;
            min-height: 400px;
            display: flex;
            align-items: flex-end;
            border-radius: 8px;
            overflow: hidden;

            article {
                height: 100%;
                width: 100%;
            }

            a {
                height: 100%;
                display: flex;
                align-items: flex-end;

                &:hover {
                    text-decoration: none;

                    .link {
                        border-color: inherit;
                    }
                }
            }

            figure {
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;

                img {
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                }
            }

            .corps {
                position: relative;
                z-index: 1;
                background-color: var(--bleu-transparent);
                color: var(--white);
                padding: 16px;
                display: flex;
                flex-direction: column;
                gap: 10px;
                width: 100%;
                &::before {
                    content: "";
                    position: absolute;
                    top: -70px;
                    left: 0;
                    height: 70px;
                    width: 100%;
                    background: linear-gradient(0deg, var(--bleu-transparent) 0%, var(--bleu-transparent) 40%, rgba(255, 255, 255, 0) 100%);
                }

                .tag {
                    background-color: var(--rouge-ebra);
                    padding: 4px 12px;
                    color: inherit;
                    border-radius: 18px;
                    width: fit-content;
                    font-size: var(--f-xs);
                }

                p,
                h3 {
                    color: inherit;
                }

                .link {
                    display: flex;
                    gap: 8px;
                    width: fit-content;
                    border-bottom: 1px solid transparent;

                    p,
                    span {
                        font-size: var(--f-xs);
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 1200px) {
    .GRDC_List_Model[data-model*="Modele_7"] {
        .liste {
            padding: 16px;
        }
    }
}
@media screen and (max-width: 740px) {
    .GRDC_List_Model[data-model*="Modele_7"] {
        .liste {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
    }
}
/* pictolien */
.GRDC_linkButtonsImage {
    display: flex;
    flex-direction: column;
    gap: 16px;

    .pictoliens {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
        padding: 0 16px;

        .pictolien {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;

            figure {
                height: 120px;
                aspect-ratio: 1 / 1;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: var(--white);
                padding: 8px;
                border-radius: 8px;

                img {
                    max-height: 100%;
                    object-fit: contain;
                }
            }

            a {
                font-size: var(--f-xs);
            }

            a::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
            }
        }
    }
}

.GRDC_List_Model[data-model*="Modele_9"] {
    .list-others {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
        gap: 18px;

        li {
            position: relative;
        }

        article {
            position: relative;
            height: 320px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-2);
            color: var(--white);

            &::after {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;

                background: rgba(0, 0, 0, .1);

                transition: all .2s ease-in-out;
            }

            figure {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;

                img {
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                }
            }

            .corps {
                z-index: 1;
                position: relative;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                height: 100%;
                padding: 16px;

                h3,
                p,
                .tag {
                    color: inherit;
                }

                .contributor {
                    background-color: var(--rouge-ebra);
                    padding: 4px 12px;
                    color: inherit;
                    border-radius: 18px;
                    width: fit-content;
                    font-size: var(--f-xs);
                }

                .text {
                    opacity: 0;
                    height: 0;
                    transition: all 0.2s ease-in-out;
                }

                .tag {
                    color: var(--rouge-ebra);
                    background-color: var(--background-alt);
                    padding: 4px 12px;
                    font-size: 1rem;
                    text-transform: uppercase;
                    border-radius: calc(infinity * 1px);
                    width: fit-content;

                }
            }

            &:hover {
                .text {
                    opacity: 1;
                    height: fit-content;
                }

                &::after {
                    background: rgba(0, 0, 0, .3);
                    transition: all .2s ease-in-out;
                }

                a {
                    text-decoration: none !important;
                }
            }
        }
    }
}

.GRDC_List_Model[data-model*="Modele_11"] {
    padding-bottom: 42px;
    margin-top: 42px;

    .textComponent .text:has(.nombre) {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(317px, 1fr));
        gap: 24px;
        margin-top: 24px;

        .nombre {
            background-color: var(--grey-light);
            text-align: center;
            padding: 16px;
            border-radius: 8px;

            .valeur {
                font-size: var(--f-3xl);
                color: var(--rouge-ebra);

                strong {
                    -webkit-text-stroke: 1px var(--rouge-ebra);
                }
            }

            .txt {
                color: var(--bleu-ebra);
            }
        }
    }

    .note {
        font-size: var(--f-xs);
        margin-top: 8px;
    }
}

@media screen and (max-width: 1000px) {
    .GRDC_List_Model[data-model*="Modele_11"] {
        padding: 0 16px;
    }
}

/* =============================================================================
    GRDC_NWL
   ========================================================================== */

.newsletter {
    border-bottom: dashed 1px var(--background-transparent);
    padding: 32px 0;
    background: var(--background-alt);

    .GRDC_newsletters {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .title {
            flex: 1;
            padding: 0 20px 0 0;
        }

        form {
            flex: 2;
        }
    }

    .newsletter-default {
        h3 {
            font-size: 4rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 16px;

            span {
                font-weight: 400;
                font-size: 1.4rem;
            }
        }

        .email_wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 8px;

            .email {
                display: flex;
                flex-direction: column;
                gap: 4px;
                flex: 1;
                position: relative;
                background-color: var(--white);
                border-radius: 8px;

                label {
                    position: absolute;
                    top: 50%;
                    left: 12px;
                    transform: translateY(-50%);
                    font-size: 1.2rem;
                    transition: all 0.3s ease-in-out;
                }

                input {
                    padding: 8px 12px;
                    border-radius: 8px;
                    border: none;
                    background-color: transparent;
                    z-index: 1;
                }

                &.onfocus {
                    label {
                        font-size: 1.8rem;
                        top: -11px;
                        left: 0;
                    }
                }
            }

            .btn:hover {
                color: var(--white);
            }
        }
    }

    &:has(.newsletter-aside) {
        padding: 32px 16px;
        border-radius: 0 18px 18px 0;

    }

    .newsletter-aside {
        .title h3 {
            font-size: var(--f-l);

            span {
                margin-top: 8px;
                display: block;
            }
        }

        .email {
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex: 1;
            position: relative;
            background-color: var(--white);
            border-radius: 8px;
            margin-bottom: 10px;

            label {
                position: absolute;
                top: 50%;
                left: 12px;
                transform: translateY(-50%);
                font-size: 1.2rem;
                transition: all 0.3s ease-in-out;
            }

            input {
                padding: 8px 12px;
                border-radius: 8px;
                border: none;
                background-color: transparent;
                z-index: 1;
                width: 100%;
            }

            &.onfocus {
                label {
                    font-size: 1.4rem;
                    top: -11px;
                    left: 0;
                }
            }
        }

        .btn {
            font-size: var(--f-xs);
        }
    }

    .protection_infos {
        padding-top: 16px;

        p,
        a {
            font-size: 1rem;
            font-weight: 400;
        }

        a {
            text-decoration: underline;

            &:hover {
                text-decoration: none;
            }
        }
    }
}

@media screen and (max-width: 800px) {
    .newsletter {
        padding: 16px;
    }
}

/* =============================================================================
    Divers
   ========================================================================== */
.callToReal {
    padding: 48px;
    width: 100%;

    &.red {
        background-color: var(--rouge-ebra);

        .cta-wrap {
            color: var(--rouge-ebra);
        }

    }

    &.blue {
        background-color: var(--bleu-ebra);

        .cta-wrap {
            color: var(--bleu-ebra);
        }

    }

    .content {
        margin: auto;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 16px !important;

        h2,
        p {
            margin: 0;
            color: var(--white);
        }

        .cta-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 14px;

            .btn {
                display: inline-block;
            }
        }
    }
}