.title_with_text_section {

    &.after_text {
        & .section_inner {
            flex-direction: row-reverse;
        }
    }

    & .section_inner {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;

        & .left_side {
            width: 38%;
            overflow: hidden;

            @media (max-width: 1359px) {
                width: 48%;
            }

            @media (max-width: 991px) {
                width: 100%;
            }
    
            & h2, & h3, & h4, & h5 {
                margin: 0 0 3rem;

                & span {
                    color: var(--primary);
                    font-size: inherit;
                    font-weight: inherit;
                }
            }
        }

        & .right_side {
            width: 58%;
            display: flex;
            flex-direction: column;

            @media (max-width: 1359px) {
                width: 48%;
            }

            @media (max-width: 991px) {
                width: 100%;
            }

            & .text_area {
                @media (min-width: 992px) {
                    margin-bottom: 3rem;
                }

                & h2, & h3, & h4, & h5 {
                    margin: 0 0 3rem;

                    & span {
                        color: var(--primary);
                        font-size: inherit;
                        font-weight: inherit;
                    }
                }
            }
        }
    }

    & .circle {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    & .left_circle {
        left: 0;

        & svg {
            @media (max-width: 991px) {
                width: 6rem;
                max-width: 100%;
            }
        }
    }

    & .right_circle {
        right: 0;

        & svg {
            @media (max-width: 991px) {
                width: 6rem;
                max-width: 100%;
            }
        }
    }
}
