.full_1col {
    overflow: hidden;

    .full_1col__content {
        display: flex;
        position: relative;
        flex-direction: column;
        background-size: cover;
        background-repeat: no-repeat;
        height: fit-content;
        background-position: center;
        z-index: 0;
        border-radius: var(--border-radius);
        
        @media (max-width: 991px) {
            background-image: none !important;
        }
        
        @media (min-width: 992px) {
            min-height: 500px;
            
            &:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(10, 31, 69, 1) 62%);
                z-index: 1;
                border-radius: var(--border-radius);
            }
        }

        &.reverse {
            flex-direction: column-reverse;
        }

        @media (min-width: 992px) {
            flex-direction: row;

            &.reverse {
                flex-direction: row-reverse;
            }
        }

        .full_1col__para {
            position: relative;
            z-index: 3;
            flex: 1;
            padding: 25px;
            height: 100%;
            margin: auto 0;
            
            @media (min-width: 992px) {
                max-width: 50%;
                padding: 50px 124px;
            }

            >*:not(.cta .bouton, .bouton) {
                @media (min-width: 992px) {
                    color: var(--white) !important;
                }

                &:first-child {
                    margin-top: 0;
                }
            }

            h2,
            h3,
            h4 {
                margin: 16px 0 10px 0;
            }

            p:last-child {
                margin-bottom: 0;
            }

            .section__btn {
                margin: 0px;
            }

            .cta {
                margin-top: 0px !important;

                img {
                    margin: 0 !important;
                }
            }

            .bouton {
                &:hover {
                    background: var(--white) !important;
                    color: var(--orange) !important;
                }
            }
        }

        .full_1col__media {
            z-index: 0;
            position: relative;
            height: 300px;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;

                @media (min-width: 992px) {
                    max-height: 100%;
                    height: unset;
                }
            }

            @media (min-width: 992px) {
                display: none;
            }

            &:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(10, 31, 69, 0.8) 65%);
                z-index: 1;
            }
        }
    }
}