// ************************ FOOTER V2 ************************
// Select the elements
const socialStripe = document.querySelector('.social-stripe-section');
const footerSection = document.querySelector('.footer-section');
// Check if both elements exist
if (socialStripe && footerSection) {
// Create the wrapper div
const wrapper = document.createElement('div');
wrapper.classList.add('social-footer-wrapper');
// Append the wrapper to the parent container
socialStripe.parentNode.insertBefore(wrapper, socialStripe);
// Move the social-stripe-section and footer-section into the wrapper
wrapper.appendChild(socialStripe);
wrapper.appendChild(footerSection);
}
// ************************ END FOOTER V2 ************************
}