.image_with_text_section {

    @media (min-width: 992px) {
        &.after_text {
            & .section_inner {
                flex-direction: row-reverse;
            }
        }
    }

    @media (max-width: 991px) {
        &.after_text {
            & .section_inner {
                flex-direction: column-reverse;
            }
        }
    }

    &.light_colour_scheme {
        & h1, & h2, & h3, & h4, & h5, & h6, & p, & a, & li, & span {
            color: var(--white);
        }
    }

    & .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: 38%;
            overflow: hidden;

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

            & img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all .5s ease;

                @media (max-width: 991px) {
                    margin-bottom: 5rem;
                }
            }
        }

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

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

            & .text_area {
                margin-bottom: 3rem;

                @media (max-width: 991px) {
                    text-align: center;
                }

                & h2, & h3 {
                    font-weight: 400;
                    font-size: 5rem;

                    @media (max-width: 991px) {
                        font-size: 3rem;
                    }
                }

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

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

                & ul {
                    display: flex;
                    flex-direction: row;
                    align-items: flex-start;
                    flex-wrap: wrap;
                    gap: 1rem;
                    margin: 3rem 0;
                    padding: 0;

                    @media (max-width: 767px) {
                        flex-direction: column;
                    }

                    & li {
                        width: calc(50% - .5rem);
                        position: relative;
                        list-style-type: none;
                        font-size: 1.8rem;
                        font-weight: 400;
                        color: var(--primary);
                        padding-left: 3.5rem;
                        border: 1px solid var(--primary);
                        padding: 1rem 1rem 1rem 3.5rem;
                        border-radius: 1rem;
                        display: flex;
                        align-items: center;
                        margin: 0;
                        
                        @media (max-width: 991px) {
                            text-align: left;
                        }
                        
                        @media (max-width: 767px) {
                            width: 100%;
                        }

                        &:before {
                            content: '';
                            position: absolute;
                            left: 6px;
                            top: 10px;
                            width: 24px;
                            height: 25px;
                            background: url("data:image/svg+xml,%3Csvg width='31' height='31' viewBox='0 0 31 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.4887 1.94287C22.9693 1.94287 29.0359 8.0095 29.0359 15.4901C29.0359 22.9708 22.9693 29.0374 15.4887 29.0374C8.00804 29.0374 1.94141 22.9708 1.94141 15.4901C1.94141 8.0095 8.00804 1.94287 15.4887 1.94287ZM12.6754 19.8904L9.35871 16.5709C8.79366 16.0056 8.79354 15.0836 9.35871 14.5183C9.924 13.9531 10.8501 13.9567 11.4113 14.5183L13.7495 16.8584L19.5663 11.0416C20.1316 10.4763 21.0537 10.4763 21.6188 11.0416C22.1841 11.6068 22.1833 12.5296 21.6188 13.0941L14.7741 19.9389C14.2096 20.5033 13.2867 20.5041 12.7216 19.9389C12.7057 19.923 12.6904 19.9068 12.6754 19.8904Z' fill='%2344251B'/%3E%3C/svg%3E") no-repeat center;
                            background-size: contain;
                        }
                    }
                }
            }
        }
    }

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

    & img.iwt_bg_pattern {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 0;
        width: 55rem;
        max-width: 100%;
    }
}