import { animateAboutImages, animateHeaderIcon, animateSectionExpand } from '$utils/gsap'; window.Webflow ||= []; window.Webflow.push(() => { /* DEFAULT FORM SELECTION */ const defaultRadioInput = document.querySelector( 'input[type="radio"][wf-custom="pre-selected"]' ) as HTMLInputElement; if (defaultRadioInput) { const wfSelectTarget = defaultRadioInput.previousElementSibling; if (wfSelectTarget && wfSelectTarget.classList.contains('w-radio-input')) { wfSelectTarget.classList.add('w--redirected-checked'); } } /* GSAP */ animateHeaderIcon(); animateAboutImages(); if (window.innerWidth >= 768) { window.onload = function () { const teamSection = document.querySelector('[wf-gsap="team-section"]') as HTMLElement; if (teamSection) { animateSectionExpand(teamSection); } }; } });