.breakdance .bde-section-60-102 .section-container{display:flex;flex-direction:column}.breakdance .bde-section-60-102 .section-container{padding-left:0px;padding-right:0px;padding-bottom:0px;padding-top:0px}<script>document.addEventListener('DOMContentLoaded',function (){const accordions=document.querySelectorAll('.ai-accordion');accordions.forEach(function (accordion){const items=accordion.querySelectorAll('.bde-dynamic-repeater-item');items.forEach(function (item){const toggleTitle=item.querySelector('.ai-toggle_title');const toggleContent=item.querySelector('.ai-toggle_content');const toggleChevron=item.querySelector('.ai-toggle_chevron');// Initialize content to be collapsed toggleContent.style.maxHeight='0';toggleContent.style.overflow='hidden';toggleTitle.addEventListener('click',function (){const isOpen=toggleContent.style.maxHeight !=='0px';// Close all other accordions in this group items.forEach(function (otherItem){const otherContent=otherItem.querySelector('.ai-toggle_content');const otherChevron=otherItem.querySelector('.ai-toggle_chevron');const otherTitle=otherItem.querySelector('.ai-toggle_title');if (otherContent !==toggleContent){otherContent.style.maxHeight='0';if (otherChevron){otherChevron.style.transform='rotate(0deg)'}if (otherTitle){otherTitle.classList.remove('toggle-open')}}});// Toggle the clicked accordion if (isOpen){toggleContent.style.maxHeight='0';if (toggleChevron){toggleChevron.style.transform='rotate(0deg)'}toggleTitle.classList.remove('toggle-open')}else{toggleContent.style.maxHeight=toggleContent.scrollHeight + 'px';if (toggleChevron){toggleChevron.style.transform='rotate(180deg)'}toggleTitle.classList.add('toggle-open')}})})})});</script><style>.ai-toggle_title{cursor:pointer}.ai-toggle_chevron,.ai-toggle_content{transition:.5s all ease}