.full_1col {

    .content {
        padding: 40px;
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        z-index: 1;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--border-radius);
        min-height: 360px;

        @media (min-width: 992px) {
            border-radius: var(--border-radius);
            padding: 100px;
        }

        &[data-color="#4766ff"] {
            &.full_c {
                &:after {
                    background: linear-gradient(0deg, rgba(80, 110, 255, 1) 0%, rgba(80, 110, 255, 0) 100%);
                }
            }

            &.full_g {
                &:after {
                    background: linear-gradient(90deg, rgba(80, 110, 255, 1) 0%, rgba(80, 110, 255, 0) 100%);
                }
            }

            &.full_d {
                &:after {
                    background: linear-gradient(-90deg, rgba(80, 110, 255, 1) 0%, rgba(80, 110, 255, 0) 100%);
                }
            }
        }

        &[data-color="#004baf"] {
            &.full_c {
                &:after {
                    background: linear-gradient(0deg, rgba(154, 92, 255, 0) 0%, rgba(0, 75, 175, 1) 100%);
                }
            }

            &.full_g {
                &:after {
                    background: linear-gradient(90deg, rgba(0, 75, 175, 1) 0%, rgba(154, 92, 255, 0.2) 100%);
                }
            }

            &.full_d {
                &:after {
                    background: linear-gradient(-90deg, rgba(154, 92, 255, 0) 0%, rgba(0, 75, 175, 1) 100%);
                }
            }
        }

        &[data-color="#9a5cff"] {
            &.full_c {
                &:after {
                    background: linear-gradient(0deg, rgba(154, 92, 255, 0) 0%, rgba(154, 92, 255, 1) 100%);
                }
            }

            &.full_g {
                &:after {
                    background: linear-gradient(90deg, rgba(154, 92, 255, 1) 0%, rgba(154, 92, 255, 0) 100%);
                }
            }

            &.full_d {
                &:after {
                    background: linear-gradient(-90deg, rgba(154, 92, 255, 1) 0%, rgba(154, 92, 255, 0) 100%);
                }
            }
        }

        &:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            border-radius: var(--border-radius);
        }

        &.full_c {
            .wrapper__content {
                margin: 0 auto;
                text-align: center;

                @media (min-width: 992px) {
                    max-width: 824px;
                }

                #calcom-embed-link {
                    margin: auto;
                }

                .cta {
                    a {
                        margin: auto;
                    }
                }
            }
        }

        &.full_g {
            .wrapper__content {
                text-align: left;
                margin-right: auto;
                
                @media (min-width: 992px) {
                    width: 55%;
                }

                .cta {
                    a {
                        margin-right: auto;
                    }
                }
            }
        }

        &.full_d {
            .wrapper__content {
                text-align: right;
                margin-left: auto;
                
                @media (min-width: 992px) {
                    width: 55%;
                }

                .cta {
                    a {
                        margin-left: auto;
                    }
                }
            }
        }

        .wrapper__content {
            z-index: 2;

            >* {
                color: var(--white);
            }

            h2 {
                line-height: normal;
            }

            #calcom-embed-link {
                font-family: var(--main-font);
                background: transparent !important;
                border: 1px solid var(--white) !important;

                &:hover {
                    background: var(--blue) !important;
                    border: 1px solid var(--blue) !important;
                }
            }

            .section__btn {
                font-family: var(--main-font);
                margin: 0;

                .bouton {
                    font-family: var(--main-font);
                    background: transparent;
                    border: 1px solid var(--white);

                    &:hover {
                        background: var(--blue);
                        border: 1px solid var(--blue);
                    }
                }
            }

            .cta {
                display: flex;
                gap: 5px;

                .bouton {
                    &:not(:hover) {
                        background-color: var(--light-purple) !important;
                    }
                }
            }
        }
    }
}