Contact

Contact us and let us know how we can help you.

Do you have any questions?

Send us a message:

You will receive our response soon.

We would love to hear from you!

Your opinion is very important to us, and we are here to answer all your questions. No matter the topic, we are ready to offer the help you need. Don’t hesitate to contact us!

Message Us!

[email protected]

document.addEventListener('DOMContentLoaded', function() { const filterButtons = document.querySelectorAll('.filter-btn'); const contentItems = document.querySelectorAll('.content-item'); filterButtons.forEach(button => { button.addEventListener('click', function() { const filter = this.getAttribute('data-filter'); // Remove active class from all buttons filterButtons.forEach(btn => btn.classList.remove('active')); // Add active class to clicked button this.classList.add('active'); // Filter content items with smooth animation contentItems.forEach(item => { const category = item.getAttribute('data-category'); if (filter === 'all' || category === filter) { item.classList.remove('hidden'); } else { item.classList.add('hidden'); } }); }); }); });