Stay connected. Join our list
Test page
To view videos, please turn on "Statistics" cookies at the icon at the bottom left or bar below, then refresh your browser.
function checkCookieConsent() {
// Check if Cookiebot is blocking cookies in the statistics category
if (window.CookieConsent && !CookieConsent.consent.statistics) {
document.getElementById('cookie-consent-message').style.display = 'flex'; // Show consent message
document.getElementById('vimeo-video').style.display = 'none'; // Hide video
} else {
document.getElementById('cookie-consent-message').style.display = 'none'; // Hide consent message
document.getElementById('vimeo-video').style.display = 'block'; // Show video
}
}
// Run the check on page load
window.addEventListener('load', checkCookieConsent);
// Also run the check whenever Cookiebot updates the consent status
window.addEventListener('CookieConsentUpdate', checkCookieConsent);