
Cybersecurity
Isobar`s approach to cybersecurity moves beyond compliance to continuous integration of security into all layers of the application stack.
Threat & Vulnerability Management
Event & Incident Response
Strategy & Architecture
Secure System Development
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) + “…”;
}
});