.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: 30%;
            overflow: hidden;

            @media (max-width: 1359px) {
                width: 48%;
            }

            @media (max-width: 991px) {
                width: 100%;
                margin-bottom: 5rem;
            }

            & img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all .5s ease;
            }

            &:hover {
                & img {
                    transform: scale(1.1);
                }
            }
        }

        & .right_side {
            width: 60%;
            display: flex;
            flex-direction: column;

            @media (max-width: 1359px) {
                width: 48%;
            }

            @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;
                    }
                }
            }
        }
    }

    & .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%;
            }
        }
    }
}
