Let us be your guide

Ready to simplify your technology? We work closely with you to discover your business needs, build a roadmap aligning your information systems and guide you through the journey.

Get in touch with us and let’s explore together.

Step 1: Book a Time That Works Best For You

Step 2: Tell Us a Little About Yourself

  • This field is for validation purposes and should be left unchanged.

 

 

.scout-page-banner {
padding-bottom: 40px !important;
min-height: 430px !important;
padding-top: 90px !important;
}
iframe.timezest-wrap {
border: none;
margin: 0 auto;
display: block;
}
@media(min-width:920px){
#timezest-frame {
width:900px;
height:700px;
}
}
@media(max-width:919px){
#timezest-frame {
width:100%;
height:700px;
}
}

/*NOTE: Attempted to hide the confirm button in Timezest and click programatically but CORS policies prohibited it
// When the page is ready
window.addEventListener(‘load’, function () {
if (document.querySelector(‘body’) !== null) { // Some element that should be rendered by now before we execute code
const iframeStyle = document.createElement(‘style’);
iframeStyle.textContent = `
form.new_client_details_form button[type=”submit”] {
display: none !important;
}
`;
//document.head.appendChild(iframeStyle);
//document.getElementById(“myframe”).contentDocument
document.getElementById(“timezest-frame”).contentDocument.head.appendChild(iframeStyle);
}
});
*/