.rich_text_section {
    overflow: hidden;

    & .container {
        position: relative;
        z-index: 2;

        & .section_inner {
            width: 100%;
    
            & .text_area {
                width: 100%;
    
                & h2, & h3, & h4, & h5 {
                    margin: 3rem 0;
    
                    & span {
                        color: var(--primary);
                        font-size: inherit;
                        font-weight: inherit;
                    }
                }
    
                & p {
                    & a {
                        color: var(--text);
                    }
                }
            }
    
            & ul {
                & li {
                    color: var(--text);
                }
            }
    
            & .call_to_action_buttons {
                width: 100%;
                margin: 4rem 0 0;
            }
        }
    }
}