<style></style>

<script>
jQuery(function($) {
    // Function to force repaint/reflow
    function forceRepaint() {
        document.body.style.display = 'none';
        document.body.offsetHeight; // Force reflow
        document.body.style.display = 'block';
        window.dispatchEvent(new Event('resize'));
    }

    function closeAllOffCanvas(exceptID = null) {
        let anyOpen = false; // Track if another Off-Canvas remains open

        $(".e-off-canvas").each(function() {
            let canvasID = $(this).attr("id");

            if (!exceptID || canvasID !== exceptID) {
                $(this).removeClass("e-off-canvas-visible")
                       .addClass("e-off-canvas-hidden")
                       .attr("aria-hidden", "true")
                       .css({
                           "z-index": "10",
                           "visibility": "hidden",
                           "opacity": "0"
                       });

                // Full removal delay set to 0ms
                setTimeout(() => {
                    if ($(this).attr("aria-hidden") === "true") {
                        $(this).css("display", "none");
                    }
                }, 0);
            } else {
                anyOpen = true; // At least one Off-Canvas is still open
            }
        });

        // Remove white background delay set to 0ms
        setTimeout(() => {
            if (!$(".e-off-canvas-visible").length) {
                $("body").removeClass("off-canvas-active");
                forceRepaint(); // Force repaint when closing all
            }
        }, 0);
    }

    function openOffCanvas(targetID) {
        let targetCanvas = $(targetID);

        if (targetCanvas.length) {
            // Close all others EXCEPT the one we're opening
            closeAllOffCanvas(targetID);

            // Open immediately with delay set to 0ms
            setTimeout(() => {
                targetCanvas.removeClass("e-off-canvas-hidden")
                            .addClass("e-off-canvas-visible")
                            .attr("aria-hidden", "false")
                            .css({
                                "z-index": "9999",
                                "visibility": "visible",
                                "opacity": "1",
                                "display": "block"
                            });

                // Ensure the White Background Stays Visible
                $("body").addClass("off-canvas-active");
                
                // Force repaint after opening
                forceRepaint();

            }, 0);
        }
    }

    // Decode Base64
    function decodeBase64(str) {
        try {
            return atob(str);
        } catch (e) {
            return null;
        }
    }

    // Handle Elementor Off-Canvas OPEN clicks
    $(document).on('click', '[href*="elementor-action%3Aaction%3Doff_canvas%3Aopen"]', function(event) {
        event.preventDefault();
        let href = decodeURIComponent($(this).attr("href"));

        let base64Match = href.match(/settings=([^&]+)/);
        if (base64Match) {
            let decodedSettings = decodeBase64(base64Match[1]);

            try {
                let settingsObj = JSON.parse(decodedSettings);
                if (settingsObj.id) {
                    let offCanvasID = "#off-canvas-" + settingsObj.id;
                    openOffCanvas(offCanvasID);
                }
            } catch (e) {}
        }
    });

    // Handle Elementor Off-Canvas CLOSE clicks
    $(document).on('click', '[href*="elementor-action%3Aaction%3Doff_canvas%3Aclose"]', function(event) {
        event.preventDefault();
        closeAllOffCanvas();
    });

    // Ensure all Off-Canvas elements start hidden
    $(".e-off-canvas").each(function() {
        $(this).attr("aria-hidden", "true").css({
            "z-index": "10",
            "visibility": "hidden",
            "opacity": "0",
            "display": "none"
        });
    });

    // Handle same-page anchor link clicks
    $(document).on('click', 'a[href*="#"]', function(event) {
        let href = $(this).attr('href');
        if (href.indexOf('#') !== -1) {
            // Close all off-canvas widgets when an anchor link is clicked
            closeAllOffCanvas();
        }
    });

});
</script>
				
			
ARIC Online Panel

Online expert panel on the topic of “AI and crisis – opportunities and challenges of using AI”

This post has been translated by an AI and may contain translational inaccuracies.

The current coronavirus pandemic poses a global challenge for the economy and society in addition to the considerable risks to health. Even if the effects vary depending on the industry, companies and industries that operate in the area of critical infrastructure in particular come under increasing pressure in times like these. The state or the political leadership of a country or the federal states and municipalities have a significant role to play here.

Particularly when markets that are important for Europe, such as China and the USA, are largely shut down, there are hardly any alternatives to fall back on in tightly synchronized supply and value chains. The fragility and dependency of systems is becoming a global challenge, and resilience the most important characteristic.

Furthermore, it is currently still uncertain how long the restrictions will remain in place and what impact this will have on the complex structures of the globalized economy in the long term.

In our online panel on the topic of “AI and crisis – opportunities and challenges of using AI”, our experts from business, science and society discuss the challenges that globally active companies and economic sectors are currently facing and the special role that government institutions have to play in such times. They will provide insights into current measures to cushion recessionary trends and show how a rapidly growing technology such as artificial intelligence can provide support in times of global crisis, e.g. to allocate resources in ailing supply and value chains in the best possible way and how a state’s digitalization strategies can be adapted to meet the challenges.

We were able to recruit the following experts for our online panel:

  • Dr. Adrian Fiedler (lawyer and consultant for digital strategies in the state administration)
  • Riina Leminsky (Head of Enterprise Estonia Germany)
  • Prof. Dr. Bernd Schichold (Finance, Nexperia)
  • Prof. Dr. Nick Gehrke (Head of Finance Management and Accounting, Nordakademie / Data Scientist, Zapliance)
  • Alois Krtil (CEO, ARIC)

The event will take place online on 29.04.2020 at 3 pm.

You can register at info@aric-hamburg.de. The registration deadline is 27.04.2020. Once we have received all registrations, we will send you a link that you can use to join without further ado.