High quality illustration of the Flag of the Netherlands waving in the wind.
Flag of South Korea
I am a button

I am a heading

Here goes your text ... Select any part of your text to access the formatting toolbar.
Here goes your text ... Select any part of your text to access the formatting toolbar.
Here goes your text ... Select any part of your text to access the formatting toolbar.

Here goes your text ... Select any part of your text to access the formatting toolbar.
Here goes your text ... Select any part of your text to access the formatting toolbar.
Here goes your text ... Select any part of your text to access the formatting toolbar.

I am a button
<script>
/* Code from https://element.how/elementor-show-hide-section/
* Copyright 2023 https://element.how/
* No redistribution without permission
* Use on your own and your client sites is allowed and welcomed
*/
document.addEventListener('DOMContentLoaded', function () {
$ = jQuery;

let toggles, contents, closers;

function setupToggles() {
toggles = document.querySelectorAll('.toggleElem');
contents = document.querySelectorAll('.toggleContent');
closers = document.querySelectorAll('.toggleClose');
toggles.forEach((toggle, i) => {
if (toggle.classList.contains('toggleIsSetup')) return;
toggle.classList.add('toggleIsSetup');
toggle.addEventListener('click', function (e) {
e.preventDefault();
toggle.classList.toggle('toggleIsActive');
jQuery(contents[i]).slideToggle();
if (toggle.classList.contains('toggleIsActive')) resizeEvent();
});
});
closers.forEach((closer, i) => {
if (closer.classList.contains('toggleIsSetup')) return;
closer.classList.add('toggleIsSetup');
closer.addEventListener('click', function (e) {
e.preventDefault();
toggles[i].classList.remove('toggleIsActive');
jQuery(contents[i]).slideUp();
});
});
contents.forEach(content => {
if (content.classList.contains('toggleIsSetup')) return;
content.classList.add('toggleIsSetup');
content.style.display = 'none';
});
}
setupToggles();

/* compatibility for Elementor popups */
jQuery(document).on('elementor/popup/show', () => {
setupToggles();
});

function resizeEvent() {
setTimeout(function () {
window.dispatchEvent(new Event('resize'));
}, 400);
}

});
</script>

<style>
.toggleElem a, .toggleElem svg, .toggleElem i, .toggleClose a, .toggleClose i, .toggleClose img {
cursor: pointer;
transition: transform 0.34s ease;
}

/* rotate the icon in the button or icon element when toggle is active */
.toggleIsActive i, .toggleIsActive svg {
transform: rotate(90deg);
}

/* for a smooth animation we move the min height property to the inner container, be certain you are using "boxed" layout if you need a min height */
.toggleContent.e-con {
min-height: initial;
}
.toggleContent > .e-con-inner {
min-height:var(--min-height);
}
</style>