.map_with_text_section {

    &.after_text {
        & .section_inner {
            flex-direction: row-reverse;
        }
    }

    & .section_inner {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        position: relative;
        justify-content: space-between;
        flex-wrap: wrap;
        z-index: 1;

        & .left_side {
            width: 48%;

            @media (max-width: 991px) {
                width: 100%;
            }
			
			iframe {
				width: 100%;
				height: 40rem;
			}
        }

        & .right_side {
            width: 48%;
            display: flex;
            flex-direction: column;

            @media (max-width: 991px) {
                width: 100%;
            }

            & .text_area {
                & h2, & h3, & h4, & h5 {
                    margin: 0 0 3rem;

                    & span {
                        color: var(--primary);
                        font-size: inherit;
                        font-weight: inherit;
                    }
                }

                & .call_to_action_buttons {
                    margin-top: 3rem;
                }
            }
        }
    }
}