buttons.forEach((button, i) => {
gsap.to(button, {
x: 0,
opacity: 1,
delay: 0 + (.055 * i),
duration: 0.25
});
});
let headingLetters = title.querySelectorAll('span');
headingLetters.forEach((letter, i) => {
gsap.to(letter, {
opacity: 1,
delay: 0 + (.055 * i),
duration: .1
});
});