/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 22 2024 | 13:55:16 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

// JavaScript code to add 'wavve-active' class on click
const wavveCards = document.querySelectorAll('.wavve-card');

wavveCards.forEach((card) => {
  card.addEventListener('click', () => {
    // Remove 'wavve-active' from all cards to ensure only one is active
    wavveCards.forEach((c) => c.classList.remove('wavve-active'));
    
    // Add 'wavve-active' to the clicked card
    card.classList.add('wavve-active');
  });
});
