{"id":103440,"date":"2026-07-10T12:20:20","date_gmt":"2026-07-10T17:20:20","guid":{"rendered":"https:\/\/sirixmonitoring.com\/?page_id=103440"},"modified":"2026-08-24T07:15:16","modified_gmt":"2026-08-24T12:15:16","slug":"surveillance-video-en-direct","status":"publish","type":"page","link":"https:\/\/sirixmonitoring.com\/fr-ca\/","title":{"rendered":"Surveillance vid\u00e9o en direct"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"103440\" class=\"elementor elementor-103440\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-729b124a e-con-full e-flex e-con e-parent\" data-id=\"729b124a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/youtu.be\\\/oIraPrfybhA&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-video-embed\" role=\"presentation\"><\/div>\n\t\t\t\t\t\t<\/div><div class=\"elementor-element elementor-element-3960395d e-con-full e-flex e-con e-child\" data-id=\"3960395d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4eb2ceb1 vol-icon-unmute elementor-view-stacked elementor-shape-circle elementor-widget elementor-widget-icon\" data-id=\"4eb2ceb1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<i aria-hidden=\"true\" class=\"fas fa-volume-mute\"><\/i>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4be32bf6 vol-icon-mute elementor-view-stacked elementor-shape-circle elementor-widget elementor-widget-icon\" data-id=\"4be32bf6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<i aria-hidden=\"true\" class=\"fas fa-volume-up\"><\/i>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a1bb449 elementor-widget elementor-widget-html\" data-id=\"a1bb449\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\r\naudio { display: none; }\r\n<\/style>\r\n\r\n<audio id=\"hero-audio\">\r\n  <source src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/Sirix-Live-Remote-Video-Monitori-home-page-sound.mp3\" type=\"audio\/mpeg\">\r\n<\/audio>\r\n\r\n<script>\r\n(function () {\r\n  window.addEventListener('load', function () {\r\n\r\n    let iframe, audio, player, unmuteIcon, muteIcon;\r\n    let syncTimer = null;\r\n    let soundEnabled = false;\r\n    let readyCheck;\r\n    let elapsed = 0;\r\n\r\n    function init() {\r\n      elapsed += 300;\r\n\r\n      \/\/ \ud83d\udd25 Timeout guard \u2014 15s baad band\r\n      if (elapsed >= 15000) {\r\n        clearInterval(readyCheck);\r\n        return;\r\n      }\r\n\r\n      iframe     = document.querySelector('.elementor-background-video-embed');\r\n      audio      = document.getElementById('hero-audio');\r\n      unmuteIcon = document.querySelector('.vol-icon-unmute');\r\n      muteIcon   = document.querySelector('.vol-icon-mute');\r\n\r\n      if (!iframe || !audio || !unmuteIcon || !muteIcon || !window.YT?.get) return;\r\n\r\n      player = YT.get(iframe.id);\r\n      if (!player) return;\r\n\r\n      clearInterval(readyCheck);\r\n      setup();\r\n    }\r\n\r\n    function setup() {\r\n      \/\/ Initial state\r\n      audio.preload = 'none';\r\n      audio.muted   = true;\r\n      audio.volume  = 1;\r\n      muteIcon.style.display   = 'none';\r\n      unmuteIcon.style.display = 'block';\r\n\r\n      \/\/ \ud83d\udd25 Smart sync \u2014 only when tab visible\r\n      function startSync() {\r\n        if (syncTimer) return;\r\n        syncTimer = setInterval(syncAudio, 400);\r\n      }\r\n      function stopSync() {\r\n        clearInterval(syncTimer);\r\n        syncTimer = null;\r\n      }\r\n\r\n      startSync();\r\n      document.addEventListener('visibilitychange', () => {\r\n        document.hidden ? stopSync() : startSync();\r\n      });\r\n\r\n      \/\/ \ud83d\udd0a Unmute\r\n      unmuteIcon.addEventListener('click', function () {\r\n        soundEnabled = true;\r\n        const t = player.getCurrentTime();\r\n\r\n        \/\/ \ud83d\udd25 Load sirf ek baar\r\n        if (audio.readyState < 2) {\r\n          audio.preload = 'auto';\r\n          audio.muted   = false;\r\n          audio.load();\r\n          audio.addEventListener('canplay', function once() {\r\n            audio.removeEventListener('canplay', once);\r\n            audio.currentTime = t;\r\n            audio.play().catch(() => {});\r\n          });\r\n        } else {\r\n          audio.muted       = false;\r\n          audio.currentTime = t;\r\n          audio.play().catch(() => {});\r\n        }\r\n\r\n        unmuteIcon.style.display = 'none';\r\n        muteIcon.style.display   = 'block';\r\n      });\r\n\r\n      \/\/ \ud83d\udd07 Mute\r\n      muteIcon.addEventListener('click', function () {\r\n        soundEnabled = false;\r\n        audio.muted  = true;\r\n        audio.pause();\r\n        muteIcon.style.display   = 'none';\r\n        unmuteIcon.style.display = 'block';\r\n      });\r\n    }\r\n\r\n    function syncAudio() {\r\n      if (!player || !audio || !soundEnabled) return; \/\/ \ud83d\udd25 muted ho toh skip\r\n\r\n      const isPlaying = player.getPlayerState() === YT.PlayerState.PLAYING;\r\n\r\n      if (isPlaying && audio.paused) {\r\n        audio.play().catch(() => {});\r\n      } else if (!isPlaying && !audio.paused) {\r\n        audio.pause();\r\n      }\r\n    }\r\n\r\n    readyCheck = setInterval(init, 300);\r\n  });\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0110c24 elementor-widget elementor-widget-html\" data-id=\"0110c24\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script type=\"application\/ld+json\">\r\n{\r\n  \"@context\": \"https:\/\/schema.org\",\r\n  \"@type\": \"VideoObject\",\r\n  \"name\": \"Sirix - Live Remote Video Monitoring & Surveillance Services Provider Across North America\",\r\n  \"description\": \"Learn how Sirix provides live remote video monitoring and surveillance solutions across North America using advanced technology and trained security professionals.\",\r\n  \"thumbnailUrl\": [\r\n    \"https:\/\/img.youtube.com\/vi\/oIraPrfybhA\/maxresdefault.jpg\"\r\n  ],\r\n  \"uploadDate\": \"2024-04-29\",\r\n  \"duration\": \"PT1M40S\",\r\n  \"embedUrl\": \"https:\/\/www.youtube.com\/embed\/oIraPrfybhA\",\r\n  \"publisher\": {\r\n    \"@type\": \"Organization\",\r\n    \"name\": \"Sirix\",\r\n    \"logo\": {\r\n      \"@type\": \"ImageObject\",\r\n      \"url\": \"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/sirix-logo.webp\"\r\n    }\r\n  }\r\n}\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-760d63d2 e-con-full glass-blur e-flex e-con e-child\" data-id=\"760d63d2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6b69338d e-con-full e-flex e-con e-child\" data-id=\"6b69338d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7545d459 elementor-widget elementor-widget-heading\" data-id=\"7545d459\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Live video monitoring. Powered by AI and human response.<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-589bfc30 e-con-full e-flex e-con e-child\" data-id=\"589bfc30\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-39cf2685 elementor-widget elementor-widget-text-editor\" data-id=\"39cf2685\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Sirix is a 24\/7 live video monitoring and site management command center. AI detection flags suspicious activity on your existing cameras, and trained operators verify every alert within seconds. When they confirm a threat, they respond with voice intervention and, if needed, police dispatch. The same team also answers intercom calls and manages remote site access. Sirix monitors 25,000+ devices for businesses across North America. No new hardware, no on-site guards.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5bbd8b3b elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"5bbd8b3b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/contact\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Get a free site assessment<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-33768eca e-con-full e-flex e-con e-parent\" data-id=\"33768eca\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b131826 elementor-widget elementor-widget-heading\" data-id=\"b131826\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Trusted by security integrators in 230+ cities across North America<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-775eae32 elementor-widget elementor-widget-heading\" data-id=\"775eae32\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Connects with the cameras &amp; systems you already trust<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-15dfc111 logo-marquee elementor-widget elementor-widget-image-carousel\" data-id=\"15dfc111\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;slides_to_show&quot;:&quot;10&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;navigation&quot;:&quot;none&quot;,&quot;autoplay_speed&quot;:1,&quot;speed&quot;:4000,&quot;slides_to_show_tablet&quot;:&quot;5&quot;,&quot;slides_to_show_mobile&quot;:&quot;3&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:20,&quot;sizes&quot;:[]},&quot;image_spacing_custom_widescreen&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Image Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2024\/03\/axis-logo-sirix.webp\" alt=\"our supported pathner Axis.\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10011-fotor-bg-remover-20231115153951-300x210.png\" alt=\"our supported partner ajax.\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10005-fotor-bg-remover-20231115153841-300x210.png\" alt=\"our supported partner 3xlogic.\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10002-removebg-preview-300x210.png\" alt=\"our supported partner 2n\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10024-fotor-bg-remover-20231115154357-300x210.png\" alt=\"our supported partner brivo.\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10023-fotor-bg-remover-20231115154351-300x210.png\" alt=\"our supported partner bosch.\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"7 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10019-fotor-bg-remover-20231115154247-300x210.png\" alt=\"our supported partner avigilon\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"8 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10071-fotor-bg-remover-20231115155610-300x210.png\" alt=\"our supported partner marchnetworks.\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"9 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10060-fotor-bg-remover-20231115155253-300x210.png\" alt=\"our supported partner honeywell.\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"10 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10057-removebg-preview-300x210.png\" alt=\"our supported partner hanwhavision.\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"11 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10055-fotor-bg-remover-20231115155211-300x210.png\" alt=\"our supported partner genetec.\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"12 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10051-fotor-bg-remover-20231115155111-300x210.png\" alt=\"our supported partner exacq\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"13 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10044-fotor-bg-remover-20231115155039-300x210.png\" alt=\"our supported partner eagleeyenetworks\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"14 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10101-fotor-bg-remover-2023111516245-300x210.png\" alt=\"our supported partner specotech.\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"15 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10085-fotor-bg-remover-2023111516036-300x210.png\" alt=\"our supported partner pelco\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"16 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10088-fotor-bg-remover-2023111516048-300x210.png\" alt=\"our supported partner reconeyez\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"17 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10075-removebg-preview-300x210.png\" alt=\"our supported partner milestonesys\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"18 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10112-removebg-preview-300x210.png\" alt=\"our supported partner videofied\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"19 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10116-fotor-bg-remover-2023111516519-300x210.png\" alt=\"our supported partner vivotek\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"20 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10066-fotor-bg-remover-20231115155438-300x210.png\" alt=\"our supported partner lenels2.\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"21 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/11\/10077-fotor-bg-remover-20231115155839-300x210.png\" alt=\"our supported partner mobotix\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"22 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/alarma.com-logo-300x184.webp\" alt=\"our supported partner alarma.com logo\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"23 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/microm-logo-300x56.png\" alt=\"our supported partner mircom logo\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"24 of 24\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/HID-logo-JPG-Format.jpg\" alt=\"our supported partner HID logo\" \/><\/figure><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4cb7eff2 elementor-widget elementor-widget-heading\" data-id=\"4cb7eff2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">500+ camera brands, VMS platforms, and security technologies supported.<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7a2ea38e e-flex e-con-boxed e-con e-parent\" data-id=\"7a2ea38e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-6a470e45 e-con-full e-flex e-con e-child\" data-id=\"6a470e45\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-156ef793 e-con-full e-flex e-con e-child\" data-id=\"156ef793\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-38060857 elementor-widget-mobile__width-auto elementor-widget elementor-widget-heading\" data-id=\"38060857\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">An incident. A call. A button press. <span style=\"color:#606060\">Sirix responds to all of it.<\/span><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-45bf1651 elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"45bf1651\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Our mission is to deliver security, operational efficiency, and peace of mind to every business through trained operators, data analytics, and intelligent technology working together, 24\/7.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-68bddd29 e-grid e-con-full e-con e-child\" data-id=\"68bddd29\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-3f0efcdd e-con-full e-flex e-con e-child\" data-id=\"3f0efcdd\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-51b8d18f e-con-full e-flex e-con e-child\" data-id=\"51b8d18f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f479879 elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"f479879\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/ai-live-video-monitoring-eye-scan-icon-1024x1024.webp\" class=\"attachment-large size-large wp-image-101901\" alt=\"ai live video monitoring eye scan icon\" srcset=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/ai-live-video-monitoring-eye-scan-icon-1024x1024.webp 1024w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/ai-live-video-monitoring-eye-scan-icon-300x300.webp 300w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/ai-live-video-monitoring-eye-scan-icon-150x150.webp 150w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/ai-live-video-monitoring-eye-scan-icon-768x768.webp 768w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/ai-live-video-monitoring-eye-scan-icon-12x12.webp 12w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/ai-live-video-monitoring-eye-scan-icon.webp 1254w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-dc668c2 elementor-widget elementor-widget-heading\" data-id=\"dc668c2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">01<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-75ae9d2d elementor-widget elementor-widget-heading\" data-id=\"75ae9d2d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">RECEIVE<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-533908a elementor-widget elementor-widget-image-box\" data-id=\"533908a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><div class=\"elementor-image-box-content\"><h3 class=\"elementor-image-box-title\">Every signal reaches an operator<\/h3><p class=\"elementor-image-box-description\">Whether AI detects an anomaly on camera, someone presses an intercom button, or a user calls in directly, a Sirix operator is always there to receive it, 24\/7.<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2e82b8f e-con-full e-flex e-con e-child\" data-id=\"2e82b8f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7dff08fe e-con-full e-flex e-con e-child\" data-id=\"7dff08fe\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4719a648 elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"4719a648\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/verified-human-response-for-live-video-monitoring-alerts-1024x1024.webp\" class=\"attachment-large size-large wp-image-101902\" alt=\"verified human response for live video monitoring alerts\" srcset=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/verified-human-response-for-live-video-monitoring-alerts-1024x1024.webp 1024w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/verified-human-response-for-live-video-monitoring-alerts-300x300.webp 300w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/verified-human-response-for-live-video-monitoring-alerts-150x150.webp 150w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/verified-human-response-for-live-video-monitoring-alerts-768x768.webp 768w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/verified-human-response-for-live-video-monitoring-alerts-12x12.webp 12w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/verified-human-response-for-live-video-monitoring-alerts.webp 1254w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2955acd6 elementor-widget elementor-widget-heading\" data-id=\"2955acd6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">02<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-77fd13ee elementor-widget elementor-widget-heading\" data-id=\"77fd13ee\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">VERIFY<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-41cabfdb elementor-widget elementor-widget-image-box\" data-id=\"41cabfdb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><div class=\"elementor-image-box-content\"><h3 class=\"elementor-image-box-title\">A trained operator confirms<\/h3><p class=\"elementor-image-box-description\">A trained operator reviews the flagged event, answers the intercom call, or receives your request, and decides the response by following your site's predefined protocols.<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-61ebe012 e-con-full e-flex e-con e-child\" data-id=\"61ebe012\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-603d4171 e-con-full e-flex e-con e-child\" data-id=\"603d4171\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2a9fe1ad elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"2a9fe1ad\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/real-time-alert-signal-for-live-video-monitoring-1024x1024.webp\" class=\"attachment-large size-large wp-image-101904\" alt=\"real time alert signal for live video monitoring\" srcset=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/real-time-alert-signal-for-live-video-monitoring-1024x1024.webp 1024w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/real-time-alert-signal-for-live-video-monitoring-300x300.webp 300w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/real-time-alert-signal-for-live-video-monitoring-150x150.webp 150w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/real-time-alert-signal-for-live-video-monitoring-768x768.webp 768w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/real-time-alert-signal-for-live-video-monitoring-12x12.webp 12w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/real-time-alert-signal-for-live-video-monitoring.webp 1254w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-38036dcd elementor-widget elementor-widget-heading\" data-id=\"38036dcd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">03<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-61832841 elementor-widget elementor-widget-heading\" data-id=\"61832841\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">RESPOND<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-558c6e76 elementor-widget elementor-widget-image-box\" data-id=\"558c6e76\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><div class=\"elementor-image-box-content\"><h3 class=\"elementor-image-box-title\">We intervene in real time<\/h3><p class=\"elementor-image-box-description\">A live voice warning, an onsite siren, a call to you, police dispatch, or direct assistance to your team. We act on every signal before it becomes a problem.<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2b7a0cd8 e-flex e-con-boxed e-con e-parent\" data-id=\"2b7a0cd8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4126f84f elementor-widget-mobile__width-inherit elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"4126f84f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">We don't just see the threat. We stop it.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ebef18a elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"ebef18a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"color: #02d3ab;\">199 of 200<\/span> verified intrusions were resolved without police dispatch.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-607918eb elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"607918eb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>A live voice warning is usually enough, which means fewer dispatches, fewer false-alarm fees, and no waiting on a patrol to arrive.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-666bae7f elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"666bae7f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Based on a reviewed sample of 200 verified intrusion events across 60 monitored client sites, July 2023\u2013June 2026. <a href=\"https:\/\/sirixmonitoring.com\/voice-interventions\/#how-we-measure-this\"><strong>How we measure this \u2192<\/strong><\/a><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-20444432 elementor-mobile-align-left elementor-align-left elementor-widget elementor-widget-button\" data-id=\"20444432\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/voice-interventions\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">See how voice interventions work<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-28caf754 elementor-pagination-type-bullets elementor-arrows-position-inside elementor-pagination-position-outside elementor-widget elementor-widget-n-carousel\" data-id=\"28caf754\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;d795b81&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;34ba9f8&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;e6bd91a&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;e4d6c96&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;9cbdeaa&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;b4734a0&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;9f4a384&quot;}],&quot;slides_to_show&quot;:&quot;2&quot;,&quot;slides_to_show_widescreen&quot;:&quot;1&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;slides_to_scroll_tablet&quot;:&quot;1&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:20,&quot;sizes&quot;:[]},&quot;slides_to_show_tablet&quot;:&quot;1&quot;,&quot;slides_to_scroll_mobile&quot;:&quot;1&quot;,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:30,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:20,&quot;sizes&quot;:[]},&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;speed&quot;:500,&quot;arrows&quot;:&quot;yes&quot;,&quot;pagination&quot;:&quot;bullets&quot;,&quot;image_spacing_custom_widescreen&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-n-carousel swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Solution Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"swiper-wrapper\" aria-live=\"polite\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"1\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 7\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-125755df e-con-full slide-wrap e-flex e-con e-child\" data-id=\"125755df\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1917e4e6 e-con-full e-flex e-con e-child\" data-id=\"1917e4e6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c33b22c elementor-widget elementor-widget-video\" data-id=\"3c33b22c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/www.youtube.com\\\/embed\\\/c72lXuOAskU?autoplay=0&amp;mute=1&amp;controls=0&amp;loop=1&amp;playlist=c72lXuOAskU&quot;,&quot;show_image_overlay&quot;:&quot;yes&quot;,&quot;image_overlay&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/sirixmonitoring.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/Live-video-monitoring-issues-a-voice-warning-to-intruders-in-a-secured-entry-area.webp&quot;,&quot;id&quot;:105083,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;live video monitoring issues a voice warning to intruders in a secured entry area&quot;,&quot;source&quot;:&quot;library&quot;},&quot;video_type&quot;:&quot;youtube&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t\t\t<div class=\"elementor-custom-embed-image-overlay\" style=\"background-image: url(https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/Live-video-monitoring-issues-a-voice-warning-to-intruders-in-a-secured-entry-area.webp);\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-custom-embed-play\" role=\"button\" aria-label=\"Play Video about live video monitoring issues a voice warning to intruders in a secured entry area\" tabindex=\"0\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 128 128\" width=\"128\" height=\"128\"><circle cx=\"64\" cy=\"64\" r=\"48\" fill=\"#3FBE9A\"><\/circle><polygon points=\"54,46 54,82 82,64\" fill=\"#0b1a22\"><\/polygon><\/svg>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1e596e8f elementor-view-framed elementor-shape-rounded elementor-position-inline-start elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"1e596e8f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 122.88 89.03\" style=\"enable-background:new 0 0 122.88 89.03\" xml:space=\"preserve\"><style type=\"text\/css\"> .st0{fill-rule:evenodd;clip-rule:evenodd;} <\/style><g><path class=\"st0\" d=\"M61.44,21.18c12.88,0,23.33,10.45,23.33,23.33c0,12.88-10.45,23.33-23.33,23.33S38.11,57.4,38.11,44.51 C38.11,31.63,48.55,21.18,61.44,21.18L61.44,21.18L61.44,21.18z M105.78,87.97c-0.54,0.63-1.28,0.97-2.04,1.03 c-0.77,0.06-1.58-0.18-2.23-0.72c-0.65-0.54-1-1.29-1.06-2.05l0-0.01c-0.05-0.77,0.18-1.57,0.72-2.22 c5.2-6.07,9.14-12.52,11.76-19.16c2.63-6.65,3.93-13.5,3.86-20.36c-0.05-6.79-1.45-13.62-4.22-20.33 c-2.71-6.54-6.73-12.97-12.11-19.12c-0.54-0.63-0.79-1.42-0.73-2.19c0.05-0.77,0.39-1.53,1.01-2.09l0.02-0.02 c0.62-0.54,1.41-0.77,2.18-0.72c0.77,0.05,1.53,0.4,2.09,1.02c5.86,6.72,10.24,13.74,13.19,20.92c3.04,7.39,4.57,14.95,4.64,22.48 c0.07,7.63-1.37,15.21-4.24,22.55c-2.87,7.3-7.16,14.36-12.83,20.97L105.78,87.97L105.78,87.97z M92.11,75.32 c-0.56,0.62-1.32,0.97-2.1,1.01c-0.77,0.05-1.57-0.21-2.19-0.76c-0.62-0.56-0.97-1.32-1.01-2.1c-0.05-0.77,0.2-1.57,0.76-2.19 l0.01-0.01c3.88-4.38,6.8-8.86,8.73-13.37c1.92-4.5,2.86-9.04,2.79-13.58c-0.07-4.46-1.13-8.96-3.23-13.43 c-2.06-4.41-5.13-8.81-9.23-13.15l-0.02-0.03c-0.57-0.6-0.83-1.37-0.8-2.13c0.03-0.77,0.35-1.54,0.94-2.11l0.04-0.04 c0.6-0.57,1.37-0.83,2.13-0.81c0.77,0.02,1.54,0.35,2.12,0.94l0.01,0.01c4.62,4.9,8.07,9.91,10.4,14.98l0.01,0.03 c2.38,5.17,3.59,10.41,3.68,15.65c0.09,5.31-0.98,10.59-3.16,15.78c-2.17,5.15-5.45,10.22-9.79,15.13 C92.19,75.2,92.16,75.26,92.11,75.32L92.11,75.32z M35.34,71.32c0.55,0.62,0.8,1.41,0.75,2.17c-0.05,0.77-0.39,1.54-1.01,2.1 c-0.62,0.56-1.41,0.81-2.18,0.77c-0.77-0.05-1.54-0.39-2.1-1.01c-4.39-4.97-7.71-10.09-9.91-15.3c-2.18-5.18-3.26-10.45-3.17-15.75 c0.09-5.24,1.31-10.49,3.69-15.68l0.01-0.03c2.33-5.06,5.78-10.07,10.38-14.95l0.03-0.03c0.58-0.59,1.35-0.9,2.12-0.93 c0.77-0.02,1.55,0.25,2.15,0.83c0.61,0.58,0.93,1.36,0.95,2.13c0.02,0.77-0.25,1.55-0.83,2.15c-4.09,4.36-7.16,8.77-9.23,13.18 c-2.09,4.47-3.16,8.96-3.24,13.4c-0.07,4.53,0.88,9.07,2.8,13.55c1.91,4.48,4.8,8.92,8.6,13.25c0.06,0.02,0.12,0.05,0.16,0.1 L35.34,71.32L35.34,71.32z M21.69,84l0.03,0.03c0.53,0.64,0.76,1.43,0.71,2.2c-0.06,0.77-0.41,1.51-1.04,2.05l-0.05,0.04 c-0.64,0.53-1.43,0.76-2.2,0.7c-0.77-0.06-1.52-0.42-2.06-1.06c-5.67-6.62-9.97-13.68-12.83-20.98C1.37,59.65-0.07,52.07,0,44.44 c0.08-7.54,1.6-15.1,4.64-22.49C7.6,14.77,11.97,7.74,17.83,1.04c0.54-0.62,1.29-0.97,2.07-1.02c0.77-0.05,1.57,0.19,2.21,0.73 l0.01,0.01c0.62,0.54,0.97,1.29,1.02,2.07c0.05,0.77-0.19,1.57-0.73,2.21l-0.01,0.01C17.03,11.19,13,17.61,10.3,24.15 c-2.77,6.71-4.17,13.54-4.22,20.33c-0.05,6.89,1.26,13.75,3.88,20.41C12.58,71.52,16.51,77.94,21.69,84L21.69,84z M69.74,45.96 c1.19-0.77,1.18-1.62,0-2.3L57.47,36.6c-0.97-0.61-1.98-0.25-1.95,1.01l0.04,14.26c0.08,1.37,0.87,1.75,2.02,1.11L69.74,45.96 L69.74,45.96L69.74,45.96z M61.44,25.92c10.27,0,18.59,8.32,18.59,18.59c0,10.27-8.32,18.59-18.59,18.59 c-10.27,0-18.59-8.32-18.59-18.59C42.85,34.24,51.17,25.92,61.44,25.92L61.44,25.92L61.44,25.92z\"><\/path><\/g><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tStop unwanted indoor activity in real time with tailored voice interventions.\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"2\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 7\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-23990cba e-con-full slide-wrap e-flex e-con e-child\" data-id=\"23990cba\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-37367498 e-con-full e-flex e-con e-child\" data-id=\"37367498\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1363a4d elementor-widget elementor-widget-video\" data-id=\"1363a4d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/youtu.be\\\/JQNqfXB-ihA&quot;,&quot;show_image_overlay&quot;:&quot;yes&quot;,&quot;image_overlay&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/sirixmonitoring.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/AI-assisted-live-video-monitoring-with-voice-warning-for-trespassing-on-private-property.webp&quot;,&quot;id&quot;:105072,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;AI-assisted live video monitoring with voice warning for trespassing on private property&quot;,&quot;source&quot;:&quot;library&quot;},&quot;video_type&quot;:&quot;youtube&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t\t\t<div class=\"elementor-custom-embed-image-overlay\" style=\"background-image: url(https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/AI-assisted-live-video-monitoring-with-voice-warning-for-trespassing-on-private-property.webp);\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-custom-embed-play\" role=\"button\" aria-label=\"Play Video about AI-assisted live video monitoring with voice warning for trespassing on private property\" tabindex=\"0\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 128 128\" width=\"128\" height=\"128\"><circle cx=\"64\" cy=\"64\" r=\"48\" fill=\"#3FBE9A\"><\/circle><polygon points=\"54,46 54,82 82,64\" fill=\"#0b1a22\"><\/polygon><\/svg>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7110a6e7 elementor-view-framed elementor-shape-rounded elementor-position-inline-start elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"7110a6e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 122.88 89.03\" style=\"enable-background:new 0 0 122.88 89.03\" xml:space=\"preserve\"><style type=\"text\/css\"> .st0{fill-rule:evenodd;clip-rule:evenodd;} <\/style><g><path class=\"st0\" d=\"M61.44,21.18c12.88,0,23.33,10.45,23.33,23.33c0,12.88-10.45,23.33-23.33,23.33S38.11,57.4,38.11,44.51 C38.11,31.63,48.55,21.18,61.44,21.18L61.44,21.18L61.44,21.18z M105.78,87.97c-0.54,0.63-1.28,0.97-2.04,1.03 c-0.77,0.06-1.58-0.18-2.23-0.72c-0.65-0.54-1-1.29-1.06-2.05l0-0.01c-0.05-0.77,0.18-1.57,0.72-2.22 c5.2-6.07,9.14-12.52,11.76-19.16c2.63-6.65,3.93-13.5,3.86-20.36c-0.05-6.79-1.45-13.62-4.22-20.33 c-2.71-6.54-6.73-12.97-12.11-19.12c-0.54-0.63-0.79-1.42-0.73-2.19c0.05-0.77,0.39-1.53,1.01-2.09l0.02-0.02 c0.62-0.54,1.41-0.77,2.18-0.72c0.77,0.05,1.53,0.4,2.09,1.02c5.86,6.72,10.24,13.74,13.19,20.92c3.04,7.39,4.57,14.95,4.64,22.48 c0.07,7.63-1.37,15.21-4.24,22.55c-2.87,7.3-7.16,14.36-12.83,20.97L105.78,87.97L105.78,87.97z M92.11,75.32 c-0.56,0.62-1.32,0.97-2.1,1.01c-0.77,0.05-1.57-0.21-2.19-0.76c-0.62-0.56-0.97-1.32-1.01-2.1c-0.05-0.77,0.2-1.57,0.76-2.19 l0.01-0.01c3.88-4.38,6.8-8.86,8.73-13.37c1.92-4.5,2.86-9.04,2.79-13.58c-0.07-4.46-1.13-8.96-3.23-13.43 c-2.06-4.41-5.13-8.81-9.23-13.15l-0.02-0.03c-0.57-0.6-0.83-1.37-0.8-2.13c0.03-0.77,0.35-1.54,0.94-2.11l0.04-0.04 c0.6-0.57,1.37-0.83,2.13-0.81c0.77,0.02,1.54,0.35,2.12,0.94l0.01,0.01c4.62,4.9,8.07,9.91,10.4,14.98l0.01,0.03 c2.38,5.17,3.59,10.41,3.68,15.65c0.09,5.31-0.98,10.59-3.16,15.78c-2.17,5.15-5.45,10.22-9.79,15.13 C92.19,75.2,92.16,75.26,92.11,75.32L92.11,75.32z M35.34,71.32c0.55,0.62,0.8,1.41,0.75,2.17c-0.05,0.77-0.39,1.54-1.01,2.1 c-0.62,0.56-1.41,0.81-2.18,0.77c-0.77-0.05-1.54-0.39-2.1-1.01c-4.39-4.97-7.71-10.09-9.91-15.3c-2.18-5.18-3.26-10.45-3.17-15.75 c0.09-5.24,1.31-10.49,3.69-15.68l0.01-0.03c2.33-5.06,5.78-10.07,10.38-14.95l0.03-0.03c0.58-0.59,1.35-0.9,2.12-0.93 c0.77-0.02,1.55,0.25,2.15,0.83c0.61,0.58,0.93,1.36,0.95,2.13c0.02,0.77-0.25,1.55-0.83,2.15c-4.09,4.36-7.16,8.77-9.23,13.18 c-2.09,4.47-3.16,8.96-3.24,13.4c-0.07,4.53,0.88,9.07,2.8,13.55c1.91,4.48,4.8,8.92,8.6,13.25c0.06,0.02,0.12,0.05,0.16,0.1 L35.34,71.32L35.34,71.32z M21.69,84l0.03,0.03c0.53,0.64,0.76,1.43,0.71,2.2c-0.06,0.77-0.41,1.51-1.04,2.05l-0.05,0.04 c-0.64,0.53-1.43,0.76-2.2,0.7c-0.77-0.06-1.52-0.42-2.06-1.06c-5.67-6.62-9.97-13.68-12.83-20.98C1.37,59.65-0.07,52.07,0,44.44 c0.08-7.54,1.6-15.1,4.64-22.49C7.6,14.77,11.97,7.74,17.83,1.04c0.54-0.62,1.29-0.97,2.07-1.02c0.77-0.05,1.57,0.19,2.21,0.73 l0.01,0.01c0.62,0.54,0.97,1.29,1.02,2.07c0.05,0.77-0.19,1.57-0.73,2.21l-0.01,0.01C17.03,11.19,13,17.61,10.3,24.15 c-2.77,6.71-4.17,13.54-4.22,20.33c-0.05,6.89,1.26,13.75,3.88,20.41C12.58,71.52,16.51,77.94,21.69,84L21.69,84z M69.74,45.96 c1.19-0.77,1.18-1.62,0-2.3L57.47,36.6c-0.97-0.61-1.98-0.25-1.95,1.01l0.04,14.26c0.08,1.37,0.87,1.75,2.02,1.11L69.74,45.96 L69.74,45.96L69.74,45.96z M61.44,25.92c10.27,0,18.59,8.32,18.59,18.59c0,10.27-8.32,18.59-18.59,18.59 c-10.27,0-18.59-8.32-18.59-18.59C42.85,34.24,51.17,25.92,61.44,25.92L61.44,25.92L61.44,25.92z\"><\/path><\/g><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tStop unwanted outdoor activity in real time with tailored voice interventions.\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"3\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 7\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4126c52d e-con-full slide-wrap e-flex e-con e-child\" data-id=\"4126c52d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-107f4687 e-con-full e-flex e-con e-child\" data-id=\"107f4687\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1dbff525 elementor-widget elementor-widget-video\" data-id=\"1dbff525\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/youtu.be\\\/j0lxPQnbpf0&quot;,&quot;show_image_overlay&quot;:&quot;yes&quot;,&quot;image_overlay&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/sirixmonitoring.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/Live-monitoring-operator-verifies-delivery-access-and-remotely-unlocks-a-secured-door.webp&quot;,&quot;id&quot;:105088,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;live monitoring operator verifies delivery access and remotely unlocks a secured door&quot;,&quot;source&quot;:&quot;library&quot;},&quot;video_type&quot;:&quot;youtube&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t\t\t<div class=\"elementor-custom-embed-image-overlay\" style=\"background-image: url(https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/Live-monitoring-operator-verifies-delivery-access-and-remotely-unlocks-a-secured-door.webp);\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-custom-embed-play\" role=\"button\" aria-label=\"Play Video about live monitoring operator verifies delivery access and remotely unlocks a secured door\" tabindex=\"0\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 128 128\" width=\"128\" height=\"128\"><circle cx=\"64\" cy=\"64\" r=\"48\" fill=\"#3FBE9A\"><\/circle><polygon points=\"54,46 54,82 82,64\" fill=\"#0b1a22\"><\/polygon><\/svg>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6c5df4b7 elementor-view-framed elementor-shape-rounded elementor-position-inline-start elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"6c5df4b7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 122.88 89.03\" style=\"enable-background:new 0 0 122.88 89.03\" xml:space=\"preserve\"><style type=\"text\/css\"> .st0{fill-rule:evenodd;clip-rule:evenodd;} <\/style><g><path class=\"st0\" d=\"M61.44,21.18c12.88,0,23.33,10.45,23.33,23.33c0,12.88-10.45,23.33-23.33,23.33S38.11,57.4,38.11,44.51 C38.11,31.63,48.55,21.18,61.44,21.18L61.44,21.18L61.44,21.18z M105.78,87.97c-0.54,0.63-1.28,0.97-2.04,1.03 c-0.77,0.06-1.58-0.18-2.23-0.72c-0.65-0.54-1-1.29-1.06-2.05l0-0.01c-0.05-0.77,0.18-1.57,0.72-2.22 c5.2-6.07,9.14-12.52,11.76-19.16c2.63-6.65,3.93-13.5,3.86-20.36c-0.05-6.79-1.45-13.62-4.22-20.33 c-2.71-6.54-6.73-12.97-12.11-19.12c-0.54-0.63-0.79-1.42-0.73-2.19c0.05-0.77,0.39-1.53,1.01-2.09l0.02-0.02 c0.62-0.54,1.41-0.77,2.18-0.72c0.77,0.05,1.53,0.4,2.09,1.02c5.86,6.72,10.24,13.74,13.19,20.92c3.04,7.39,4.57,14.95,4.64,22.48 c0.07,7.63-1.37,15.21-4.24,22.55c-2.87,7.3-7.16,14.36-12.83,20.97L105.78,87.97L105.78,87.97z M92.11,75.32 c-0.56,0.62-1.32,0.97-2.1,1.01c-0.77,0.05-1.57-0.21-2.19-0.76c-0.62-0.56-0.97-1.32-1.01-2.1c-0.05-0.77,0.2-1.57,0.76-2.19 l0.01-0.01c3.88-4.38,6.8-8.86,8.73-13.37c1.92-4.5,2.86-9.04,2.79-13.58c-0.07-4.46-1.13-8.96-3.23-13.43 c-2.06-4.41-5.13-8.81-9.23-13.15l-0.02-0.03c-0.57-0.6-0.83-1.37-0.8-2.13c0.03-0.77,0.35-1.54,0.94-2.11l0.04-0.04 c0.6-0.57,1.37-0.83,2.13-0.81c0.77,0.02,1.54,0.35,2.12,0.94l0.01,0.01c4.62,4.9,8.07,9.91,10.4,14.98l0.01,0.03 c2.38,5.17,3.59,10.41,3.68,15.65c0.09,5.31-0.98,10.59-3.16,15.78c-2.17,5.15-5.45,10.22-9.79,15.13 C92.19,75.2,92.16,75.26,92.11,75.32L92.11,75.32z M35.34,71.32c0.55,0.62,0.8,1.41,0.75,2.17c-0.05,0.77-0.39,1.54-1.01,2.1 c-0.62,0.56-1.41,0.81-2.18,0.77c-0.77-0.05-1.54-0.39-2.1-1.01c-4.39-4.97-7.71-10.09-9.91-15.3c-2.18-5.18-3.26-10.45-3.17-15.75 c0.09-5.24,1.31-10.49,3.69-15.68l0.01-0.03c2.33-5.06,5.78-10.07,10.38-14.95l0.03-0.03c0.58-0.59,1.35-0.9,2.12-0.93 c0.77-0.02,1.55,0.25,2.15,0.83c0.61,0.58,0.93,1.36,0.95,2.13c0.02,0.77-0.25,1.55-0.83,2.15c-4.09,4.36-7.16,8.77-9.23,13.18 c-2.09,4.47-3.16,8.96-3.24,13.4c-0.07,4.53,0.88,9.07,2.8,13.55c1.91,4.48,4.8,8.92,8.6,13.25c0.06,0.02,0.12,0.05,0.16,0.1 L35.34,71.32L35.34,71.32z M21.69,84l0.03,0.03c0.53,0.64,0.76,1.43,0.71,2.2c-0.06,0.77-0.41,1.51-1.04,2.05l-0.05,0.04 c-0.64,0.53-1.43,0.76-2.2,0.7c-0.77-0.06-1.52-0.42-2.06-1.06c-5.67-6.62-9.97-13.68-12.83-20.98C1.37,59.65-0.07,52.07,0,44.44 c0.08-7.54,1.6-15.1,4.64-22.49C7.6,14.77,11.97,7.74,17.83,1.04c0.54-0.62,1.29-0.97,2.07-1.02c0.77-0.05,1.57,0.19,2.21,0.73 l0.01,0.01c0.62,0.54,0.97,1.29,1.02,2.07c0.05,0.77-0.19,1.57-0.73,2.21l-0.01,0.01C17.03,11.19,13,17.61,10.3,24.15 c-2.77,6.71-4.17,13.54-4.22,20.33c-0.05,6.89,1.26,13.75,3.88,20.41C12.58,71.52,16.51,77.94,21.69,84L21.69,84z M69.74,45.96 c1.19-0.77,1.18-1.62,0-2.3L57.47,36.6c-0.97-0.61-1.98-0.25-1.95,1.01l0.04,14.26c0.08,1.37,0.87,1.75,2.02,1.11L69.74,45.96 L69.74,45.96L69.74,45.96z M61.44,25.92c10.27,0,18.59,8.32,18.59,18.59c0,10.27-8.32,18.59-18.59,18.59 c-10.27,0-18.59-8.32-18.59-18.59C42.85,34.24,51.17,25.92,61.44,25.92L61.44,25.92L61.44,25.92z\"><\/path><\/g><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tManage door access remotely with live operator intercom response.\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"4\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 7\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-48a75f2b e-con-full slide-wrap e-flex e-con e-child\" data-id=\"48a75f2b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-42df394a e-con-full e-flex e-con e-child\" data-id=\"42df394a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-349cac5f elementor-widget elementor-widget-video\" data-id=\"349cac5f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/youtu.be\\\/v0rv-7As5kU&quot;,&quot;show_image_overlay&quot;:&quot;yes&quot;,&quot;image_overlay&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/sirixmonitoring.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/Live-operator-verifies-employee-access-and-remotely-opens-a-secured-parking-gate.webp&quot;,&quot;id&quot;:105091,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;live operator verifies employee access and remotely opens a secured parking gate&quot;,&quot;source&quot;:&quot;library&quot;},&quot;video_type&quot;:&quot;youtube&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t\t\t<div class=\"elementor-custom-embed-image-overlay\" style=\"background-image: url(https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/Live-operator-verifies-employee-access-and-remotely-opens-a-secured-parking-gate.webp);\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-custom-embed-play\" role=\"button\" aria-label=\"Play Video about live operator verifies employee access and remotely opens a secured parking gate\" tabindex=\"0\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 128 128\" width=\"128\" height=\"128\"><circle cx=\"64\" cy=\"64\" r=\"48\" fill=\"#3FBE9A\"><\/circle><polygon points=\"54,46 54,82 82,64\" fill=\"#0b1a22\"><\/polygon><\/svg>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-13348eea elementor-view-framed elementor-shape-rounded elementor-position-inline-start elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"13348eea\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 122.88 89.03\" style=\"enable-background:new 0 0 122.88 89.03\" xml:space=\"preserve\"><style type=\"text\/css\"> .st0{fill-rule:evenodd;clip-rule:evenodd;} <\/style><g><path class=\"st0\" d=\"M61.44,21.18c12.88,0,23.33,10.45,23.33,23.33c0,12.88-10.45,23.33-23.33,23.33S38.11,57.4,38.11,44.51 C38.11,31.63,48.55,21.18,61.44,21.18L61.44,21.18L61.44,21.18z M105.78,87.97c-0.54,0.63-1.28,0.97-2.04,1.03 c-0.77,0.06-1.58-0.18-2.23-0.72c-0.65-0.54-1-1.29-1.06-2.05l0-0.01c-0.05-0.77,0.18-1.57,0.72-2.22 c5.2-6.07,9.14-12.52,11.76-19.16c2.63-6.65,3.93-13.5,3.86-20.36c-0.05-6.79-1.45-13.62-4.22-20.33 c-2.71-6.54-6.73-12.97-12.11-19.12c-0.54-0.63-0.79-1.42-0.73-2.19c0.05-0.77,0.39-1.53,1.01-2.09l0.02-0.02 c0.62-0.54,1.41-0.77,2.18-0.72c0.77,0.05,1.53,0.4,2.09,1.02c5.86,6.72,10.24,13.74,13.19,20.92c3.04,7.39,4.57,14.95,4.64,22.48 c0.07,7.63-1.37,15.21-4.24,22.55c-2.87,7.3-7.16,14.36-12.83,20.97L105.78,87.97L105.78,87.97z M92.11,75.32 c-0.56,0.62-1.32,0.97-2.1,1.01c-0.77,0.05-1.57-0.21-2.19-0.76c-0.62-0.56-0.97-1.32-1.01-2.1c-0.05-0.77,0.2-1.57,0.76-2.19 l0.01-0.01c3.88-4.38,6.8-8.86,8.73-13.37c1.92-4.5,2.86-9.04,2.79-13.58c-0.07-4.46-1.13-8.96-3.23-13.43 c-2.06-4.41-5.13-8.81-9.23-13.15l-0.02-0.03c-0.57-0.6-0.83-1.37-0.8-2.13c0.03-0.77,0.35-1.54,0.94-2.11l0.04-0.04 c0.6-0.57,1.37-0.83,2.13-0.81c0.77,0.02,1.54,0.35,2.12,0.94l0.01,0.01c4.62,4.9,8.07,9.91,10.4,14.98l0.01,0.03 c2.38,5.17,3.59,10.41,3.68,15.65c0.09,5.31-0.98,10.59-3.16,15.78c-2.17,5.15-5.45,10.22-9.79,15.13 C92.19,75.2,92.16,75.26,92.11,75.32L92.11,75.32z M35.34,71.32c0.55,0.62,0.8,1.41,0.75,2.17c-0.05,0.77-0.39,1.54-1.01,2.1 c-0.62,0.56-1.41,0.81-2.18,0.77c-0.77-0.05-1.54-0.39-2.1-1.01c-4.39-4.97-7.71-10.09-9.91-15.3c-2.18-5.18-3.26-10.45-3.17-15.75 c0.09-5.24,1.31-10.49,3.69-15.68l0.01-0.03c2.33-5.06,5.78-10.07,10.38-14.95l0.03-0.03c0.58-0.59,1.35-0.9,2.12-0.93 c0.77-0.02,1.55,0.25,2.15,0.83c0.61,0.58,0.93,1.36,0.95,2.13c0.02,0.77-0.25,1.55-0.83,2.15c-4.09,4.36-7.16,8.77-9.23,13.18 c-2.09,4.47-3.16,8.96-3.24,13.4c-0.07,4.53,0.88,9.07,2.8,13.55c1.91,4.48,4.8,8.92,8.6,13.25c0.06,0.02,0.12,0.05,0.16,0.1 L35.34,71.32L35.34,71.32z M21.69,84l0.03,0.03c0.53,0.64,0.76,1.43,0.71,2.2c-0.06,0.77-0.41,1.51-1.04,2.05l-0.05,0.04 c-0.64,0.53-1.43,0.76-2.2,0.7c-0.77-0.06-1.52-0.42-2.06-1.06c-5.67-6.62-9.97-13.68-12.83-20.98C1.37,59.65-0.07,52.07,0,44.44 c0.08-7.54,1.6-15.1,4.64-22.49C7.6,14.77,11.97,7.74,17.83,1.04c0.54-0.62,1.29-0.97,2.07-1.02c0.77-0.05,1.57,0.19,2.21,0.73 l0.01,0.01c0.62,0.54,0.97,1.29,1.02,2.07c0.05,0.77-0.19,1.57-0.73,2.21l-0.01,0.01C17.03,11.19,13,17.61,10.3,24.15 c-2.77,6.71-4.17,13.54-4.22,20.33c-0.05,6.89,1.26,13.75,3.88,20.41C12.58,71.52,16.51,77.94,21.69,84L21.69,84z M69.74,45.96 c1.19-0.77,1.18-1.62,0-2.3L57.47,36.6c-0.97-0.61-1.98-0.25-1.95,1.01l0.04,14.26c0.08,1.37,0.87,1.75,2.02,1.11L69.74,45.96 L69.74,45.96L69.74,45.96z M61.44,25.92c10.27,0,18.59,8.32,18.59,18.59c0,10.27-8.32,18.59-18.59,18.59 c-10.27,0-18.59-8.32-18.59-18.59C42.85,34.24,51.17,25.92,61.44,25.92L61.44,25.92L61.44,25.92z\"><\/path><\/g><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tManage gate access remotely with live operator intercom response.\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"5\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 of 7\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-32b5c7e8 e-con-full slide-wrap e-flex e-con e-child\" data-id=\"32b5c7e8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-3c3641c6 e-con-full e-flex e-con e-child\" data-id=\"3c3641c6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-19f29be elementor-widget elementor-widget-video\" data-id=\"19f29be\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/youtu.be\\\/up24kiPuvI4&quot;,&quot;show_image_overlay&quot;:&quot;yes&quot;,&quot;image_overlay&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/sirixmonitoring.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/AI-video-monitoring-detects-a-worker-fall-and-alerts-the-command-center.webp&quot;,&quot;id&quot;:105095,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;AI video monitoring detects a worker fall and alerts the command center&quot;,&quot;source&quot;:&quot;library&quot;},&quot;video_type&quot;:&quot;youtube&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t\t\t<div class=\"elementor-custom-embed-image-overlay\" style=\"background-image: url(https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/AI-video-monitoring-detects-a-worker-fall-and-alerts-the-command-center.webp);\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-custom-embed-play\" role=\"button\" aria-label=\"Play Video about AI video monitoring detects a worker fall and alerts the command center\" tabindex=\"0\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 128 128\" width=\"128\" height=\"128\"><circle cx=\"64\" cy=\"64\" r=\"48\" fill=\"#3FBE9A\"><\/circle><polygon points=\"54,46 54,82 82,64\" fill=\"#0b1a22\"><\/polygon><\/svg>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-425651d1 elementor-view-framed elementor-shape-rounded elementor-position-inline-start elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"425651d1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 122.88 89.03\" style=\"enable-background:new 0 0 122.88 89.03\" xml:space=\"preserve\"><style type=\"text\/css\"> .st0{fill-rule:evenodd;clip-rule:evenodd;} <\/style><g><path class=\"st0\" d=\"M61.44,21.18c12.88,0,23.33,10.45,23.33,23.33c0,12.88-10.45,23.33-23.33,23.33S38.11,57.4,38.11,44.51 C38.11,31.63,48.55,21.18,61.44,21.18L61.44,21.18L61.44,21.18z M105.78,87.97c-0.54,0.63-1.28,0.97-2.04,1.03 c-0.77,0.06-1.58-0.18-2.23-0.72c-0.65-0.54-1-1.29-1.06-2.05l0-0.01c-0.05-0.77,0.18-1.57,0.72-2.22 c5.2-6.07,9.14-12.52,11.76-19.16c2.63-6.65,3.93-13.5,3.86-20.36c-0.05-6.79-1.45-13.62-4.22-20.33 c-2.71-6.54-6.73-12.97-12.11-19.12c-0.54-0.63-0.79-1.42-0.73-2.19c0.05-0.77,0.39-1.53,1.01-2.09l0.02-0.02 c0.62-0.54,1.41-0.77,2.18-0.72c0.77,0.05,1.53,0.4,2.09,1.02c5.86,6.72,10.24,13.74,13.19,20.92c3.04,7.39,4.57,14.95,4.64,22.48 c0.07,7.63-1.37,15.21-4.24,22.55c-2.87,7.3-7.16,14.36-12.83,20.97L105.78,87.97L105.78,87.97z M92.11,75.32 c-0.56,0.62-1.32,0.97-2.1,1.01c-0.77,0.05-1.57-0.21-2.19-0.76c-0.62-0.56-0.97-1.32-1.01-2.1c-0.05-0.77,0.2-1.57,0.76-2.19 l0.01-0.01c3.88-4.38,6.8-8.86,8.73-13.37c1.92-4.5,2.86-9.04,2.79-13.58c-0.07-4.46-1.13-8.96-3.23-13.43 c-2.06-4.41-5.13-8.81-9.23-13.15l-0.02-0.03c-0.57-0.6-0.83-1.37-0.8-2.13c0.03-0.77,0.35-1.54,0.94-2.11l0.04-0.04 c0.6-0.57,1.37-0.83,2.13-0.81c0.77,0.02,1.54,0.35,2.12,0.94l0.01,0.01c4.62,4.9,8.07,9.91,10.4,14.98l0.01,0.03 c2.38,5.17,3.59,10.41,3.68,15.65c0.09,5.31-0.98,10.59-3.16,15.78c-2.17,5.15-5.45,10.22-9.79,15.13 C92.19,75.2,92.16,75.26,92.11,75.32L92.11,75.32z M35.34,71.32c0.55,0.62,0.8,1.41,0.75,2.17c-0.05,0.77-0.39,1.54-1.01,2.1 c-0.62,0.56-1.41,0.81-2.18,0.77c-0.77-0.05-1.54-0.39-2.1-1.01c-4.39-4.97-7.71-10.09-9.91-15.3c-2.18-5.18-3.26-10.45-3.17-15.75 c0.09-5.24,1.31-10.49,3.69-15.68l0.01-0.03c2.33-5.06,5.78-10.07,10.38-14.95l0.03-0.03c0.58-0.59,1.35-0.9,2.12-0.93 c0.77-0.02,1.55,0.25,2.15,0.83c0.61,0.58,0.93,1.36,0.95,2.13c0.02,0.77-0.25,1.55-0.83,2.15c-4.09,4.36-7.16,8.77-9.23,13.18 c-2.09,4.47-3.16,8.96-3.24,13.4c-0.07,4.53,0.88,9.07,2.8,13.55c1.91,4.48,4.8,8.92,8.6,13.25c0.06,0.02,0.12,0.05,0.16,0.1 L35.34,71.32L35.34,71.32z M21.69,84l0.03,0.03c0.53,0.64,0.76,1.43,0.71,2.2c-0.06,0.77-0.41,1.51-1.04,2.05l-0.05,0.04 c-0.64,0.53-1.43,0.76-2.2,0.7c-0.77-0.06-1.52-0.42-2.06-1.06c-5.67-6.62-9.97-13.68-12.83-20.98C1.37,59.65-0.07,52.07,0,44.44 c0.08-7.54,1.6-15.1,4.64-22.49C7.6,14.77,11.97,7.74,17.83,1.04c0.54-0.62,1.29-0.97,2.07-1.02c0.77-0.05,1.57,0.19,2.21,0.73 l0.01,0.01c0.62,0.54,0.97,1.29,1.02,2.07c0.05,0.77-0.19,1.57-0.73,2.21l-0.01,0.01C17.03,11.19,13,17.61,10.3,24.15 c-2.77,6.71-4.17,13.54-4.22,20.33c-0.05,6.89,1.26,13.75,3.88,20.41C12.58,71.52,16.51,77.94,21.69,84L21.69,84z M69.74,45.96 c1.19-0.77,1.18-1.62,0-2.3L57.47,36.6c-0.97-0.61-1.98-0.25-1.95,1.01l0.04,14.26c0.08,1.37,0.87,1.75,2.02,1.11L69.74,45.96 L69.74,45.96L69.74,45.96z M61.44,25.92c10.27,0,18.59,8.32,18.59,18.59c0,10.27-8.32,18.59-18.59,18.59 c-10.27,0-18.59-8.32-18.59-18.59C42.85,34.24,51.17,25.92,61.44,25.92L61.44,25.92L61.44,25.92z\"><\/path><\/g><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tEnsure 24\/7 response to lone worker emergencies.\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"6\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 of 7\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-54260600 e-con-full slide-wrap e-flex e-con e-child\" data-id=\"54260600\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-24d3b5f3 e-con-full e-flex e-con e-child\" data-id=\"24d3b5f3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e9e4cb4 elementor-widget elementor-widget-video\" data-id=\"e9e4cb4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/youtu.be\\\/hJX7Way6J-0&quot;,&quot;show_image_overlay&quot;:&quot;yes&quot;,&quot;image_overlay&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/sirixmonitoring.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/Live-monitoring-operator-provides-a-virtual-escort-as-an-employee-exits-the-building.webp&quot;,&quot;id&quot;:105097,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;live monitoring operator provides a virtual escort as an employee exits the building&quot;,&quot;source&quot;:&quot;library&quot;},&quot;video_type&quot;:&quot;youtube&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t\t\t<div class=\"elementor-custom-embed-image-overlay\" style=\"background-image: url(https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/Live-monitoring-operator-provides-a-virtual-escort-as-an-employee-exits-the-building.webp);\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-custom-embed-play\" role=\"button\" aria-label=\"Play Video about live monitoring operator provides a virtual escort as an employee exits the building\" tabindex=\"0\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 128 128\" width=\"128\" height=\"128\"><circle cx=\"64\" cy=\"64\" r=\"48\" fill=\"#3FBE9A\"><\/circle><polygon points=\"54,46 54,82 82,64\" fill=\"#0b1a22\"><\/polygon><\/svg>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-83807b5 elementor-view-framed elementor-shape-rounded elementor-position-inline-start elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"83807b5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 122.88 89.03\" style=\"enable-background:new 0 0 122.88 89.03\" xml:space=\"preserve\"><style type=\"text\/css\"> .st0{fill-rule:evenodd;clip-rule:evenodd;} <\/style><g><path class=\"st0\" d=\"M61.44,21.18c12.88,0,23.33,10.45,23.33,23.33c0,12.88-10.45,23.33-23.33,23.33S38.11,57.4,38.11,44.51 C38.11,31.63,48.55,21.18,61.44,21.18L61.44,21.18L61.44,21.18z M105.78,87.97c-0.54,0.63-1.28,0.97-2.04,1.03 c-0.77,0.06-1.58-0.18-2.23-0.72c-0.65-0.54-1-1.29-1.06-2.05l0-0.01c-0.05-0.77,0.18-1.57,0.72-2.22 c5.2-6.07,9.14-12.52,11.76-19.16c2.63-6.65,3.93-13.5,3.86-20.36c-0.05-6.79-1.45-13.62-4.22-20.33 c-2.71-6.54-6.73-12.97-12.11-19.12c-0.54-0.63-0.79-1.42-0.73-2.19c0.05-0.77,0.39-1.53,1.01-2.09l0.02-0.02 c0.62-0.54,1.41-0.77,2.18-0.72c0.77,0.05,1.53,0.4,2.09,1.02c5.86,6.72,10.24,13.74,13.19,20.92c3.04,7.39,4.57,14.95,4.64,22.48 c0.07,7.63-1.37,15.21-4.24,22.55c-2.87,7.3-7.16,14.36-12.83,20.97L105.78,87.97L105.78,87.97z M92.11,75.32 c-0.56,0.62-1.32,0.97-2.1,1.01c-0.77,0.05-1.57-0.21-2.19-0.76c-0.62-0.56-0.97-1.32-1.01-2.1c-0.05-0.77,0.2-1.57,0.76-2.19 l0.01-0.01c3.88-4.38,6.8-8.86,8.73-13.37c1.92-4.5,2.86-9.04,2.79-13.58c-0.07-4.46-1.13-8.96-3.23-13.43 c-2.06-4.41-5.13-8.81-9.23-13.15l-0.02-0.03c-0.57-0.6-0.83-1.37-0.8-2.13c0.03-0.77,0.35-1.54,0.94-2.11l0.04-0.04 c0.6-0.57,1.37-0.83,2.13-0.81c0.77,0.02,1.54,0.35,2.12,0.94l0.01,0.01c4.62,4.9,8.07,9.91,10.4,14.98l0.01,0.03 c2.38,5.17,3.59,10.41,3.68,15.65c0.09,5.31-0.98,10.59-3.16,15.78c-2.17,5.15-5.45,10.22-9.79,15.13 C92.19,75.2,92.16,75.26,92.11,75.32L92.11,75.32z M35.34,71.32c0.55,0.62,0.8,1.41,0.75,2.17c-0.05,0.77-0.39,1.54-1.01,2.1 c-0.62,0.56-1.41,0.81-2.18,0.77c-0.77-0.05-1.54-0.39-2.1-1.01c-4.39-4.97-7.71-10.09-9.91-15.3c-2.18-5.18-3.26-10.45-3.17-15.75 c0.09-5.24,1.31-10.49,3.69-15.68l0.01-0.03c2.33-5.06,5.78-10.07,10.38-14.95l0.03-0.03c0.58-0.59,1.35-0.9,2.12-0.93 c0.77-0.02,1.55,0.25,2.15,0.83c0.61,0.58,0.93,1.36,0.95,2.13c0.02,0.77-0.25,1.55-0.83,2.15c-4.09,4.36-7.16,8.77-9.23,13.18 c-2.09,4.47-3.16,8.96-3.24,13.4c-0.07,4.53,0.88,9.07,2.8,13.55c1.91,4.48,4.8,8.92,8.6,13.25c0.06,0.02,0.12,0.05,0.16,0.1 L35.34,71.32L35.34,71.32z M21.69,84l0.03,0.03c0.53,0.64,0.76,1.43,0.71,2.2c-0.06,0.77-0.41,1.51-1.04,2.05l-0.05,0.04 c-0.64,0.53-1.43,0.76-2.2,0.7c-0.77-0.06-1.52-0.42-2.06-1.06c-5.67-6.62-9.97-13.68-12.83-20.98C1.37,59.65-0.07,52.07,0,44.44 c0.08-7.54,1.6-15.1,4.64-22.49C7.6,14.77,11.97,7.74,17.83,1.04c0.54-0.62,1.29-0.97,2.07-1.02c0.77-0.05,1.57,0.19,2.21,0.73 l0.01,0.01c0.62,0.54,0.97,1.29,1.02,2.07c0.05,0.77-0.19,1.57-0.73,2.21l-0.01,0.01C17.03,11.19,13,17.61,10.3,24.15 c-2.77,6.71-4.17,13.54-4.22,20.33c-0.05,6.89,1.26,13.75,3.88,20.41C12.58,71.52,16.51,77.94,21.69,84L21.69,84z M69.74,45.96 c1.19-0.77,1.18-1.62,0-2.3L57.47,36.6c-0.97-0.61-1.98-0.25-1.95,1.01l0.04,14.26c0.08,1.37,0.87,1.75,2.02,1.11L69.74,45.96 L69.74,45.96L69.74,45.96z M61.44,25.92c10.27,0,18.59,8.32,18.59,18.59c0,10.27-8.32,18.59-18.59,18.59 c-10.27,0-18.59-8.32-18.59-18.59C42.85,34.24,51.17,25.92,61.44,25.92L61.44,25.92L61.44,25.92z\"><\/path><\/g><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tProvide safe remote escort during high-risk moments.\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"7\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"7 of 7\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-3968ca3b e-con-full slide-wrap e-flex e-con e-child\" data-id=\"3968ca3b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4c9fda3a e-con-full e-flex e-con e-child\" data-id=\"4c9fda3a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b3062cc elementor-widget elementor-widget-video\" data-id=\"b3062cc\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/youtu.be\\\/4GsZIvJvdTM&quot;,&quot;show_image_overlay&quot;:&quot;yes&quot;,&quot;image_overlay&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/sirixmonitoring.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/AI-firearm-detection-verifies-a-threat-and-alerts-authorities.webp&quot;,&quot;id&quot;:105098,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;AI firearm detection verifies a threat and alerts authorities&quot;,&quot;source&quot;:&quot;library&quot;},&quot;video_type&quot;:&quot;youtube&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t\t\t<div class=\"elementor-custom-embed-image-overlay\" style=\"background-image: url(https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/AI-firearm-detection-verifies-a-threat-and-alerts-authorities.webp);\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-custom-embed-play\" role=\"button\" aria-label=\"Play Video about AI firearm detection verifies a threat and alerts authorities\" tabindex=\"0\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 128 128\" width=\"128\" height=\"128\"><circle cx=\"64\" cy=\"64\" r=\"48\" fill=\"#3FBE9A\"><\/circle><polygon points=\"54,46 54,82 82,64\" fill=\"#0b1a22\"><\/polygon><\/svg>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-37dafc72 elementor-view-framed elementor-shape-rounded elementor-position-inline-start elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"37dafc72\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 122.88 89.03\" style=\"enable-background:new 0 0 122.88 89.03\" xml:space=\"preserve\"><style type=\"text\/css\"> .st0{fill-rule:evenodd;clip-rule:evenodd;} <\/style><g><path class=\"st0\" d=\"M61.44,21.18c12.88,0,23.33,10.45,23.33,23.33c0,12.88-10.45,23.33-23.33,23.33S38.11,57.4,38.11,44.51 C38.11,31.63,48.55,21.18,61.44,21.18L61.44,21.18L61.44,21.18z M105.78,87.97c-0.54,0.63-1.28,0.97-2.04,1.03 c-0.77,0.06-1.58-0.18-2.23-0.72c-0.65-0.54-1-1.29-1.06-2.05l0-0.01c-0.05-0.77,0.18-1.57,0.72-2.22 c5.2-6.07,9.14-12.52,11.76-19.16c2.63-6.65,3.93-13.5,3.86-20.36c-0.05-6.79-1.45-13.62-4.22-20.33 c-2.71-6.54-6.73-12.97-12.11-19.12c-0.54-0.63-0.79-1.42-0.73-2.19c0.05-0.77,0.39-1.53,1.01-2.09l0.02-0.02 c0.62-0.54,1.41-0.77,2.18-0.72c0.77,0.05,1.53,0.4,2.09,1.02c5.86,6.72,10.24,13.74,13.19,20.92c3.04,7.39,4.57,14.95,4.64,22.48 c0.07,7.63-1.37,15.21-4.24,22.55c-2.87,7.3-7.16,14.36-12.83,20.97L105.78,87.97L105.78,87.97z M92.11,75.32 c-0.56,0.62-1.32,0.97-2.1,1.01c-0.77,0.05-1.57-0.21-2.19-0.76c-0.62-0.56-0.97-1.32-1.01-2.1c-0.05-0.77,0.2-1.57,0.76-2.19 l0.01-0.01c3.88-4.38,6.8-8.86,8.73-13.37c1.92-4.5,2.86-9.04,2.79-13.58c-0.07-4.46-1.13-8.96-3.23-13.43 c-2.06-4.41-5.13-8.81-9.23-13.15l-0.02-0.03c-0.57-0.6-0.83-1.37-0.8-2.13c0.03-0.77,0.35-1.54,0.94-2.11l0.04-0.04 c0.6-0.57,1.37-0.83,2.13-0.81c0.77,0.02,1.54,0.35,2.12,0.94l0.01,0.01c4.62,4.9,8.07,9.91,10.4,14.98l0.01,0.03 c2.38,5.17,3.59,10.41,3.68,15.65c0.09,5.31-0.98,10.59-3.16,15.78c-2.17,5.15-5.45,10.22-9.79,15.13 C92.19,75.2,92.16,75.26,92.11,75.32L92.11,75.32z M35.34,71.32c0.55,0.62,0.8,1.41,0.75,2.17c-0.05,0.77-0.39,1.54-1.01,2.1 c-0.62,0.56-1.41,0.81-2.18,0.77c-0.77-0.05-1.54-0.39-2.1-1.01c-4.39-4.97-7.71-10.09-9.91-15.3c-2.18-5.18-3.26-10.45-3.17-15.75 c0.09-5.24,1.31-10.49,3.69-15.68l0.01-0.03c2.33-5.06,5.78-10.07,10.38-14.95l0.03-0.03c0.58-0.59,1.35-0.9,2.12-0.93 c0.77-0.02,1.55,0.25,2.15,0.83c0.61,0.58,0.93,1.36,0.95,2.13c0.02,0.77-0.25,1.55-0.83,2.15c-4.09,4.36-7.16,8.77-9.23,13.18 c-2.09,4.47-3.16,8.96-3.24,13.4c-0.07,4.53,0.88,9.07,2.8,13.55c1.91,4.48,4.8,8.92,8.6,13.25c0.06,0.02,0.12,0.05,0.16,0.1 L35.34,71.32L35.34,71.32z M21.69,84l0.03,0.03c0.53,0.64,0.76,1.43,0.71,2.2c-0.06,0.77-0.41,1.51-1.04,2.05l-0.05,0.04 c-0.64,0.53-1.43,0.76-2.2,0.7c-0.77-0.06-1.52-0.42-2.06-1.06c-5.67-6.62-9.97-13.68-12.83-20.98C1.37,59.65-0.07,52.07,0,44.44 c0.08-7.54,1.6-15.1,4.64-22.49C7.6,14.77,11.97,7.74,17.83,1.04c0.54-0.62,1.29-0.97,2.07-1.02c0.77-0.05,1.57,0.19,2.21,0.73 l0.01,0.01c0.62,0.54,0.97,1.29,1.02,2.07c0.05,0.77-0.19,1.57-0.73,2.21l-0.01,0.01C17.03,11.19,13,17.61,10.3,24.15 c-2.77,6.71-4.17,13.54-4.22,20.33c-0.05,6.89,1.26,13.75,3.88,20.41C12.58,71.52,16.51,77.94,21.69,84L21.69,84z M69.74,45.96 c1.19-0.77,1.18-1.62,0-2.3L57.47,36.6c-0.97-0.61-1.98-0.25-1.95,1.01l0.04,14.26c0.08,1.37,0.87,1.75,2.02,1.11L69.74,45.96 L69.74,45.96L69.74,45.96z M61.44,25.92c10.27,0,18.59,8.32,18.59,18.59c0,10.27-8.32,18.59-18.59,18.59 c-10.27,0-18.59-8.32-18.59-18.59C42.85,34.24,51.17,25.92,61.44,25.92L61.44,25.92L61.44,25.92z\"><\/path><\/g><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tDetect firearm threats early and dispatch authorities immediately.\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"eicon-chevron-left\"><\/i>\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"eicon-chevron-right\"><\/i>\t\t\t<\/div>\n\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d6d0b63 elementor-widget elementor-widget-html\" data-id=\"d6d0b63\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script type=\"application\/ld+json\">\r\n{\r\n  \"@context\": \"https:\/\/schema.org\",\r\n  \"@graph\": [\r\n    {\r\n      \"@type\": \"VideoObject\",\r\n      \"@id\": \"https:\/\/sirixmonitoring.com\/#video-c72lXuOAskU\",\r\n      \"name\": \"Vocal intervention INDOOR\",\r\n      \"description\": \"See how live remote video monitoring uses real-time voice intervention to respond to suspicious indoor activity. Trained operators assess the situation and deliver immediate audio warnings to help deter threats before they escalate.\r\n\",\r\n      \"thumbnailUrl\": [\r\n        \"https:\/\/img.youtube.com\/vi\/c72lXuOAskU\/maxresdefault.jpg\"\r\n      ],\r\n      \"uploadDate\": \"2026-04-21T17:26:27Z\",\r\n      \"duration\": \"PT17S\",\r\n      \"embedUrl\": \"https:\/\/www.youtube.com\/embed\/c72lXuOAskU\",\r\n      \"publisher\": {\r\n        \"@type\": \"Organization\",\r\n        \"name\": \"Sirix\",\r\n        \"logo\": {\r\n          \"@type\": \"ImageObject\",\r\n          \"url\": \"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/sirix-logo.webp\"\r\n        }\r\n      }\r\n    },\r\n    {\r\n      \"@type\": \"VideoObject\",\r\n      \"@id\": \"https:\/\/sirixmonitoring.com\/#video-JQNqfXB-ihA\",\r\n      \"name\": \"Vocal intervention OUTDOOR\",\r\n      \"description\": \"Discover how remote video monitoring helps businesses improve security with real-time surveillance, intelligent detection, and rapid response. This video highlights how trained security operators and advanced monitoring technology work together to protect properties and reduce security risks.\r\n\",\r\n      \"thumbnailUrl\": [\r\n        \"https:\/\/img.youtube.com\/vi\/JQNqfXB-ihA\/maxresdefault.jpg\"\r\n      ],\r\n      \"uploadDate\": \"2026-04-21T17:26:51Z\",\r\n      \"duration\": \"PT11S\",\r\n      \"embedUrl\": \"https:\/\/www.youtube.com\/embed\/JQNqfXB-ihA\",\r\n      \"publisher\": {\r\n        \"@type\": \"Organization\",\r\n        \"name\": \"Sirix\",\r\n        \"logo\": {\r\n          \"@type\": \"ImageObject\",\r\n          \"url\": \"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/sirix-logo.webp\"\r\n        }\r\n      }\r\n    },\r\n\r\n    {\r\n      \"@type\": \"VideoObject\",\r\n      \"@id\": \"https:\/\/sirixmonitoring.com\/#video-j0lxPQnbpf0\",\r\n      \"name\": \"Remote Door\",\r\n      \"description\": \"Explore how professional remote video monitoring solutions provide proactive security through live surveillance, real-time threat detection, and fast response coordination. Learn how businesses can strengthen protection, improve visibility, and maintain safer environments with advanced monitoring technology.\",\r\n      \"thumbnailUrl\": [\r\n        \"https:\/\/img.youtube.com\/vi\/j0lxPQnbpf0\/maxresdefault.jpg\"\r\n      ],\r\n      \"uploadDate\": \"2026-04-21T17:24:49Z\",\r\n      \"duration\": \"PT10S\",\r\n      \"embedUrl\": \"https:\/\/www.youtube.com\/embed\/j0lxPQnbpf0\",\r\n      \"publisher\": {\r\n        \"@type\": \"Organization\",\r\n        \"name\": \"Sirix\",\r\n        \"logo\": {\r\n          \"@type\": \"ImageObject\",\r\n          \"url\": \"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/sirix-logo.webp\"\r\n        }\r\n      }\r\n    },\r\n\r\n    {\r\n      \"@type\": \"VideoObject\",\r\n      \"@id\": \"https:\/\/sirixmonitoring.com\/#video-v0rv-7As5kU\",\r\n      \"name\": \"Remote Gate\",\r\n      \"description\": \"Learn how AI-powered video monitoring enhances security operations by identifying activity, analyzing events, and supporting faster responses. This video shows how smart surveillance technology and trained operators work together to help protect commercial properties and improve situational awareness.\",\r\n      \"thumbnailUrl\": [\r\n        \"https:\/\/img.youtube.com\/vi\/v0rv-7As5kU\/maxresdefault.jpg\"\r\n      ],\r\n      \"uploadDate\": \"2026-04-21T17:25:25Z\",\r\n      \"duration\": \"PT13S\",\r\n      \"embedUrl\": \"https:\/\/www.youtube.com\/embed\/v0rv-7As5kU\",\r\n      \"publisher\": {\r\n        \"@type\": \"Organization\",\r\n        \"name\": \"Sirix\",\r\n        \"logo\": {\r\n          \"@type\": \"ImageObject\",\r\n          \"url\": \"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/sirix-logo.webp\"\r\n        }\r\n      }\r\n    },\r\n\r\n    {\r\n      \"@type\": \"VideoObject\",\r\n      \"@id\": \"https:\/\/sirixmonitoring.com\/#video-up24kiPuvI4\",\r\n      \"name\": \"Lone Worker Fall Detection\",\r\n      \"description\": \"See how remote video monitoring helps organizations strengthen security with continuous surveillance, intelligent video analytics, and proactive threat response. This video highlights how technology and trained monitoring specialists work together to improve protection and reduce security challenges.\",\r\n      \"thumbnailUrl\": [\r\n        \"https:\/\/img.youtube.com\/vi\/up24kiPuvI4\/maxresdefault.jpg\"\r\n      ],\r\n      \"uploadDate\": \"2026-04-21T17:24:23Z\",\r\n      \"duration\": \"PT11S\",\r\n      \"embedUrl\": \"https:\/\/www.youtube.com\/embed\/up24kiPuvI4\",\r\n      \"publisher\": {\r\n        \"@type\": \"Organization\",\r\n        \"name\": \"Sirix\",\r\n        \"logo\": {\r\n          \"@type\": \"ImageObject\",\r\n          \"url\": \"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/sirix-logo.webp\"\r\n        }\r\n      }\r\n    },\r\n\r\n    {\r\n      \"@type\": \"VideoObject\",\r\n      \"@id\": \"https:\/\/sirixmonitoring.com\/#video-hJX7Way6J-0\",\r\n      \"name\": \"VIP - Safe Passage Monitoring\",\r\n      \"description\": \"Learn how live video monitoring solutions help businesses improve security through real-time surveillance, rapid incident detection, and proactive response. This video demonstrates how remote security teams use advanced monitoring technology to help protect properties and maintain safer environments.\",\r\n      \"thumbnailUrl\": [\r\n        \"https:\/\/img.youtube.com\/vi\/hJX7Way6J-0\/maxresdefault.jpg\"\r\n      ],\r\n      \"uploadDate\": \"2026-04-21T17:25:51Z\",\r\n      \"duration\": \"PT14S\",\r\n      \"embedUrl\": \"https:\/\/www.youtube.com\/embed\/hJX7Way6J-0\",\r\n      \"publisher\": {\r\n        \"@type\": \"Organization\",\r\n        \"name\": \"Sirix\",\r\n        \"logo\": {\r\n          \"@type\": \"ImageObject\",\r\n          \"url\": \"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/sirix-logo.webp\"\r\n        }\r\n      }\r\n    },\r\n\r\n    {\r\n      \"@type\": \"VideoObject\",\r\n      \"@id\": \"https:\/\/sirixmonitoring.com\/#video-4GsZIvJvdTM\",\r\n      \"name\": \"Firearm\",\r\n      \"description\": \"Discover how professional video monitoring services combine live surveillance, intelligent security technology, and trained operators to provide proactive protection. This video highlights how businesses can improve response times, enhance visibility, and better manage security risks with remote monitoring solutions.\",\r\n      \"thumbnailUrl\": [\r\n        \"https:\/\/img.youtube.com\/vi\/4GsZIvJvdTM\/maxresdefault.jpg\"\r\n      ],\r\n      \"uploadDate\": \"2026-04-21T17:23:46Z\",\r\n      \"duration\": \"PT12S\",\r\n      \"embedUrl\": \"https:\/\/www.youtube.com\/embed\/4GsZIvJvdTM\",\r\n      \"publisher\": {\r\n        \"@type\": \"Organization\",\r\n        \"name\": \"Sirix\",\r\n        \"logo\": {\r\n          \"@type\": \"ImageObject\",\r\n          \"url\": \"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/sirix-logo.webp\"\r\n        }\r\n      }\r\n    }\r\n  ]\r\n}\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6817e73f e-flex e-con-boxed e-con e-parent\" data-id=\"6817e73f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-15d99019 e-con-full e-flex e-con e-child\" data-id=\"15d99019\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7fa6e28f e-con-full e-flex e-con e-child\" data-id=\"7fa6e28f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-359bed5a elementor-widget-mobile__width-auto elementor-widget elementor-widget-heading\" data-id=\"359bed5a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">A single command center for all your security systems<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2b72c074 e-con-full e-flex e-con e-child\" data-id=\"2b72c074\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-28bec6b1 elementor-widget elementor-widget-text-editor\" data-id=\"28bec6b1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>All your security devices, from any brand, connected and monitored in one place.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5ba6f675 elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"5ba6f675\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/contact\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Talk to our team<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-21972409 e-con-full e-flex e-con e-child\" data-id=\"21972409\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6f430e71 elementor-widget elementor-widget-hotspot\" data-id=\"6f430e71\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;hotspot&quot;:[{&quot;_id&quot;:&quot;31e03d5&quot;,&quot;hotspot_icon&quot;:{&quot;value&quot;:&quot;far fa-angry&quot;,&quot;library&quot;:&quot;fa-regular&quot;},&quot;hotspot_custom_size&quot;:&quot;&quot;,&quot;hotspot_tooltip_content&quot;:&quot;&lt;p&gt;&lt;strong style=\\&quot;font-weight: 600; font-size: 20px;\\&quot;&gt;Centralized video &amp; incident view&lt;br \\\/&gt;&lt;\\\/strong&gt;&lt;\\\/p&gt;&lt;p&gt;View live and recorded video from your sites, manage site details, and access clear incident reports, all in one place.&lt;\\\/p&gt;&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:41.95,&quot;sizes&quot;:[]},&quot;hotspot_vertical&quot;:&quot;bottom&quot;,&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:44.2,&quot;sizes&quot;:[]},&quot;hotspot_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;hotspot_offset_x_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:41,&quot;sizes&quot;:[]},&quot;hotspot_offset_x_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:40,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:46,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:48,&quot;sizes&quot;:[]},&quot;hotspot_label&quot;:&quot;&quot;,&quot;hotspot_link&quot;:{&quot;url&quot;:&quot;&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;hotspot_horizontal&quot;:&quot;left&quot;,&quot;hotspot_tooltip_position&quot;:&quot;no&quot;,&quot;hotspot_position&quot;:null},{&quot;hotspot_icon&quot;:{&quot;value&quot;:&quot;fas fa-funnel-dollar&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;hotspot_custom_size&quot;:&quot;&quot;,&quot;hotspot_tooltip_content&quot;:&quot;&lt;p&gt;&lt;strong style=\\&quot;font-weight: 600; font-size: 20px;\\&quot;&gt;Sirix mobile app&lt;br \\\/&gt;&lt;\\\/strong&gt;&lt;\\\/p&gt;&lt;p&gt;Arm or disarm your secured sites remotely, anytime, directly from the Sirix mobile app.&lt;\\\/p&gt;&quot;,&quot;hotspot_horizontal&quot;:&quot;right&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:23,&quot;sizes&quot;:[]},&quot;hotspot_vertical&quot;:&quot;bottom&quot;,&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:26,&quot;sizes&quot;:[]},&quot;_id&quot;:&quot;bfd529b&quot;,&quot;hotspot_offset_x_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:23,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:28,&quot;sizes&quot;:[]},&quot;hotspot_offset_x_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:23,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:27,&quot;sizes&quot;:[]},&quot;hotspot_label&quot;:&quot;&quot;,&quot;hotspot_link&quot;:{&quot;url&quot;:&quot;&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;hotspot_tooltip_position&quot;:&quot;no&quot;,&quot;hotspot_position&quot;:null},{&quot;hotspot_icon&quot;:{&quot;value&quot;:&quot;fas fa-archway&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;hotspot_custom_size&quot;:&quot;&quot;,&quot;hotspot_tooltip_content&quot;:&quot;&lt;p&gt;&lt;strong style=\\&quot;font-weight: 600; font-size: 20px;\\&quot;&gt;Remote video monitoring&lt;br \\\/&gt;&lt;\\\/strong&gt;&lt;\\\/p&gt;&lt;p&gt;AI-powered alerts are reviewed by our operators in real time, who respond according to your site\\u2019s procedures.&lt;\\\/p&gt;&lt;p&gt;&lt;a href=\\&quot;https:\\\/\\\/sirixmonitoring.com\\\/remote-video-monitoring\\\/\\&quot;&gt;&lt;strong&gt;Read more \\u2192&lt;\\\/strong&gt;&lt;\\\/a&gt;&lt;\\\/p&gt;&quot;,&quot;hotspot_horizontal&quot;:&quot;right&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:55,&quot;sizes&quot;:[]},&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;_id&quot;:&quot;8b87761&quot;,&quot;hotspot_offset_x_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:55,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;hotspot_label&quot;:&quot;&quot;,&quot;hotspot_link&quot;:{&quot;url&quot;:&quot;&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;hotspot_vertical&quot;:&quot;top&quot;,&quot;hotspot_tooltip_position&quot;:&quot;no&quot;,&quot;hotspot_position&quot;:null},{&quot;hotspot_icon&quot;:{&quot;value&quot;:&quot;far fa-address-card&quot;,&quot;library&quot;:&quot;fa-regular&quot;},&quot;hotspot_custom_size&quot;:&quot;&quot;,&quot;hotspot_tooltip_content&quot;:&quot;&lt;p&gt;&lt;strong style=\\&quot;font-weight: 600; font-size: 20px;\\&quot;&gt;Intercom response&lt;br \\\/&gt;&lt;\\\/strong&gt;&lt;\\\/p&gt;&lt;p&gt;Live operator response allows door, gate, and emergency intercoms to be handled remotely 24\\\/7 using two-way audio and one-way video.&lt;\\\/p&gt;&lt;p&gt;&lt;a href=\\&quot;https:\\\/\\\/sirixmonitoring.com\\\/emergency-intercom-monitoring\\\/\\&quot;&gt;&lt;strong&gt;Read more &lt;\\\/strong&gt;&lt;\\\/a&gt;&lt;strong&gt;&lt;a href=\\&quot;https:\\\/\\\/sirixmonitoring.com\\\/remote-video-monitoring\\\/\\&quot;&gt;\\u2192&lt;\\\/a&gt;&lt;\\\/strong&gt;&lt;\\\/p&gt;&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:22.5,&quot;sizes&quot;:[]},&quot;hotspot_vertical&quot;:&quot;bottom&quot;,&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:61,&quot;sizes&quot;:[]},&quot;_id&quot;:&quot;90c657c&quot;,&quot;hotspot_tooltip_position&quot;:&quot;yes&quot;,&quot;hotspot_position&quot;:&quot;left&quot;,&quot;hotspot_label&quot;:&quot;&quot;,&quot;hotspot_link&quot;:{&quot;url&quot;:&quot;&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;hotspot_horizontal&quot;:&quot;left&quot;},{&quot;hotspot_icon&quot;:{&quot;value&quot;:&quot;far fa-address-card&quot;,&quot;library&quot;:&quot;fa-regular&quot;},&quot;hotspot_custom_size&quot;:&quot;&quot;,&quot;hotspot_tooltip_content&quot;:&quot;&lt;p&gt;&lt;strong style=\\&quot;font-weight: 600; font-size: 20px;\\&quot;&gt;Integrated alarm response&lt;br \\\/&gt;&lt;\\\/strong&gt;&lt;\\\/p&gt;&lt;p&gt;Protect any site with AI-powered alarms integrated with cameras and access control to deter perimeter threats, detect intrusions, and let staff call for help anytime.&lt;\\\/p&gt;&lt;p&gt;&lt;a href=\\&quot;https:\\\/\\\/sirixmonitoring.com\\\/alarm-video-verification\\\/\\&quot;&gt;&lt;strong&gt;Read more &lt;\\\/strong&gt;&lt;\\\/a&gt;&lt;strong&gt;&lt;a href=\\&quot;https:\\\/\\\/sirixmonitoring.com\\\/remote-video-monitoring\\\/\\&quot;&gt;\\u2192&lt;\\\/a&gt;&lt;\\\/strong&gt;&lt;\\\/p&gt;&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:28,&quot;sizes&quot;:[]},&quot;hotspot_vertical&quot;:&quot;bottom&quot;,&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:44,&quot;sizes&quot;:[]},&quot;_id&quot;:&quot;482dec8&quot;,&quot;hotspot_offset_x_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:27,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:30,&quot;sizes&quot;:[]},&quot;hotspot_label&quot;:&quot;&quot;,&quot;hotspot_link&quot;:{&quot;url&quot;:&quot;&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;hotspot_horizontal&quot;:&quot;left&quot;,&quot;hotspot_tooltip_position&quot;:&quot;no&quot;,&quot;hotspot_position&quot;:null},{&quot;hotspot_icon&quot;:{&quot;value&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/sirixmonitoring.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/Access-control-management-gadget.svg&quot;,&quot;id&quot;:98786},&quot;library&quot;:&quot;svg&quot;},&quot;hotspot_custom_size&quot;:&quot;&quot;,&quot;hotspot_tooltip_content&quot;:&quot;&lt;p&gt;&lt;strong style=\\&quot;font-weight: 600; font-size: 20px;\\&quot;&gt;Access control management&lt;br \\\/&gt;&lt;\\\/strong&gt;&lt;\\\/p&gt;&lt;p&gt;Access control devices are managed remotely by our operators to stop unauthorized access, prevent tailgating, resolve issues, and handle visitors in real time.&lt;\\\/p&gt;&lt;p&gt;&lt;a href=\\&quot;https:\\\/\\\/sirixmonitoring.com\\\/managed-access-control\\\/\\&quot;&gt;&lt;strong&gt;Read more &lt;\\\/strong&gt;&lt;\\\/a&gt;&lt;strong&gt;&lt;a href=\\&quot;https:\\\/\\\/sirixmonitoring.com\\\/remote-video-monitoring\\\/\\&quot;&gt;\\u2192&lt;\\\/a&gt;&lt;\\\/strong&gt;&lt;\\\/p&gt;&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:26.5,&quot;sizes&quot;:[]},&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:43,&quot;sizes&quot;:[]},&quot;_id&quot;:&quot;7b94ae8&quot;,&quot;hotspot_horizontal&quot;:&quot;right&quot;,&quot;hotspot_label&quot;:&quot;&quot;,&quot;hotspot_link&quot;:{&quot;url&quot;:&quot;&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;hotspot_vertical&quot;:&quot;top&quot;,&quot;hotspot_tooltip_position&quot;:&quot;no&quot;,&quot;hotspot_position&quot;:null},{&quot;hotspot_icon&quot;:{&quot;value&quot;:&quot;fas fa-laptop&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;hotspot_custom_size&quot;:&quot;&quot;,&quot;hotspot_tooltip_content&quot;:&quot;&lt;p&gt;&lt;strong style=\\&quot;font-weight: 600; font-size: 20px;\\&quot;&gt;Elevator emergency intercom response&lt;br \\\/&gt;&lt;\\\/strong&gt;&lt;\\\/p&gt;&lt;p&gt;Emergency calls from elevator cabins are answered 24\\\/7 by our operators with video access and on-screen prompts designed for hearing- and speech-impaired users.&lt;\\\/p&gt;&lt;p&gt;&lt;a href=\\&quot;https:\\\/\\\/sirixmonitoring.com\\\/elevator-video-monitoring\\\/\\&quot;&gt;&lt;strong&gt;Read more &lt;\\\/strong&gt;&lt;\\\/a&gt;&lt;strong&gt;&lt;a href=\\&quot;https:\\\/\\\/sirixmonitoring.com\\\/remote-video-monitoring\\\/\\&quot;&gt;\\u2192&lt;\\\/a&gt;&lt;\\\/strong&gt;&lt;\\\/p&gt;&quot;,&quot;hotspot_horizontal&quot;:&quot;right&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:44,&quot;sizes&quot;:[]},&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:42,&quot;sizes&quot;:[]},&quot;_id&quot;:&quot;d1c017c&quot;,&quot;hotspot_label&quot;:&quot;&quot;,&quot;hotspot_link&quot;:{&quot;url&quot;:&quot;&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;hotspot_vertical&quot;:&quot;top&quot;,&quot;hotspot_tooltip_position&quot;:&quot;no&quot;,&quot;hotspot_position&quot;:null},{&quot;hotspot_icon&quot;:{&quot;value&quot;:&quot;fas fa-ambulance&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;hotspot_custom_size&quot;:&quot;&quot;,&quot;hotspot_tooltip_content&quot;:&quot;&lt;p&gt;&lt;strong style=\\&quot;font-weight: 600; font-size: 20px;\\&quot;&gt;VIP safe passage monitoring&lt;\\\/strong&gt;&lt;\\\/p&gt;&lt;p&gt;A Sirix operator escorts a person or vehicle across your site by monitoring them through a sequence of predetermined cameras, ensuring safe passage from the secured perimeter entry point to the designated location.&lt;\\\/p&gt;&lt;p&gt;&lt;a href=\\&quot;https:\\\/\\\/sirixmonitoring.com\\\/vip-safe-passage-monitoring\\\/\\&quot;&gt;&lt;strong&gt;Read more &lt;\\\/strong&gt;&lt;\\\/a&gt;&lt;strong&gt;&lt;a href=\\&quot;https:\\\/\\\/sirixmonitoring.com\\\/remote-video-monitoring\\\/\\&quot;&gt;\\u2192&lt;\\\/a&gt;&lt;\\\/strong&gt;&lt;\\\/p&gt;&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:21,&quot;sizes&quot;:[]},&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:9,&quot;sizes&quot;:[]},&quot;hotspot_tooltip_position&quot;:&quot;yes&quot;,&quot;hotspot_position_tablet&quot;:&quot;top&quot;,&quot;_id&quot;:&quot;e77cd38&quot;,&quot;hotspot_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;hotspot_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;hotspot_position_mobile&quot;:&quot;bottom&quot;,&quot;hotspot_label&quot;:&quot;&quot;,&quot;hotspot_link&quot;:{&quot;url&quot;:&quot;&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;hotspot_horizontal&quot;:&quot;left&quot;,&quot;hotspot_vertical&quot;:&quot;top&quot;,&quot;hotspot_position&quot;:&quot;&quot;},{&quot;hotspot_icon&quot;:{&quot;value&quot;:&quot;fas fa-archway&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;hotspot_custom_size&quot;:&quot;&quot;,&quot;hotspot_tooltip_content&quot;:&quot;&lt;p&gt;&lt;strong style=\\&quot;font-weight: 600; font-size: 20px;\\&quot;&gt;Virtual guard tour&lt;br \\\/&gt;&lt;\\\/strong&gt;&lt;\\\/p&gt;&lt;p&gt;A Sirix operator performs scheduled virtual patrols of your site by scanning groups of cameras at defined intervals, verifying activity and site conditions across up to 16 cameras at a time.&lt;\\\/p&gt;&lt;p&gt;&lt;a href=\\&quot;https:\\\/\\\/sirixmonitoring.com\\\/virtual-guard-tour\\\/\\&quot;&gt;&lt;strong&gt;Read more &lt;\\\/strong&gt;&lt;\\\/a&gt;&lt;strong&gt;&lt;a href=\\&quot;https:\\\/\\\/sirixmonitoring.com\\\/remote-video-monitoring\\\/\\&quot;&gt;\\u2192&lt;\\\/a&gt;&lt;\\\/strong&gt;&lt;\\\/p&gt;&quot;,&quot;hotspot_horizontal&quot;:&quot;right&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:36,&quot;sizes&quot;:[]},&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:4,&quot;sizes&quot;:[]},&quot;hotspot_tooltip_position&quot;:&quot;yes&quot;,&quot;hotspot_position_tablet&quot;:&quot;top&quot;,&quot;_id&quot;:&quot;44a63fe&quot;,&quot;hotspot_position_mobile&quot;:&quot;bottom&quot;,&quot;hotspot_label&quot;:&quot;&quot;,&quot;hotspot_link&quot;:{&quot;url&quot;:&quot;&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;hotspot_vertical&quot;:&quot;top&quot;,&quot;hotspot_position&quot;:&quot;&quot;}],&quot;tooltip_position_tablet&quot;:&quot;bottom&quot;,&quot;tooltip_position_mobile&quot;:&quot;bottom&quot;,&quot;tooltip_trigger_tablet&quot;:&quot;click&quot;,&quot;tooltip_position&quot;:&quot;top&quot;,&quot;tooltip_trigger&quot;:&quot;click&quot;,&quot;tooltip_animation&quot;:&quot;e-hotspot--fade-in-out&quot;}\" data-widget_type=\"hotspot.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1672\" height=\"941\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/Live-video-monitoring-system-with-CCTV-cameras-access-control-and-real-time-dashboard-view-of-sirix.webp\" class=\"attachment-full size-full wp-image-98727\" alt=\"Live video monitoring system with CCTV cameras, access control, and real-time dashboard view of sirix.\" srcset=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/Live-video-monitoring-system-with-CCTV-cameras-access-control-and-real-time-dashboard-view-of-sirix.webp 1672w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/Live-video-monitoring-system-with-CCTV-cameras-access-control-and-real-time-dashboard-view-of-sirix-300x169.webp 300w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/Live-video-monitoring-system-with-CCTV-cameras-access-control-and-real-time-dashboard-view-of-sirix-1024x576.webp 1024w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/Live-video-monitoring-system-with-CCTV-cameras-access-control-and-real-time-dashboard-view-of-sirix-768x432.webp 768w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/Live-video-monitoring-system-with-CCTV-cameras-access-control-and-real-time-dashboard-view-of-sirix-1536x864.webp 1536w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/05\/Live-video-monitoring-system-with-CCTV-cameras-access-control-and-real-time-dashboard-view-of-sirix-18x10.webp 18w\" sizes=\"(max-width: 1672px) 100vw, 1672px\" \/>\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-31e03d5  e-hotspot--position-left e-hotspot--position-bottom   e-hotspot--icon\">\n\n\t\t\t\t\t\t\t\t<div class=\"e-hotspot__button e-hotspot--soft-beat\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__icon\"><i class=\"far fa-angry\"><\/i><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__tooltip  e-hotspot--tooltip-position e-hotspot--fade-in-out \" >\n\t\t\t\t\t\t<p><strong style=\"font-weight: 600; font-size: 20px;\">Centralized video &amp; incident view<br \/><\/strong><\/p><p>View live and recorded video from your sites, manage site details, and access clear incident reports, all in one place.<\/p>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-bfd529b  e-hotspot--position-right e-hotspot--position-bottom   e-hotspot--icon\">\n\n\t\t\t\t\t\t\t\t<div class=\"e-hotspot__button e-hotspot--soft-beat\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__icon\"><i class=\"fas fa-funnel-dollar\"><\/i><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__tooltip  e-hotspot--tooltip-position e-hotspot--fade-in-out \" >\n\t\t\t\t\t\t<p><strong style=\"font-weight: 600; font-size: 20px;\">Sirix mobile app<br \/><\/strong><\/p><p>Arm or disarm your secured sites remotely, anytime, directly from the Sirix mobile app.<\/p>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-8b87761  e-hotspot--position-right e-hotspot--position-top   e-hotspot--icon\">\n\n\t\t\t\t\t\t\t\t<div class=\"e-hotspot__button e-hotspot--soft-beat\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__icon\"><i class=\"fas fa-archway\"><\/i><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__tooltip  e-hotspot--tooltip-position e-hotspot--fade-in-out \" >\n\t\t\t\t\t\t<p><strong style=\"font-weight: 600; font-size: 20px;\">Remote video monitoring<br \/><\/strong><\/p><p>AI-powered alerts are reviewed by our operators in real time, who respond according to your site\u2019s procedures.<\/p><p><a href=\"https:\/\/sirixmonitoring.com\/remote-video-monitoring\/\"><strong>Read more \u2192<\/strong><\/a><\/p>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-90c657c  e-hotspot--position-left e-hotspot--position-bottom   e-hotspot--icon\">\n\n\t\t\t\t\t\t\t\t<div class=\"e-hotspot__button e-hotspot--soft-beat\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__icon\"><i class=\"far fa-address-card\"><\/i><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__tooltip  e-hotspot--tooltip-position e-hotspot--fade-in-out \" >\n\t\t\t\t\t\t<p><strong style=\"font-weight: 600; font-size: 20px;\">Intercom response<br \/><\/strong><\/p><p>Live operator response allows door, gate, and emergency intercoms to be handled remotely 24\/7 using two-way audio and one-way video.<\/p><p><a href=\"https:\/\/sirixmonitoring.com\/emergency-intercom-monitoring\/\"><strong>Read more <\/strong><\/a><strong><a href=\"https:\/\/sirixmonitoring.com\/remote-video-monitoring\/\">\u2192<\/a><\/strong><\/p>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-482dec8  e-hotspot--position-left e-hotspot--position-bottom   e-hotspot--icon\">\n\n\t\t\t\t\t\t\t\t<div class=\"e-hotspot__button e-hotspot--soft-beat\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__icon\"><i class=\"far fa-address-card\"><\/i><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__tooltip  e-hotspot--tooltip-position e-hotspot--fade-in-out \" >\n\t\t\t\t\t\t<p><strong style=\"font-weight: 600; font-size: 20px;\">Integrated alarm response<br \/><\/strong><\/p><p>Protect any site with AI-powered alarms integrated with cameras and access control to deter perimeter threats, detect intrusions, and let staff call for help anytime.<\/p><p><a href=\"https:\/\/sirixmonitoring.com\/alarm-video-verification\/\"><strong>Read more <\/strong><\/a><strong><a href=\"https:\/\/sirixmonitoring.com\/remote-video-monitoring\/\">\u2192<\/a><\/strong><\/p>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-7b94ae8  e-hotspot--position-right e-hotspot--position-top   e-hotspot--icon\">\n\n\t\t\t\t\t\t\t\t<div class=\"e-hotspot__button e-hotspot--soft-beat\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 27.6 75.75\"><defs><style> .cls-1 { fill: #dbdcdc; } .cls-1, .cls-2, .cls-3, .cls-4, .cls-5, .cls-6, .cls-7 { stroke-width: 0px; } .cls-2 { fill: #3e3a39; } .cls-3 { fill: #231815; } .cls-4 { fill: #c8c9ca; } .cls-5 { fill: #888; } .cls-6 { fill: #595757; } .cls-7 { fill: #717071; } <\/style><\/defs><path class=\"cls-4\" d=\"m27.6,75.15c0,.33-.13.6-.29.6H.29c-.16,0-.29-.27-.29-.6V.6c0-.33.13-.6.29-.6h27.03c.16,0,.29.27.29.6v74.54Z\"><\/path><rect class=\"cls-5\" x=\"1.19\" y=\"3.25\" width=\"25.23\" height=\"69.86\"><\/rect><g><g><rect class=\"cls-7\" x=\"2.83\" y=\"9.5\" width=\"21.94\" height=\"18.27\"><\/rect><g><g><path class=\"cls-1\" d=\"m19.88,18.64c0,3.36-2.72,6.08-6.08,6.08s-6.08-2.72-6.08-6.08,2.72-6.08,6.08-6.08,6.08,2.72,6.08,6.08Z\"><\/path><path class=\"cls-2\" d=\"m18.34,18.64c0,2.51-2.03,4.54-4.54,4.54s-4.54-2.03-4.54-4.54,2.03-4.54,4.54-4.54,4.54,2.03,4.54,4.54Z\"><\/path><\/g><path class=\"cls-6\" d=\"m16,18.64c0,1.22-.99,2.2-2.2,2.2s-2.2-.99-2.2-2.2.99-2.2,2.2-2.2,2.2.99,2.2,2.2Z\"><\/path><path class=\"cls-3\" d=\"m15.16,18.64c0,.75-.61,1.36-1.36,1.36s-1.36-.61-1.36-1.36.61-1.36,1.36-1.36,1.36.61,1.36,1.36Z\"><\/path><path class=\"cls-4\" d=\"m13.62,18.56c-.31.42-.11,1.06-.53.76-.42-.31-.51-.9-.2-1.32.31-.42.9-.51,1.32-.2.42.31-.27.34-.58.76Z\"><\/path><\/g><\/g><g><path class=\"cls-6\" d=\"m24.36,63.24c0,.25-4.77,3.61-10.73,3.61s-10.39-3.36-10.39-3.61v-11.62c0-.25.17-.46.38-.46h20.36c.21,0,.38.2.38.46v11.62Z\"><\/path><path class=\"cls-2\" d=\"m24.36,62.15c0,.25-4.77,3.61-10.73,3.61s-10.39-3.36-10.39-3.61v-11.62c0-.25.17-.46.38-.46h20.36c.21,0,.38.2.38.46v11.62Z\"><\/path><\/g><g><rect class=\"cls-2\" x=\"3.78\" y=\"31.28\" width=\".9\" height=\"11.89\"><\/rect><rect class=\"cls-2\" x=\"5.52\" y=\"31.28\" width=\".9\" height=\"11.89\"><\/rect><rect class=\"cls-2\" x=\"7.26\" y=\"31.28\" width=\".9\" height=\"11.89\"><\/rect><rect class=\"cls-2\" x=\"9\" y=\"31.28\" width=\".9\" height=\"11.89\"><\/rect><rect class=\"cls-2\" x=\"10.74\" y=\"31.28\" width=\".9\" height=\"11.89\"><\/rect><rect class=\"cls-2\" x=\"12.48\" y=\"31.28\" width=\".9\" height=\"11.89\"><\/rect><rect class=\"cls-2\" x=\"14.22\" y=\"31.28\" width=\".9\" height=\"11.89\"><\/rect><rect class=\"cls-2\" x=\"15.96\" y=\"31.28\" width=\".9\" height=\"11.89\"><\/rect><rect class=\"cls-2\" x=\"17.7\" y=\"31.28\" width=\".9\" height=\"11.89\"><\/rect><rect class=\"cls-2\" x=\"19.44\" y=\"31.28\" width=\".9\" height=\"11.89\"><\/rect><rect class=\"cls-2\" x=\"21.18\" y=\"31.28\" width=\".9\" height=\"11.89\"><\/rect><rect class=\"cls-2\" x=\"22.92\" y=\"31.28\" width=\".9\" height=\"11.89\"><\/rect><\/g><\/g><\/svg><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__tooltip  e-hotspot--tooltip-position e-hotspot--fade-in-out \" >\n\t\t\t\t\t\t<p><strong style=\"font-weight: 600; font-size: 20px;\">Access control management<br \/><\/strong><\/p><p>Access control devices are managed remotely by our operators to stop unauthorized access, prevent tailgating, resolve issues, and handle visitors in real time.<\/p><p><a href=\"https:\/\/sirixmonitoring.com\/managed-access-control\/\"><strong>Read more <\/strong><\/a><strong><a href=\"https:\/\/sirixmonitoring.com\/remote-video-monitoring\/\">\u2192<\/a><\/strong><\/p>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-d1c017c  e-hotspot--position-right e-hotspot--position-top   e-hotspot--icon\">\n\n\t\t\t\t\t\t\t\t<div class=\"e-hotspot__button e-hotspot--soft-beat\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__icon\"><i class=\"fas fa-laptop\"><\/i><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__tooltip  e-hotspot--tooltip-position e-hotspot--fade-in-out \" >\n\t\t\t\t\t\t<p><strong style=\"font-weight: 600; font-size: 20px;\">Elevator emergency intercom response<br \/><\/strong><\/p><p>Emergency calls from elevator cabins are answered 24\/7 by our operators with video access and on-screen prompts designed for hearing- and speech-impaired users.<\/p><p><a href=\"https:\/\/sirixmonitoring.com\/elevator-video-monitoring\/\"><strong>Read more <\/strong><\/a><strong><a href=\"https:\/\/sirixmonitoring.com\/remote-video-monitoring\/\">\u2192<\/a><\/strong><\/p>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-e77cd38  e-hotspot--position-left e-hotspot--position-top   e-hotspot--icon\">\n\n\t\t\t\t\t\t\t\t<div class=\"e-hotspot__button e-hotspot--soft-beat\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__icon\"><i class=\"fas fa-ambulance\"><\/i><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__tooltip  e-hotspot--tooltip-position e-hotspot--fade-in-out \" >\n\t\t\t\t\t\t<p><strong style=\"font-weight: 600; font-size: 20px;\">VIP safe passage monitoring<\/strong><\/p><p>A Sirix operator escorts a person or vehicle across your site by monitoring them through a sequence of predetermined cameras, ensuring safe passage from the secured perimeter entry point to the designated location.<\/p><p><a href=\"https:\/\/sirixmonitoring.com\/vip-safe-passage-monitoring\/\"><strong>Read more <\/strong><\/a><strong><a href=\"https:\/\/sirixmonitoring.com\/remote-video-monitoring\/\">\u2192<\/a><\/strong><\/p>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-44a63fe  e-hotspot--position-right e-hotspot--position-top   e-hotspot--icon\">\n\n\t\t\t\t\t\t\t\t<div class=\"e-hotspot__button e-hotspot--soft-beat\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__icon\"><i class=\"fas fa-archway\"><\/i><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__tooltip  e-hotspot--tooltip-position e-hotspot--fade-in-out \" >\n\t\t\t\t\t\t<p><strong style=\"font-weight: 600; font-size: 20px;\">Virtual guard tour<br \/><\/strong><\/p><p>A Sirix operator performs scheduled virtual patrols of your site by scanning groups of cameras at defined intervals, verifying activity and site conditions across up to 16 cameras at a time.<\/p><p><a href=\"https:\/\/sirixmonitoring.com\/virtual-guard-tour\/\"><strong>Read more <\/strong><\/a><strong><a href=\"https:\/\/sirixmonitoring.com\/remote-video-monitoring\/\">\u2192<\/a><\/strong><\/p>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d584da9 e-flex e-con-boxed e-con e-parent\" data-id=\"d584da9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-285acbc8 elementor-widget-mobile__width-inherit elementor-widget-tablet__width-initial elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"285acbc8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Why organizations choose Sirix<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-127b2f4e e-con-full e-flex e-con e-child\" data-id=\"127b2f4e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-474d3ce7 e-n-tabs-mobile elementor-widget elementor-widget-n-tabs\" data-id=\"474d3ce7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;horizontal_scroll_mobile&quot;:&quot;disable&quot;,&quot;tabs_justify_horizontal&quot;:&quot;start&quot;,&quot;tabs_justify_horizontal_mobile&quot;:&quot;center&quot;,&quot;tabs_justify_horizontal_tablet&quot;:&quot;center&quot;,&quot;horizontal_scroll&quot;:&quot;disable&quot;}\" data-widget_type=\"nested-tabs.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-n-tabs\" data-widget-number=\"1196244199\" aria-label=\"Tabs. Open items with Enter or Space, close with Escape and navigate using the Arrow keys.\">\n\t\t\t<div class=\"e-n-tabs-heading\" role=\"tablist\">\n\t\t\t\t\t<button id=\"e-n-tab-title-11962441991\" data-tab-title-id=\"e-n-tab-title-11962441991\" class=\"e-n-tab-title\" aria-selected=\"true\" data-tab-index=\"1\" role=\"tab\" tabindex=\"0\" aria-controls=\"e-n-tab-content-11962441991\" style=\"--n-tabs-title-order: 1;\">\n\t\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tSmart device placement\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t<button id=\"e-n-tab-title-11962441992\" data-tab-title-id=\"e-n-tab-title-11962441992\" class=\"e-n-tab-title\" aria-selected=\"false\" data-tab-index=\"2\" role=\"tab\" tabindex=\"-1\" aria-controls=\"e-n-tab-content-11962441992\" style=\"--n-tabs-title-order: 2;\">\n\t\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tGuaranteed uptime\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t<button id=\"e-n-tab-title-11962441993\" data-tab-title-id=\"e-n-tab-title-11962441993\" class=\"e-n-tab-title\" aria-selected=\"false\" data-tab-index=\"3\" role=\"tab\" tabindex=\"-1\" aria-controls=\"e-n-tab-content-11962441993\" style=\"--n-tabs-title-order: 3;\">\n\t\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tAI-filtered alerts\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t\t<\/div>\n\t\t\t<div class=\"e-n-tabs-content\">\n\t\t\t\t<div id=\"e-n-tab-content-11962441991\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-11962441991\" data-tab-index=\"1\" style=\"--n-tabs-title-order: 1;\" class=\"e-active elementor-element elementor-element-5d1012b9 e-con-full e-flex e-con e-child\" data-id=\"5d1012b9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6c009fbe e-con-full e-flex e-con e-child\" data-id=\"6c009fbe\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2aff6bef e-con-full e-flex e-con e-child\" data-id=\"2aff6bef\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-574a14ee elementor-widget elementor-widget-spacer\" data-id=\"574a14ee\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2edcf4e7 e-con-full e-flex e-con e-child\" data-id=\"2edcf4e7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5904ec37 elementor-widget__width-inherit elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"5904ec37\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Get full coverage of your site from day one.<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4011c616 elementor-widget elementor-widget-text-editor\" data-id=\"4011c616\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Every device is selected against your site&#8217;s specific threat profile and operating conditions, then tuned, tested, and signed off before your system goes live.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-24362390 elementor-widget__width-inherit elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"24362390\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"48\" height=\"48\" xml:space=\"preserve\" viewBox=\"0 0 48 48\"> <image width=\"48\" height=\"48\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVvSURBVHgBxVpdUttIEO6Rf4B9WecEMSdY5yG1Bja14gRhTxDrBHFOgHMCnBNInAD2BHZqF\/A+rXMCxAnQmwlgT7qHEZGlGallW8lX5bI0P1L3zNc93TMSsAHMZrN2o9FwpZQdIcRL\/HXiOiwLF4vFabPZDKACCFgRKFgLBXuPlz28bhe1r9VqL1CxCH42Hh4e3MfHxxH+ZJkf9YMKUOc21CN+jP99KI8IlQihArAoRKPnOI7PoYrGDXEf\/4kyIQo\/3NnZCWFF\/P6v3xeOeIuXLt1LgPOdr9IbH3pR4Qzc39\/3kbsnKFBeswjrT\/H\/vF6vTzfJ9b3L4ATfvDTrOOpHswZ8xsthrgLz+ZwoM7DVYx09ZIAeaAwVoHsR+Ch8z1QnhJpdO4XyhMcRnqI9fKhKcAIJj9L1LNXhZL+3SxfGGSDa2ITH8k9Ik1UMmQ1Nmx4Y3w+RcORhfC+yDWQbR\/\/a0DeiUa9qQYrRvTo9hhzaYp03OfCC+DYzAyjkyNCNhD9E4adQIQqFFxBM9r8LT3CSN5r3bUNXr2rh9y79o1zhkfc4\/B\/Thc8UslEHyz+isQ6gQnRHfls2xf\/oWVrWRinqxHimEAo\/yPaRn3+E8LAlRjiSduEN1ImhKKRp8y5diStoDyqG2BJn+NfOaRKaqBNDKYCj7xrqgnWWfw60u+zkNkIKT\/a80FYdG3Fm9DH+sWq9CZDHSYcIGRB1DszUiVHXxusmC4n7eaPvjvzW3Ta0tu8gooAKSuL1yO8UeBxCmEedGHUUPjOFqEBgaqwNzp9J6AgJrbstLLsMQgHyw9W+dw4M6GecFTYk6uzbqRPDQWHddCEqNba8mBY5N+Xu2hLEWfcCFyEGGEbLok4MBwOz31JlkZE+DRjkvljIQZESmve5RkuxDoc6MciId5cfIL8YW9bESygCKqFWVAO6\/\/gug\/cgFvJTntehzJDce5yikgJLguGMXFse\/AUYWEjhK7oloO5rwmd0DydvvIGtEgU\/Qnrf4qWPco4oanaACenAEJRnyAfZB\/GcPNVz36Y4gSLeq87fw2SjDFL2kveY5r5lK6Cm9ekFYVFb4vmsIZQ9qHxWwFFRH2W4e\/leB0f911RRm60AIVbiydAK5HGgT1kVJuMnUIywjOEmQQrcJAtwml7kdSAlHCE94MCeEi6jIFxIoLPcTd6QG71demfWrWZAi5bA1BI2AIxCpxyfT94HshFr5BjcZls3zsXVgdenl8OakEL+xWlnCTinDqaKGSHQxxYbnX45xx6sYBhuAhmZaHfEwYQlE8Oge3oHDGh7WDVqDcsYLgr7Z7oMN4zHZAMhpAwZ4XJoREB7GOLqdQplwTdclVilc3WKmGkHMM7IAkMn9t7P9oOK60PgI+QGawQUNBNjxTIrBXCjamjo9J4OLoABlRMw1weFOdMNg3n01SN0xKwU0JuxaRq00D448YsCe32YI3XeeGNggAQ3jT4k0t3CbRW9GzcEJl5f+J2ayMb8anaQ9\/\/94bGfhaMfgDnd3c0ooCsGJo1RiVdlN7a6V74r55i5PSU\/4fYvcD5+xU8\/bZvLuftU5HloFgxHRLcYunbgB4GEtxxVXRd2JkFJ4J+lRI7wt1ynoizfdlhHL4AKoGffzzkoZEUHzyB7yHmYzx4N3rtcC3XjE84BrIICJdZWhHNkS2kjrAN6AOMc+Azb9YqUIZro0T622NkS5zlny6xjVloj6OCDecxKrpJcbpgoa6F7buv+hTEWxTlkh5y92VKfGtjWiQ2i9DFW6W8l9Io9AMMKuQYifXg4LHvGvM7HHmpTmLY6TLE6AzTaf2PfYJ3j2pUVSEIr06HPbeAp8VacT7UJ9ecHdJI\/3dQZ8zfwC6cBdqfzowAAAABJRU5ErkJggg==\"><\/image> <\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Coverage planned camera by camera, no blind spots, no overlap waste<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"48\" height=\"48\" xml:space=\"preserve\" viewBox=\"0 0 48 48\"> <image width=\"48\" height=\"48\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVvSURBVHgBxVpdUttIEO6Rf4B9WecEMSdY5yG1Bja14gRhTxDrBHFOgHMCnBNInAD2BHZqF\/A+rXMCxAnQmwlgT7qHEZGlGallW8lX5bI0P1L3zNc93TMSsAHMZrN2o9FwpZQdIcRL\/HXiOiwLF4vFabPZDKACCFgRKFgLBXuPlz28bhe1r9VqL1CxCH42Hh4e3MfHxxH+ZJkf9YMKUOc21CN+jP99KI8IlQihArAoRKPnOI7PoYrGDXEf\/4kyIQo\/3NnZCWFF\/P6v3xeOeIuXLt1LgPOdr9IbH3pR4Qzc39\/3kbsnKFBeswjrT\/H\/vF6vTzfJ9b3L4ATfvDTrOOpHswZ8xsthrgLz+ZwoM7DVYx09ZIAeaAwVoHsR+Ch8z1QnhJpdO4XyhMcRnqI9fKhKcAIJj9L1LNXhZL+3SxfGGSDa2ITH8k9Ik1UMmQ1Nmx4Y3w+RcORhfC+yDWQbR\/\/a0DeiUa9qQYrRvTo9hhzaYp03OfCC+DYzAyjkyNCNhD9E4adQIQqFFxBM9r8LT3CSN5r3bUNXr2rh9y79o1zhkfc4\/B\/Thc8UslEHyz+isQ6gQnRHfls2xf\/oWVrWRinqxHimEAo\/yPaRn3+E8LAlRjiSduEN1ImhKKRp8y5diStoDyqG2BJn+NfOaRKaqBNDKYCj7xrqgnWWfw60u+zkNkIKT\/a80FYdG3Fm9DH+sWq9CZDHSYcIGRB1DszUiVHXxusmC4n7eaPvjvzW3Ta0tu8gooAKSuL1yO8UeBxCmEedGHUUPjOFqEBgaqwNzp9J6AgJrbstLLsMQgHyw9W+dw4M6GecFTYk6uzbqRPDQWHddCEqNba8mBY5N+Xu2hLEWfcCFyEGGEbLok4MBwOz31JlkZE+DRjkvljIQZESmve5RkuxDoc6MciId5cfIL8YW9bESygCKqFWVAO6\/\/gug\/cgFvJTntehzJDce5yikgJLguGMXFse\/AUYWEjhK7oloO5rwmd0DydvvIGtEgU\/Qnrf4qWPco4oanaACenAEJRnyAfZB\/GcPNVz36Y4gSLeq87fw2SjDFL2kveY5r5lK6Cm9ekFYVFb4vmsIZQ9qHxWwFFRH2W4e\/leB0f911RRm60AIVbiydAK5HGgT1kVJuMnUIywjOEmQQrcJAtwml7kdSAlHCE94MCeEi6jIFxIoLPcTd6QG71demfWrWZAi5bA1BI2AIxCpxyfT94HshFr5BjcZls3zsXVgdenl8OakEL+xWlnCTinDqaKGSHQxxYbnX45xx6sYBhuAhmZaHfEwYQlE8Oge3oHDGh7WDVqDcsYLgr7Z7oMN4zHZAMhpAwZ4XJoREB7GOLqdQplwTdclVilc3WKmGkHMM7IAkMn9t7P9oOK60PgI+QGawQUNBNjxTIrBXCjamjo9J4OLoABlRMw1weFOdMNg3n01SN0xKwU0JuxaRq00D448YsCe32YI3XeeGNggAQ3jT4k0t3CbRW9GzcEJl5f+J2ayMb8anaQ9\/\/94bGfhaMfgDnd3c0ooCsGJo1RiVdlN7a6V74r55i5PSU\/4fYvcD5+xU8\/bZvLuftU5HloFgxHRLcYunbgB4GEtxxVXRd2JkFJ4J+lRI7wt1ynoizfdlhHL4AKoGffzzkoZEUHzyB7yHmYzx4N3rtcC3XjE84BrIICJdZWhHNkS2kjrAN6AOMc+Azb9YqUIZro0T622NkS5zlny6xjVloj6OCDecxKrpJcbpgoa6F7buv+hTEWxTlkh5y92VKfGtjWiQ2i9DFW6W8l9Io9AMMKuQYifXg4LHvGvM7HHmpTmLY6TLE6AzTaf2PfYJ3j2pUVSEIr06HPbeAp8VacT7UJ9ecHdJI\/3dQZ8zfwC6cBdqfzowAAAABJRU5ErkJggg==\"><\/image> <\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Devices selected against the threat profile and operating conditions of each property<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"48\" height=\"48\" xml:space=\"preserve\" viewBox=\"0 0 48 48\"> <image width=\"48\" height=\"48\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVvSURBVHgBxVpdUttIEO6Rf4B9WecEMSdY5yG1Bja14gRhTxDrBHFOgHMCnBNInAD2BHZqF\/A+rXMCxAnQmwlgT7qHEZGlGallW8lX5bI0P1L3zNc93TMSsAHMZrN2o9FwpZQdIcRL\/HXiOiwLF4vFabPZDKACCFgRKFgLBXuPlz28bhe1r9VqL1CxCH42Hh4e3MfHxxH+ZJkf9YMKUOc21CN+jP99KI8IlQihArAoRKPnOI7PoYrGDXEf\/4kyIQo\/3NnZCWFF\/P6v3xeOeIuXLt1LgPOdr9IbH3pR4Qzc39\/3kbsnKFBeswjrT\/H\/vF6vTzfJ9b3L4ATfvDTrOOpHswZ8xsthrgLz+ZwoM7DVYx09ZIAeaAwVoHsR+Ch8z1QnhJpdO4XyhMcRnqI9fKhKcAIJj9L1LNXhZL+3SxfGGSDa2ITH8k9Ik1UMmQ1Nmx4Y3w+RcORhfC+yDWQbR\/\/a0DeiUa9qQYrRvTo9hhzaYp03OfCC+DYzAyjkyNCNhD9E4adQIQqFFxBM9r8LT3CSN5r3bUNXr2rh9y79o1zhkfc4\/B\/Thc8UslEHyz+isQ6gQnRHfls2xf\/oWVrWRinqxHimEAo\/yPaRn3+E8LAlRjiSduEN1ImhKKRp8y5diStoDyqG2BJn+NfOaRKaqBNDKYCj7xrqgnWWfw60u+zkNkIKT\/a80FYdG3Fm9DH+sWq9CZDHSYcIGRB1DszUiVHXxusmC4n7eaPvjvzW3Ta0tu8gooAKSuL1yO8UeBxCmEedGHUUPjOFqEBgaqwNzp9J6AgJrbstLLsMQgHyw9W+dw4M6GecFTYk6uzbqRPDQWHddCEqNba8mBY5N+Xu2hLEWfcCFyEGGEbLok4MBwOz31JlkZE+DRjkvljIQZESmve5RkuxDoc6MciId5cfIL8YW9bESygCKqFWVAO6\/\/gug\/cgFvJTntehzJDce5yikgJLguGMXFse\/AUYWEjhK7oloO5rwmd0DydvvIGtEgU\/Qnrf4qWPco4oanaACenAEJRnyAfZB\/GcPNVz36Y4gSLeq87fw2SjDFL2kveY5r5lK6Cm9ekFYVFb4vmsIZQ9qHxWwFFRH2W4e\/leB0f911RRm60AIVbiydAK5HGgT1kVJuMnUIywjOEmQQrcJAtwml7kdSAlHCE94MCeEi6jIFxIoLPcTd6QG71demfWrWZAi5bA1BI2AIxCpxyfT94HshFr5BjcZls3zsXVgdenl8OakEL+xWlnCTinDqaKGSHQxxYbnX45xx6sYBhuAhmZaHfEwYQlE8Oge3oHDGh7WDVqDcsYLgr7Z7oMN4zHZAMhpAwZ4XJoREB7GOLqdQplwTdclVilc3WKmGkHMM7IAkMn9t7P9oOK60PgI+QGawQUNBNjxTIrBXCjamjo9J4OLoABlRMw1weFOdMNg3n01SN0xKwU0JuxaRq00D448YsCe32YI3XeeGNggAQ3jT4k0t3CbRW9GzcEJl5f+J2ayMb8anaQ9\/\/94bGfhaMfgDnd3c0ooCsGJo1RiVdlN7a6V74r55i5PSU\/4fYvcD5+xU8\/bZvLuftU5HloFgxHRLcYunbgB4GEtxxVXRd2JkFJ4J+lRI7wt1ynoizfdlhHL4AKoGffzzkoZEUHzyB7yHmYzx4N3rtcC3XjE84BrIICJdZWhHNkS2kjrAN6AOMc+Azb9YqUIZro0T622NkS5zlny6xjVloj6OCDecxKrpJcbpgoa6F7buv+hTEWxTlkh5y92VKfGtjWiQ2i9DFW6W8l9Io9AMMKuQYifXg4LHvGvM7HHmpTmLY6TLE6AzTaf2PfYJ3j2pUVSEIr06HPbeAp8VacT7UJ9ecHdJI\/3dQZ8zfwC6cBdqfzowAAAABJRU5ErkJggg==\"><\/image> <\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Tuned, tested, and signed off on every camera before the system goes live<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2e05dbd2 e-con-full e-flex e-con e-child\" data-id=\"2e05dbd2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/youtu.be\\\/sODXtTP6erc&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-video-embed\" role=\"presentation\"><\/div>\n\t\t\t\t\t\t<\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div id=\"e-n-tab-content-11962441992\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-11962441992\" data-tab-index=\"2\" style=\"--n-tabs-title-order: 2;\" class=\" elementor-element elementor-element-416fcfb0 e-con-full e-flex e-con e-child\" data-id=\"416fcfb0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-463e3fd2 e-con-full e-flex e-con e-child\" data-id=\"463e3fd2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6bb777d9 e-con-full e-flex e-con e-child\" data-id=\"6bb777d9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4a6e51bb elementor-widget elementor-widget-spacer\" data-id=\"4a6e51bb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4a2a8d4d e-con-full e-flex e-con e-child\" data-id=\"4a2a8d4d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3fd95103 elementor-widget__width-inherit elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"3fd95103\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Know instantly when something stops working, before it becomes a risk.<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4348f843 elementor-widget elementor-widget-text-editor\" data-id=\"4348f843\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Every camera and sensor on your site is checked continuously, 24\/7. Sirix flags issues automatically so vulnerabilities never go unnoticed.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-41e1712a elementor-widget__width-inherit elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"41e1712a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"48\" height=\"48\" xml:space=\"preserve\" viewBox=\"0 0 48 48\"> <image width=\"48\" height=\"48\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVvSURBVHgBxVpdUttIEO6Rf4B9WecEMSdY5yG1Bja14gRhTxDrBHFOgHMCnBNInAD2BHZqF\/A+rXMCxAnQmwlgT7qHEZGlGallW8lX5bI0P1L3zNc93TMSsAHMZrN2o9FwpZQdIcRL\/HXiOiwLF4vFabPZDKACCFgRKFgLBXuPlz28bhe1r9VqL1CxCH42Hh4e3MfHxxH+ZJkf9YMKUOc21CN+jP99KI8IlQihArAoRKPnOI7PoYrGDXEf\/4kyIQo\/3NnZCWFF\/P6v3xeOeIuXLt1LgPOdr9IbH3pR4Qzc39\/3kbsnKFBeswjrT\/H\/vF6vTzfJ9b3L4ATfvDTrOOpHswZ8xsthrgLz+ZwoM7DVYx09ZIAeaAwVoHsR+Ch8z1QnhJpdO4XyhMcRnqI9fKhKcAIJj9L1LNXhZL+3SxfGGSDa2ITH8k9Ik1UMmQ1Nmx4Y3w+RcORhfC+yDWQbR\/\/a0DeiUa9qQYrRvTo9hhzaYp03OfCC+DYzAyjkyNCNhD9E4adQIQqFFxBM9r8LT3CSN5r3bUNXr2rh9y79o1zhkfc4\/B\/Thc8UslEHyz+isQ6gQnRHfls2xf\/oWVrWRinqxHimEAo\/yPaRn3+E8LAlRjiSduEN1ImhKKRp8y5diStoDyqG2BJn+NfOaRKaqBNDKYCj7xrqgnWWfw60u+zkNkIKT\/a80FYdG3Fm9DH+sWq9CZDHSYcIGRB1DszUiVHXxusmC4n7eaPvjvzW3Ta0tu8gooAKSuL1yO8UeBxCmEedGHUUPjOFqEBgaqwNzp9J6AgJrbstLLsMQgHyw9W+dw4M6GecFTYk6uzbqRPDQWHddCEqNba8mBY5N+Xu2hLEWfcCFyEGGEbLok4MBwOz31JlkZE+DRjkvljIQZESmve5RkuxDoc6MciId5cfIL8YW9bESygCKqFWVAO6\/\/gug\/cgFvJTntehzJDce5yikgJLguGMXFse\/AUYWEjhK7oloO5rwmd0DydvvIGtEgU\/Qnrf4qWPco4oanaACenAEJRnyAfZB\/GcPNVz36Y4gSLeq87fw2SjDFL2kveY5r5lK6Cm9ekFYVFb4vmsIZQ9qHxWwFFRH2W4e\/leB0f911RRm60AIVbiydAK5HGgT1kVJuMnUIywjOEmQQrcJAtwml7kdSAlHCE94MCeEi6jIFxIoLPcTd6QG71demfWrWZAi5bA1BI2AIxCpxyfT94HshFr5BjcZls3zsXVgdenl8OakEL+xWlnCTinDqaKGSHQxxYbnX45xx6sYBhuAhmZaHfEwYQlE8Oge3oHDGh7WDVqDcsYLgr7Z7oMN4zHZAMhpAwZ4XJoREB7GOLqdQplwTdclVilc3WKmGkHMM7IAkMn9t7P9oOK60PgI+QGawQUNBNjxTIrBXCjamjo9J4OLoABlRMw1weFOdMNg3n01SN0xKwU0JuxaRq00D448YsCe32YI3XeeGNggAQ3jT4k0t3CbRW9GzcEJl5f+J2ayMb8anaQ9\/\/94bGfhaMfgDnd3c0ooCsGJo1RiVdlN7a6V74r55i5PSU\/4fYvcD5+xU8\/bZvLuftU5HloFgxHRLcYunbgB4GEtxxVXRd2JkFJ4J+lRI7wt1ynoizfdlhHL4AKoGffzzkoZEUHzyB7yHmYzx4N3rtcC3XjE84BrIICJdZWhHNkS2kjrAN6AOMc+Azb9YqUIZro0T622NkS5zlny6xjVloj6OCDecxKrpJcbpgoa6F7buv+hTEWxTlkh5y92VKfGtjWiQ2i9DFW6W8l9Io9AMMKuQYifXg4LHvGvM7HHmpTmLY6TLE6AzTaf2PfYJ3j2pUVSEIr06HPbeAp8VacT7UJ9ecHdJI\/3dQZ8zfwC6cBdqfzowAAAABJRU5ErkJggg==\"><\/image> <\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Alerts the moment a camera goes dark or loses connectivity<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"48\" height=\"48\" xml:space=\"preserve\" viewBox=\"0 0 48 48\"> <image width=\"48\" height=\"48\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVvSURBVHgBxVpdUttIEO6Rf4B9WecEMSdY5yG1Bja14gRhTxDrBHFOgHMCnBNInAD2BHZqF\/A+rXMCxAnQmwlgT7qHEZGlGallW8lX5bI0P1L3zNc93TMSsAHMZrN2o9FwpZQdIcRL\/HXiOiwLF4vFabPZDKACCFgRKFgLBXuPlz28bhe1r9VqL1CxCH42Hh4e3MfHxxH+ZJkf9YMKUOc21CN+jP99KI8IlQihArAoRKPnOI7PoYrGDXEf\/4kyIQo\/3NnZCWFF\/P6v3xeOeIuXLt1LgPOdr9IbH3pR4Qzc39\/3kbsnKFBeswjrT\/H\/vF6vTzfJ9b3L4ATfvDTrOOpHswZ8xsthrgLz+ZwoM7DVYx09ZIAeaAwVoHsR+Ch8z1QnhJpdO4XyhMcRnqI9fKhKcAIJj9L1LNXhZL+3SxfGGSDa2ITH8k9Ik1UMmQ1Nmx4Y3w+RcORhfC+yDWQbR\/\/a0DeiUa9qQYrRvTo9hhzaYp03OfCC+DYzAyjkyNCNhD9E4adQIQqFFxBM9r8LT3CSN5r3bUNXr2rh9y79o1zhkfc4\/B\/Thc8UslEHyz+isQ6gQnRHfls2xf\/oWVrWRinqxHimEAo\/yPaRn3+E8LAlRjiSduEN1ImhKKRp8y5diStoDyqG2BJn+NfOaRKaqBNDKYCj7xrqgnWWfw60u+zkNkIKT\/a80FYdG3Fm9DH+sWq9CZDHSYcIGRB1DszUiVHXxusmC4n7eaPvjvzW3Ta0tu8gooAKSuL1yO8UeBxCmEedGHUUPjOFqEBgaqwNzp9J6AgJrbstLLsMQgHyw9W+dw4M6GecFTYk6uzbqRPDQWHddCEqNba8mBY5N+Xu2hLEWfcCFyEGGEbLok4MBwOz31JlkZE+DRjkvljIQZESmve5RkuxDoc6MciId5cfIL8YW9bESygCKqFWVAO6\/\/gug\/cgFvJTntehzJDce5yikgJLguGMXFse\/AUYWEjhK7oloO5rwmd0DydvvIGtEgU\/Qnrf4qWPco4oanaACenAEJRnyAfZB\/GcPNVz36Y4gSLeq87fw2SjDFL2kveY5r5lK6Cm9ekFYVFb4vmsIZQ9qHxWwFFRH2W4e\/leB0f911RRm60AIVbiydAK5HGgT1kVJuMnUIywjOEmQQrcJAtwml7kdSAlHCE94MCeEi6jIFxIoLPcTd6QG71demfWrWZAi5bA1BI2AIxCpxyfT94HshFr5BjcZls3zsXVgdenl8OakEL+xWlnCTinDqaKGSHQxxYbnX45xx6sYBhuAhmZaHfEwYQlE8Oge3oHDGh7WDVqDcsYLgr7Z7oMN4zHZAMhpAwZ4XJoREB7GOLqdQplwTdclVilc3WKmGkHMM7IAkMn9t7P9oOK60PgI+QGawQUNBNjxTIrBXCjamjo9J4OLoABlRMw1weFOdMNg3n01SN0xKwU0JuxaRq00D448YsCe32YI3XeeGNggAQ3jT4k0t3CbRW9GzcEJl5f+J2ayMb8anaQ9\/\/94bGfhaMfgDnd3c0ooCsGJo1RiVdlN7a6V74r55i5PSU\/4fYvcD5+xU8\/bZvLuftU5HloFgxHRLcYunbgB4GEtxxVXRd2JkFJ4J+lRI7wt1ynoizfdlhHL4AKoGffzzkoZEUHzyB7yHmYzx4N3rtcC3XjE84BrIICJdZWhHNkS2kjrAN6AOMc+Azb9YqUIZro0T622NkS5zlny6xjVloj6OCDecxKrpJcbpgoa6F7buv+hTEWxTlkh5y92VKfGtjWiQ2i9DFW6W8l9Io9AMMKuQYifXg4LHvGvM7HHmpTmLY6TLE6AzTaf2PfYJ3j2pUVSEIr06HPbeAp8VacT7UJ9ecHdJI\/3dQZ8zfwC6cBdqfzowAAAABJRU5ErkJggg==\"><\/image> <\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">AI flags blur, glare, fog, and obstruction the moment a feed degrades<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"48\" height=\"48\" xml:space=\"preserve\" viewBox=\"0 0 48 48\"> <image width=\"48\" height=\"48\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVvSURBVHgBxVpdUttIEO6Rf4B9WecEMSdY5yG1Bja14gRhTxDrBHFOgHMCnBNInAD2BHZqF\/A+rXMCxAnQmwlgT7qHEZGlGallW8lX5bI0P1L3zNc93TMSsAHMZrN2o9FwpZQdIcRL\/HXiOiwLF4vFabPZDKACCFgRKFgLBXuPlz28bhe1r9VqL1CxCH42Hh4e3MfHxxH+ZJkf9YMKUOc21CN+jP99KI8IlQihArAoRKPnOI7PoYrGDXEf\/4kyIQo\/3NnZCWFF\/P6v3xeOeIuXLt1LgPOdr9IbH3pR4Qzc39\/3kbsnKFBeswjrT\/H\/vF6vTzfJ9b3L4ATfvDTrOOpHswZ8xsthrgLz+ZwoM7DVYx09ZIAeaAwVoHsR+Ch8z1QnhJpdO4XyhMcRnqI9fKhKcAIJj9L1LNXhZL+3SxfGGSDa2ITH8k9Ik1UMmQ1Nmx4Y3w+RcORhfC+yDWQbR\/\/a0DeiUa9qQYrRvTo9hhzaYp03OfCC+DYzAyjkyNCNhD9E4adQIQqFFxBM9r8LT3CSN5r3bUNXr2rh9y79o1zhkfc4\/B\/Thc8UslEHyz+isQ6gQnRHfls2xf\/oWVrWRinqxHimEAo\/yPaRn3+E8LAlRjiSduEN1ImhKKRp8y5diStoDyqG2BJn+NfOaRKaqBNDKYCj7xrqgnWWfw60u+zkNkIKT\/a80FYdG3Fm9DH+sWq9CZDHSYcIGRB1DszUiVHXxusmC4n7eaPvjvzW3Ta0tu8gooAKSuL1yO8UeBxCmEedGHUUPjOFqEBgaqwNzp9J6AgJrbstLLsMQgHyw9W+dw4M6GecFTYk6uzbqRPDQWHddCEqNba8mBY5N+Xu2hLEWfcCFyEGGEbLok4MBwOz31JlkZE+DRjkvljIQZESmve5RkuxDoc6MciId5cfIL8YW9bESygCKqFWVAO6\/\/gug\/cgFvJTntehzJDce5yikgJLguGMXFse\/AUYWEjhK7oloO5rwmd0DydvvIGtEgU\/Qnrf4qWPco4oanaACenAEJRnyAfZB\/GcPNVz36Y4gSLeq87fw2SjDFL2kveY5r5lK6Cm9ekFYVFb4vmsIZQ9qHxWwFFRH2W4e\/leB0f911RRm60AIVbiydAK5HGgT1kVJuMnUIywjOEmQQrcJAtwml7kdSAlHCE94MCeEi6jIFxIoLPcTd6QG71demfWrWZAi5bA1BI2AIxCpxyfT94HshFr5BjcZls3zsXVgdenl8OakEL+xWlnCTinDqaKGSHQxxYbnX45xx6sYBhuAhmZaHfEwYQlE8Oge3oHDGh7WDVqDcsYLgr7Z7oMN4zHZAMhpAwZ4XJoREB7GOLqdQplwTdclVilc3WKmGkHMM7IAkMn9t7P9oOK60PgI+QGawQUNBNjxTIrBXCjamjo9J4OLoABlRMw1weFOdMNg3n01SN0xKwU0JuxaRq00D448YsCe32YI3XeeGNggAQ3jT4k0t3CbRW9GzcEJl5f+J2ayMb8anaQ9\/\/94bGfhaMfgDnd3c0ooCsGJo1RiVdlN7a6V74r55i5PSU\/4fYvcD5+xU8\/bZvLuftU5HloFgxHRLcYunbgB4GEtxxVXRd2JkFJ4J+lRI7wt1ynoizfdlhHL4AKoGffzzkoZEUHzyB7yHmYzx4N3rtcC3XjE84BrIICJdZWhHNkS2kjrAN6AOMc+Azb9YqUIZro0T622NkS5zlny6xjVloj6OCDecxKrpJcbpgoa6F7buv+hTEWxTlkh5y92VKfGtjWiQ2i9DFW6W8l9Io9AMMKuQYifXg4LHvGvM7HHmpTmLY6TLE6AzTaf2PfYJ3j2pUVSEIr06HPbeAp8VacT7UJ9ecHdJI\/3dQZ8zfwC6cBdqfzowAAAABJRU5ErkJggg==\"><\/image> <\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Connect your preferred CRM so every health alert lands as an actionable ticket, no manual triage<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"48\" height=\"48\" xml:space=\"preserve\" viewBox=\"0 0 48 48\"> <image width=\"48\" height=\"48\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVvSURBVHgBxVpdUttIEO6Rf4B9WecEMSdY5yG1Bja14gRhTxDrBHFOgHMCnBNInAD2BHZqF\/A+rXMCxAnQmwlgT7qHEZGlGallW8lX5bI0P1L3zNc93TMSsAHMZrN2o9FwpZQdIcRL\/HXiOiwLF4vFabPZDKACCFgRKFgLBXuPlz28bhe1r9VqL1CxCH42Hh4e3MfHxxH+ZJkf9YMKUOc21CN+jP99KI8IlQihArAoRKPnOI7PoYrGDXEf\/4kyIQo\/3NnZCWFF\/P6v3xeOeIuXLt1LgPOdr9IbH3pR4Qzc39\/3kbsnKFBeswjrT\/H\/vF6vTzfJ9b3L4ATfvDTrOOpHswZ8xsthrgLz+ZwoM7DVYx09ZIAeaAwVoHsR+Ch8z1QnhJpdO4XyhMcRnqI9fKhKcAIJj9L1LNXhZL+3SxfGGSDa2ITH8k9Ik1UMmQ1Nmx4Y3w+RcORhfC+yDWQbR\/\/a0DeiUa9qQYrRvTo9hhzaYp03OfCC+DYzAyjkyNCNhD9E4adQIQqFFxBM9r8LT3CSN5r3bUNXr2rh9y79o1zhkfc4\/B\/Thc8UslEHyz+isQ6gQnRHfls2xf\/oWVrWRinqxHimEAo\/yPaRn3+E8LAlRjiSduEN1ImhKKRp8y5diStoDyqG2BJn+NfOaRKaqBNDKYCj7xrqgnWWfw60u+zkNkIKT\/a80FYdG3Fm9DH+sWq9CZDHSYcIGRB1DszUiVHXxusmC4n7eaPvjvzW3Ta0tu8gooAKSuL1yO8UeBxCmEedGHUUPjOFqEBgaqwNzp9J6AgJrbstLLsMQgHyw9W+dw4M6GecFTYk6uzbqRPDQWHddCEqNba8mBY5N+Xu2hLEWfcCFyEGGEbLok4MBwOz31JlkZE+DRjkvljIQZESmve5RkuxDoc6MciId5cfIL8YW9bESygCKqFWVAO6\/\/gug\/cgFvJTntehzJDce5yikgJLguGMXFse\/AUYWEjhK7oloO5rwmd0DydvvIGtEgU\/Qnrf4qWPco4oanaACenAEJRnyAfZB\/GcPNVz36Y4gSLeq87fw2SjDFL2kveY5r5lK6Cm9ekFYVFb4vmsIZQ9qHxWwFFRH2W4e\/leB0f911RRm60AIVbiydAK5HGgT1kVJuMnUIywjOEmQQrcJAtwml7kdSAlHCE94MCeEi6jIFxIoLPcTd6QG71demfWrWZAi5bA1BI2AIxCpxyfT94HshFr5BjcZls3zsXVgdenl8OakEL+xWlnCTinDqaKGSHQxxYbnX45xx6sYBhuAhmZaHfEwYQlE8Oge3oHDGh7WDVqDcsYLgr7Z7oMN4zHZAMhpAwZ4XJoREB7GOLqdQplwTdclVilc3WKmGkHMM7IAkMn9t7P9oOK60PgI+QGawQUNBNjxTIrBXCjamjo9J4OLoABlRMw1weFOdMNg3n01SN0xKwU0JuxaRq00D448YsCe32YI3XeeGNggAQ3jT4k0t3CbRW9GzcEJl5f+J2ayMb8anaQ9\/\/94bGfhaMfgDnd3c0ooCsGJo1RiVdlN7a6V74r55i5PSU\/4fYvcD5+xU8\/bZvLuftU5HloFgxHRLcYunbgB4GEtxxVXRd2JkFJ4J+lRI7wt1ynoizfdlhHL4AKoGffzzkoZEUHzyB7yHmYzx4N3rtcC3XjE84BrIICJdZWhHNkS2kjrAN6AOMc+Azb9YqUIZro0T622NkS5zlny6xjVloj6OCDecxKrpJcbpgoa6F7buv+hTEWxTlkh5y92VKfGtjWiQ2i9DFW6W8l9Io9AMMKuQYifXg4LHvGvM7HHmpTmLY6TLE6AzTaf2PfYJ3j2pUVSEIr06HPbeAp8VacT7UJ9ecHdJI\/3dQZ8zfwC6cBdqfzowAAAABJRU5ErkJggg==\"><\/image> <\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\"><a href=\"https:\/\/sirixmonitoring.com\/camera-health-monitoring\/\">Camhealth<\/a>, our camera health monitoring service, powers these checks.<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5f5911a3 e-con-full e-flex e-con e-child\" data-id=\"5f5911a3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-19352182 e-con-full e-flex e-con e-child\" data-id=\"19352182\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/sirixmonitoring.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Know-instantly-when-something-stops-english.webm&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" role=\"presentation\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div id=\"e-n-tab-content-11962441993\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-11962441993\" data-tab-index=\"3\" style=\"--n-tabs-title-order: 3;\" class=\" elementor-element elementor-element-79db051c e-con-full e-flex e-con e-child\" data-id=\"79db051c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-33c53c0c e-con-full e-flex e-con e-child\" data-id=\"33c53c0c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-36a86e4c e-con-full e-flex e-con e-child\" data-id=\"36a86e4c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6373ecb0 elementor-widget elementor-widget-spacer\" data-id=\"6373ecb0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3d73022 e-con-full e-flex e-con e-child\" data-id=\"3d73022\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c97ce79 elementor-widget__width-inherit elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"3c97ce79\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Stop managing false alarms. Focus on what actually matters.<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3231c497 elementor-widget elementor-widget-text-editor\" data-id=\"3231c497\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Sirix AI filters every incoming signal before it reaches an operator, so every alarm that reaches a Sirix operator is real, verified, and worth acting on.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4d5da8dd elementor-widget__width-inherit elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"4d5da8dd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"48\" height=\"48\" xml:space=\"preserve\" viewBox=\"0 0 48 48\"> <image width=\"48\" height=\"48\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVvSURBVHgBxVpdUttIEO6Rf4B9WecEMSdY5yG1Bja14gRhTxDrBHFOgHMCnBNInAD2BHZqF\/A+rXMCxAnQmwlgT7qHEZGlGallW8lX5bI0P1L3zNc93TMSsAHMZrN2o9FwpZQdIcRL\/HXiOiwLF4vFabPZDKACCFgRKFgLBXuPlz28bhe1r9VqL1CxCH42Hh4e3MfHxxH+ZJkf9YMKUOc21CN+jP99KI8IlQihArAoRKPnOI7PoYrGDXEf\/4kyIQo\/3NnZCWFF\/P6v3xeOeIuXLt1LgPOdr9IbH3pR4Qzc39\/3kbsnKFBeswjrT\/H\/vF6vTzfJ9b3L4ATfvDTrOOpHswZ8xsthrgLz+ZwoM7DVYx09ZIAeaAwVoHsR+Ch8z1QnhJpdO4XyhMcRnqI9fKhKcAIJj9L1LNXhZL+3SxfGGSDa2ITH8k9Ik1UMmQ1Nmx4Y3w+RcORhfC+yDWQbR\/\/a0DeiUa9qQYrRvTo9hhzaYp03OfCC+DYzAyjkyNCNhD9E4adQIQqFFxBM9r8LT3CSN5r3bUNXr2rh9y79o1zhkfc4\/B\/Thc8UslEHyz+isQ6gQnRHfls2xf\/oWVrWRinqxHimEAo\/yPaRn3+E8LAlRjiSduEN1ImhKKRp8y5diStoDyqG2BJn+NfOaRKaqBNDKYCj7xrqgnWWfw60u+zkNkIKT\/a80FYdG3Fm9DH+sWq9CZDHSYcIGRB1DszUiVHXxusmC4n7eaPvjvzW3Ta0tu8gooAKSuL1yO8UeBxCmEedGHUUPjOFqEBgaqwNzp9J6AgJrbstLLsMQgHyw9W+dw4M6GecFTYk6uzbqRPDQWHddCEqNba8mBY5N+Xu2hLEWfcCFyEGGEbLok4MBwOz31JlkZE+DRjkvljIQZESmve5RkuxDoc6MciId5cfIL8YW9bESygCKqFWVAO6\/\/gug\/cgFvJTntehzJDce5yikgJLguGMXFse\/AUYWEjhK7oloO5rwmd0DydvvIGtEgU\/Qnrf4qWPco4oanaACenAEJRnyAfZB\/GcPNVz36Y4gSLeq87fw2SjDFL2kveY5r5lK6Cm9ekFYVFb4vmsIZQ9qHxWwFFRH2W4e\/leB0f911RRm60AIVbiydAK5HGgT1kVJuMnUIywjOEmQQrcJAtwml7kdSAlHCE94MCeEi6jIFxIoLPcTd6QG71demfWrWZAi5bA1BI2AIxCpxyfT94HshFr5BjcZls3zsXVgdenl8OakEL+xWlnCTinDqaKGSHQxxYbnX45xx6sYBhuAhmZaHfEwYQlE8Oge3oHDGh7WDVqDcsYLgr7Z7oMN4zHZAMhpAwZ4XJoREB7GOLqdQplwTdclVilc3WKmGkHMM7IAkMn9t7P9oOK60PgI+QGawQUNBNjxTIrBXCjamjo9J4OLoABlRMw1weFOdMNg3n01SN0xKwU0JuxaRq00D448YsCe32YI3XeeGNggAQ3jT4k0t3CbRW9GzcEJl5f+J2ayMb8anaQ9\/\/94bGfhaMfgDnd3c0ooCsGJo1RiVdlN7a6V74r55i5PSU\/4fYvcD5+xU8\/bZvLuftU5HloFgxHRLcYunbgB4GEtxxVXRd2JkFJ4J+lRI7wt1ynoizfdlhHL4AKoGffzzkoZEUHzyB7yHmYzx4N3rtcC3XjE84BrIICJdZWhHNkS2kjrAN6AOMc+Azb9YqUIZro0T622NkS5zlny6xjVloj6OCDecxKrpJcbpgoa6F7buv+hTEWxTlkh5y92VKfGtjWiQ2i9DFW6W8l9Io9AMMKuQYifXg4LHvGvM7HHmpTmLY6TLE6AzTaf2PfYJ3j2pUVSEIr06HPbeAp8VacT7UJ9ecHdJI\/3dQZ8zfwC6cBdqfzowAAAABJRU5ErkJggg==\"><\/image> <\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Filters out false alarms and handles the noise, reducing operator fatigue<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"48\" height=\"48\" xml:space=\"preserve\" viewBox=\"0 0 48 48\"> <image width=\"48\" height=\"48\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVvSURBVHgBxVpdUttIEO6Rf4B9WecEMSdY5yG1Bja14gRhTxDrBHFOgHMCnBNInAD2BHZqF\/A+rXMCxAnQmwlgT7qHEZGlGallW8lX5bI0P1L3zNc93TMSsAHMZrN2o9FwpZQdIcRL\/HXiOiwLF4vFabPZDKACCFgRKFgLBXuPlz28bhe1r9VqL1CxCH42Hh4e3MfHxxH+ZJkf9YMKUOc21CN+jP99KI8IlQihArAoRKPnOI7PoYrGDXEf\/4kyIQo\/3NnZCWFF\/P6v3xeOeIuXLt1LgPOdr9IbH3pR4Qzc39\/3kbsnKFBeswjrT\/H\/vF6vTzfJ9b3L4ATfvDTrOOpHswZ8xsthrgLz+ZwoM7DVYx09ZIAeaAwVoHsR+Ch8z1QnhJpdO4XyhMcRnqI9fKhKcAIJj9L1LNXhZL+3SxfGGSDa2ITH8k9Ik1UMmQ1Nmx4Y3w+RcORhfC+yDWQbR\/\/a0DeiUa9qQYrRvTo9hhzaYp03OfCC+DYzAyjkyNCNhD9E4adQIQqFFxBM9r8LT3CSN5r3bUNXr2rh9y79o1zhkfc4\/B\/Thc8UslEHyz+isQ6gQnRHfls2xf\/oWVrWRinqxHimEAo\/yPaRn3+E8LAlRjiSduEN1ImhKKRp8y5diStoDyqG2BJn+NfOaRKaqBNDKYCj7xrqgnWWfw60u+zkNkIKT\/a80FYdG3Fm9DH+sWq9CZDHSYcIGRB1DszUiVHXxusmC4n7eaPvjvzW3Ta0tu8gooAKSuL1yO8UeBxCmEedGHUUPjOFqEBgaqwNzp9J6AgJrbstLLsMQgHyw9W+dw4M6GecFTYk6uzbqRPDQWHddCEqNba8mBY5N+Xu2hLEWfcCFyEGGEbLok4MBwOz31JlkZE+DRjkvljIQZESmve5RkuxDoc6MciId5cfIL8YW9bESygCKqFWVAO6\/\/gug\/cgFvJTntehzJDce5yikgJLguGMXFse\/AUYWEjhK7oloO5rwmd0DydvvIGtEgU\/Qnrf4qWPco4oanaACenAEJRnyAfZB\/GcPNVz36Y4gSLeq87fw2SjDFL2kveY5r5lK6Cm9ekFYVFb4vmsIZQ9qHxWwFFRH2W4e\/leB0f911RRm60AIVbiydAK5HGgT1kVJuMnUIywjOEmQQrcJAtwml7kdSAlHCE94MCeEi6jIFxIoLPcTd6QG71demfWrWZAi5bA1BI2AIxCpxyfT94HshFr5BjcZls3zsXVgdenl8OakEL+xWlnCTinDqaKGSHQxxYbnX45xx6sYBhuAhmZaHfEwYQlE8Oge3oHDGh7WDVqDcsYLgr7Z7oMN4zHZAMhpAwZ4XJoREB7GOLqdQplwTdclVilc3WKmGkHMM7IAkMn9t7P9oOK60PgI+QGawQUNBNjxTIrBXCjamjo9J4OLoABlRMw1weFOdMNg3n01SN0xKwU0JuxaRq00D448YsCe32YI3XeeGNggAQ3jT4k0t3CbRW9GzcEJl5f+J2ayMb8anaQ9\/\/94bGfhaMfgDnd3c0ooCsGJo1RiVdlN7a6V74r55i5PSU\/4fYvcD5+xU8\/bZvLuftU5HloFgxHRLcYunbgB4GEtxxVXRd2JkFJ4J+lRI7wt1ynoizfdlhHL4AKoGffzzkoZEUHzyB7yHmYzx4N3rtcC3XjE84BrIICJdZWhHNkS2kjrAN6AOMc+Azb9YqUIZro0T622NkS5zlny6xjVloj6OCDecxKrpJcbpgoa6F7buv+hTEWxTlkh5y92VKfGtjWiQ2i9DFW6W8l9Io9AMMKuQYifXg4LHvGvM7HHmpTmLY6TLE6AzTaf2PfYJ3j2pUVSEIr06HPbeAp8VacT7UJ9ecHdJI\/3dQZ8zfwC6cBdqfzowAAAABJRU5ErkJggg==\"><\/image> <\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Every connected device on a single screen: cameras, access, alarms, intercoms<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"48\" height=\"48\" xml:space=\"preserve\" viewBox=\"0 0 48 48\"> <image width=\"48\" height=\"48\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVvSURBVHgBxVpdUttIEO6Rf4B9WecEMSdY5yG1Bja14gRhTxDrBHFOgHMCnBNInAD2BHZqF\/A+rXMCxAnQmwlgT7qHEZGlGallW8lX5bI0P1L3zNc93TMSsAHMZrN2o9FwpZQdIcRL\/HXiOiwLF4vFabPZDKACCFgRKFgLBXuPlz28bhe1r9VqL1CxCH42Hh4e3MfHxxH+ZJkf9YMKUOc21CN+jP99KI8IlQihArAoRKPnOI7PoYrGDXEf\/4kyIQo\/3NnZCWFF\/P6v3xeOeIuXLt1LgPOdr9IbH3pR4Qzc39\/3kbsnKFBeswjrT\/H\/vF6vTzfJ9b3L4ATfvDTrOOpHswZ8xsthrgLz+ZwoM7DVYx09ZIAeaAwVoHsR+Ch8z1QnhJpdO4XyhMcRnqI9fKhKcAIJj9L1LNXhZL+3SxfGGSDa2ITH8k9Ik1UMmQ1Nmx4Y3w+RcORhfC+yDWQbR\/\/a0DeiUa9qQYrRvTo9hhzaYp03OfCC+DYzAyjkyNCNhD9E4adQIQqFFxBM9r8LT3CSN5r3bUNXr2rh9y79o1zhkfc4\/B\/Thc8UslEHyz+isQ6gQnRHfls2xf\/oWVrWRinqxHimEAo\/yPaRn3+E8LAlRjiSduEN1ImhKKRp8y5diStoDyqG2BJn+NfOaRKaqBNDKYCj7xrqgnWWfw60u+zkNkIKT\/a80FYdG3Fm9DH+sWq9CZDHSYcIGRB1DszUiVHXxusmC4n7eaPvjvzW3Ta0tu8gooAKSuL1yO8UeBxCmEedGHUUPjOFqEBgaqwNzp9J6AgJrbstLLsMQgHyw9W+dw4M6GecFTYk6uzbqRPDQWHddCEqNba8mBY5N+Xu2hLEWfcCFyEGGEbLok4MBwOz31JlkZE+DRjkvljIQZESmve5RkuxDoc6MciId5cfIL8YW9bESygCKqFWVAO6\/\/gug\/cgFvJTntehzJDce5yikgJLguGMXFse\/AUYWEjhK7oloO5rwmd0DydvvIGtEgU\/Qnrf4qWPco4oanaACenAEJRnyAfZB\/GcPNVz36Y4gSLeq87fw2SjDFL2kveY5r5lK6Cm9ekFYVFb4vmsIZQ9qHxWwFFRH2W4e\/leB0f911RRm60AIVbiydAK5HGgT1kVJuMnUIywjOEmQQrcJAtwml7kdSAlHCE94MCeEi6jIFxIoLPcTd6QG71demfWrWZAi5bA1BI2AIxCpxyfT94HshFr5BjcZls3zsXVgdenl8OakEL+xWlnCTinDqaKGSHQxxYbnX45xx6sYBhuAhmZaHfEwYQlE8Oge3oHDGh7WDVqDcsYLgr7Z7oMN4zHZAMhpAwZ4XJoREB7GOLqdQplwTdclVilc3WKmGkHMM7IAkMn9t7P9oOK60PgI+QGawQUNBNjxTIrBXCjamjo9J4OLoABlRMw1weFOdMNg3n01SN0xKwU0JuxaRq00D448YsCe32YI3XeeGNggAQ3jT4k0t3CbRW9GzcEJl5f+J2ayMb8anaQ9\/\/94bGfhaMfgDnd3c0ooCsGJo1RiVdlN7a6V74r55i5PSU\/4fYvcD5+xU8\/bZvLuftU5HloFgxHRLcYunbgB4GEtxxVXRd2JkFJ4J+lRI7wt1ynoizfdlhHL4AKoGffzzkoZEUHzyB7yHmYzx4N3rtcC3XjE84BrIICJdZWhHNkS2kjrAN6AOMc+Azb9YqUIZro0T622NkS5zlny6xjVloj6OCDecxKrpJcbpgoa6F7buv+hTEWxTlkh5y92VKfGtjWiQ2i9DFW6W8l9Io9AMMKuQYifXg4LHvGvM7HHmpTmLY6TLE6AzTaf2PfYJ3j2pUVSEIr06HPbeAp8VacT7UJ9ecHdJI\/3dQZ8zfwC6cBdqfzowAAAABJRU5ErkJggg==\"><\/image> <\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Certified operators run the central software, every shift, every site<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"48\" height=\"48\" xml:space=\"preserve\" viewBox=\"0 0 48 48\"> <image width=\"48\" height=\"48\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVvSURBVHgBxVpdUttIEO6Rf4B9WecEMSdY5yG1Bja14gRhTxDrBHFOgHMCnBNInAD2BHZqF\/A+rXMCxAnQmwlgT7qHEZGlGallW8lX5bI0P1L3zNc93TMSsAHMZrN2o9FwpZQdIcRL\/HXiOiwLF4vFabPZDKACCFgRKFgLBXuPlz28bhe1r9VqL1CxCH42Hh4e3MfHxxH+ZJkf9YMKUOc21CN+jP99KI8IlQihArAoRKPnOI7PoYrGDXEf\/4kyIQo\/3NnZCWFF\/P6v3xeOeIuXLt1LgPOdr9IbH3pR4Qzc39\/3kbsnKFBeswjrT\/H\/vF6vTzfJ9b3L4ATfvDTrOOpHswZ8xsthrgLz+ZwoM7DVYx09ZIAeaAwVoHsR+Ch8z1QnhJpdO4XyhMcRnqI9fKhKcAIJj9L1LNXhZL+3SxfGGSDa2ITH8k9Ik1UMmQ1Nmx4Y3w+RcORhfC+yDWQbR\/\/a0DeiUa9qQYrRvTo9hhzaYp03OfCC+DYzAyjkyNCNhD9E4adQIQqFFxBM9r8LT3CSN5r3bUNXr2rh9y79o1zhkfc4\/B\/Thc8UslEHyz+isQ6gQnRHfls2xf\/oWVrWRinqxHimEAo\/yPaRn3+E8LAlRjiSduEN1ImhKKRp8y5diStoDyqG2BJn+NfOaRKaqBNDKYCj7xrqgnWWfw60u+zkNkIKT\/a80FYdG3Fm9DH+sWq9CZDHSYcIGRB1DszUiVHXxusmC4n7eaPvjvzW3Ta0tu8gooAKSuL1yO8UeBxCmEedGHUUPjOFqEBgaqwNzp9J6AgJrbstLLsMQgHyw9W+dw4M6GecFTYk6uzbqRPDQWHddCEqNba8mBY5N+Xu2hLEWfcCFyEGGEbLok4MBwOz31JlkZE+DRjkvljIQZESmve5RkuxDoc6MciId5cfIL8YW9bESygCKqFWVAO6\/\/gug\/cgFvJTntehzJDce5yikgJLguGMXFse\/AUYWEjhK7oloO5rwmd0DydvvIGtEgU\/Qnrf4qWPco4oanaACenAEJRnyAfZB\/GcPNVz36Y4gSLeq87fw2SjDFL2kveY5r5lK6Cm9ekFYVFb4vmsIZQ9qHxWwFFRH2W4e\/leB0f911RRm60AIVbiydAK5HGgT1kVJuMnUIywjOEmQQrcJAtwml7kdSAlHCE94MCeEi6jIFxIoLPcTd6QG71demfWrWZAi5bA1BI2AIxCpxyfT94HshFr5BjcZls3zsXVgdenl8OakEL+xWlnCTinDqaKGSHQxxYbnX45xx6sYBhuAhmZaHfEwYQlE8Oge3oHDGh7WDVqDcsYLgr7Z7oMN4zHZAMhpAwZ4XJoREB7GOLqdQplwTdclVilc3WKmGkHMM7IAkMn9t7P9oOK60PgI+QGawQUNBNjxTIrBXCjamjo9J4OLoABlRMw1weFOdMNg3n01SN0xKwU0JuxaRq00D448YsCe32YI3XeeGNggAQ3jT4k0t3CbRW9GzcEJl5f+J2ayMb8anaQ9\/\/94bGfhaMfgDnd3c0ooCsGJo1RiVdlN7a6V74r55i5PSU\/4fYvcD5+xU8\/bZvLuftU5HloFgxHRLcYunbgB4GEtxxVXRd2JkFJ4J+lRI7wt1ynoizfdlhHL4AKoGffzzkoZEUHzyB7yHmYzx4N3rtcC3XjE84BrIICJdZWhHNkS2kjrAN6AOMc+Azb9YqUIZro0T622NkS5zlny6xjVloj6OCDecxKrpJcbpgoa6F7buv+hTEWxTlkh5y92VKfGtjWiQ2i9DFW6W8l9Io9AMMKuQYifXg4LHvGvM7HHmpTmLY6TLE6AzTaf2PfYJ3j2pUVSEIr06HPbeAp8VacT7UJ9ecHdJI\/3dQZ8zfwC6cBdqfzowAAAABJRU5ErkJggg==\"><\/image> <\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Sirix mobile app for remote site arming and disarming<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-593b55fb e-con-full e-flex e-con e-child\" data-id=\"593b55fb\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4f87f4f e-flex e-con-boxed e-con e-parent\" data-id=\"4f87f4f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-56a82cc3 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"56a82cc3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Security cost calculator<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-38b1594f elementor-widget-mobile__width-auto elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"38b1594f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Get your business security cost in minutes.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2d8edef6 elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"2d8edef6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Five questions about your property. One instant estimate for 24\/7 Remote Video Monitoring.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-47d50e2 elementor-mobile-align-left elementor-align-left elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"47d50e2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/security-cost-calculator\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Get your estimate<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2e8145b9 elementor-widget elementor-widget-heading\" data-id=\"2e8145b9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Takes about two minutes \u00b7 No sales calls<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-66212ee5 elementor-widget elementor-widget-html\" data-id=\"66212ee5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"sirix-calculator-video\">\r\n  <a\r\n    href=\"https:\/\/sirixmonitoring.com\/security-cost-calculator\/\"\r\n    aria-label=\"Open the Sirix instant estimate calculator\"\r\n  >\r\n    <video\r\n      width=\"1600\"\r\n      height=\"800\"\r\n      autoplay\r\n      muted\r\n      loop\r\n      playsinline\r\n      preload=\"metadata\"\r\n      poster=\"YOUR-POSTER-IMAGE-URL.webp\"\r\n      aria-label=\"Preview of the Sirix instant estimate calculator\"\r\n    >\r\n      <source\r\n        src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/08\/sirix-estimate-animation.webm\"\r\n        type=\"video\/mp4\"\r\n      >\r\n    <\/video>\r\n  <\/a>\r\n<\/div>\r\n\r\n<style>\r\n  .sirix-calculator-video {\r\n    width: 100%;\r\n    overflow: hidden;\r\n    border-radius: 16px;\r\n    background: #f3f4f5;\r\n    border: 1px solid #E6E6E9;\r\n    box-shadow: rgba(26, 26, 26, 0.08) 1px 1px 1px 0px;\r\n  }\r\n\r\n  .sirix-calculator-video a {\r\n    display: block;\r\n  }\r\n\r\n  .sirix-calculator-video video {\r\n    display: block;\r\n    width: 100%;\r\n    height: auto;\r\n    aspect-ratio: 1.777;\r\n    object-fit: cover !important;\r\n  }\r\n\r\n  @media screen and (max-width: 767px) {\r\n    .sirix-calculator-video {\r\n      border-radius: 16px;\r\n    }\r\n  }\r\n\r\n  @media (prefers-reduced-motion: reduce) {\r\n    .sirix-calculator-video video {\r\n      display: none;\r\n    }\r\n  }\r\n<\/style>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-22deafe3 e-flex e-con-boxed e-con e-parent\" data-id=\"22deafe3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-735df7fc e-con-full e-flex e-con e-child\" data-id=\"735df7fc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-35d20203 elementor-widget-mobile__width-inherit elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"35d20203\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">No hardware. <span style=\"color:#86868B\">No technician on\nsite.<\/span><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-63da2e56 elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"63da2e56\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Your site connects to our command center through the cameras you already have. We add AI on top: no new equipment, no installer on site, no truck roll. If it&#8217;s online, we can watch it.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1c1605cc e-con-full e-flex e-con e-child\" data-id=\"1c1605cc\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4329398f elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"4329398f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><img loading=\"lazy\" decoding=\"async\" width=\"818\" height=\"363\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Aug-5-2026-01_47_09-PM3_11zon-e1785920531953.webp\" class=\"attachment-full size-full wp-image-105144\" alt=\"verified security camera for ai-powered live video monitoring\" srcset=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Aug-5-2026-01_47_09-PM3_11zon-e1785920531953.webp 818w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Aug-5-2026-01_47_09-PM3_11zon-e1785920531953-300x133.webp 300w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Aug-5-2026-01_47_09-PM3_11zon-e1785920531953-768x341.webp 768w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Aug-5-2026-01_47_09-PM3_11zon-e1785920531953-18x8.webp 18w\" sizes=\"(max-width: 818px) 100vw, 818px\" \/><\/figure><div class=\"elementor-image-box-content\"><h3 class=\"elementor-image-box-title\">Your cameras<\/h3><p class=\"elementor-image-box-description\">Any brand, already on site. Nothing to replace.<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3287690d elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"3287690d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_scale_effect&quot;:&quot;yes&quot;,&quot;motion_fx_scale_direction&quot;:&quot;out-in&quot;,&quot;motion_fx_scale_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:4,&quot;sizes&quot;:[]},&quot;motion_fx_scale_range&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:20,&quot;end&quot;:80}},&quot;motion_fx_devices&quot;:[&quot;widescreen&quot;,&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"a6042377-6c7a-4624-ae4d-6a120e867893\" data-name=\"Layer 1\" width=\"18.2139\" height=\"19.4141\" viewBox=\"0 0 18.2139 19.4141\"><polygon points=\"8.507 0 7.093 1.414 14.386 8.707 0 8.707 0 10.707 14.386 10.707 7.093 18 8.507 19.414 18.214 9.707 8.507 0\"><\/polygon><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4c813e36 elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"4c813e36\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><img loading=\"lazy\" decoding=\"async\" width=\"555\" height=\"388\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/secure-cloud-storage-for-protected-live-video-monitoring-footage-e1785920951150.webp\" class=\"attachment-full size-full wp-image-105145\" alt=\"secure cloud storage for protected live video monitoring footage\" srcset=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/secure-cloud-storage-for-protected-live-video-monitoring-footage-e1785920951150.webp 555w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/secure-cloud-storage-for-protected-live-video-monitoring-footage-e1785920951150-300x210.webp 300w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/07\/secure-cloud-storage-for-protected-live-video-monitoring-footage-e1785920951150-18x12.webp 18w\" sizes=\"(max-width: 555px) 100vw, 555px\" \/><\/figure><div class=\"elementor-image-box-content\"><h3 class=\"elementor-image-box-title\">Secure cloud connection<\/h3><p class=\"elementor-image-box-description\">We link in remotely and layer AI onto the live feeds. No on-site hardware.<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6e9cb3f7 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"6e9cb3f7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_scale_effect&quot;:&quot;yes&quot;,&quot;motion_fx_scale_direction&quot;:&quot;out-in&quot;,&quot;motion_fx_scale_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:4,&quot;sizes&quot;:[]},&quot;motion_fx_scale_range&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:20,&quot;end&quot;:80}},&quot;motion_fx_devices&quot;:[&quot;widescreen&quot;,&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"a6042377-6c7a-4624-ae4d-6a120e867893\" data-name=\"Layer 1\" width=\"18.2139\" height=\"19.4141\" viewBox=\"0 0 18.2139 19.4141\"><polygon points=\"8.507 0 7.093 1.414 14.386 8.707 0 8.707 0 10.707 14.386 10.707 7.093 18 8.507 19.414 18.214 9.707 8.507 0\"><\/polygon><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-193e3254 elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"193e3254\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"432\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/04\/AI-surveillance-dashboard-monitoring-multiple-cameras-in-a-business-facility.webp\" class=\"attachment-full size-full wp-image-102748\" alt=\"\" srcset=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/04\/AI-surveillance-dashboard-monitoring-multiple-cameras-in-a-business-facility.webp 768w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/04\/AI-surveillance-dashboard-monitoring-multiple-cameras-in-a-business-facility-300x169.webp 300w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/04\/AI-surveillance-dashboard-monitoring-multiple-cameras-in-a-business-facility-18x10.webp 18w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/><\/figure><div class=\"elementor-image-box-content\"><h3 class=\"elementor-image-box-title\">Monitor anywhere<\/h3><p class=\"elementor-image-box-description\">Live operators watch your site from our command center, 24\/7.<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-32ad63f6 e-con-full e-flex e-con e-child\" data-id=\"32ad63f6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-672f9868 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"672f9868\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e16b9a0 elementor-view-stacked elementor-shape-rounded no-hardware elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"e16b9a0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 158.21 158.48\"><defs><style> .cls-1 { fill: #36c5a2; stroke-width: 0px; } <\/style><\/defs><path class=\"cls-1\" d=\"m16.92,101.82v-16.93c-1.68,0-3.36,0-5.04,0-1.94,0-3.88.02-5.82,0-3.45-.04-5.97-2.41-5.99-5.61-.02-3.22,2.48-5.64,5.92-5.67,3.58-.03,7.16,0,10.88,0v-16.93c-3.32,0-6.65,0-9.97,0-.82,0-1.66.02-2.45-.16-2.78-.64-4.62-3.24-4.35-6.02.26-2.78,2.55-5.01,5.42-5.07,3.75-.08,7.51-.02,11.5-.02,0-1.03-.02-1.95,0-2.86.09-3.76-.17-7.56.35-11.26,1.14-8.08,8.12-13.95,16.29-14.09,3.8-.07,7.61-.01,11.59-.01,0-3.93-.06-7.67.02-11.42.06-3.16,2.61-5.56,5.7-5.52,3,.04,5.43,2.42,5.55,5.5.06,1.53.02,3.06.02,4.59,0,2.22,0,4.44,0,6.75h16.94c0-2.25,0-4.51,0-6.78,0-1.41-.02-2.82,0-4.23.06-3.33,2.44-5.8,5.58-5.83,3.21-.03,5.66,2.48,5.69,5.9.04,3.53.03,7.05.04,10.58,0,.06.02.11.06.31h16.84c0-3.59.01-7.21,0-10.83-.01-2.17.81-3.9,2.64-5.07,1.77-1.13,3.66-1.24,5.53-.27,1.99,1.03,3.07,2.72,3.1,4.97.05,3.7.01,7.39.01,11.34,2.77,0,5.46-.07,8.13.02,2.46.08,4.99,0,7.35.57,7.52,1.82,12.62,8.44,12.74,16.2.06,3.75,0,7.49,0,11.43,3.91,0,7.65-.04,11.4.01,2.62.04,4.72,1.79,5.38,4.3.6,2.29-.37,4.9-2.53,6.06-1.04.56-2.33.84-3.51.87-3.51.11-7.03.04-10.63.04v16.93c1.7,0,3.44,0,5.18,0,1.94,0,3.88-.02,5.82,0,3.32.05,5.81,2.45,5.84,5.58.03,3.21-2.48,5.66-5.9,5.69-3.58.03-7.17,0-10.89,0v16.93c3.29,0,6.62,0,9.95,0,.76,0,1.54-.03,2.28.11,2.84.55,4.81,3.22,4.54,6.05-.27,2.84-2.62,5.05-5.58,5.1-3.7.06-7.39.01-11.33.01,0,2.6.07,5.11-.02,7.61-.09,2.57.02,5.22-.55,7.7-1.74,7.6-8.41,12.78-16.25,12.9-3.75.06-7.49,0-11.42,0,0,3.92.06,7.67-.02,11.41-.05,2.47-1.36,4.21-3.64,5.14-2.14.87-4.69.38-6.06-1.51-.84-1.16-1.41-2.73-1.5-4.16-.21-3.56-.07-7.14-.07-10.79h-16.94c0,1.37,0,2.76,0,4.14,0,2.12,0,4.23,0,6.35-.01,3.76-2.28,6.32-5.61,6.35-3.33.02-5.67-2.55-5.68-6.27-.01-3.46,0-6.93,0-10.52h-16.94c0,3.2,0,6.41,0,9.62,0,.88.04,1.78-.12,2.63-.54,2.78-3.1,4.71-5.89,4.53-2.84-.18-5.19-2.52-5.25-5.44-.08-3.75-.02-7.51-.02-11.48-3.63,0-7.14.15-10.63-.05-2.31-.13-4.72-.42-6.88-1.21-6.42-2.37-10.59-8.54-10.71-15.39-.06-3.76-.01-7.52-.01-11.56-.8,0-1.53,0-2.26,0-3,0-6,.04-9-.01-3.2-.06-5.64-2.49-5.68-5.56-.04-3.16,2.41-5.66,5.7-5.7,3.69-.05,7.38-.01,11.15-.01Zm112.99-22.4c0-14.81,0-29.63,0-44.44,0-4.33-2.19-6.53-6.49-6.53-29.52,0-59.04,0-88.55,0-4.44,0-6.57,2.15-6.57,6.61,0,29.45,0,58.91,0,88.36,0,4.44,2.16,6.62,6.57,6.62,29.46,0,58.92,0,88.38,0,4.56,0,6.67-2.12,6.67-6.71,0-14.64,0-29.28,0-43.92Z\"><\/path><path class=\"cls-1\" d=\"m45.23,79.14c0-7.29-.01-14.57,0-21.86.01-7.14,4.8-11.9,11.97-11.91,14.63-.01,29.27-.01,43.9,0,7.05,0,11.86,4.79,11.86,11.83.02,14.69.02,29.38,0,44.07,0,7.02-4.83,11.81-11.88,11.82-14.63.01-29.27.01-43.9,0-7.16,0-11.94-4.79-11.95-11.93-.01-7.34,0-14.69,0-22.03Zm11.38-22.4v44.97h44.95v-44.97h-44.95Z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tNo hardware needed\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tWe connect to your existing system over the network. Nothing to buy, install, or maintain on site.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6a59ed90 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"6a59ed90\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-413cbab8 elementor-view-stacked elementor-shape-rounded no-hardware elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"413cbab8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 158.21 158.48\"><defs><style> .cls-1 { fill: #36c5a2; stroke-width: 0px; } <\/style><\/defs><path class=\"cls-1\" d=\"m65.32,18.96c0-3.29-.01-6.36,0-9.43.02-3,1.51-4.49,4.5-4.52,1.74-.02,3.49-.03,5.23,0,2.65.05,4.18,1.6,4.21,4.27.03,3.13,0,6.27,0,9.67h1.9c10.35,0,20.69,0,31.04,0,15.47.02,27.06,11.53,27.03,26.96-.01,7.49-.08,14.99-.38,22.47-.12,2.93-.83,5.86-1.48,8.74-.57,2.56-2.67,3.65-5.2,2.9-1.84-.54-3.66-1.13-5.46-1.77-2.3-.82-3.32-2.35-2.76-4.74,2.21-9.54,1.26-19.21,1.27-28.83,0-6.61-5.68-11.76-12.47-11.78-14.88-.04-29.76-.01-44.64-.01-11.86,0-23.71,0-35.57,0-7.98,0-13.29,5.24-13.25,13.17.03,6.79-.16,13.62.36,20.38,1.5,19.36,15.86,37.14,34.38,43.2,6.55,2.14,13.24,2.91,20.08,2.77,3.84-.08,5.14,1.28,5.15,5.08,0,1.63.04,3.26-.02,4.88-.08,2.36-1.62,3.85-3.99,3.97-28.33,1.4-53.18-13.7-64.55-39.3-3.41-7.68-5.17-15.76-5.34-24.16-.12-5.87-.07-11.74-.04-17.61.09-14.57,11.73-26.24,26.28-26.32,10.52-.06,21.04-.01,31.56-.01.63,0,1.27,0,2.14,0Z\"><\/path><path class=\"cls-1\" d=\"m152.92,123.96c-.93.72-1.45,1.33-2.12,1.61-3.54,1.46-7.08,2.91-10.68,4.21-5.66,2.05-9.49,5.84-11.59,11.47-1.26,3.37-2.58,6.71-3.99,10.02-.37.86-1.08,2.05-1.82,2.19-1.42.28-1.52-1.31-1.91-2.26-1.45-3.54-2.84-7.11-4.24-10.66-1.91-4.84-5.25-8.29-10.06-10.26-3.81-1.56-7.67-3-11.46-4.61-.74-.31-1.26-1.12-1.88-1.7.65-.57,1.2-1.35,1.95-1.67,3.69-1.55,7.43-2.98,11.14-4.46,4.96-1.98,8.39-5.47,10.34-10.44,1.44-3.67,2.87-7.34,4.4-10.97.32-.76,1.09-1.34,1.65-2,.61.69,1.45,1.28,1.79,2.08,1.52,3.57,2.92,7.2,4.33,10.82,2.01,5.17,5.62,8.69,10.78,10.69,3.78,1.46,7.56,2.95,11.32,4.49.62.26,1.13.81,2.04,1.48Z\"><\/path><path class=\"cls-1\" d=\"m61.13,66.43c-.02,6.16-5.07,11.15-11.24,11.11-6.15-.04-11.12-5.11-11.07-11.28.05-6.07,5.06-11.02,11.15-11.03,6.17,0,11.18,5.02,11.16,11.19Z\"><\/path><path class=\"cls-1\" d=\"m105.77,66.45c-.03,6.15-5.09,11.14-11.27,11.09-6.15-.05-11.11-5.13-11.04-11.31.06-6.07,5.08-11.01,11.18-11,6.16.01,11.16,5.05,11.13,11.22Z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tAI on any camera\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tAdd intelligent detection to the cameras you already own, regardless of brand or age.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9668a07 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"9668a07\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5026a02a elementor-view-stacked elementor-shape-rounded no-hardware elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"5026a02a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 158.21 158.48\"><defs><style> .cls-1 { fill: #36c5a2; stroke-width: 0px; } <\/style><\/defs><path class=\"cls-1\" d=\"m43.67,136.63v10.92h2.08c17.18,0,34.36,0,51.54.01.84,0,1.72.05,2.52.28,2.52.74,4.1,3.2,3.82,5.76-.28,2.55-2.39,4.61-4.96,4.85-.51.05-1.02.03-1.53.03-30.21,0-60.41,0-90.62,0-4.99,0-7.05-2.49-6.4-7.49,1.3-10.03,2.37-20.1,3.84-30.11,1.52-10.41,9.33-17.54,19.87-18.72,6.66-.75,13.32-1.6,19.97-2.45,3.4-.43,5.22-2.57,5.26-6,0-.34,0-.68,0-1.02,0-2.45.56-5.08-.16-7.29-.68-2.09-2.75-3.71-4.14-5.58-4.29-5.73-6.52-12.18-6.6-19.35-.04-3.68,0-7.37,0-11.23-1.72,0-3.3,0-4.87,0-3.45-.02-5.89-2.12-6.04-5.18-.15-3.04,1.93-5.3,5.29-5.75.17-.02.33-.08.06-.01,1.48-4.07,2.56-8.04,4.32-11.69,3.54-7.33,9.13-12.82,16.36-16.59.93-.48,1.38-1.01,1.27-2.08C53.98,2.42,56.35-.24,62.48.02c6.25.26,12.51.05,18.77.06,3.81,0,6.17,2.23,5.97,6.05-.13,2.35.65,3.5,2.71,4.7,10.19,5.94,16.4,14.81,18.57,26.46.05.28.14.55.24.9.49.08.99.13,1.47.23,2.76.62,4.63,3.15,4.36,5.9-.27,2.68-2.49,4.8-5.26,4.9-1.81.07-3.62.01-5.64.01,0,2.1-.03,4.07,0,6.03.12,5.71-.1,11.35-2.23,16.78-6.21,15.78-23.26,24.26-39.53,19.59-.59-.17-1.19-.3-1.78-.45-.16,2.09-.37,4.06-.44,6.04-.02.49.38,1.05.71,1.47,4.27,5.47,11.75,6.78,17.75,3.05,1.51-.94,3.02-1.58,4.81-1.18,2.19.49,3.92,2.22,4.23,4.4.34,2.35-.55,4.22-2.51,5.58-8.4,5.83-19.99,5.62-28.29-.54-1.05-.78-2.02-1.65-3.05-2.51-1.19.61-2.42,1.19-3.58,1.86-.32.18-.68.65-.68.99-.04,5.05-.03,10.1-.03,15.35.74,0,1.34,0,1.95,0,12.86,0,25.71-.01,38.57,0,4.25,0,7,3.78,5.51,7.49-.88,2.18-2.87,3.43-5.58,3.43-10.64,0-21.27,0-31.91,0-4.6,0-9.19,0-13.91,0Zm49.38-87.28h-44c0,3.81-.04,7.5,0,11.19.14,11.03,8.6,20.16,19.78,21.39,10.49,1.15,20.97-6.01,23.11-16.52,1.05-5.16.77-10.6,1.1-16.06Zm-38.7-27.1c-4.62,2.8-9.77,11.09-9.91,15.99h53.12c-1.48-6.64-4.76-11.97-10.12-16.16-1.03,3.77-3.28,5.63-6.24,5.28-3.06-.36-4.84-2.76-4.84-6.53,0-3.22,0-6.45,0-9.72h-10.92c0,3.16,0,6.22,0,9.28,0,4.09-1.52,6.4-4.57,6.93-3,.53-5.28-1.25-6.51-5.07Zm-16.32,89.19c-4.5.56-8.89,1.14-13.3,1.64-5.64.64-9.53,4.55-10.17,10.22-.47,4.18-1.05,8.35-1.56,12.52-.48,3.87-.95,7.73-1.42,11.6h21.09c0-5.43,0-10.72,0-16.01,0-2.1.82-3.79,2.62-4.86.84-.5,1.85-.73,2.74-1.06v-14.05Z\"><\/path><path class=\"cls-1\" d=\"m109.13,92.77c-7.4,7.92-7.2,21.06.35,28.93,1.93,2.01,4.38,3.61,6.82,5,2.5,1.42,3.8,3.21,3.77,6.11-.06,6.71,0,13.43-.03,20.14-.01,2.55-1.51,4.52-3.84,5.26-2.23.71-4.74-.03-5.99-2.07-.62-1.01-1-2.32-1.03-3.51-.11-5.29-.08-10.58-.02-15.87.01-1.04-.34-1.6-1.2-2.17-10.63-7.1-15.93-17.12-15.06-29.83.87-12.63,7.46-21.81,18.84-27.43,4.33-2.14,8.29.4,8.31,5.23.02,6.54.03,13.09-.02,19.63,0,1.04.19,1.76,1.26,2.05.05.01.1.04.15.07,4.46,2.27,4.48,2.3,8.72-.32.46-.29.77-1.18.77-1.79.06-6.43.03-12.86.04-19.29,0-5.31,3.87-7.8,8.6-5.43,11.3,5.66,17.75,14.88,18.56,27.43.82,12.64-4.5,22.6-15.05,29.67-.94.63-1.22,1.27-1.21,2.34.05,5.18.03,10.35.02,15.53,0,3.58-2.32,6.07-5.55,6.02-3.15-.05-5.36-2.52-5.37-6.02-.01-6.49.06-12.97-.03-19.46-.04-3.04,1.21-4.99,3.95-6.31,12.26-5.92,16.22-20.97,8.51-32.14-.35-.51-.76-.99-1.35-1.75-.08.69-.16,1.09-.16,1.48,0,4.1-.03,8.19,0,12.29.02,2.53-1.07,4.36-3.33,5.49-3.45,1.73-6.91,3.45-10.37,5.18-1.8.91-3.59.91-5.4,0-3.45-1.74-6.91-3.45-10.36-5.18-2.26-1.13-3.35-2.95-3.33-5.49.03-4.47,0-8.95,0-13.8Z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tNo technician dispatch\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tSet up entirely remotely. No site visit, no disruption to your operations.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-28b8568f e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"28b8568f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-715d1b45 elementor-view-stacked elementor-shape-rounded no-hardware elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"715d1b45\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 84.29 159.48\"><defs><style> .cls-1 { fill: #36c5a2; stroke-width: 0px; } <\/style><\/defs><path class=\"cls-1\" d=\"m21.24,159.48c-1.05-.24-2.11-.47-3.15-.74C7.48,156.02.05,146.55.03,135.6c-.04-21.64-.04-43.28,0-64.92.03-13.31,10.66-23.88,24.02-23.93,12.06-.04,24.13-.04,36.19,0,13.43.05,24.01,10.64,24.03,24.08.03,21.49.03,42.97,0,64.46-.01,12.19-8.45,21.99-20.51,23.93-.24.04-.47.18-.7.27H21.24Zm53.68-56.29c0-10.53,0-21.07,0-31.6,0-9.33-6.19-15.51-15.52-15.52-11.49,0-22.98,0-34.47,0-9.34,0-15.54,6.18-15.54,15.49,0,21.02,0,42.03,0,63.05,0,9.32,6.2,15.52,15.52,15.52,11.49,0,22.98,0,34.47,0,9.33,0,15.54-6.19,15.54-15.5,0-10.48,0-20.96,0-31.45Z\"><\/path><path class=\"cls-1\" d=\"m75.07,13.62c-2.21,2.21-4.33,4.33-6.54,6.53-7.28-7-16.05-10.76-26.28-10.78-10.25-.02-19.04,3.69-26.33,10.66-2.14-2.16-4.27-4.32-6.42-6.48,14.72-16.34,46-19.74,65.57.07Z\"><\/path><path class=\"cls-1\" d=\"m61.76,26.86c-2.13,2.12-4.26,4.23-6.43,6.39-8.7-7.04-17.54-7.06-26.36,0-2.11-2.12-4.25-4.28-6.4-6.44,10.18-10.92,29.2-10.76,39.19.05Z\"><\/path><path class=\"cls-1\" d=\"m18.87,98.49h9.14v9.21h-9.14v-9.21Z\"><\/path><path class=\"cls-1\" d=\"m37.55,98.51h9.16v9.17h-9.16v-9.17Z\"><\/path><path class=\"cls-1\" d=\"m65.49,98.56v9.13h-9.22v-9.13h9.22Z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tAll your devices, one command center\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tCameras, intercoms, alarms, access points; everything monitored from a single screen, around the clock.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-639ff606 e-con-full e-flex e-con e-child\" data-id=\"639ff606\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-79a6d08e elementor-widget-mobile__width-inherit elementor-widget-tablet__width-inherit elementor-widget elementor-widget-heading\" data-id=\"79a6d08e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">If it's online, <span style=\"color:#38C6A0\">we can watch it.<\/span><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6c290306 elementor-widget-tablet__width-inherit elementor-widget-mobile__width-inherit elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"6c290306\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Connect your site to Sirix without a single piece of new equipment, and get live eyes on it from day one.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7f7509b elementor-align-center elementor-tablet-align-center elementor-widget elementor-widget-button\" data-id=\"7f7509b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-md\" href=\"https:\/\/sirixmonitoring.com\/contact\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Connect your site now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-245a6044 e-flex e-con-boxed e-con e-parent\" data-id=\"245a6044\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-37730e7b e-con-full e-flex e-con e-child\" data-id=\"37730e7b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13fd2674 elementor-widget-mobile__width-auto elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget elementor-widget-heading\" data-id=\"13fd2674\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Trusted across North America<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2148a6ad elementor-widget-mobile__width-inherit elementor-widget-tablet__width-initial elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"2148a6ad\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Real operators. Real-time response.<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1fe288f2 elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"1fe288f2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Behind every alert is a trained operator in Sirix&#8217;s command center watching live, verifying in seconds, and acting before damage escalates. AI surfaces the threat; people make the call.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4fc55cbe e-con-full e-flex e-con e-child\" data-id=\"4fc55cbe\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7e3eee1c e-con-full e-flex e-con e-child\" data-id=\"7e3eee1c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-50d4af9a elementor-widget elementor-widget-image\" data-id=\"50d4af9a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/Remote-video-monitoring-staff-overseeing-surveillance-systems-from-a-modern-security-command-center-1024x684.webp\" class=\"attachment-large size-large wp-image-103593\" alt=\"Remote video monitoring staff overseeing surveillance systems from a modern security command center.\" srcset=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/Remote-video-monitoring-staff-overseeing-surveillance-systems-from-a-modern-security-command-center-1024x684.webp 1024w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/Remote-video-monitoring-staff-overseeing-surveillance-systems-from-a-modern-security-command-center-300x200.webp 300w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/Remote-video-monitoring-staff-overseeing-surveillance-systems-from-a-modern-security-command-center-768x513.webp 768w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/Remote-video-monitoring-staff-overseeing-surveillance-systems-from-a-modern-security-command-center-1536x1026.webp 1536w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/Remote-video-monitoring-staff-overseeing-surveillance-systems-from-a-modern-security-command-center-18x12.webp 18w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/Remote-video-monitoring-staff-overseeing-surveillance-systems-from-a-modern-security-command-center.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5069699c elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"5069699c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1519\" height=\"1035\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/monitoring-agent-reviewing-live-camera-alerts-for-human-response.webp\" class=\"attachment-full size-full wp-image-102752\" alt=\"monitoring agent reviewing live camera alerts for human response\" srcset=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/monitoring-agent-reviewing-live-camera-alerts-for-human-response.webp 1519w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/monitoring-agent-reviewing-live-camera-alerts-for-human-response-300x204.webp 300w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/monitoring-agent-reviewing-live-camera-alerts-for-human-response-1024x698.webp 1024w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/monitoring-agent-reviewing-live-camera-alerts-for-human-response-768x523.webp 768w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/monitoring-agent-reviewing-live-camera-alerts-for-human-response-18x12.webp 18w\" sizes=\"(max-width: 1519px) 100vw, 1519px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-68e73dd7 elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-image\" data-id=\"68e73dd7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1530\" height=\"1028\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/security-operator-handling-a-live-video-monitoring-alert-call.webp\" class=\"attachment-full size-full wp-image-102753\" alt=\"security operator handling a live video monitoring alert call\" srcset=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/security-operator-handling-a-live-video-monitoring-alert-call.webp 1530w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/security-operator-handling-a-live-video-monitoring-alert-call-300x202.webp 300w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/security-operator-handling-a-live-video-monitoring-alert-call-1024x688.webp 1024w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/security-operator-handling-a-live-video-monitoring-alert-call-768x516.webp 768w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/security-operator-handling-a-live-video-monitoring-alert-call-18x12.webp 18w\" sizes=\"(max-width: 1530px) 100vw, 1530px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-745fdbf8 e-flex e-con-boxed e-con e-parent\" data-id=\"745fdbf8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-6ed44fc7 e-con-full e-flex e-con e-child\" data-id=\"6ed44fc7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7bef871d e-con-full e-flex e-con e-child\" data-id=\"7bef871d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-24a418b3 elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"24a418b3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><img loading=\"lazy\" decoding=\"async\" width=\"227\" height=\"111\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/percentage-circle-rating.svg\" class=\"attachment-full size-full wp-image-102669\" alt=\"percentage circle rating\" \/><\/figure><div class=\"elementor-image-box-content\"><p class=\"elementor-image-box-title\">25,000+<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4549c499 elementor-widget elementor-widget-icon-box\" data-id=\"4549c499\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tDevices monitored \t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tCameras, alarms and sensors under live watch (as of 2026).\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-12c7d865 e-con-full e-flex e-con e-child\" data-id=\"12c7d865\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2bc28a39 elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"2bc28a39\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><img loading=\"lazy\" decoding=\"async\" width=\"227\" height=\"111\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/percentage-circle-rating.svg\" class=\"attachment-full size-full wp-image-102669\" alt=\"percentage circle rating\" \/><\/figure><div class=\"elementor-image-box-content\"><p class=\"elementor-image-box-title\">95%<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-50bfc5af elementor-widget elementor-widget-icon-box\" data-id=\"50bfc5af\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tAI filtering rate\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tFalse alarms filtered by AI before they reach an operator.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5f36a46c e-con-full e-flex e-con e-child\" data-id=\"5f36a46c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-53ae7d1d elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"53ae7d1d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><img loading=\"lazy\" decoding=\"async\" width=\"227\" height=\"111\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/percentage-circle-rating.svg\" class=\"attachment-full size-full wp-image-102669\" alt=\"percentage circle rating\" \/><\/figure><div class=\"elementor-image-box-content\"><p class=\"elementor-image-box-title\">24\/7<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3e56ce3f elementor-widget elementor-widget-icon-box\" data-id=\"3e56ce3f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tBilingual operators\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tLive on the floor, every shift, all year.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2f542126 e-con-full e-flex e-con e-child\" data-id=\"2f542126\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2f0f719f elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"2f0f719f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><img loading=\"lazy\" decoding=\"async\" width=\"227\" height=\"111\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/06\/percentage-circle-rating.svg\" class=\"attachment-full size-full wp-image-102669\" alt=\"percentage circle rating\" \/><\/figure><div class=\"elementor-image-box-content\"><p class=\"elementor-image-box-title\">20+<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-281af77 elementor-widget elementor-widget-icon-box\" data-id=\"281af77\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tYears of industry expertise \t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tFounded in 2016, Sirix is led by operators with over two decades in remote monitoring and site management.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-480d9979 e-flex e-con-boxed e-con e-parent\" data-id=\"480d9979\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-57b7ba98 e-con-full e-flex e-con e-child\" data-id=\"57b7ba98\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a575c5f e-con-full e-flex e-con e-child\" data-id=\"a575c5f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e261585 elementor-widget-mobile__width-inherit elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"e261585\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Proven in the field.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-292fd82c elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"292fd82c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Two decades of operator expertise protecting thousands of sites with live monitoring, real response, and measurable results.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-33737f4 elementor-mobile-align-left elementor-align-center elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"33737f4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/case-studies\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">See all business cases<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-26a732d2 e-con-full e-flex e-con e-child\" data-id=\"26a732d2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6ad45e91 e-con-full e-flex e-con e-child\" data-id=\"6ad45e91\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-75634a3f elementor-widget elementor-widget-image\" data-id=\"75634a3f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"791\" height=\"1024\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Construction-site-with-cranes-monitored-via-remote-video-surveillance-791x1024.webp\" class=\"attachment-large size-large wp-image-96182\" alt=\"Construction site with cranes monitored via remote video surveillance.\" srcset=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Construction-site-with-cranes-monitored-via-remote-video-surveillance-791x1024.webp 791w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Construction-site-with-cranes-monitored-via-remote-video-surveillance-232x300.webp 232w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Construction-site-with-cranes-monitored-via-remote-video-surveillance-768x994.webp 768w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Construction-site-with-cranes-monitored-via-remote-video-surveillance-1187x1536.webp 1187w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Construction-site-with-cranes-monitored-via-remote-video-surveillance-9x12.webp 9w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Construction-site-with-cranes-monitored-via-remote-video-surveillance.webp 1341w\" sizes=\"(max-width: 791px) 100vw, 791px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-69523b81 e-con-full e-flex e-con e-child\" data-id=\"69523b81\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-55876feb elementor-view-framed elementor-shape-rounded elementor-position-inline-start elementor-mobile-position-inline-start elementor-widget elementor-widget-icon-box\" data-id=\"55876feb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"62\" height=\"62\" xml:space=\"preserve\" viewBox=\"0 0 62 62\"> <image width=\"62\" height=\"62\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD4AAAA+CAYAAABzwahEAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAr5SURBVHgB7ZvLbhNNFseP8wWBBNIYiets6GhmMbuYxUjsMOtZJFnNZiTME5A8QZInAJ4gzhMQ5gViL5jVjDBPkEZC4iphFkiIW+b\/a58ylU53J247YfF9R2p1u7u6us6p8z+3Kpv9QadLb968WX737t3u27dvO\/YLqGGnTK9evWrPz8+v67Id7u3v76c69b5\/\/755\/fr11E6BTo1xMZzMzc1t6Lhb1U5C6EoA2xJAz06QTpzxvb295oULF+7rclVH87jvuRZsXrlypWsnQCfK+IcPH5pfv3591mg0EqtJJwWDE59xGa+WGAfTy+OPNhpDMfRIB+p\/m\/Nx+vr27dudWUFgzmZMstSrWGusNr+lqgMx9oRrGNZp88ePH3d08Kxz6dKlBT2\/p6Nf1B\/v6OjKIC7MEvczm3Gs9W+\/\/bYVqzVqqt+PdLmko6\/fOzpWMXA8E+MLtEMrdEIzUp3bOt8NWiABPbl69eqyzZimnnEYZoY1I7t5LPNbx20NHuZv6\/qZhLOU70P3mzq2dLmrY1HtN3W+I+a3dX\/xJHx9bcZxT4Fhi3xynmSUnmuGH7tQYGazqJ1rx4rOHxGCzluj2\/trPHf4bNiMqBbjGgRByJ5VMJwnBHD58uWeGBmWtRHed8C9+r6onwhoQUJ4gEvTu3d0vWMzolqMwwDGxl3N8T40N3cDw6fL+0XPUfeg0hcvXhzCrI523AZDaTOi2qquwaVujMaEZXYLvV3wCgbsgd5plXSZ4VzC+SABbGE78g1uPd3q2IxoJu4MhmWQVjTwXVfNjhuoMQXfXaGuQyy4jQSAuu8iBDvYydat\/3T3bj3tbt3a3UpsCqrFeLDkYqQRGJYq48pKw1K1ey6BrDpzhwjs47bAN1oThJBrha9P5IQ7draxJyHs1tWCiRl\/\/\/79slzSMi4KjEcMPyIwqXqXuF3vtKvaBHwHIcTP\/v3Xf+z98+Jf9I0MSqlhXNGCp1sbNiHN24Sk2HugAd0Xs5mRQi1ljTNM4+L0rPA9\/LmSlQ9l\/eLuUG2CHP3sf\/r0aefz589NCTlu0\/nXpb9xEA1ubr76b\/N\/n960rAZNzLgYS3Rqg2HibAkiCzU9z75f9a7jPLWRoSt6zqnDISHhx3F\/4+f+7ooOor\/1jT\/\/PdE10eDOFZuMahu3YNE1gE4UyFSFlgPNHiHqdsnzoTQH1Q4RW2oFcQIuLcT4tNUBfCYOaaex6mRcLSTvLmpTA7hZ1piIDPyWBTDhPjFCYAzDGbdxXz92dbRVm77VoIlVPRpEwpnByRBlLqoK4x7AoBVlag7GH5PJKcrrkXur70GMcfvp6joSQKrfPW7qnRc2IdVmHJdDFsXg+M0soPYV7RPDFVXTsvrEmhMW92yU0R1oQMQou9LWZQcheN+bNiFNHcBg0LDGYLyqnuaYBZNHJSkxvtfzbYgYQzjrYfO21Rm31ScGlfgAUTVSz56NUstDJM14ocH2pKKJW+8DBH5JUnSZwcYrNxitu1GbxAOnbeCAEJSxpVaDas+4ZpeoijBzRUYm0bGh0lBa9Q5wqAhgsiQFO8EPrLf66+YbYUiJ6ckOEQIu1WpQ7RkXw2uTYJwAxl2eVbTZcnwPNKN99XcgG0PVJeAF0mJdd6J63cSWfRpVH3UwwnjHjigdk8iIsQ3zLK2gCdrTlxVfVNuWzi1\/L803xI2ZW3RpyUOrM26rSWRhNmK2bY5xN1BbZe8w4DKMhySFa8d32wOTG9E3wfgz3UcjthXSDqoKG1U0DePZYDVL947jx9X+TwHjRYzH5AWHgdrvaOZjeBAANYIvV1ibaUQdyz5TjGswSxWvtKowHpIUXdLfExk2zmncBkFLKC0tVCSa8Za+vQzOdW2T0jSMZ5mTjnUNGJWsxDgJCjm5zkQk7ZJmATrtoDlFGMeN2UgoO3ULkLUZF8OZgXK1feHqNijDuBci2rgs8Jt\/HursWGz9ZDap09+OIzfXCm5kMbqOntWkaaw6hqUpNbsXVjiqMB4oaEoZRRb7If3lMe6W\/7ZUHPe57n1OHLJOE6tTPyOqSvntTHfK2rMwoOrNXtk6GZEbSYou++C7aLkob\/lttPpSuexcRtNinGNdDLX3j174I2+usgM8g6mQpHBvkE9SEDCZW7D8wnhiNWgWGG+RFqIBVoHx4xBJCti2UZ6fBTIWWXYwTqhKSqprGCd7u3GqaamNykKJziuh0H8cjFdRnKRAbuhiQQ7diCKQTDs8nji9tDSkjzJuWeR0DIxjmBh0r6wNsQCV2PA7n\/S4H1\/FO8gINqj4nHpairHSqSlmH\/jMVPpx3JkMU6fMnWWDUYBDNKb+EOaAVDb3zSbCIVRdWFhACIO6aek0qr7qZzD+XOdQQHhgNYlFBF8yJtXEXeUDmGYknBDZNevU3aapsnY9Tr5JGIkKSjV3Ktpn7qzK+IlRAvEdtnzYqNp6L9cETVhDQMTsNsJ522rQNO6sj5XVIGOMV5V5j3Jn0NidQRIEBcfxQ8c4aeg4Fa2blk5Tc8uKABrkY6+5sV5epeZUVKiFr1W0WfNNQX1ffEjih8CAvTUvX74cV2p\/RVra8TPWGj\/+hBmyXIEwGuBHAg\/N0LAsLZWlPjB7YbtYdKvJ7oqzZ8\/GAU6zjmWfCuN8WAPLMI7FLqqRjT+kujqZVFWImXdnLEDkmgw9yNkMOPfa38Q0NcbDb08o2mXtfU\/belWfeXeWT0lRa2nFgSDn1NNSMb0UYTyxo\/Px1N0VpaRCIwi2PVTN8nKPytKoDxIZ1thTaVp2WE06xLjvPe1wjXuq2EaZhYtuhD66BgzLVNnr6qsewBQyHva8OLYTG4WmsZYgkAf4d3DO4X2PQ1av9rKa26vaEHiI8fPnz2NMEq6luvc1iJsFWAtpKcvEK0E47tJKMYxQfcYryb830LeZ1Zhx7rPakoQlKXLz8NCFmsUJwEq\/75VtAj7EOOoUXSdWTkROixYx5WvnhXTUxgDI8\/XURgWH53lVdj\/ei+\/FGM+Pl9TZSqgI46SX6\/6hvuLilnDV8o92o3Z3A8Y14Ob+8TbivqDmVtY2XljUjC37vTQ8dz\/OnncEg80AZmhRppEay0PBk80JTe+DcnaHftW2G8P2AONikACkE31oMVRGvfNu9Kwd7oNx3+o11MeWSpjqRzW3orB1qEHfRGtgMFLnuL9m8AzgnAMC41RklCk+tsjIsinJRkvLIdB5WMi4jWbEoqpHrCqsbYH\/tfAxmMxjvILxoyKspveThhvuIpeiPni2EgsmrJ2dOXNmWFBmHo+fwon6G5e05gsGaGXEWlZ47pnYAWYoRZW9i\/ZUbQyA8mpMzJ4fT353Y8C4IImqp1ayBo9mnjt3Lg2\/84yv2kg1Ui803PCdx12YVMdrUscwcKx3K8I4TFcxntgRGwOK1NgOlp6yrSCh1MQ4ESiG0BOkNvfd4wDTNWlBx0b2aMXr8YcZV8O2GGMfW1cqvEx15dq1a0h4PEseI8cYTzxWf+5qV8Y8\/axZ+aJh1oa+gmfxvDymbCtIQawP490vX75gA9hD00O7xCjfXLWftYOfvMY\/XCKZAaB62ThijQuScB4pTt\/g2lW5XdQOA1i1MQDyTfkb4bcvHuTbEKd3s8FL28wnxX3\/RtS0FFJQaZLilZAjg41fQRhBN4RVBrMZNhkU0byHh4dCyFBTy\/87gCwrLg4QW0dtMhV1l7UYnof3Xr9+\/TDcb0TbtEOfub4s367se\/n3AlTYqOC7ow4Q8UjDXUbXfkeU3wf\/u6L\/A1UOYw6V0oKVAAAAAElFTkSuQmCC\"><\/image> <\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tConstruction sites \t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tDallas, TX\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-488379bb e-con-full e-flex e-con e-child\" data-id=\"488379bb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-72f3e817 elementor-widget elementor-widget-text-editor\" data-id=\"72f3e817\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>David R. | Project Manager<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-16017cf4 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"16017cf4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>\u201cWe were dealing with repeated overnight theft and no real way to stop it. Sirix changed that immediately. The voice-down interventions alone made a difference within the first week, and incidents dropped to near zero. It\u2019s the first solution we\u2019ve used that actually prevents losses instead of just recording them.\u201d<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-dac00bd elementor-tablet-align-center elementor-align-justify elementor-widget elementor-widget-button\" data-id=\"dac00bd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-md\" href=\"https:\/\/sirixmonitoring.com\/construction-site-security\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"a6042377-6c7a-4624-ae4d-6a120e867893\" data-name=\"Layer 1\" width=\"18.2139\" height=\"19.4141\" viewBox=\"0 0 18.2139 19.4141\"><polygon points=\"8.507 0 7.093 1.414 14.386 8.707 0 8.707 0 10.707 14.386 10.707 7.093 18 8.507 19.414 18.214 9.707 8.507 0\"><\/polygon><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">See how we protect construction sites<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-61eda17a e-con-full e-flex e-con e-child\" data-id=\"61eda17a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1d53dd02 elementor-widget elementor-widget-image\" data-id=\"1d53dd02\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"791\" height=\"1024\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Car-showroom-interior-monitored-with-remote-video-monitoring-system-791x1024.webp\" class=\"attachment-large size-large wp-image-96183\" alt=\"Car showroom interior monitored with remote video monitoring system.\" srcset=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Car-showroom-interior-monitored-with-remote-video-monitoring-system-791x1024.webp 791w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Car-showroom-interior-monitored-with-remote-video-monitoring-system-232x300.webp 232w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Car-showroom-interior-monitored-with-remote-video-monitoring-system-768x995.webp 768w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Car-showroom-interior-monitored-with-remote-video-monitoring-system-1186x1536.webp 1186w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Car-showroom-interior-monitored-with-remote-video-monitoring-system-1582x2048.webp 1582w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Car-showroom-interior-monitored-with-remote-video-monitoring-system-9x12.webp 9w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Car-showroom-interior-monitored-with-remote-video-monitoring-system-scaled.webp 1977w\" sizes=\"(max-width: 791px) 100vw, 791px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3fff7de e-con-full e-flex e-con e-child\" data-id=\"3fff7de\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e41a0c8 elementor-view-framed elementor-shape-rounded elementor-position-inline-start elementor-mobile-position-inline-start elementor-widget elementor-widget-icon-box\" data-id=\"e41a0c8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"62\" height=\"52\" xml:space=\"preserve\" viewBox=\"0 0 62 52\"> <image width=\"62\" height=\"52\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD4AAAA0CAYAAADSWosiAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAWySURBVHgB7VvLTuRGFL3lbhqSLMZIPCWkdKQoym6YBQojFmP2k9D5AugvgPkCur+A4QvcfEF6NCNliZGCBimbzjaLtJGQEA+JZhXelXMde8aYh8ttl7tHM0cybpftqrq+71uFIM346Q97RRhiWfV5QdSRUjR35hbrpBGCNGJ2214iIWzqBlJWd+aqDdKEIumEIRZJRtqk3L3znBDfRpvwWgWnBmmCXsLvg0HWzvOqG26afW9bJMVmuA2iaJJG5E84MLtpl6lES1JSR1xSEx\/Ceb5tr0uhbgvSoieE0xCVweFVAbbKEi2i5RlEu0U5wqA+AT5Ch3JEbzh+Ri6VZN0T9QI1uUnewJjlyIbi4eFhQwixSBnj5uamvvDP7\/fe25n3jFstuJ59vwHrL+\/M4eDgoGYYxiplD6eog+g4zGzb0wUhfuPf4LqJP1ot+D2weiLqBYOJhYEjT7d7AtaqXK1pPwBS7haBX6+ursqUMUqlkovTC0oB9NHA3BzKGIVCoVUcHh528ZsPOjo6auJrPKUMgAmvixt5KqOyLEVb5X349Q76qIiMghoY2zdjY2MrwXVUx59IKcuUDRakQXVQsEBdAJ+L3dxihvN5Er7Qadyst9+\/dH7++10VVCypvsS+3RDUePfjL0\/BJYs0QbdVr7394aUDAhw2KCov4Dl2bcs6iWbk4c4sBCEW9Rn6JlbPG18I\/9ygrOMwOg0YnC1VI5U32ChifhXV3EOJcM60xsfHa9T\/aCIIc3GOzehiRZ05\/IkQ7WF0dLRGCvlHLOEc6tEnBkR7f8U9Eyvq6ES5JNRut82BgYEykoDM8+vJyUmHMkRmAQx0ixMA1i0tRQVUilxI3\/rExMRrygCZEI5JTeO05lv8ahIpUQFbbBzc\/9r+\/n4rC+5nQjgIXcGkPOuP1K9JGgCJ4o+7CjXiFRaHUiJ1AAMOlBGLe74T+u2QJqBg4ok4++mTk5PU6pSacHDA4jO4vuUXNbQAfbP6ODjM8\/PzJUqJ1ISHKiQN0gx83A0+42N3VdwIQ1nHIdIWBiwH19fX1y6umQusex2IuRbdDoPHQDlqDT+tvb29aXadfv7u4eLiojU1NaVUPFUinPUYOrYZmUQDxAs2ajiavihqBY8BD\/KG9RzjV3xr\/6EmNzg4SND\/4cvLy9i+lEQdRJejbeB2HYN6VVQMtEE5AYa06Z+X+YNH72MuZZV+lDjOflncrpa2MICFtrLXSbG4AKmgPIC5BCVrE2LPYzv4bVFCKBEO39yCH3WCATD4eiT9W8EEVihnYEyOFLfC8+K5Qh3i3yVFIOuZB\/HMZRMDuGjqbm9LtrAwl1eYk8MXINpRfTFR5AbiHT5jFbMherXodRfLmFeVEqKrkDWI1BgcuPgSEIbpW9xUS0icXuK4455gWF8ECw0Yg0NY\/YSzawtddiBeVrCnhS6o4a99e4Bq1EihGnIfolWfmU0sLZeoEoyBvk\/o\/0zQ5DkhcXEpAVIlKR+ysCFhY6nIkiVamOVNPCTWvrqQ33E1BBPkKGuaa3YjIyOPcia0SaHFRFubtvlvSbQFeXq8LDlYGvQWIudxnFKKFDiTKquQQalH7l57ZR+55cxXvY8Cznn72hDs7Mb1E6hMWLwNITe4T+nvkREK1RUVxHJc3LP5LnQvELNXM9v2xjdfk+s88whmvfMqMsHqK+wC+3rnob5w3wxcJOstnq374hu4yXneSfHnXLXlq9uD81JB2nzchC9tQ5w\/toR\/38Z0NOxN1G98\/4nwZSVFFUNDQyzKue5Jewxc7kpq0RmJRZ0zpOPj4yqMVu4hahTsVWAbuio+duXHMaCXGUWLipwv60pPudyExKgSbmODiNMq7rWSjtutcbP4iIatZ2dnDmlSA\/TNBs9+6F7ScbvV8cT30iLrcW9xHKK7Cy5GA43T8AWLFNwM\/9vEUuS51zqrMAnH5etH6fgPLM5YZ0rfKO4AAAAASUVORK5CYII=\"><\/image> <\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tCar dealerships\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tProvidence, RI\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-620e9eaa e-con-full e-flex e-con e-child\" data-id=\"620e9eaa\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6104e0c3 elementor-widget elementor-widget-text-editor\" data-id=\"6104e0c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Sophie L. | General Manager<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2886e943 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"2886e943\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>\u201cBetween after-hours loitering and attempted break-ins, we needed more than cameras. Sirix gave us active protection. Their team responds in real time, challenges suspicious activity, and handles incidents without us getting involved at 2 a.m. It\u2019s like having a full-time security presence without the overhead.\u201d<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7905a44 elementor-tablet-align-center elementor-align-justify elementor-widget elementor-widget-button\" data-id=\"7905a44\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-md\" href=\"https:\/\/sirixmonitoring.com\/automotive-dealership-security\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"a6042377-6c7a-4624-ae4d-6a120e867893\" data-name=\"Layer 1\" width=\"18.2139\" height=\"19.4141\" viewBox=\"0 0 18.2139 19.4141\"><polygon points=\"8.507 0 7.093 1.414 14.386 8.707 0 8.707 0 10.707 14.386 10.707 7.093 18 8.507 19.414 18.214 9.707 8.507 0\"><\/polygon><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">See how we protect car dealerships<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-27c39bf3 e-con-full e-flex e-con e-child\" data-id=\"27c39bf3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6cd96f61 elementor-widget elementor-widget-image\" data-id=\"6cd96f61\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"791\" height=\"1024\" src=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Modern-apartment-building-exterior-for-remote-video-monitoring-security-791x1024.webp\" class=\"attachment-large size-large wp-image-96181\" alt=\"Modern apartment building exterior for remote video monitoring security.\" srcset=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Modern-apartment-building-exterior-for-remote-video-monitoring-security-791x1024.webp 791w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Modern-apartment-building-exterior-for-remote-video-monitoring-security-232x300.webp 232w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Modern-apartment-building-exterior-for-remote-video-monitoring-security-768x994.webp 768w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Modern-apartment-building-exterior-for-remote-video-monitoring-security-1187x1536.webp 1187w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Modern-apartment-building-exterior-for-remote-video-monitoring-security-9x12.webp 9w, https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/04\/Modern-apartment-building-exterior-for-remote-video-monitoring-security.webp 1341w\" sizes=\"(max-width: 791px) 100vw, 791px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-28d51698 e-con-full e-flex e-con e-child\" data-id=\"28d51698\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-24b012c5 elementor-view-framed elementor-shape-rounded elementor-position-inline-start elementor-mobile-position-inline-start elementor-widget elementor-widget-icon-box\" data-id=\"24b012c5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"62\" height=\"66\" xml:space=\"preserve\" viewBox=\"0 0 62 66\"> <image width=\"62\" height=\"66\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD4AAABCCAYAAAAPIWX+AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAcoSURBVHgB5VvdbtNIFD7jpFG0VNogURBXNU9AuGDpLrvCfQK6T0DzBIQnaPoEhCdw+gSEJ2iq3QKrvWh5grhX\/EoNEhJRaTr7HTOmXsc\/48TO8PNJzmQ89tjfzJkz55wZExnEcDhsvHz50iYDsMgQQNi5cOHCQbVaHb569apNC4agBYN7GGRd\/HUiRd2VlZUHtCAstMffvn3bBukDOid9iGMdxxGONsoPFiX6C+nxN2\/eNJG4Qoim\/1AhRlLKbfRwl\/Mg7CFZ5f84700mk\/WrV696VCJK7\/Hj4+MGkscBaRDbq1QqNwLSUeA6exHjvnTi4\/G4wWT4P1Lv8uXLzsWLF72s+9A4DyEJW1QSFjrGz87OBpyuPXV7a097cu0v18m4pQPyu2WMe2PTWQ446P3CyRshblWpS0Ku15d9rZ4JNe4PoC9sKghVMoCnv7S0CEfQgL6wkXpUAIwQv7nrNis1atZPqD9Yb43IAIyIOkhvQH7dcZ0aZAhGiEtJI\/wckUEYEfV\/fm+x8dIlg\/gWprNSYKTH1\/bdTbLEHQj99vNfWx4ZgJEeh2fUJEmbdEo2GYKRHgfzAXq7MbHIyFTGMEL82W+tPpI+GUQpou7suo21XddOLX+WXL4IFErcJ7S\/s\/WxJoZUwxhOwLhGbZJiqOGdlYZCRJ0Jj2vW\/Y8k20LIhh\/WkfRVY+4ev\/W32\/Z7WMiOEIEJKvdQcy\/m8mv8U\/\/J986u6XpnZWDmHvfnYiE4QmKfnwVhQR3MzYO0ewc3fMfEmEZn5Cbuj8uK4PCwfX5Wj\/D\/6rCIj54pA0abuCLMPeycn50mzAsFCBrcR5jpxZUrVzqxlTFplpZTyfd5ZACZxHMSDl\/3IqVaj+v4Kg2YOQhn4vntVg9JjwxiiniZhL8mTBEXFWrKL2TKIYwZoeOP8Ylcf\/6HnkIsGlPEYUd38WIjKCDPVA\/zagsvPFCJiB3jagz6KIWwb9zIQZIBg3Dyz\/xc0kS9Xj\/E6kwuRZmo3LDQt4lkK1j+KRJq7vZSLmmisXdJA3i\/HkgPKCdiib9+\/Rrmp0hat+Ig4SrNgaLCy7zqilWWbZoBWfP4CC1\/7dOnT1085F4w9ngdG2VNGClPYKRsBHnShAovb42r0kN2EC3nxUUsFe+l1WFZ1l1c8+jSpUsezYAs4o2TkxN4XBwf81\/oOksDGoBXQKfyuuDwsiB5lGTAoEGP0KCbaXXwmjrIb2FIrqIBdrCePqAciH1bJsOV0hzAy2+zyaq2fgz5XJK2Dm8MUOCNA7ERmqWlpQesyKL38IYCJNuov0caMBNzywZL0GZcAdbPeExPSYpSwi4kgBVy7\/T0dCdtV0WWPz5CJX8ifaLy\/p4V1bpf8pTTxby173axPj5MCj+x0qLPSjTuSIVqgA5LGaTiYdJ1mT0O5dGH6G9A9P38ysrKQImZjWMUymsrN65JUnJomT27IgwYdNAGktidVJnKDaTCQaRmJO9E8novZPHykewn+eJo5FVubDTAlCTNYqzEwcgYzzJg0FM2yD8OpCwMjHEOX81NPDPmhpd4FDxIbdMK5z30yg7lfBE2YDh0xUFKMoRMAwZjrQ1NyVr2Hkj2OQ\/xvo4yhzfzYMpq8QYdymHLZxkwwKFq4ClA1AsJXuiMcSYVbMzbRN4O5dlq415zKAcCAya5XL7XnY9nhc4Yd1LyTHqDciJrfZwtxXfv3g3jymA+F7LrUWeMc+wsLF7RniplZwMruLgj5foeplah+z5WxsN5J2ITqW\/AsFOCym36bLhM5XXBixBswNzcd2PnfqVE9+KOpDGOexo8BZKm55gq6qqyDv76Tgqmlzthp0TNt7mdFLXiYlfO4jf\/zGjAsJGlPewylVvEWYnmm8hrW2wBrCXqn00QU6\/Gz+VBg8aV1Wq1bpwBo6TkPRXR42Uha4OfMmBivUMYMD2KsRvUVMtT6zFR9jayTCcFXg5bSk\/UC3FwgJ2SwyCP4wblNGB47ZzD2EUaMLwtnD8E0L0+U9T5B61JynxcRUN48HwCy01++PDBW15e9iiHk+KvnbMBQ5IbcRBzBTdsrHORMpU1Kcc7ZIp6EERgBJvoQ8UOSB9TwVAGzCDPPTzGWSkG0aIsmHFSbrc6SDpJ5fzySV6fmqunwDE6Ff\/zSEPBfTcb\/HgmUCHx+bV68GFMXBkbEsG0Eo6r6YANGGGJuxMpH\/x7e1rDB2Ibeg+djQRN3OeSJjJFvYyvgYTlKyGnSAOGG4vFncPOOtdrjXGMGwfJbjhKGozBpDGXhomkboWSDRgOW0NsY3sviLJO1ZlzjBtRbkq804yYWaKs19U8rjXG51Zu6ruyRcKOO6miqw9JE1rEA3eQVzGjZfxdGX2DEOzK8cdt4ZPsbVGCvctxtohfPFIOgq1xrX8uel2anx2DEZH+Jx3R56kZos\/E+7qa8HsBT9NVtAj70zb73vSDAFwf\/Qe+Z9AOOY7TLQAAAABJRU5ErkJggg==\"><\/image> <\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tCondos &amp; multi-family\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tToronto, Ontario\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7101b264 e-con-full e-flex e-con e-child\" data-id=\"7101b264\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-326f3804 elementor-widget elementor-widget-text-editor\" data-id=\"326f3804\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Marc D. | Property Manager<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7ce52d5e elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"7ce52d5e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>\u201cContinuous monitoring has completely changed how we manage the building. The operators know our site, recognize what\u2019s normal, and act right away when something isn\u2019t. From access issues to unwanted activity, everything is handled quickly and professionally, without needing on-site staff.\u201d<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-179cc0ca elementor-tablet-align-center elementor-mobile-align-center elementor-align-justify elementor-widget elementor-widget-button\" data-id=\"179cc0ca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-md\" href=\"https:\/\/sirixmonitoring.com\/case-studies\/calgary-condo-intrusion-prevention\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"a6042377-6c7a-4624-ae4d-6a120e867893\" data-name=\"Layer 1\" width=\"18.2139\" height=\"19.4141\" viewBox=\"0 0 18.2139 19.4141\"><polygon points=\"8.507 0 7.093 1.414 14.386 8.707 0 8.707 0 10.707 14.386 10.707 7.093 18 8.507 19.414 18.214 9.707 8.507 0\"><\/polygon><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Read the full business case<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-23d46e55 e-con-full e-flex e-con e-parent\" data-id=\"23d46e55\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-5eafad18 e-con-full e-flex e-con e-child\" data-id=\"5eafad18\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c3a05e6 elementor-widget-mobile__width-auto elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"3c3a05e6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Protection for every industry<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-135a71e8 e-flex e-con-boxed e-con e-child\" data-id=\"135a71e8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4a8d624 elementor-arrows-position-inside elementor-widget elementor-widget-n-carousel\" data-id=\"4a8d624\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;984a627&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;8a317e5&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;605436a&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;01c42ee&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;53312af&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;1c0d571&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;53e3272&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;d395f2e&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;b6c347e&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;5e171d8&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;8ef3d33&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;da707c6&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;c60ca6c&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;deb1741&quot;}],&quot;slides_to_show&quot;:&quot;4&quot;,&quot;slides_to_show_widescreen&quot;:&quot;1&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;slides_to_scroll_tablet&quot;:&quot;1&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:16,&quot;sizes&quot;:[]},&quot;slides_to_show_tablet&quot;:&quot;2&quot;,&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;offset_sides&quot;:&quot;none&quot;,&quot;arrows&quot;:&quot;yes&quot;,&quot;image_spacing_custom_widescreen&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-n-carousel swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"1\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 14\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5172ace8 e-con-full e-flex e-con e-child\" data-id=\"5172ace8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-68f278f3 e-con-full e-flex e-con e-child\" data-id=\"68f278f3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-57ac5814 elementor-widget elementor-widget-heading\" data-id=\"57ac5814\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/sirixmonitoring.com\/construction-site-security\/\">Construction sites<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-771850df elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"771850df\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/construction-site-security\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"2\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 14\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-569978a9 e-con-full e-flex e-con e-child\" data-id=\"569978a9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-57fe8f4f e-con-full e-flex e-con e-child\" data-id=\"57fe8f4f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2c398cca elementor-widget elementor-widget-heading\" data-id=\"2c398cca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/sirixmonitoring.com\/automotive-dealership-security\/\">Car dealerships<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4bd1bbcf elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"4bd1bbcf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/automotive-dealership-security\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"3\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 14\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-73b8dcec e-con-full e-flex e-con e-child\" data-id=\"73b8dcec\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-120961c0 e-con-full e-flex e-con e-child\" data-id=\"120961c0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2054ef0d elementor-widget elementor-widget-heading\" data-id=\"2054ef0d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/sirixmonitoring.com\/retail-security\/\">Retail<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2ca7a6d1 elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"2ca7a6d1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/retail-security\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"4\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 14\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5a470522 e-con-full e-flex e-con e-child\" data-id=\"5a470522\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-31b01a2 e-con-full e-flex e-con e-child\" data-id=\"31b01a2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7ecddaa0 elementor-widget elementor-widget-heading\" data-id=\"7ecddaa0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/sirixmonitoring.com\/parking-lot-security\/\">Parking lots<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7ec72133 elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"7ec72133\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/parking-lot-security\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"5\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 of 14\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6a05fef e-con-full e-flex e-con e-child\" data-id=\"6a05fef\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-6ee7154f e-con-full e-flex e-con e-child\" data-id=\"6ee7154f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-315ece70 elementor-widget elementor-widget-heading\" data-id=\"315ece70\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/sirixmonitoring.com\/truck-yard-security\/\">Truck yards<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-50b04665 elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"50b04665\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/truck-yard-security\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"6\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 of 14\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-49cd24ae e-con-full e-flex e-con e-child\" data-id=\"49cd24ae\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-1d2a2e1d e-con-full e-flex e-con e-child\" data-id=\"1d2a2e1d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1310c5ad elementor-widget elementor-widget-heading\" data-id=\"1310c5ad\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/sirixmonitoring.com\/multi-family-residential-security\/\">Multi-family residences<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-48b978b0 elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"48b978b0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/multi-family-residential-security\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"7\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"7 of 14\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6d98858f e-con-full e-flex e-con e-child\" data-id=\"6d98858f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-5abcebeb e-con-full e-flex e-con e-child\" data-id=\"5abcebeb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-109a103e elementor-widget elementor-widget-heading\" data-id=\"109a103e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/sirixmonitoring.com\/scrap-metal-recycling-security\/\">Scrap metal &amp; recycling<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-55f33706 elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"55f33706\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/scrap-metal-recycling-security\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"8\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"8 of 14\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7403e87b e-con-full e-flex e-con e-child\" data-id=\"7403e87b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-4d7b6fb2 e-con-full e-flex e-con e-child\" data-id=\"4d7b6fb2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4ed4677c elementor-widget elementor-widget-heading\" data-id=\"4ed4677c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/sirixmonitoring.com\/commercial-building-security\/\">Commercial building<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-709ed711 elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"709ed711\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/commercial-building-security\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"9\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"9 of 14\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-e61fb46 e-con-full e-flex e-con e-child\" data-id=\"e61fb46\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-519e7abf e-con-full e-flex e-con e-child\" data-id=\"519e7abf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-39ea5197 elementor-widget elementor-widget-heading\" data-id=\"39ea5197\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/sirixmonitoring.com\/industrial-manufacturing-security\/\">Industrial &amp; manufacturing<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-454acab4 elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"454acab4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/industrial-manufacturing-security\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"10\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"10 of 14\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-11105a02 e-con-full e-flex e-con e-child\" data-id=\"11105a02\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-634fc398 e-con-full e-flex e-con e-child\" data-id=\"634fc398\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-56e3cfe elementor-widget elementor-widget-heading\" data-id=\"56e3cfe\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/sirixmonitoring.com\/live-video-monitoring-for-cities\/\">Live video monitoring for cities<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7f59a5da elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"7f59a5da\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/live-video-monitoring-for-cities\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"11\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"11 of 14\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-656403f2 e-con-full e-flex e-con e-child\" data-id=\"656403f2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-5d77af7e e-con-full e-flex e-con e-child\" data-id=\"5d77af7e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6d0a1ec9 elementor-widget elementor-widget-heading\" data-id=\"6d0a1ec9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/sirixmonitoring.com\/cannabis-security-solutions\/\">Cannabis farms<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-58995a6b elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"58995a6b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/cannabis-security-solutions\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"12\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"12 of 14\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2e4398e0 e-con-full e-flex e-con e-child\" data-id=\"2e4398e0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-2f58c240 e-con-full e-flex e-con e-child\" data-id=\"2f58c240\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-613db679 elementor-widget elementor-widget-heading\" data-id=\"613db679\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/sirixmonitoring.com\/self-storage-security\/\">Self-storage facilities<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4e3615da elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"4e3615da\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/self-storage-security\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"13\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"13 of 14\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-48925bc6 e-con-full e-flex e-con e-child\" data-id=\"48925bc6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-6d6eb7b5 e-con-full e-flex e-con e-child\" data-id=\"6d6eb7b5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1df212bb elementor-widget elementor-widget-heading\" data-id=\"1df212bb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/sirixmonitoring.com\/autonomous-gas-station\/\">Autonomous gas stations<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-58b5f04f elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"58b5f04f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/autonomous-gas-station\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"14\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"14 of 14\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-21e861bc e-con-full e-flex e-con e-child\" data-id=\"21e861bc\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-16eb4792 e-con-full e-flex e-con e-child\" data-id=\"16eb4792\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2e5e8822 elementor-widget elementor-widget-heading\" data-id=\"2e5e8822\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/sirixmonitoring.com\/shopping-center-security\/\">Shopping centers<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-566686f3 elementor-mobile-align-left elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"566686f3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/sirixmonitoring.com\/shopping-center-security\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"eicon-chevron-left\"><\/i>\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"eicon-chevron-right\"><\/i>\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2e99fd66 e-flex e-con-boxed e-con e-parent\" data-id=\"2e99fd66\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4af33063 elementor-widget-mobile__width-inherit elementor-widget-tablet__width-initial elementor-widget elementor-widget-heading\" data-id=\"4af33063\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">FAQs<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-13827613 elementor-widget-mobile__width-inherit elementor-widget-tablet__width-inherit elementor-widget elementor-widget-heading\" data-id=\"13827613\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Everything you need to know.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2ef7c248 e-con-full e-flex e-con e-child\" data-id=\"2ef7c248\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-35c630d1 faq-questions elementor-widget elementor-widget-n-accordion\" data-id=\"35c630d1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;default_state&quot;:&quot;expanded&quot;,&quot;max_items_expended&quot;:&quot;one&quot;,&quot;n_accordion_animation_duration&quot;:{&quot;unit&quot;:&quot;ms&quot;,&quot;size&quot;:400,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-accordion.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-n-accordion\" aria-label=\"Accordion. Open links with Enter or Space, close with Escape, and navigate with Arrow Keys\">\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-9020\" class=\"e-n-accordion-item\" open>\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"1\" tabindex=\"0\" aria-expanded=\"true\" aria-controls=\"e-n-accordion-item-9020\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><h3 class=\"e-n-accordion-item-title-text\"> What is live video monitoring? <\/h3><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 18.0334L20.9333 13.6868C20.42 13.1734 19.58 13.1734 19.0666 13.6868L14.72 18.0334\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 13.9668L20.9333 18.3135C20.42 18.8268 19.58 18.8268 19.0666 18.3135L14.72 13.9668\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-9020\" class=\"elementor-element elementor-element-690fbbbf e-con-full e-flex e-con e-child\" data-id=\"690fbbbf\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-70d2925e elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"70d2925e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Live video monitoring is a security service where trained operators watch real-time alerts from cameras, sensors, and AI detection systems.<\/p><p>When suspicious activity is verified, operators follow your site procedures, issue voice warnings, contact keyholders, or dispatch the appropriate response.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-9021\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"2\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-9021\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><h3 class=\"e-n-accordion-item-title-text\"> Can Sirix work with my existing cameras and security systems? <\/h3><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 18.0334L20.9333 13.6868C20.42 13.1734 19.58 13.1734 19.0666 13.6868L14.72 18.0334\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 13.9668L20.9333 18.3135C20.42 18.8268 19.58 18.8268 19.0666 18.3135L14.72 13.9668\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-9021\" class=\"elementor-element elementor-element-2ae12cb1 e-con-full e-flex e-con e-child\" data-id=\"2ae12cb1\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-61fb7399 elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"61fb7399\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>Yes,<\/strong> Sirix integrates with over 500 camera brands, VMS platforms, cloud systems, and security technologies.<\/p><p>In most cases, there is no need to replace your current equipment. Our team evaluates your existing setup and recommends the best way to integrate live monitoring and response into your environment.<\/p><p>This allows businesses to strengthen security operations while continuing to use the systems they already rely on.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-9022\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"3\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-9022\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><h3 class=\"e-n-accordion-item-title-text\"> What happens when an incident is detected? <\/h3><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 18.0334L20.9333 13.6868C20.42 13.1734 19.58 13.1734 19.0666 13.6868L14.72 18.0334\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 13.9668L20.9333 18.3135C20.42 18.8268 19.58 18.8268 19.0666 18.3135L14.72 13.9668\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-9022\" class=\"elementor-element elementor-element-7365e22e e-con-full e-flex e-con e-child\" data-id=\"7365e22e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1a12694 elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"1a12694\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>When an incident is detected, Sirix operators immediately review the live video to verify what is happening.<\/p><p>One of the first steps is to quickly review the site details and follow the tailored step by step response procedure established for that specific location and situation.<\/p><p>Depending on the event, operators can:<\/p><ul><li>issue\u00a0<a href=\"https:\/\/sirixmonitoring.com\/voice-interventions\/\">live voice warnings<\/a>\u00a0through onsite speakers<\/li><li>contact employees or keyholders<\/li><li>dispatch guards<\/li><li>escalate to police or emergency services<\/li><li>document the incident and provide reports<\/li><\/ul><p>Every response follows the site\u2019s specific security procedures and escalation protocols.<\/p><p>In a reviewed sample of 200 verified intrusion events across 60 monitored client sites between July 2023 and June 2026, 199 were resolved without police dispatch, most after a single live voice warning.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-9023\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"4\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-9023\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><h3 class=\"e-n-accordion-item-title-text\"> What types of properties and businesses does Sirix protect? <\/h3><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 18.0334L20.9333 13.6868C20.42 13.1734 19.58 13.1734 19.0666 13.6868L14.72 18.0334\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 13.9668L20.9333 18.3135C20.42 18.8268 19.58 18.8268 19.0666 18.3135L14.72 13.9668\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-9023\" class=\"elementor-element elementor-element-2f119cfd e-con-full e-flex e-con e-child\" data-id=\"2f119cfd\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4f379a5f elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"4f379a5f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Sirix supports a wide range of environments, including:<\/p><ul><li><a href=\"https:\/\/sirixmonitoring.com\/construction-site-security\/\">construction sites<\/a><\/li><li><a href=\"https:\/\/sirixmonitoring.com\/automotive-dealership-security\/\">car dealerships<\/a><\/li><li><a href=\"https:\/\/sirixmonitoring.com\/multi-family-residential-security\/\">condos and multifamily buildings<\/a><\/li><li><a href=\"https:\/\/sirixmonitoring.com\/retail-security\/\">retail stores<\/a>\u00a0and\u00a0<a href=\"https:\/\/sirixmonitoring.com\/shopping-center-security\/\">shopping centers<\/a><\/li><li><a href=\"https:\/\/sirixmonitoring.com\/jewelry-store-security\/\">jewellery stores<\/a><\/li><li><a href=\"https:\/\/sirixmonitoring.com\/self-storage-security\/\">self storage facilities<\/a><\/li><li>schools and campuses<\/li><li><a href=\"https:\/\/sirixmonitoring.com\/truck-yard-security\/\">truck yards<\/a>\u00a0and logistics facilities<\/li><li><a href=\"https:\/\/sirixmonitoring.com\/parking-lot-security\/\">parking lots<\/a>\u00a0and garages<\/li><li><a href=\"https:\/\/sirixmonitoring.com\/commercial-building-security\/\">offices and commercial buildings<\/a><\/li><li>public markets<\/li><li><a href=\"https:\/\/sirixmonitoring.com\/case-studies\/ev-charging-station-monitoring\/\">EV charging stations<\/a><\/li><li>banks and financial institutions<\/li><li><a href=\"https:\/\/sirixmonitoring.com\/autonomous-gas-station\/\">gas stations<\/a><\/li><li>industrial and high risk environments<\/li><\/ul><p><br \/>Our solutions are adapted based on the risks, operations, and daily realities of each environment.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-9024\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"5\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-9024\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><h3 class=\"e-n-accordion-item-title-text\"> Is live video monitoring better than traditional alarm systems? <\/h3><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 18.0334L20.9333 13.6868C20.42 13.1734 19.58 13.1734 19.0666 13.6868L14.72 18.0334\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 13.9668L20.9333 18.3135C20.42 18.8268 19.58 18.8268 19.0666 18.3135L14.72 13.9668\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-9024\" class=\"elementor-element elementor-element-5c6dca90 e-con-full e-flex e-con e-child\" data-id=\"5c6dca90\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6b0d8235 elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"6b0d8235\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Traditional alarm systems usually generate alerts after an event occurs. Live video monitoring adds live verification and real time human response.<\/p><p>By seeing what is actually happening, Sirix operators can respond faster, reduce false alarms, provide better information to emergency responders, and intervene before situations escalate.<\/p><p>This approach helps businesses move from reactive security to proactive protection.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-9025\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"6\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-9025\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><h3 class=\"e-n-accordion-item-title-text\"> Does Sirix only monitor after hours? <\/h3><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 18.0334L20.9333 13.6868C20.42 13.1734 19.58 13.1734 19.0666 13.6868L14.72 18.0334\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 13.9668L20.9333 18.3135C20.42 18.8268 19.58 18.8268 19.0666 18.3135L14.72 13.9668\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-9025\" class=\"elementor-element elementor-element-51277ca2 e-con-full e-flex e-con e-child\" data-id=\"51277ca2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5b0b4e7b elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"5b0b4e7b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>No,<\/strong>\u00a0Sirix solutions can protect sites both during and after business hours.<\/p><p>Some services focus on after hours intrusion detection, while others such as\u00a0<a href=\"https:\/\/sirixmonitoring.com\/continuous-monitoring\/\">continuous monitoring<\/a>, intercom response, and safety monitoring support active environments during the day as well.<\/p><p>Monitoring strategies are customized based on each site\u2019s operations, risk level, and security goals.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-9026\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"7\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-9026\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><h3 class=\"e-n-accordion-item-title-text\"> What types of security threats is live video monitoring best suited for? <\/h3><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 18.0334L20.9333 13.6868C20.42 13.1734 19.58 13.1734 19.0666 13.6868L14.72 18.0334\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 13.9668L20.9333 18.3135C20.42 18.8268 19.58 18.8268 19.0666 18.3135L14.72 13.9668\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-9026\" class=\"elementor-element elementor-element-5f9ad190 e-con-full e-flex e-con e-child\" data-id=\"5f9ad190\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-106f3756 elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"106f3756\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Live video monitoring is especially effective against:<\/p><ul><li>break ins and intrusions<\/li><li>vandalism<\/li><li>loitering<\/li><li>trespassing<\/li><li>theft<\/li><li>unauthorized access<\/li><li>suspicious activity around buildings or assets<\/li><li>safety incidents<\/li><li>after hours activity on restricted sites<\/li><\/ul><p><br \/>Because incidents are reviewed in real time by trained operators, businesses can respond faster and often prevent situations from escalating.<\/p><p>This makes remote video monitoring particularly valuable for properties that require rapid response, visibility, and proactive intervention.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-9027\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"8\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-9027\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><h3 class=\"e-n-accordion-item-title-text\"> For active or high security sites, what solution does Sirix offer? <\/h3><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 18.0334L20.9333 13.6868C20.42 13.1734 19.58 13.1734 19.0666 13.6868L14.72 18.0334\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"40\" height=\"32\" viewBox=\"0 0 40 32\" fill=\"none\"><path d=\"M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V24C40 28.4183 36.4183 32 32 32H8C3.58172 32 0 28.4183 0 24V8Z\" fill=\"#1A1A1A\"><\/path><path d=\"M25.28 13.9668L20.9333 18.3135C20.42 18.8268 19.58 18.8268 19.0666 18.3135L14.72 13.9668\" stroke=\"#FCFCFC\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-9027\" class=\"elementor-element elementor-element-3c26c630 e-con-full e-flex e-con e-child\" data-id=\"3c26c630\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-11d15ecc elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"11d15ecc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>For active, complex, or higher risk environments, Sirix offers\u00a0<a href=\"https:\/\/sirixmonitoring.com\/continuous-monitoring\/\">Continuous Monitoring<\/a>.<\/p><p>Unlike traditional event based monitoring, Continuous Monitoring assigns dedicated operators to actively watch live camera feeds for specific sites or environments.<\/p><p>Operators monitor a limited number of screens at a time, with a maximum target of 48 cameras per operator, allowing for greater attention, familiarity with the site, and stronger situational awareness.<\/p><p>AI alerts continue to support operators in the background, helping identify important events faster while human judgment remains central to decision making.<\/p><p>Continuous Monitoring is commonly used for environments where activity is constant, human behavior is complex, or rapid intervention is critical.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<script type=\"application\/ld+json\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@type\":\"FAQPage\",\"mainEntity\":[{\"@type\":\"Question\",\"name\":\"What is live video monitoring?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Live video monitoring is a security service where trained operators watch real-time alerts from cameras, sensors, and AI detection systems.When suspicious activity is verified, operators follow your site procedures, issue voice warnings, contact keyholders, or dispatch the appropriate response.\"}},{\"@type\":\"Question\",\"name\":\"Can Sirix work with my existing cameras and security systems?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Yes, Sirix integrates with over 500 camera brands, VMS platforms, cloud systems, and security technologies.In most cases, there is no need to replace your current equipment. Our team evaluates your existing setup and recommends the best way to integrate live monitoring and response into your environment.This allows businesses to strengthen security operations while continuing to use the systems they already rely on.\"}},{\"@type\":\"Question\",\"name\":\"What happens when an incident is detected?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"When an incident is detected, Sirix operators immediately review the live video to verify what is happening.One of the first steps is to quickly review the site details and follow the tailored step by step response procedure established for that specific location and situation.Depending on the event, operators can:issue\\u00a0live voice warnings\\u00a0through onsite speakerscontact employees or keyholdersdispatch guardsescalate to police or emergency servicesdocument the incident and provide reportsEvery response follows the site\\u2019s specific security procedures and escalation protocols.In a reviewed sample of 200 verified intrusion events across 60 monitored client sites between July 2023 and June 2026, 199 were resolved without police dispatch, most after a single live voice warning.\"}},{\"@type\":\"Question\",\"name\":\"What types of properties and businesses does Sirix protect?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Sirix supports a wide range of environments, including:construction sitescar dealershipscondos and multifamily buildingsretail stores\\u00a0and\\u00a0shopping centersjewellery storesself storage facilitiesschools and campusestruck yards\\u00a0and logistics facilitiesparking lots\\u00a0and garagesoffices and commercial buildingspublic marketsEV charging stationsbanks and financial institutionsgas stationsindustrial and high risk environmentsOur solutions are adapted based on the risks, operations, and daily realities of each environment.\"}},{\"@type\":\"Question\",\"name\":\"Is live video monitoring better than traditional alarm systems?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Traditional alarm systems usually generate alerts after an event occurs. Live video monitoring adds live verification and real time human response.By seeing what is actually happening, Sirix operators can respond faster, reduce false alarms, provide better information to emergency responders, and intervene before situations escalate.This approach helps businesses move from reactive security to proactive protection.\"}},{\"@type\":\"Question\",\"name\":\"Does Sirix only monitor after hours?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"No,\\u00a0Sirix solutions can protect sites both during and after business hours.Some services focus on after hours intrusion detection, while others such as\\u00a0continuous monitoring, intercom response, and safety monitoring support active environments during the day as well.Monitoring strategies are customized based on each site\\u2019s operations, risk level, and security goals.\"}},{\"@type\":\"Question\",\"name\":\"What types of security threats is live video monitoring best suited for?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Live video monitoring is especially effective against:break ins and intrusionsvandalismloiteringtrespassingtheftunauthorized accesssuspicious activity around buildings or assetssafety incidentsafter hours activity on restricted sitesBecause incidents are reviewed in real time by trained operators, businesses can respond faster and often prevent situations from escalating.This makes remote video monitoring particularly valuable for properties that require rapid response, visibility, and proactive intervention.\"}},{\"@type\":\"Question\",\"name\":\"For active or high security sites, what solution does Sirix offer?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"For active, complex, or higher risk environments, Sirix offers\\u00a0Continuous Monitoring.Unlike traditional event based monitoring, Continuous Monitoring assigns dedicated operators to actively watch live camera feeds for specific sites or environments.Operators monitor a limited number of screens at a time, with a maximum target of 48 cameras per operator, allowing for greater attention, familiarity with the site, and stronger situational awareness.AI alerts continue to support operators in the background, helping identify important events faster while human judgment remains central to decision making.Continuous Monitoring is commonly used for environments where activity is constant, human behavior is complex, or rapid intervention is critical.\"}}]}<\/script>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-17864a6f e-flex e-con-boxed e-con e-parent\" data-id=\"17864a6f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-5262e989 e-con-full e-flex e-con e-child\" data-id=\"5262e989\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7e1fc0c9 elementor-widget-mobile__width-inherit elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"7e1fc0c9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Be the reason nothing happened.\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4ddb5a30 elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"4ddb5a30\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Sirix detects, verifies, and responds before damage escalates.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3a9c5025 e-con-full e-flex e-con e-child\" data-id=\"3a9c5025\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-381e183e elementor-tablet-align-center elementor-mobile-align-center elementor-align-justify elementor-widget elementor-widget-button\" data-id=\"381e183e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-md\" href=\"https:\/\/sirixmonitoring.com\/contact\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Get your site assessed now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-59a9f3e9 e-con-full e-flex e-con e-child\" data-id=\"59a9f3e9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1fc78f5c elementor-tablet-align-center elementor-mobile-align-center elementor-align-justify elementor-widget elementor-widget-button\" data-id=\"1fc78f5c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-md\" href=\"https:\/\/sirixmonitoring.com\/security-cost-calculator\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Get an instant estimate<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-68f33a0f elementor-widget elementor-widget-heading\" data-id=\"68f33a0f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">5 quick questions. No calls, no forms, no obligation.<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Live video monitoring. Powered by AI and human response. Sirix is a 24\/7 live video monitoring and site management command center. AI detection flags suspicious activity on your existing cameras, and trained operators verify every alert within seconds. When they confirm a threat, they respond with voice intervention and, if needed, police dispatch. The same [&hellip;]<\/p>\n","protected":false},"author":29,"featured_media":104829,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-103440","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"\n<title>24\/7 Live Video Monitoring | AI and Human | Sirix Monitoring<\/title>\n<meta name=\"description\" content=\"Sirix is a 24\/7 live video monitoring and site management command center. AI detection flags events on your existing cameras; live operators verify and respond in seconds.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/sirixmonitoring.com\/fr-ca\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"24\/7 Live Video Monitoring | AI and Human | Sirix Monitoring\" \/>\n<meta property=\"og:description\" content=\"Sirix is a 24\/7 live video monitoring and site management command center. AI detection flags events on your existing cameras; live operators verify and respond in seconds.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sirixmonitoring.com\/fr-ca\/\" \/>\n<meta property=\"og:site_name\" content=\"Sirix Monitoring\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/sirixmonitoring\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-24T12:15:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/08\/sirix-logo-for-social-post.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1731\" \/>\n\t<meta property=\"og:image:height\" content=\"909\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"24\/7 Live Video Monitoring | AI and Human | Sirix Monitoring\" \/>\n<meta name=\"twitter:description\" content=\"Sirix is a 24\/7 remote video monitoring and site management command center. AI detection flags events on your existing cameras; live operators verify and respond in seconds.\" \/>\n","yoast_head_json":{"title":"Surveillance vid\u00e9o en direct 24 h\/24, 7 j\/7 | IA et intervention humaine | Sirix Monitoring","description":"Sirix est un centre de commande assurant une surveillance vid\u00e9o en direct et la gestion des sites 24 heures sur 24, 7 jours sur 7. La d\u00e9tection par IA signale les \u00e9v\u00e9nements capt\u00e9s par vos cam\u00e9ras existantes ; des op\u00e9rateurs v\u00e9rifient les informations en temps r\u00e9el et interviennent en quelques secondes.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/sirixmonitoring.com\/fr-ca\/","og_locale":"fr_CA","og_type":"article","og_title":"24\/7 Live Video Monitoring | AI and Human | Sirix Monitoring","og_description":"Sirix is a 24\/7 live video monitoring and site management command center. AI detection flags events on your existing cameras; live operators verify and respond in seconds.","og_url":"https:\/\/sirixmonitoring.com\/fr-ca\/","og_site_name":"Sirix Monitoring","article_publisher":"https:\/\/www.facebook.com\/sirixmonitoring","article_modified_time":"2026-08-24T12:15:16+00:00","og_image":[{"width":1731,"height":909,"url":"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/08\/sirix-logo-for-social-post.webp","type":"image\/webp"}],"twitter_card":"summary_large_image","twitter_title":"24\/7 Live Video Monitoring | AI and Human | Sirix Monitoring","twitter_description":"Sirix is a 24\/7 remote video monitoring and site management command center. AI detection flags events on your existing cameras; live operators verify and respond in seconds.","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/sirixmonitoring.com\/","url":"https:\/\/sirixmonitoring.com\/","name":"Surveillance vid\u00e9o en direct 24 h\/24, 7 j\/7 | IA et intervention humaine | Sirix Monitoring","isPartOf":{"@id":"https:\/\/sirixmonitoring.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sirixmonitoring.com\/#primaryimage"},"image":{"@id":"https:\/\/sirixmonitoring.com\/#primaryimage"},"thumbnailUrl":"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/08\/sirix-logo-for-social-post.webp","datePublished":"2026-07-10T17:20:20+00:00","dateModified":"2026-08-24T12:15:16+00:00","description":"Sirix est un centre de commande assurant une surveillance vid\u00e9o en direct et la gestion des sites 24 heures sur 24, 7 jours sur 7. La d\u00e9tection par IA signale les \u00e9v\u00e9nements capt\u00e9s par vos cam\u00e9ras existantes ; des op\u00e9rateurs v\u00e9rifient les informations en temps r\u00e9el et interviennent en quelques secondes.","breadcrumb":{"@id":"https:\/\/sirixmonitoring.com\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sirixmonitoring.com\/"]}]},{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/sirixmonitoring.com\/#primaryimage","url":"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/08\/sirix-logo-for-social-post.webp","contentUrl":"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2026\/08\/sirix-logo-for-social-post.webp","width":1731,"height":909,"caption":"sirix logo for social post"},{"@type":"BreadcrumbList","@id":"https:\/\/sirixmonitoring.com\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sirixmonitoring.com\/"},{"@type":"ListItem","position":2,"name":"Live video monitoring"}]},{"@type":"WebSite","@id":"https:\/\/sirixmonitoring.com\/#website","url":"https:\/\/sirixmonitoring.com\/","name":"Sirix","description":"Services et solutions de s\u00e9curit\u00e9 pour les entreprises","publisher":{"@id":"https:\/\/sirixmonitoring.com\/#organization"},"alternateName":"Sirix Monitoring","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sirixmonitoring.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/sirixmonitoring.com\/#organization","name":"Sirix","alternateName":"Sirix Monitoring","url":"https:\/\/sirixmonitoring.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/sirixmonitoring.com\/#\/schema\/logo\/image\/","url":"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/05\/sirix-logo-1.png","contentUrl":"https:\/\/sirixmonitoring.com\/wp-content\/uploads\/2023\/05\/sirix-logo-1.png","width":711,"height":277,"caption":"Sirix"},"image":{"@id":"https:\/\/sirixmonitoring.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/sirixmonitoring","https:\/\/mastodon.social\/@sirixmonitoringofficial","https:\/\/www.linkedin.com\/company\/sirix\/","https:\/\/www.youtube.com\/@sirix_monitoring\/videos"],"description":"Sirix Monitoring est le prestataire de r\u00e9f\u00e9rence en Am\u00e9rique du Nord pour les services de vid\u00e9osurveillance \u00e0 distance en direct 24 h\/24 et 7 j\/7, au service des entreprises aux \u00c9tats-Unis et au Canada. Nous combinons une technologie de d\u00e9tection bas\u00e9e sur l\u2019intelligence artificielle avec l\u2019intervention d\u2019op\u00e9rateurs humains professionnels dans notre centre de contr\u00f4le afin d\u2019assurer une surveillance de s\u00e9curit\u00e9 en temps r\u00e9el et une intervention rapide en cas d\u2019incident. Nos services comprennent la surveillance vid\u00e9o \u00e0 distance, l'analyse vid\u00e9o dans le cloud, la v\u00e9rification vid\u00e9o des alarmes, les rondes de surveillance virtuelles, le contr\u00f4le d'acc\u00e8s, les interventions vocales, la surveillance des interphones d'urgence, la surveillance continue, et bien plus encore. Nous accompagnons un large \u00e9ventail de secteurs, notamment les concessionnaires automobiles, les chantiers de construction, les magasins de d\u00e9tail, les parkings, les parcs \u00e0 camions, les entreprises du secteur du cannabis, les entrep\u00f4ts en libre-service, les immeubles r\u00e9sidentiels collectifs et bien d\u2019autres encore. En tant que prestataire de services de s\u00e9curit\u00e9 enti\u00e8rement agr\u00e9\u00e9 (num\u00e9ro de licence BSP : SE 20030247), nous proposons \u00e9galement des solutions de surveillance en marque blanche aux entreprises de s\u00e9curit\u00e9 \u00e0 la recherche d\u2019un soutien technique fiable. Chez Sirix, la fiabilit\u00e9 est notre engagement fondamental.","legalName":"Sirix Monitoring","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"501","maxValue":"1000"}}]}},"_links":{"self":[{"href":"https:\/\/sirixmonitoring.com\/fr-ca\/wp-json\/wp\/v2\/pages\/103440","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sirixmonitoring.com\/fr-ca\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/sirixmonitoring.com\/fr-ca\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/sirixmonitoring.com\/fr-ca\/wp-json\/wp\/v2\/users\/29"}],"replies":[{"embeddable":true,"href":"https:\/\/sirixmonitoring.com\/fr-ca\/wp-json\/wp\/v2\/comments?post=103440"}],"version-history":[{"count":152,"href":"https:\/\/sirixmonitoring.com\/fr-ca\/wp-json\/wp\/v2\/pages\/103440\/revisions"}],"predecessor-version":[{"id":106680,"href":"https:\/\/sirixmonitoring.com\/fr-ca\/wp-json\/wp\/v2\/pages\/103440\/revisions\/106680"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/sirixmonitoring.com\/fr-ca\/wp-json\/wp\/v2\/media\/104829"}],"wp:attachment":[{"href":"https:\/\/sirixmonitoring.com\/fr-ca\/wp-json\/wp\/v2\/media?parent=103440"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}<!-- This website is optimized by Airlift. Learn more: https://airlift.net. Template:. Learn more: https://airlift.net. Template: 6a90695ddb888a4432103f5b. Config Timestamp: 2026-08-27 16:20:55 UTC, Cached Timestamp: 2026-09-06 06:13:41 UTC -->