.image_with_text_section {

    &.after_text {
        & .section_inner {
            flex-direction: row-reverse;
        }
    }

    & .section_inner {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        /* align-items: stretch; */
        justify-content: space-between;
        flex-wrap: wrap;

        & .left_side {
            width: 48%;

            @media (max-width: 991px) {
                width: 100%;
                margin-bottom: 5rem;
            }

            & iframe {
                width: 100%;
                height: 55rem;

                @media (max-width: 991px) {
                    height: 40rem;
                }
            }
        }

        & .right_side {
            width: 48%;
            display: flex;
            flex-direction: column;

            @media (max-width: 991px) {
                width: 100%;
            }

            & .text_area {
                margin-bottom: 3rem;

                & h2, & h3, & h4, & h5 {
                    margin: 0 0 3rem;

                    & span {
                        color: var(--primary);
                        font-size: inherit;
                        font-weight: inherit;
                    }
                }
            }
        }
    }
}