Lorem ipsum elementum tempus egestas sed sed. Eget nullam non nisi est sit amet facilisis magna. Venenatis cras sed felis eget velit aliquet sagittis id consectetur. Ipsum dolor sit amet consectetur adipiscing. Magna sit amet purus gravida quis. Praesent tristique magna sit amet purus. Turpis nunc eget lorem dolor sed. Dui id ornare arcu odio ut.
“A testimonial from a client who benefited from your product or service. Testimonials are a great way of establishing credibility and promoting your company’s brand.”
Emilia GardinerUnitex Inc.
“A testimonial from a client who benefited from your product or service. Testimonials are a great way of establishing credibility and promoting your company’s brand.”
Ewan ReyesBytes Holdings, LLC
“A testimonial from a client who benefited from your product or service. Testimonials are a great way of establishing credibility and promoting your company’s brand.”
Darlene KleinHarison Corp.
Mød vores kunder
Kunder som stoler på os
Ask Us Anything,
Anytime.
Collect visitor’s submissions and store them directly in your Elementor account, or integrate your favorite marketing & CRM tools.
document.addEventListener("DOMContentLoaded", function() {
// Wait for the overlay to load
var overlay = document.querySelector(".overlay");
if (!overlay) {
console.log("Overlay not found! Trying again...");
setTimeout(function() {
overlay = document.querySelector(".overlay");
}, 500);
}
// If overlay is still missing, stop execution
if (!overlay) {
return;
}
// Attach mousemove event to move the spotlight
document.addEventListener("mousemove", function(event) {
var x = event.clientX;
var y = event.clientY;
if (overlay) {
overlay.style.mask = "radial-gradient(circle 150px at " + x + "px " + y + "px, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%)";
overlay.style.webkitMask = "radial-gradient(circle 150px at " + x + "px " + y + "px, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%)";
}
});
});