
Strategy & Advisory
Building digital programs and products that reach millions of consumers requires the orchestration of multiple skillsets and capabilities, often integrating new capabilities with legacy technologies and processes.
Strategy
Program Management
Change Management
Advisory Services
Other Services
// Truncate the descriptive text on service cards to fit the space comfortably:
// 1. Get all the p tags from the service-cards row at the bottom of the page.
// 2. The even-indexed ones will be the descriptive text; chop each one down to its first 64 characters and add an ellipsis (…) on the end.
const serviceTexts = document.querySelectorAll(“.cs-back p”);
serviceTexts.forEach((el, index) => {
if (index % 2 === 0) {
el.innerHTML = el.innerHTML.slice(0, 64) + “…”;
}
});