
bricks builder
Here goes your text ... Select any part of your text to access the formatting toolbar. Select any part of your text to access the formatting toolbar.
I am a button
Fancy Bricks
Here goes your text ... Select any part of your text to access the formatting toolbar. Select any part of your text to access the formatting toolbar.
I am a button
Ejoy Bricks
Here goes your text ... Select any part of your text to access the formatting toolbar. Select any part of your text to access the formatting toolbar.

bricks builder
Here goes your text ... Select any part of your text to access the formatting toolbar. Select any part of your text to access the formatting toolbar.
<script>
const fbAccordionItems = document.querySelectorAll('.fb-accordion-one__item');
fbAccordionItems.forEach((item, index) => {
if (index !== 0) {
item.addEventListener('mouseover', () => {
fbAccordionItems[0].classList.add('inactive');
item.classList.add('active');
});
item.addEventListener('focusin', () => {
fbAccordionItems[0].classList.add('inactive');
item.classList.add('active');
});
item.addEventListener('mouseout', () => {
fbAccordionItems[0].classList.remove('inactive');
item.classList.remove('active');
});
item.addEventListener('focusout', () => {
fbAccordionItems[0].classList.remove('inactive');
item.classList.remove('active');
});
item.querySelectorAll('a').forEach((link) => {
link.addEventListener('focusin', () => {
item.classList.add('active');
});
link.addEventListener('focusout', () => {
item.classList.remove('active');
});
});
}
});
</script>