.rich_text_section {
    width: 100%;
    position: relative;
    overflow: hidden;

    & .container {
        position: relative;
        z-index: 2;

        & .section_inner {
            width: 100%;
            display: flex;
            justify-content: center;
    
            & .text_area {
                width: 700px;
                max-width: 100%;
    
                & h2, & h3 {
                    width: 100%;
                    text-align: center;
                    font-size: 40px;
                    font-weight: 600;
                    margin: 0 0 30px;
                    color: #FFFFFF;

                    @media (max-width: 991px) {
                        font-size: 26px;
                    }
                }
    
                & p {
                    font-size: 16px;
                    font-weight: 300;
                    color: #FFFFFF;
                    text-align: center;
                }
            }
    
            & .call_to_action_buttons {
                width: 100%;
                margin: 40px 0 0;
            }
        }
    }

    & .image_overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        background: rgba(1, 45, 82, .8);
    }

    & img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        object-fit: cover;
        object-position: center;
    }
}