{"id":67,"date":"2025-11-20T16:11:47","date_gmt":"2025-11-20T16:11:47","guid":{"rendered":"http:\/\/74.243.251.178\/?page_id=67"},"modified":"2026-06-04T10:36:14","modified_gmt":"2026-06-04T10:36:14","slug":"our-partners","status":"publish","type":"page","link":"http:\/\/13.204.248.34\/?page_id=67","title":{"rendered":"Our Partners"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"67\" class=\"elementor elementor-67\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-9b17337 elementor-section-full_width animated-network-bg elementor-section-height-default elementor-section-height-default\" data-id=\"9b17337\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-50852a0d\" data-id=\"50852a0d\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1083939 elementor-widget elementor-widget-html\" data-id=\"1083939\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<canvas class=\"circle-bg-canvas\"><\/canvas>\r\n\r\n<script>\r\n  (function () {\r\n    function initAnimatedNetworkBackground() {\r\n      var sections = document.querySelectorAll(\".animated-network-bg\");\r\n\r\n      sections.forEach(function (section) {\r\n        if (section.dataset.networkBgReady === \"true\") {\r\n          return;\r\n        }\r\n\r\n        section.dataset.networkBgReady = \"true\";\r\n\r\n        var canvas = section.querySelector(\".circle-bg-canvas\");\r\n\r\n        if (!canvas) {\r\n          canvas = document.createElement(\"canvas\");\r\n          canvas.className = \"circle-bg-canvas\";\r\n          section.insertBefore(canvas, section.firstChild);\r\n        }\r\n\r\n        var ctx = canvas.getContext(\"2d\");\r\n        var particles = [];\r\n        var particleCount = 72;\r\n        var maxDistance = 135;\r\n        var mouseDistance = 180;\r\n        var mouse = {\r\n          x: null,\r\n          y: null,\r\n          active: false\r\n        };\r\n\r\n        function resizeCanvas() {\r\n          var rect = section.getBoundingClientRect();\r\n          var dpr = window.devicePixelRatio || 1;\r\n\r\n          canvas.width = rect.width * dpr;\r\n          canvas.height = rect.height * dpr;\r\n          canvas.style.width = rect.width + \"px\";\r\n          canvas.style.height = rect.height + \"px\";\r\n\r\n          ctx.setTransform(dpr, 0, 0, dpr, 0, 0);\r\n        }\r\n\r\n        function createParticles() {\r\n          particles = [];\r\n\r\n          var rect = section.getBoundingClientRect();\r\n\r\n          for (var i = 0; i < particleCount; i++) {\r\n            particles.push({\r\n              x: Math.random() * rect.width,\r\n              y: Math.random() * rect.height,\r\n              vx: (Math.random() - 0.5) * 0.35,\r\n              vy: (Math.random() - 0.5) * 0.35,\r\n              radius: Math.random() * 1.6 + 0.8\r\n            });\r\n          }\r\n        }\r\n\r\n        function drawDot(particle) {\r\n          ctx.beginPath();\r\n          ctx.arc(particle.x, particle.y, particle.radius, 0, Math.PI * 2);\r\n          ctx.fillStyle = \"rgba(141, 74, 254, 0.55)\";\r\n          ctx.fill();\r\n        }\r\n\r\n        function drawLine(x1, y1, x2, y2, opacity) {\r\n          var gradient = ctx.createLinearGradient(x1, y1, x2, y2);\r\n\r\n          gradient.addColorStop(0, \"rgba(87, 112, 245, \" + opacity + \")\");\r\n          gradient.addColorStop(0.5, \"rgba(141, 74, 254, \" + opacity + \")\");\r\n          gradient.addColorStop(1, \"rgba(239, 93, 168, \" + opacity + \")\");\r\n\r\n          ctx.beginPath();\r\n          ctx.moveTo(x1, y1);\r\n          ctx.lineTo(x2, y2);\r\n          ctx.strokeStyle = gradient;\r\n          ctx.lineWidth = 1;\r\n          ctx.stroke();\r\n        }\r\n\r\n        function updateParticles() {\r\n          var rect = section.getBoundingClientRect();\r\n\r\n          particles.forEach(function (particle) {\r\n            particle.x += particle.vx;\r\n            particle.y += particle.vy;\r\n\r\n            if (particle.x <= 0 || particle.x >= rect.width) {\r\n              particle.vx *= -1;\r\n            }\r\n\r\n            if (particle.y <= 0 || particle.y >= rect.height) {\r\n              particle.vy *= -1;\r\n            }\r\n          });\r\n        }\r\n\r\n        function connectParticles() {\r\n          for (var i = 0; i < particles.length; i++) {\r\n            for (var j = i + 1; j < particles.length; j++) {\r\n              var dx = particles[i].x - particles[j].x;\r\n              var dy = particles[i].y - particles[j].y;\r\n              var distance = Math.sqrt(dx * dx + dy * dy);\r\n\r\n              if (distance < maxDistance) {\r\n                var opacity = (1 - distance \/ maxDistance) * 0.12;\r\n\r\n                drawLine(\r\n                  particles[i].x,\r\n                  particles[i].y,\r\n                  particles[j].x,\r\n                  particles[j].y,\r\n                  opacity\r\n                );\r\n              }\r\n            }\r\n          }\r\n        }\r\n\r\n        function connectMouse() {\r\n          if (!mouse.active || mouse.x === null || mouse.y === null) {\r\n            return;\r\n          }\r\n\r\n          particles.forEach(function (particle) {\r\n            var dx = particle.x - mouse.x;\r\n            var dy = particle.y - mouse.y;\r\n            var distance = Math.sqrt(dx * dx + dy * dy);\r\n\r\n            if (distance < mouseDistance) {\r\n              var opacity = (1 - distance \/ mouseDistance) * 0.35;\r\n\r\n              drawLine(mouse.x, mouse.y, particle.x, particle.y, opacity);\r\n            }\r\n          });\r\n\r\n          ctx.beginPath();\r\n          ctx.arc(mouse.x, mouse.y, 3, 0, Math.PI * 2);\r\n          ctx.fillStyle = \"rgba(239, 93, 168, 0.7)\";\r\n          ctx.fill();\r\n        }\r\n\r\n        function animate() {\r\n          var rect = section.getBoundingClientRect();\r\n\r\n          ctx.clearRect(0, 0, rect.width, rect.height);\r\n\r\n          updateParticles();\r\n          connectParticles();\r\n          connectMouse();\r\n\r\n          particles.forEach(drawDot);\r\n\r\n          requestAnimationFrame(animate);\r\n        }\r\n\r\n        section.addEventListener(\"mousemove\", function (event) {\r\n          var rect = section.getBoundingClientRect();\r\n\r\n          mouse.x = event.clientX - rect.left;\r\n          mouse.y = event.clientY - rect.top;\r\n          mouse.active = true;\r\n        });\r\n\r\n        section.addEventListener(\"mouseleave\", function () {\r\n          mouse.active = false;\r\n          mouse.x = null;\r\n          mouse.y = null;\r\n        });\r\n\r\n        window.addEventListener(\"resize\", function () {\r\n          resizeCanvas();\r\n          createParticles();\r\n        });\r\n\r\n        resizeCanvas();\r\n        createParticles();\r\n        animate();\r\n      });\r\n    }\r\n\r\n    if (document.readyState === \"loading\") {\r\n      document.addEventListener(\"DOMContentLoaded\", initAnimatedNetworkBackground);\r\n    } else {\r\n      initAnimatedNetworkBackground();\r\n    }\r\n\r\n    if (window.elementorFrontend && window.elementorFrontend.hooks) {\r\n      window.elementorFrontend.hooks.addAction(\r\n        \"frontend\/element_ready\/global\",\r\n        initAnimatedNetworkBackground\r\n      );\r\n    }\r\n  })();\r\n<\/script>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-386ff515 elementor-section-full_width elementor-reverse-mobile elementor-section-height-default elementor-section-height-default\" data-id=\"386ff515\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-1245810c\" data-id=\"1245810c\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b87de5c elementor-widget elementor-widget-heading\" data-id=\"b87de5c\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><span class=\"a_GcMg font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\" style=\"--Ys-XuQ: none\">Our Trusted Technology Partners<\/span><\/h2>\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<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-53c28e9 elementor-section-full_width offer-section elementor-section-height-default elementor-section-height-default\" data-id=\"53c28e9\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-77e0d6b\" data-id=\"77e0d6b\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-59d6b9d elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"59d6b9d\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-7426cdd\" data-id=\"7426cdd\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6437513 elementor-widget elementor-widget-gallery\" data-id=\"6437513\" data-element_type=\"widget\" data-settings=\"{&quot;gallery_layout&quot;:&quot;justified&quot;,&quot;ideal_row_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:92,&quot;sizes&quot;:[]},&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:30,&quot;sizes&quot;:[]},&quot;ideal_row_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:17,&quot;sizes&quot;:[]},&quot;lazyload&quot;:&quot;yes&quot;,&quot;ideal_row_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;link_to&quot;:&quot;file&quot;,&quot;content_hover_animation&quot;:&quot;fade-in&quot;}\" data-widget_type=\"gallery.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-gallery__container\">\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/01\/Untitled-design-2026-01-03T121813.442.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/01\/Untitled-design-2026-01-03T121813.442.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/1-2.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/1-2.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/2-2.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/2-2.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/3-2.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/3-2.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/4-2.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/4-2.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/5-2.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/5-2.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/6-2.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/6-2.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/7-1.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/7-1.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/8.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/8.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/9.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/9.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/10.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/10.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/11.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/11.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/12.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/12.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/14.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/14.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/15.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/15.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/17.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/17.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/18.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/18.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/19.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/19.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/20.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/20.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/21.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/11\/21.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/24.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/24.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/25.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/25.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/30.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/30.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/31.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/31.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/32.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/32.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/33.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/33.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/35.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/35.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/36.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/36.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/38.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/38.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/41.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/41.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/42.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/42.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/43.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/43.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/44.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/44.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/45.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/45.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/46.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/46.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/48.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/48.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/49.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2025\/12\/49.png\" data-width=\"248\" data-height=\"128\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/01\/53.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/01\/53.png\" data-width=\"206\" data-height=\"106\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160219.388.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160219.388.png\" data-width=\"165\" data-height=\"85\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160208.900.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160208.900.png\" data-width=\"165\" data-height=\"85\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160153.456.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160153.456.png\" data-width=\"165\" data-height=\"85\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160144.545.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160144.545.png\" data-width=\"165\" data-height=\"85\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160131.415.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160131.415.png\" data-width=\"165\" data-height=\"85\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160105.385.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160105.385.png\" data-width=\"165\" data-height=\"85\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160044.168.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160044.168.png\" data-width=\"165\" data-height=\"85\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160029.881.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160029.881.png\" data-width=\"165\" data-height=\"85\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160010.183.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T160010.183.png\" data-width=\"165\" data-height=\"85\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T155948.095.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T155948.095.png\" data-width=\"165\" data-height=\"85\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T155925.340.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T155925.340.png\" data-width=\"165\" data-height=\"85\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T155909.164.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T155909.164.png\" data-width=\"165\" data-height=\"85\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T155852.388.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T155852.388.png\" data-width=\"165\" data-height=\"85\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T155836.670.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T155836.670.png\" data-width=\"165\" data-height=\"85\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T155811.955.png\" data-elementor-open-lightbox=\"no\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/13.204.248.34\/wp-content\/uploads\/2026\/06\/Untitled-design-2026-06-04T155811.955.png\" data-width=\"165\" data-height=\"85\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/div>\n\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<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Our Trusted Technology Partners<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_canvas","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-67","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"http:\/\/13.204.248.34\/index.php?rest_route=\/wp\/v2\/pages\/67","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/13.204.248.34\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"http:\/\/13.204.248.34\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"http:\/\/13.204.248.34\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/13.204.248.34\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=67"}],"version-history":[{"count":80,"href":"http:\/\/13.204.248.34\/index.php?rest_route=\/wp\/v2\/pages\/67\/revisions"}],"predecessor-version":[{"id":3318,"href":"http:\/\/13.204.248.34\/index.php?rest_route=\/wp\/v2\/pages\/67\/revisions\/3318"}],"wp:attachment":[{"href":"http:\/\/13.204.248.34\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=67"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}