.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(154, 92, 255, 0) 0%, rgba(0, 75, 175, 1) 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 {
            margin: 0 auto;
            max-width: 824px;
            text-align: center;
        }

        &.full_g {
            .wrapper__content {
                text-align: left;
                margin-right: auto;
                width: 55%;
            }
        }

        &.full_d {
            .wrapper__content {
                text-align: right;
                margin-left: auto;
                width: 55%;
            }
        }

        .wrapper__content {
            z-index: 2;

            >* {
                color: var(--white);
                font-family: var(--title-font);
            }

            h2 {
                line-height: normal;
            }

            .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);
                    }
                }
            }
        }
    }
}