.image_with_text_section {
    width: 100%;
    position: relative;

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

    &.blue_colour_scheme {
        background: #0F55B2 !important;

        & h1, & h2, & h3, & h4, & span, & p, & li, & a {
            color: #FFFFFF !important;
        }

        & .call_to_action_buttons a.button {
            background-color: #FFFFFF !important;
            color: #0F55B2 !important;
        }

        & .section_inner {
            & .right_side {
                @media (max-width: 991px) {
                    padding: 30px !important;
                }

                & .text_area {
                    @media (max-width: 991px) {
                        padding: 0 30px;
                        margin-bottom: 20px;
                    }
                }
            }
        }
    }

    &.white_colour_scheme {
        & .section_inner {
            & .right_side {
                @media (max-width: 991px) {
                    margin-top: 30px;
                }
            }
        }
    }

    & .section_outer {
        & .right_side {
            padding: 100px;
        }
    }

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

        @media (max-width: 991px) {
            flex-direction: column !important;
        }

        & .left_side {
            width: 38%;
            overflow: hidden;
            font-size: 0;

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

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

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

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

            & .text_area {
                @media (min-width: 992px) {
                    margin-bottom: 30px;
                }

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

                & h2:first-of-type, & h3:first-of-type {
                    font-size: 40px;
                    font-weight: 600;
                    color: #0F55B2;
                    margin: 0 0 30px;

                    @media (max-width: 991px) {
                        font-size: 26px;
                        margin: 0 0 20px;
                    }
                }

                & h2:not(:first-of-type), & h3:not(:first-of-type), & h4, & h5 {
                    font-size: 30px;
                    font-weight: 600;
                    margin: 30px 0;

                    & span {
                        color: #012D52;
                        font-size: inherit;
                        font-weight: inherit;
                    }
                }

                & p {
                    font-size: 16px;
                    font-weight: 300;
                }

                & ul {
                    margin: 20px 0;
                    padding: 0;

                    & li {
                        font-size: 16px;
                        font-weight: 300;
                        position: relative;
                        list-style-type: none;
                        color: #012D52;
                        padding-left: 3.50px;
                        
                        @media (max-width: 991px) {
                            text-align: left;
                        }

                        &:before {
                            content: '';
                            position: absolute;
							left: 0;
                            top: 2px;
                            width: 24px;
                            height: 25px;
                            background: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.8597 0.414551C5.32052 0.414551 0 5.73507 0 12.2743C0 18.8134 5.32052 24.134 11.8597 24.134C18.3989 24.134 23.7194 18.8134 23.7194 12.2743C23.7194 5.73507 18.3989 0.414551 11.8597 0.414551ZM18.4881 9.15329L10.9086 16.6734C10.4627 17.1192 9.74934 17.1489 9.27376 16.7031L5.26108 13.0471C4.7855 12.6012 4.75577 11.8581 5.1719 11.3826C5.61776 10.907 6.36085 10.8773 6.83643 11.3231L10.0168 14.236L16.7938 7.45904C17.2694 6.98346 18.0125 6.98346 18.4881 7.45904C18.9636 7.93462 18.9636 8.67771 18.4881 9.15329Z' fill='%23EDAB72'/%3E%3C/svg%3E") no-repeat center;
                            background-size: contain;
                        }
                    }
                }
            }

            & .call_to_action_buttons {
                @media (max-width: 991px) {
                    & a {
                        width: auto;
                    }
                }
            }
        }
    }
}