.block-cta-formation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    /* margin-block: 24px; */
    margin-top:24px;
    scroll-margin-top: 150px;
    border-radius: 16px;
    background: #0070B8;
    color: #fff;
    text-align: center;

    @media (width > 768px) {
        margin-block:0;
          margin-top:24px;
        margin-inline: auto;
        width: 800px;
        padding: 32px 64px;
    }

    h2 {
        color: #fff;
        margin-bottom: 0;
    }

    p {
        margin-bottom: 0;
        font-size: 1.8rem;
    }

    .action {

        a {
            display: flex;
            align-items: center;
            height: 44px;
            background: #fff;
            border-radius: 12px;
            border: 3px solid transparent;
            color: #0070B8;
            transition: 250ms ease-out;
            padding-inline: 24px;
            font-size: 1.8rem;
            font-weight: 600;
            line-height: 18px;

            &:hover {
                color: #fff;
                background: #0070B8;
                border-color: #fff;
            }
        }
    }

}