NEWSLETTER.

A short description introducing your business and the services to visitors.
jQuery(document).ready(function($) { // Desplaçament suau per enllaços d'ancoratge $('a[href^="#"]').on('click', function(event) { var target = $($(this).attr('href')); if (target.length) { event.preventDefault(); // Evitar el comportament predeterminat $('html, body').animate({ scrollTop: target.offset().top }, { duration: 1200, easing: 'easeOutCubic' }); } }); $('.scroll-up').on('click', function(event) { $('html, body').animate({ scrollTop: 0 }, 1200, 'easeOutCubic'); event.preventDefault(); }); });