.full-width-text {
    position: relative;
    overflow: hidden;
    padding-bottom: var(--spacing-6xl);
    display: flex;
    align-items: center;

    @media screen and (max-width: 991px) {
        padding-bottom: var(--spacing-2xl);
    }
    @media screen and (max-width: 576px) {
        padding-bottom: var(--spacing-xl);
    }
    &.min-height {
        min-height: 700px;

        @media screen and (max-width: 1200px) {
            min-height: 600px;
        }
        @media screen and (max-width: 768px) {
            min-height: auto;
        }
    }
    &.remove-tp {
        padding-top: 0;
    }
    &.remove-bp {
        padding-bottom: 0;
    }
    .container {
        position: relative;
        z-index: 2;
    }
    .text {
        *:first-child {
            margin-top: 0;
        }
        *:last-child {
            margin-bottom: 0;
        }
        h3 {
            margin-top: 4rem;

            @media screen and (max-width: 768px) {
                margin-top: 3rem;
            }
        }
        ul, ol {
            font-size: 2.8rem;

            @media screen and (max-width: 1500px) {
                font-size: 2.2rem;
            }
            @media screen and (max-width: 991px) {
                font-size: 2rem;
            }
            @media screen and (max-width: 576px) {
                font-size: var(--font-size-sm);
            }
        }
    }
    .button {
        margin-top: 60px;

        @media screen and (max-width: 1500px) {
            margin-top: 50px;
        }
        @media screen and (max-width: 991px) {
            margin-top: 40px;
        }
        @media screen and (max-width: 768px) {
            margin-top: 30px;
        }
        @media screen and (max-width: 576px) {
            margin-top: 25px;
        }
    }
    .accent-image {
        position: absolute;
        top: 35px;
        right: calc((100% - var(--container-max-width)) / 2);
        z-index: 1;
        pointer-events: none;

        @media screen and (max-width: 1200px) {
            width: 500px;
            right: calc(5% + var(--container-padding));
            opacity: .5;
        }
        @media screen and (max-width: 768px) {
            width: 300px;
            top: 20px;
        }
        @media screen and (max-width: 576px) {
            width: 200px;
            top: 15px;
        }
        &.bottom {
            top: auto;
            bottom: 65px;

            @media screen and (max-width: 1200px) {
                top: -75px;
                bottom: auto;
            }
            @media screen and (max-width: 768px) {
                top: -40px;
            }
            @media screen and (max-width: 576px) {
                top: -30px;
            }
        }
    }
}
