<div class="global-terms w-full bg-brand-cream-viii relative flex flex-col justify-start items-start">
    <div class="container-wrapper w-full relative max-w-7xl mx-auto flex flex-col justify-start items-start">
        <div class="padding-wrapper w-full relative px-6 sm:px-8 lg:px-10 pb-26 pt-8 sm:pb-32 sm:pt-10 md:pb-36 lg:pt-12 lg:pb-32 1.5xl:py-12">
            <div class="content-wrapper w-full flex flex-col justify-start items-start">
                <div class="top-wrapper w-full flex flex-col xs:flex-row justify-start xs:justify-between items-start">
                    <div class="left-wrapper">
                        <p class="text-sm lg:text-base font-body text-black-primary">
                            © {{ 'now'|date('Y') }} Habilitas, All Rights Reserved
                        </p>
                        <div class="licenses-NDIS-wrapper flex flex-col sm:flex-row justify-start items-start sm:items-center mt-6">
                            <div class="license-wrapper flex flex-col justify-start items-start sm:order-last">
                                <p class="text-sm lg:text-base font-body text-black-primary">
                                    {{ globalABN }}
                                </p>
                                {% if globalNDIS | length %}
                                    <p class="text-sm lg:text-base font-body text-black-primary mt-4">
                                        Registered NDIS Provider - {{ globalNDIS }}
                                    </p>
                                {% endif %}
                            </div>
                            {% if globalNDIS | length %}
                                <span class="sr-only">
                                    The SVG below is a logo with "We love NDIS" on it.
                                </span>
                                {{ svg(svgPath ~ 'core/we-love-ndis.svg') | attr({ class: 'w-16 lg:w-20 mt-6 sm:mt-0 sm:mr-6' }) }}
                            {% endif %}
                        </div>
                    </div>
                    <div class="right-wrapper flex flex-col sm:flex-row justify-start xs:justify-end items-start xs:items-end mt-6 xs:-mt-3 sm:mt-0">
                        {% if showPrivacyFooter %}
                            <a href="/privacy-policy" class="text-sm lg:text-base xs:text-right font-body text-black-primary py-3 sm:py-0 transition-colors duration-700 sm:hover:text-black">
                                Privacy Policy
                            </a>
                        {% endif %}
                        {% if showTermsFooter %}
                            <a href="/terms-and-conditions" class="text-sm lg:text-base xs:text-right font-body text-black-primary py-3 sm:py-0 sm:ml-6 transition-colors duration-700 sm:hover:text-black">
                                Terms and Conditions
                            </a>
                        {% endif %}
                        {% if showSitemapFooter %}
                            <a href="/sitemap" class="text-sm lg:text-base xs:text-right font-body text-black-primary py-3 sm:py-0 sm:ml-6 transition-colors duration-700 sm:hover:text-black">
                                Sitemap
                            </a>
                        {% endif %}
                    </div>
                </div>
                <div class="bottom-wrapper w-full flex flex-col xs:flex-row justify-start xs:justify-between items-start xs:items-end mt-6 sm:mt-0">
                    <div class="credit-wrapper flex flex-row justify-center items-center mt-2 sm:mt-6">
                        <a href="https://www.mintyy.com.au/" target="_blank" rel="noopener" class="text-sm lg:text-base font-body text-mintyy-green py-3 sm:py-0 transition-colors duration-700 xs:hover:text-black">
                            Website by Mintyy
                        </a>
                    </div>
                    {% include themeDir ~ '/_includes/_modules/_button' with {
                        'buttonType': 'button',
                        'id': 'backToTopButton',
                        'buttonText': 'Back to top',
                        'title': 'Scroll to top',
                        'theme': 'primary',
                        'addCustomClasses': 'mt-4'
                    } %}
                </div>
            </div>
        </div>
    </div>
</div>