Crecimiento integral

Conoce todo lo que tenemos para ti

SCS University Guatemala:

Boulevard Los Próceres 24-69 Zona 10, Zona Pradera, Torre 1, 2do nivel oficina 204, Zona 10, Guatemala
Teléfono: +502 2302-4050

SCS University El Salvador:

Edificio Valencia, calle Llama del Bosque Poniente y pasaje S. Santa Elena III, Antiguo Cuscatlán.
Teléfono: +503 7820 8444

SCS University Miami:

6625 Miami Lakes Dr E, Lagos de Miami, FL 33014,
Estados Unidos

Scroll al inicio
/* ========================================================== SCS GROUP — JS GLOBAL Uso: pegar en Elementor > Custom Code, antes del cierre ========================================================== */ document.addEventListener("DOMContentLoaded", function(){ /* Reveal on scroll */ const revealItems = document.querySelectorAll(".scs-reveal"); const revealObserver = new IntersectionObserver((entries)=>{ entries.forEach(entry=>{ if(entry.isIntersecting){ entry.target.classList.add("is-visible"); revealObserver.unobserve(entry.target); } }); }, {threshold:.16}); revealItems.forEach(item=>revealObserver.observe(item)); /* Animated counters */ const counters = document.querySelectorAll("[data-scs-counter]"); const counterObserver = new IntersectionObserver((entries)=>{ entries.forEach(entry=>{ if(entry.isIntersecting){ const el = entry.target; const target = parseInt(el.getAttribute("data-scs-counter"), 10); const prefix = el.getAttribute("data-prefix") || ""; const suffix = el.getAttribute("data-suffix") || ""; let current = 0; const duration = 1400; const start = performance.now(); function update(now){ const progress = Math.min((now - start) / duration, 1); current = Math.floor(progress * target); el.textContent = prefix + current.toLocaleString("es-GT") + suffix; if(progress < 1) requestAnimationFrame(update); } requestAnimationFrame(update); counterObserver.unobserve(el); } }); }, {threshold:.35}); counters.forEach(counter=>counterObserver.observe(counter)); });