<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.image_with_text_alt_section {
    position: relative;

    &amp;:before {
        content: '';
        width: 50rem;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        background: var(--light-green);
        border-top-right-radius: 2rem;
        border-bottom-right-radius: 2rem;
    }

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

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

        &amp; .left_side {
            width: 38%;
            overflow: hidden;

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

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

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

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

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

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

            &amp; .text_area {
                margin-bottom: 3rem;

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

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

                &amp; ul {
                    margin-top: 2rem;
                    columns: 2;
                    padding: 0;

                    &amp; li {
                        position: relative;
                        list-style-type: none;
                        font-weight: 700;
                        color: var(--dark-green);
                        padding-left: 3.5rem;

                        &amp;: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='%23194C47'/%3E%3C/svg%3E") no-repeat center;
                            background-size: contain;
                        }
                    }
                }
            }
        }
    }

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

    &amp; img.iwt_bg_pattern {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 0;
        width: 55rem;
        max-width: 100%;
    }
}
</pre></body></html>