.etapes{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: var(--wp--style--root--padding-left);
    padding-right: var(--wp--style--root--padding-right);
    padding-bottom: var(--wp--preset--spacing--70);
    position: relative;
}
    .etapes::before{
        content: "";
        height: calc(50% + (var(--wp--preset--spacing--70) / 2));
        width: 100%;
        background: var(--wp--preset--color--nv-blue-lighter);
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
    }
    .etapes_list{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--wp--preset--spacing--60);
        width: 100%;
        max-width: var(--wp--style--global--content-size);
        position: relative;
        z-index: 2;
    }
            .etape{
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: var(--wp--preset--spacing--50);
                width: calc((100% - (2 * var(--wp--preset--spacing--60))) / 3);
                background: var(--wp--preset--color--nv-blue-dark);
                color: var(--wp--preset--color--nv-white) !important;
                padding: var(--wp--preset--spacing--70);
                position: relative;
                transition: all .2s ease-in-out;
            }
                .etape_number{
                    color: var(--wp--preset--color--nv-blue-cyan);
                    font-size: var(--wp--preset--font-size--45);
                }
                .etape_titre{
                    font-size: var(--wp--preset--font-size--24);
                    font-weight: 900;
                    text-transform: uppercase;
                }
                .etape_texte{
                }
                    .etape_texte *:first-child{
                        margin-block-start: 0;
                    }
                    .etape_texte *:last-child{
                        margin-block-end: 0;
                    }
                .etape_liens{
                    display: flex;
                    flex-direction: column;
                    width: 100%;
                    gap: 15px;
                }
                    .etape_lien{
                        flex-shrink: 0;
                        display: flex;
                        flex-direction: row;
                        align-items: flex-end;
                        gap: 7px;
                        padding-right: 16px;
                        position: relative;
                        transition: padding-right .2s ease-in-out;
                    }
                    .etape_lien:hover .etape_lien-dot {
                        padding-right: 0;
                    }
                        .etape_lien-dot{
                            width: 6px;
                            height: 6px;
                            margin-bottom: 3px;
                            background: var(--wp--preset--color--nv-blue-cyan);
                            transition: width .2s ease-in-out;
                        }
                        .etape_lien:hover .etape_lien-dot {
                            width: 16px;
                        }
                        .etape_lien-label{
                            line-height: 20px;
                            color: var(--wp--preset--color--nv-blue-cyan);
                            font-size: var(--wp--preset--font-size--20);
                            font-weight: 600;
                        }