{"id":24424,"date":"2025-05-23T09:13:07","date_gmt":"2025-05-23T08:13:07","guid":{"rendered":"https:\/\/www.eninter.com\/home-test-2025\/"},"modified":"2025-08-07T10:47:52","modified_gmt":"2025-08-07T09:47:52","slug":"home-2025-2","status":"publish","type":"page","link":"https:\/\/www.eninter.com\/ca\/home-2025-2\/","title":{"rendered":"Home Test 2025"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"24424\" class=\"elementor elementor-24424\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cda861d e-flex e-con-boxed e-con e-parent\" data-id=\"cda861d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/www.eninter.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Eninter_Home_Mayo_25_1_1.mp4&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-background-video-container elementor-hidden-mobile\">\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><div class=\"elementor-element elementor-element-951ce5f e-con-full e-flex e-con e-child\" data-id=\"951ce5f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d74c40e elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-html\" data-id=\"d74c40e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>document.addEventListener(\"DOMContentLoaded\", function () {\n    gsap.registerPlugin(CustomEase);\n\n    \/\/ Curva personalizada: empieza r\u00e1pido y desacelera\n    CustomEase.create(\"custom\", \"M0,0,C0.85,0,0.9,0.3,1,1\");\n\n    function animarFondo() {\n      \/\/ Paso 1: mover hacia la izquierda (de x: 0 a x: -1000)\n      gsap.to(\".fondo-animado\", {\n        duration: 1,\n        x: -1000,\n        ease: \"custom\",\n        onComplete: () => {\n          \/\/ Paso 2: volver r\u00e1pidamente a la derecha\n          gsap.to(\".fondo-animado\", {\n            duration: 0.3,\n            x: 300,\n            ease: \"power1.in\",\n            onComplete: () => {\n              \/\/ Paso 3: esperar\n              setTimeout(animarFondo, 2500);\n            }\n          });\n        }\n      });\n    }\n\n    \/\/ Posici\u00f3n inicial\n    gsap.set(\".fondo-animado\", { x: 300 });\n\n    \/\/ Lanzar la animaci\u00f3n\n    animarFondo();\n  });\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-66a0c89 elementor-widget elementor-widget-shortcode\" data-id=\"66a0c89\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">\n  <style>\n    .typed-title {\n      font-weight: bold;\n      color: #222;\n      text-align: left;\n      height: 15em;\n      overflow: hidden;\n    }\n\n    .typed-title h1 {\n      line-height: 1em;\n      font-size: 64px;\n      font-family: Poppins, sans-serif;\n    }\n\n    @media (max-width: 768px) {\n      .typed-title {\n        height: 17em;\n      }\n\n      .typed-title h1 {\n        line-height: 1em;\n        font-size: 48px;\n      }\n    }\n  <\/style>\n\n  <div class=\"typed-title\">\n    <h1 id=\"scramble-text\"><\/h1>\n  <\/div>\n\n  <script>\n    document.addEventListener(\"DOMContentLoaded\", function () {\n      const phrases = [\"Realitzem manteniment d'ascensors multimarca\",\"Manteniment d' ascensors\",\"Reparaci\\u00f3 d' ascensors\"];\n      const chars = \"\u2227v\";\n      const el = document.getElementById(\"scramble-text\");\n      if (!el) return;\n\n      function scrambleText(text, callback) {\n        const words = text.split(' ');\n        const normalPart = words.slice(0, words.length - 1).join(' ');\n        const scramblePart = words[words.length - 1];\n\n        let frame = 0;\n        const totalFramesPerChar = 50;\n        const queueNormal = normalPart.split('').map((char, i) => ({\n          to: char,\n          start: i * 2,\n          end: i * 2 + totalFramesPerChar\n        }));\n        const queueScramble = scramblePart.split('').map((char, i) => ({\n          to: char,\n          start: i * 2,\n          end: i * 2 + totalFramesPerChar\n        }));\n\n        function update() {\n          let output = '';\n          let completeNormal = 0;\n          for (let i = 0; i < queueNormal.length; i++) {\n            const { to, start, end } = queueNormal[i];\n            if (frame >= end) {\n              completeNormal++;\n              output += to;\n            } else if (frame >= start) {\n              output += to;\n            } else {\n              output += ' ';\n            }\n          }\n\n          output += ' ';\n\n          let completeScramble = 0;\n          for (let i = 0; i < queueScramble.length; i++) {\n            const { to, start, end } = queueScramble[i];\n            if (frame >= end) {\n              completeScramble++;\n              output += to;\n            } else if (frame >= start) {\n              output += chars[Math.floor(Math.random() * chars.length)];\n            } else {\n              output += ' ';\n            }\n          }\n\n          el.textContent = output;\n\n          if (completeNormal < queueNormal.length || completeScramble < queueScramble.length) {\n            requestAnimationFrame(update);\n            frame++;\n          } else {\n            if (typeof callback === 'function') {\n              setTimeout(callback, 1500);\n            }\n          }\n        }\n\n        update();\n      }\n\n      let index = 0;\n      function loopScramble() {\n        scrambleText(phrases[index], () => {\n          index = (index + 1) % phrases.length;\n          loopScramble();\n        });\n      }\n\n      loopScramble();\n    });\n  <\/script>\n\n  \n<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6b3b779 e-con-full e-flex e-con e-child\" data-id=\"6b3b779\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ba6025c elementor-align-center btn-verde-lleno elementor-widget elementor-widget-button\" data-id=\"ba6025c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.eninter.com\/ca\/pressupost-personalitzat\/\">\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\">Pressupost urgent<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f8e4461 elementor-align-center btn-claro elementor-widget elementor-widget-button\" data-id=\"f8e4461\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#servicios\">\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\">Veure serveis<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\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-57f3b52 e-con-full fondo-animado e-flex e-con e-child\" data-id=\"57f3b52\" 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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a193149 e-grid e-con-full e-con e-child\" data-id=\"a193149\" 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-51e9fc3 e-con-full e-flex e-con e-child\" data-id=\"51e9fc3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-807ab70 elementor-widget elementor-widget-counter\" data-id=\"807ab70\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\">+<\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"500\" data-to-value=\"50\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-144b758 elementor-widget elementor-widget-text-editor\" data-id=\"144b758\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>ANYS D&#8217;EXPERI\u00c8NCIA<\/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-190da28 e-con-full e-flex e-con e-child\" data-id=\"190da28\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4a9d1d7 elementor-widget elementor-widget-counter\" data-id=\"4a9d1d7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\">+<\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"500\" data-to-value=\"59000\" data-from-value=\"0\" data-delimiter=\".\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-78e6c5d elementor-widget elementor-widget-text-editor\" data-id=\"78e6c5d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>INSTAL\u00b7LACIONS EN MANTENIMENT<\/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-70232d0 e-con-full e-flex e-con e-child\" data-id=\"70232d0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e43cc8d elementor-widget elementor-widget-counter\" data-id=\"e43cc8d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\">+<\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"500\" data-to-value=\"1000\" data-from-value=\"0\" data-delimiter=\".\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f791bcf elementor-widget elementor-widget-text-editor\" data-id=\"f791bcf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>PROFESSIONALS<\/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-f25549c e-con-full e-flex e-con e-parent\" data-id=\"f25549c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-94a14bd e-con-full e-flex e-con e-child\" data-id=\"94a14bd\" 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<div class=\"elementor-element elementor-element-c312e26 e-con-full e-flex e-con e-child\" data-id=\"c312e26\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3d1cdb2 elementor-widget elementor-widget-heading\" data-id=\"3d1cdb2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Som ENINTER\nPuges?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c07823d elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"c07823d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\tM\u00e9s de 50 anys com a empresa l\u00edder prestant serveis de manteniment d\u2019ascensors multimarca per a comunitats de ve\u00efns, habitatges i edificis p\u00fablics.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6c5200f elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"6c5200f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\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\" width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\"><path d=\"M12.5 0C5.6 0 0 5.6 0 12.5C0 19.4 5.6 25 12.5 25C19.4 25 25 19.4 25 12.5C25 5.6 19.4 0 12.5 0ZM12.5 22.5C6.9875 22.5 2.5 18.0125 2.5 12.5C2.5 6.9875 6.9875 2.5 12.5 2.5C18.0125 2.5 22.5 6.9875 22.5 12.5C22.5 18.0125 18.0125 22.5 12.5 22.5ZM18.2375 6.975L10 15.2125L6.7625 11.9875L5 13.75L10 18.75L20 8.75L18.2375 6.975Z\" fill=\"#389506\"><\/path><\/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\">50 a\u00f1os de experiencia en ascensores de todas las marcas. <\/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\" width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\"><path d=\"M12.5 0C5.6 0 0 5.6 0 12.5C0 19.4 5.6 25 12.5 25C19.4 25 25 19.4 25 12.5C25 5.6 19.4 0 12.5 0ZM12.5 22.5C6.9875 22.5 2.5 18.0125 2.5 12.5C2.5 6.9875 6.9875 2.5 12.5 2.5C18.0125 2.5 22.5 6.9875 22.5 12.5C22.5 18.0125 18.0125 22.5 12.5 22.5ZM18.2375 6.975L10 15.2125L6.7625 11.9875L5 13.75L10 18.75L20 8.75L18.2375 6.975Z\" fill=\"#389506\"><\/path><\/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\">Servei r\u00e0pid i efica\u00e7, sense esperes innecess\u00e0ries<\/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\" width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\"><path d=\"M12.5 0C5.6 0 0 5.6 0 12.5C0 19.4 5.6 25 12.5 25C19.4 25 25 19.4 25 12.5C25 5.6 19.4 0 12.5 0ZM12.5 22.5C6.9875 22.5 2.5 18.0125 2.5 12.5C2.5 6.9875 6.9875 2.5 12.5 2.5C18.0125 2.5 22.5 6.9875 22.5 12.5C22.5 18.0125 18.0125 22.5 12.5 22.5ZM18.2375 6.975L10 15.2125L6.7625 11.9875L5 13.75L10 18.75L20 8.75L18.2375 6.975Z\" fill=\"#389506\"><\/path><\/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\">Preus competitius i solucions a mida.<\/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\" width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\"><path d=\"M12.5 0C5.6 0 0 5.6 0 12.5C0 19.4 5.6 25 12.5 25C19.4 25 25 19.4 25 12.5C25 5.6 19.4 0 12.5 0ZM12.5 22.5C6.9875 22.5 2.5 18.0125 2.5 12.5C2.5 6.9875 6.9875 2.5 12.5 2.5C18.0125 2.5 22.5 6.9875 22.5 12.5C22.5 18.0125 18.0125 22.5 12.5 22.5ZM18.2375 6.975L10 15.2125L6.7625 11.9875L5 13.75L10 18.75L20 8.75L18.2375 6.975Z\" fill=\"#389506\"><\/path><\/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\">Enginyers experts en efici\u00e8ncia, confort i seguretat.<\/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\" width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\"><path d=\"M12.5 0C5.6 0 0 5.6 0 12.5C0 19.4 5.6 25 12.5 25C19.4 25 25 19.4 25 12.5C25 5.6 19.4 0 12.5 0ZM12.5 22.5C6.9875 22.5 2.5 18.0125 2.5 12.5C2.5 6.9875 6.9875 2.5 12.5 2.5C18.0125 2.5 22.5 6.9875 22.5 12.5C22.5 18.0125 18.0125 22.5 12.5 22.5ZM18.2375 6.975L10 15.2125L6.7625 11.9875L5 13.75L10 18.75L20 8.75L18.2375 6.975Z\" fill=\"#389506\"><\/path><\/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\">Clients que repeteixen per la nostra confian\u00e7a i solidesa.<\/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 class=\"elementor-element elementor-element-6cfa210 elementor-align-center btn-verde-lleno elementor-widget elementor-widget-button\" data-id=\"6cfa210\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.eninter.com\/ca\/pressupost-personalitzat\/\">\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\">Podem ajudar-te<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\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-80f2bff e-flex e-con-boxed e-con e-parent\" data-id=\"80f2bff\" 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-548f402 e-con-full e-flex e-con e-child\" data-id=\"548f402\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ce23082 elementor-widget elementor-widget-heading\" data-id=\"ce23082\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Coneix Eninter<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8a9ec7d elementor-widget elementor-widget-text-editor\" data-id=\"8a9ec7d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Eninter Ascensors va n\u00e9ixer l\u2019any 1973 com una empresa especialitzada en el manteniment multimarca&nbsp; d\u2019ascensors. Des de llavors, ha evolucionat fins a convertir-se en un referent en <strong>solucions d\u2019accessibilitat i transport vertical<\/strong> <\/p>\n<p>Amb un centre tecnol\u00f2gic i productiu a Cornell\u00e0 de Llobregat, i una \u00e0mplia xarxa de delegacions arreu d\u2019Espanya i el sud d\u2019Europa, Eninter combina innovaci\u00f3 i proximitat per oferir un servei \u00e0gil, eficient i personalitzat.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d89ee3b e-con-full e-flex e-con e-child\" data-id=\"d89ee3b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3fa67ca elementor-align-left btn-verde elementor-widget elementor-widget-button\" data-id=\"3fa67ca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.eninter.com\/ca\/coneix-eninter\/\">\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\">M\u00e9s sobre nosaltres<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\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-28cf0a8 e-con-full e-flex e-con e-child\" data-id=\"28cf0a8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-25f32d4 elementor-widget elementor-widget-video\" data-id=\"25f32d4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/www.youtube.com\\\/watch?v=3lGu4ehhTPs&quot;,&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\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<\/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<div class=\"elementor-element elementor-element-8e1c8aa e-flex e-con-boxed e-con e-parent\" data-id=\"8e1c8aa\" 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-0661587 elementor-widget elementor-widget-menu-anchor\" data-id=\"0661587\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"menu-anchor.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-menu-anchor\" id=\"servicios\"><\/div>\n\t\t\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-12e5a24 e-flex e-con-boxed e-con e-parent\" data-id=\"12e5a24\" 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-e90e243 elementor-widget elementor-widget-heading\" data-id=\"e90e243\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Els nostres productes i serveis<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f2cfc8f elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"f2cfc8f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<div>Solucions personalitzades enfocades a optimitzar la teva experi\u00e8ncia de mobilitat. Ens adaptem a les teves necessitats amb innovaci\u00f3 i comprom\u00eds. <\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e4caae9 e-grid e-con-full e-con e-child\" data-id=\"e4caae9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-69cc900 e-con-full e-flex e-con e-child\" data-id=\"69cc900\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cb13ce8 elementor-flip-box--effect-fade elementor-widget elementor-widget-flip-box\" data-id=\"cb13ce8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"flip-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-flip-box\" tabindex=\"0\">\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__front\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__back\">\n\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-flip-box__layer__description\">\n\t\t\t\t\t\t\tNecessites instal\u00b7lar un nou ascensor? <br><br>Som el teu aliat perfecte. Implementem tecnologia avan\u00e7ada i utilitzem materials de la millor qualitat. \t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9de9587 elementor-widget elementor-widget-text-editor\" data-id=\"9de9587\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>MANTENIMENT MULTIMARCA<\/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-ac887c8 e-con-full e-flex e-con e-child\" data-id=\"ac887c8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-84f16e8 elementor-flip-box--effect-fade elementor-widget elementor-widget-flip-box\" data-id=\"84f16e8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"flip-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-flip-box\" tabindex=\"0\">\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__front\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__back\">\n\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-flip-box__layer__description\">\n\t\t\t\t\t\t\tNecessites instal\u00b7lar un nou ascensor? <br><br>Som el teu aliat perfecte. Implementem tecnologia avan\u00e7ada i utilitzem materials de la millor qualitat. \t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-49e13f0 elementor-widget elementor-widget-text-editor\" data-id=\"49e13f0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>nova instal\u00b7laci\u00f3<\/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-d14c6a5 e-con-full e-flex e-con e-child\" data-id=\"d14c6a5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4e45acc elementor-flip-box--effect-fade elementor-widget elementor-widget-flip-box\" data-id=\"4e45acc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"flip-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-flip-box\" tabindex=\"0\">\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__front\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__back\">\n\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-flip-box__layer__description\">\n\t\t\t\t\t\t\tNecessites instal\u00b7lar un nou ascensor? <br><br>Som el teu aliat perfecte. Implementem tecnologia avan\u00e7ada i utilitzem materials de la millor qualitat. \t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-06f7839 elementor-widget elementor-widget-text-editor\" data-id=\"06f7839\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>modernitzaci\u00f3<\/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-5259e91 e-con-full e-flex e-con e-child\" data-id=\"5259e91\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-24a893e elementor-flip-box--effect-fade elementor-widget elementor-widget-flip-box\" data-id=\"24a893e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"flip-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-flip-box\" tabindex=\"0\">\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__front\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__back\">\n\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-flip-box__layer__description\">\n\t\t\t\t\t\t\tNecessites instal\u00b7lar un nou ascensor? <br><br>Som el teu aliat perfecte. Implementem tecnologia avan\u00e7ada i utilitzem materials de la millor qualitat. \t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b7bad37 elementor-widget elementor-widget-text-editor\" data-id=\"b7bad37\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>SOLUCIONS D&#8217;ACCESSIBILITAT<\/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-0e80273 e-con-full e-flex e-con e-child\" data-id=\"0e80273\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2018a3d elementor-flip-box--effect-fade elementor-widget elementor-widget-flip-box\" data-id=\"2018a3d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"flip-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-flip-box\" tabindex=\"0\">\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__front\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__back\">\n\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-flip-box__layer__description\">\n\t\t\t\t\t\t\tNecessites instal\u00b7lar un nou ascensor? <br><br>Som el teu aliat perfecte. Implementem tecnologia avan\u00e7ada i utilitzem materials de la millor qualitat. \t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-26bb4a0 elementor-widget elementor-widget-text-editor\" data-id=\"26bb4a0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>CONTROL D&#8217;ACCESSOS<\/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-8d5196c e-con-full e-flex e-con e-child\" data-id=\"8d5196c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-67f4a9b elementor-flip-box--effect-fade elementor-widget elementor-widget-flip-box\" data-id=\"67f4a9b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"flip-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-flip-box\" tabindex=\"0\">\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__front\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__back\">\n\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-flip-box__layer__description\">\n\t\t\t\t\t\t\tNecessites instal\u00b7lar un nou ascensor? <br><br>Som el teu aliat perfecte. Implementem tecnologia avan\u00e7ada i utilitzem materials de la millor qualitat. \t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-468665d elementor-widget elementor-widget-text-editor\" data-id=\"468665d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>REHABILITACI\u00d3<\/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<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-88acf95 e-flex e-con-boxed e-con e-parent\" data-id=\"88acf95\" 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-25232d7 elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"25232d7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Especialistes en manteniment d'ascensors multimarca<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-47ab5ee e-grid e-con-full e-con e-child\" data-id=\"47ab5ee\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-ca5d3e3 e-flex e-con-boxed elementor-invisible e-con e-child\" data-id=\"ca5d3e3\" 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\t<div class=\"e-con-inner\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-158f770 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"158f770\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;,&quot;animation_delay&quot;:50}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-50509ed e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"50509ed\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;,&quot;animation_delay&quot;:100}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c39f5e9 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"c39f5e9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;,&quot;animation_delay&quot;:150}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e06786a e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"e06786a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;,&quot;animation_delay&quot;:200}\">\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-fc1ef60 e-flex e-con-boxed e-con e-parent\" data-id=\"fc1ef60\" 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-34b2cc3 elementor-widget__width-inherit elementor-widget elementor-widget-hotspot\" data-id=\"34b2cc3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;hotspot&quot;:[{&quot;_id&quot;:&quot;9228cad&quot;,&quot;hotspot_tooltip_content&quot;:&quot;&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:16,&quot;sizes&quot;:[]},&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:79,&quot;sizes&quot;:[]},&quot;hotspot_icon&quot;:{&quot;value&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/www.eninter.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Vector-1.svg&quot;,&quot;id&quot;:23877},&quot;library&quot;:&quot;svg&quot;},&quot;hotspot_tooltip_position&quot;:&quot;&quot;,&quot;index&quot;:0,&quot;__dynamic__&quot;:null,&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_custom_size&quot;:&quot;no&quot;,&quot;hotspot_horizontal&quot;:&quot;left&quot;,&quot;hotspot_vertical&quot;:&quot;top&quot;,&quot;hotspot_position&quot;:null,&quot;hotspot_position_tablet&quot;:null,&quot;hotspot_position_mobile&quot;:null,&quot;hotspot_icon_position&quot;:null,&quot;hotspot_icon_spacing&quot;:null,&quot;hotspot_width&quot;:null,&quot;hotspot_height&quot;:null,&quot;hotspot_offset_x_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_x_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_tooltip_width&quot;:null,&quot;hotspot_tooltip_width_tablet&quot;:null,&quot;hotspot_tooltip_width_mobile&quot;:null,&quot;hotspot_tooltip_text_wrap&quot;:null},{&quot;hotspot_tooltip_content&quot;:&quot;&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:43,&quot;sizes&quot;:[]},&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:79,&quot;sizes&quot;:[]},&quot;hotspot_icon&quot;:{&quot;value&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/www.eninter.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Vector-1.svg&quot;,&quot;id&quot;:23877},&quot;library&quot;:&quot;svg&quot;},&quot;_id&quot;:&quot;184a2a1&quot;,&quot;index&quot;:1,&quot;__dynamic__&quot;:null,&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_custom_size&quot;:&quot;no&quot;,&quot;hotspot_horizontal&quot;:&quot;left&quot;,&quot;hotspot_vertical&quot;:&quot;top&quot;,&quot;hotspot_tooltip_position&quot;:&quot;no&quot;,&quot;hotspot_position&quot;:null,&quot;hotspot_position_tablet&quot;:null,&quot;hotspot_position_mobile&quot;:null,&quot;hotspot_icon_position&quot;:null,&quot;hotspot_icon_spacing&quot;:null,&quot;hotspot_width&quot;:null,&quot;hotspot_height&quot;:null,&quot;hotspot_offset_x_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_x_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_tooltip_width&quot;:null,&quot;hotspot_tooltip_width_tablet&quot;:null,&quot;hotspot_tooltip_width_mobile&quot;:null,&quot;hotspot_tooltip_text_wrap&quot;:null},{&quot;hotspot_tooltip_content&quot;:&quot;&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:84,&quot;sizes&quot;:[]},&quot;hotspot_icon&quot;:{&quot;value&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/www.eninter.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Vector-1.svg&quot;,&quot;id&quot;:23877},&quot;library&quot;:&quot;svg&quot;},&quot;_id&quot;:&quot;f0509f7&quot;,&quot;index&quot;:2,&quot;__dynamic__&quot;:null,&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_custom_size&quot;:&quot;no&quot;,&quot;hotspot_horizontal&quot;:&quot;left&quot;,&quot;hotspot_vertical&quot;:&quot;top&quot;,&quot;hotspot_tooltip_position&quot;:&quot;no&quot;,&quot;hotspot_position&quot;:null,&quot;hotspot_position_tablet&quot;:null,&quot;hotspot_position_mobile&quot;:null,&quot;hotspot_icon_position&quot;:null,&quot;hotspot_icon_spacing&quot;:null,&quot;hotspot_width&quot;:null,&quot;hotspot_height&quot;:null,&quot;hotspot_offset_x_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_x_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_tooltip_width&quot;:null,&quot;hotspot_tooltip_width_tablet&quot;:null,&quot;hotspot_tooltip_width_mobile&quot;:null,&quot;hotspot_tooltip_text_wrap&quot;:null},{&quot;hotspot_tooltip_content&quot;:&quot;&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:38,&quot;sizes&quot;:[]},&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:72,&quot;sizes&quot;:[]},&quot;hotspot_icon&quot;:{&quot;value&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/www.eninter.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Vector-1.svg&quot;,&quot;id&quot;:23877},&quot;library&quot;:&quot;svg&quot;},&quot;_id&quot;:&quot;639e5a0&quot;,&quot;index&quot;:3,&quot;__dynamic__&quot;:null,&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_custom_size&quot;:&quot;no&quot;,&quot;hotspot_horizontal&quot;:&quot;left&quot;,&quot;hotspot_vertical&quot;:&quot;top&quot;,&quot;hotspot_tooltip_position&quot;:&quot;no&quot;,&quot;hotspot_position&quot;:null,&quot;hotspot_position_tablet&quot;:null,&quot;hotspot_position_mobile&quot;:null,&quot;hotspot_icon_position&quot;:null,&quot;hotspot_icon_spacing&quot;:null,&quot;hotspot_width&quot;:null,&quot;hotspot_height&quot;:null,&quot;hotspot_offset_x_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_x_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_tooltip_width&quot;:null,&quot;hotspot_tooltip_width_tablet&quot;:null,&quot;hotspot_tooltip_width_mobile&quot;:null,&quot;hotspot_tooltip_text_wrap&quot;:null},{&quot;hotspot_tooltip_content&quot;:&quot;&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:31,&quot;sizes&quot;:[]},&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:58,&quot;sizes&quot;:[]},&quot;hotspot_icon&quot;:{&quot;value&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/www.eninter.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Vector-1.svg&quot;,&quot;id&quot;:23877},&quot;library&quot;:&quot;svg&quot;},&quot;_id&quot;:&quot;9f19b59&quot;,&quot;index&quot;:4,&quot;__dynamic__&quot;:null,&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_custom_size&quot;:&quot;no&quot;,&quot;hotspot_horizontal&quot;:&quot;left&quot;,&quot;hotspot_vertical&quot;:&quot;top&quot;,&quot;hotspot_tooltip_position&quot;:&quot;no&quot;,&quot;hotspot_position&quot;:null,&quot;hotspot_position_tablet&quot;:null,&quot;hotspot_position_mobile&quot;:null,&quot;hotspot_icon_position&quot;:null,&quot;hotspot_icon_spacing&quot;:null,&quot;hotspot_width&quot;:null,&quot;hotspot_height&quot;:null,&quot;hotspot_offset_x_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_x_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_tooltip_width&quot;:null,&quot;hotspot_tooltip_width_tablet&quot;:null,&quot;hotspot_tooltip_width_mobile&quot;:null,&quot;hotspot_tooltip_text_wrap&quot;:null},{&quot;hotspot_tooltip_content&quot;:&quot;&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:31,&quot;sizes&quot;:[]},&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:43,&quot;sizes&quot;:[]},&quot;hotspot_icon&quot;:{&quot;value&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/www.eninter.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Vector-1.svg&quot;,&quot;id&quot;:23877},&quot;library&quot;:&quot;svg&quot;},&quot;_id&quot;:&quot;a8eec52&quot;,&quot;index&quot;:5,&quot;__dynamic__&quot;:null,&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_custom_size&quot;:&quot;no&quot;,&quot;hotspot_horizontal&quot;:&quot;left&quot;,&quot;hotspot_vertical&quot;:&quot;top&quot;,&quot;hotspot_tooltip_position&quot;:&quot;no&quot;,&quot;hotspot_position&quot;:null,&quot;hotspot_position_tablet&quot;:null,&quot;hotspot_position_mobile&quot;:null,&quot;hotspot_icon_position&quot;:null,&quot;hotspot_icon_spacing&quot;:null,&quot;hotspot_width&quot;:null,&quot;hotspot_height&quot;:null,&quot;hotspot_offset_x_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_x_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_tooltip_width&quot;:null,&quot;hotspot_tooltip_width_tablet&quot;:null,&quot;hotspot_tooltip_width_mobile&quot;:null,&quot;hotspot_tooltip_text_wrap&quot;:null},{&quot;hotspot_tooltip_content&quot;:&quot;&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:2,&quot;sizes&quot;:[]},&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:90,&quot;sizes&quot;:[]},&quot;hotspot_icon&quot;:{&quot;value&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/www.eninter.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Vector-1.svg&quot;,&quot;id&quot;:23877},&quot;library&quot;:&quot;svg&quot;},&quot;_id&quot;:&quot;b888e1e&quot;,&quot;index&quot;:6,&quot;__dynamic__&quot;:null,&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_custom_size&quot;:&quot;no&quot;,&quot;hotspot_horizontal&quot;:&quot;left&quot;,&quot;hotspot_vertical&quot;:&quot;top&quot;,&quot;hotspot_tooltip_position&quot;:&quot;no&quot;,&quot;hotspot_position&quot;:null,&quot;hotspot_position_tablet&quot;:null,&quot;hotspot_position_mobile&quot;:null,&quot;hotspot_icon_position&quot;:null,&quot;hotspot_icon_spacing&quot;:null,&quot;hotspot_width&quot;:null,&quot;hotspot_height&quot;:null,&quot;hotspot_offset_x_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_x_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_tooltip_width&quot;:null,&quot;hotspot_tooltip_width_tablet&quot;:null,&quot;hotspot_tooltip_width_mobile&quot;:null,&quot;hotspot_tooltip_text_wrap&quot;:null},{&quot;hotspot_tooltip_content&quot;:&quot;&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:2,&quot;sizes&quot;:[]},&quot;hotspot_offset_y&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:83,&quot;sizes&quot;:[]},&quot;hotspot_icon&quot;:{&quot;value&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/www.eninter.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Vector-1.svg&quot;,&quot;id&quot;:23877},&quot;library&quot;:&quot;svg&quot;},&quot;_id&quot;:&quot;81a70d0&quot;,&quot;index&quot;:7,&quot;__dynamic__&quot;:null,&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_custom_size&quot;:&quot;no&quot;,&quot;hotspot_horizontal&quot;:&quot;left&quot;,&quot;hotspot_vertical&quot;:&quot;top&quot;,&quot;hotspot_tooltip_position&quot;:&quot;no&quot;,&quot;hotspot_position&quot;:null,&quot;hotspot_position_tablet&quot;:null,&quot;hotspot_position_mobile&quot;:null,&quot;hotspot_icon_position&quot;:null,&quot;hotspot_icon_spacing&quot;:null,&quot;hotspot_width&quot;:null,&quot;hotspot_height&quot;:null,&quot;hotspot_offset_x_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_x_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_offset_y_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;hotspot_tooltip_width&quot;:null,&quot;hotspot_tooltip_width_tablet&quot;:null,&quot;hotspot_tooltip_width_mobile&quot;:null,&quot;hotspot_tooltip_text_wrap&quot;:null}],&quot;tooltip_trigger&quot;:&quot;mouseenter&quot;,&quot;tooltip_position&quot;:&quot;top&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 fetchpriority=\"high\" decoding=\"async\" width=\"621\" height=\"478\" src=\"https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/05\/Group-1414.png\" class=\"attachment-large size-large wp-image-23731\" alt=\"\" srcset=\"https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/05\/Group-1414.png 621w, https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/05\/Group-1414-300x231.png 300w\" sizes=\"(max-width: 621px) 100vw, 621px\" \/>\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-9228cad  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--expand\">\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\" width=\"16\" height=\"20\" viewBox=\"0 0 16 20\" fill=\"none\"><path d=\"M8 10C8.55 10 9.021 9.804 9.413 9.412C9.80433 9.02067 10 8.55 10 8C10 7.45 9.80433 6.979 9.413 6.587C9.021 6.19567 8.55 6 8 6C7.45 6 6.97933 6.19567 6.588 6.587C6.196 6.979 6 7.45 6 8C6 8.55 6.196 9.02067 6.588 9.412C6.97933 9.804 7.45 10 8 10ZM8 17.35C10.0333 15.4833 11.5417 13.7873 12.525 12.262C13.5083 10.7373 14 9.38333 14 8.2C14 6.38333 13.4207 4.89567 12.262 3.737C11.104 2.579 9.68333 2 8 2C6.31667 2 4.89567 2.579 3.737 3.737C2.579 4.89567 2 6.38333 2 8.2C2 9.38333 2.49167 10.7373 3.475 12.262C4.45833 13.7873 5.96667 15.4833 8 17.35ZM8 20C5.31667 17.7167 3.31267 15.5957 1.988 13.637C0.662667 11.679 0 9.86667 0 8.2C0 5.7 0.804333 3.70833 2.413 2.225C4.021 0.741667 5.88333 0 8 0C10.1167 0 11.979 0.741667 13.587 2.225C15.1957 3.70833 16 5.7 16 8.2C16 9.86667 15.3377 11.679 14.013 13.637C12.6877 15.5957 10.6833 17.7167 8 20Z\" fill=\"#5BED06\"><\/path><\/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\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-184a2a1  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--expand\">\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\" width=\"16\" height=\"20\" viewBox=\"0 0 16 20\" fill=\"none\"><path d=\"M8 10C8.55 10 9.021 9.804 9.413 9.412C9.80433 9.02067 10 8.55 10 8C10 7.45 9.80433 6.979 9.413 6.587C9.021 6.19567 8.55 6 8 6C7.45 6 6.97933 6.19567 6.588 6.587C6.196 6.979 6 7.45 6 8C6 8.55 6.196 9.02067 6.588 9.412C6.97933 9.804 7.45 10 8 10ZM8 17.35C10.0333 15.4833 11.5417 13.7873 12.525 12.262C13.5083 10.7373 14 9.38333 14 8.2C14 6.38333 13.4207 4.89567 12.262 3.737C11.104 2.579 9.68333 2 8 2C6.31667 2 4.89567 2.579 3.737 3.737C2.579 4.89567 2 6.38333 2 8.2C2 9.38333 2.49167 10.7373 3.475 12.262C4.45833 13.7873 5.96667 15.4833 8 17.35ZM8 20C5.31667 17.7167 3.31267 15.5957 1.988 13.637C0.662667 11.679 0 9.86667 0 8.2C0 5.7 0.804333 3.70833 2.413 2.225C4.021 0.741667 5.88333 0 8 0C10.1167 0 11.979 0.741667 13.587 2.225C15.1957 3.70833 16 5.7 16 8.2C16 9.86667 15.3377 11.679 14.013 13.637C12.6877 15.5957 10.6833 17.7167 8 20Z\" fill=\"#5BED06\"><\/path><\/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\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-f0509f7  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--expand\">\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\" width=\"16\" height=\"20\" viewBox=\"0 0 16 20\" fill=\"none\"><path d=\"M8 10C8.55 10 9.021 9.804 9.413 9.412C9.80433 9.02067 10 8.55 10 8C10 7.45 9.80433 6.979 9.413 6.587C9.021 6.19567 8.55 6 8 6C7.45 6 6.97933 6.19567 6.588 6.587C6.196 6.979 6 7.45 6 8C6 8.55 6.196 9.02067 6.588 9.412C6.97933 9.804 7.45 10 8 10ZM8 17.35C10.0333 15.4833 11.5417 13.7873 12.525 12.262C13.5083 10.7373 14 9.38333 14 8.2C14 6.38333 13.4207 4.89567 12.262 3.737C11.104 2.579 9.68333 2 8 2C6.31667 2 4.89567 2.579 3.737 3.737C2.579 4.89567 2 6.38333 2 8.2C2 9.38333 2.49167 10.7373 3.475 12.262C4.45833 13.7873 5.96667 15.4833 8 17.35ZM8 20C5.31667 17.7167 3.31267 15.5957 1.988 13.637C0.662667 11.679 0 9.86667 0 8.2C0 5.7 0.804333 3.70833 2.413 2.225C4.021 0.741667 5.88333 0 8 0C10.1167 0 11.979 0.741667 13.587 2.225C15.1957 3.70833 16 5.7 16 8.2C16 9.86667 15.3377 11.679 14.013 13.637C12.6877 15.5957 10.6833 17.7167 8 20Z\" fill=\"#5BED06\"><\/path><\/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\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-639e5a0  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--expand\">\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\" width=\"16\" height=\"20\" viewBox=\"0 0 16 20\" fill=\"none\"><path d=\"M8 10C8.55 10 9.021 9.804 9.413 9.412C9.80433 9.02067 10 8.55 10 8C10 7.45 9.80433 6.979 9.413 6.587C9.021 6.19567 8.55 6 8 6C7.45 6 6.97933 6.19567 6.588 6.587C6.196 6.979 6 7.45 6 8C6 8.55 6.196 9.02067 6.588 9.412C6.97933 9.804 7.45 10 8 10ZM8 17.35C10.0333 15.4833 11.5417 13.7873 12.525 12.262C13.5083 10.7373 14 9.38333 14 8.2C14 6.38333 13.4207 4.89567 12.262 3.737C11.104 2.579 9.68333 2 8 2C6.31667 2 4.89567 2.579 3.737 3.737C2.579 4.89567 2 6.38333 2 8.2C2 9.38333 2.49167 10.7373 3.475 12.262C4.45833 13.7873 5.96667 15.4833 8 17.35ZM8 20C5.31667 17.7167 3.31267 15.5957 1.988 13.637C0.662667 11.679 0 9.86667 0 8.2C0 5.7 0.804333 3.70833 2.413 2.225C4.021 0.741667 5.88333 0 8 0C10.1167 0 11.979 0.741667 13.587 2.225C15.1957 3.70833 16 5.7 16 8.2C16 9.86667 15.3377 11.679 14.013 13.637C12.6877 15.5957 10.6833 17.7167 8 20Z\" fill=\"#5BED06\"><\/path><\/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\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-9f19b59  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--expand\">\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\" width=\"16\" height=\"20\" viewBox=\"0 0 16 20\" fill=\"none\"><path d=\"M8 10C8.55 10 9.021 9.804 9.413 9.412C9.80433 9.02067 10 8.55 10 8C10 7.45 9.80433 6.979 9.413 6.587C9.021 6.19567 8.55 6 8 6C7.45 6 6.97933 6.19567 6.588 6.587C6.196 6.979 6 7.45 6 8C6 8.55 6.196 9.02067 6.588 9.412C6.97933 9.804 7.45 10 8 10ZM8 17.35C10.0333 15.4833 11.5417 13.7873 12.525 12.262C13.5083 10.7373 14 9.38333 14 8.2C14 6.38333 13.4207 4.89567 12.262 3.737C11.104 2.579 9.68333 2 8 2C6.31667 2 4.89567 2.579 3.737 3.737C2.579 4.89567 2 6.38333 2 8.2C2 9.38333 2.49167 10.7373 3.475 12.262C4.45833 13.7873 5.96667 15.4833 8 17.35ZM8 20C5.31667 17.7167 3.31267 15.5957 1.988 13.637C0.662667 11.679 0 9.86667 0 8.2C0 5.7 0.804333 3.70833 2.413 2.225C4.021 0.741667 5.88333 0 8 0C10.1167 0 11.979 0.741667 13.587 2.225C15.1957 3.70833 16 5.7 16 8.2C16 9.86667 15.3377 11.679 14.013 13.637C12.6877 15.5957 10.6833 17.7167 8 20Z\" fill=\"#5BED06\"><\/path><\/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\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-a8eec52  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--expand\">\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\" width=\"16\" height=\"20\" viewBox=\"0 0 16 20\" fill=\"none\"><path d=\"M8 10C8.55 10 9.021 9.804 9.413 9.412C9.80433 9.02067 10 8.55 10 8C10 7.45 9.80433 6.979 9.413 6.587C9.021 6.19567 8.55 6 8 6C7.45 6 6.97933 6.19567 6.588 6.587C6.196 6.979 6 7.45 6 8C6 8.55 6.196 9.02067 6.588 9.412C6.97933 9.804 7.45 10 8 10ZM8 17.35C10.0333 15.4833 11.5417 13.7873 12.525 12.262C13.5083 10.7373 14 9.38333 14 8.2C14 6.38333 13.4207 4.89567 12.262 3.737C11.104 2.579 9.68333 2 8 2C6.31667 2 4.89567 2.579 3.737 3.737C2.579 4.89567 2 6.38333 2 8.2C2 9.38333 2.49167 10.7373 3.475 12.262C4.45833 13.7873 5.96667 15.4833 8 17.35ZM8 20C5.31667 17.7167 3.31267 15.5957 1.988 13.637C0.662667 11.679 0 9.86667 0 8.2C0 5.7 0.804333 3.70833 2.413 2.225C4.021 0.741667 5.88333 0 8 0C10.1167 0 11.979 0.741667 13.587 2.225C15.1957 3.70833 16 5.7 16 8.2C16 9.86667 15.3377 11.679 14.013 13.637C12.6877 15.5957 10.6833 17.7167 8 20Z\" fill=\"#5BED06\"><\/path><\/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\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-b888e1e  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--expand\">\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\" width=\"16\" height=\"20\" viewBox=\"0 0 16 20\" fill=\"none\"><path d=\"M8 10C8.55 10 9.021 9.804 9.413 9.412C9.80433 9.02067 10 8.55 10 8C10 7.45 9.80433 6.979 9.413 6.587C9.021 6.19567 8.55 6 8 6C7.45 6 6.97933 6.19567 6.588 6.587C6.196 6.979 6 7.45 6 8C6 8.55 6.196 9.02067 6.588 9.412C6.97933 9.804 7.45 10 8 10ZM8 17.35C10.0333 15.4833 11.5417 13.7873 12.525 12.262C13.5083 10.7373 14 9.38333 14 8.2C14 6.38333 13.4207 4.89567 12.262 3.737C11.104 2.579 9.68333 2 8 2C6.31667 2 4.89567 2.579 3.737 3.737C2.579 4.89567 2 6.38333 2 8.2C2 9.38333 2.49167 10.7373 3.475 12.262C4.45833 13.7873 5.96667 15.4833 8 17.35ZM8 20C5.31667 17.7167 3.31267 15.5957 1.988 13.637C0.662667 11.679 0 9.86667 0 8.2C0 5.7 0.804333 3.70833 2.413 2.225C4.021 0.741667 5.88333 0 8 0C10.1167 0 11.979 0.741667 13.587 2.225C15.1957 3.70833 16 5.7 16 8.2C16 9.86667 15.3377 11.679 14.013 13.637C12.6877 15.5957 10.6833 17.7167 8 20Z\" fill=\"#5BED06\"><\/path><\/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\n\t\t\t<\/div>\n\n\t\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-81a70d0  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--expand\">\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\" width=\"16\" height=\"20\" viewBox=\"0 0 16 20\" fill=\"none\"><path d=\"M8 10C8.55 10 9.021 9.804 9.413 9.412C9.80433 9.02067 10 8.55 10 8C10 7.45 9.80433 6.979 9.413 6.587C9.021 6.19567 8.55 6 8 6C7.45 6 6.97933 6.19567 6.588 6.587C6.196 6.979 6 7.45 6 8C6 8.55 6.196 9.02067 6.588 9.412C6.97933 9.804 7.45 10 8 10ZM8 17.35C10.0333 15.4833 11.5417 13.7873 12.525 12.262C13.5083 10.7373 14 9.38333 14 8.2C14 6.38333 13.4207 4.89567 12.262 3.737C11.104 2.579 9.68333 2 8 2C6.31667 2 4.89567 2.579 3.737 3.737C2.579 4.89567 2 6.38333 2 8.2C2 9.38333 2.49167 10.7373 3.475 12.262C4.45833 13.7873 5.96667 15.4833 8 17.35ZM8 20C5.31667 17.7167 3.31267 15.5957 1.988 13.637C0.662667 11.679 0 9.86667 0 8.2C0 5.7 0.804333 3.70833 2.413 2.225C4.021 0.741667 5.88333 0 8 0C10.1167 0 11.979 0.741667 13.587 2.225C15.1957 3.70833 16 5.7 16 8.2C16 9.86667 15.3377 11.679 14.013 13.637C12.6877 15.5957 10.6833 17.7167 8 20Z\" fill=\"#5BED06\"><\/path><\/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\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<div class=\"elementor-element elementor-element-f5f0c40 e-con-full e-flex e-con e-child\" data-id=\"f5f0c40\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8f284b7 elementor-widget elementor-widget-heading\" data-id=\"8f284b7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">ENINTER Internacional<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9e788a2 elementor-widget elementor-widget-text-editor\" data-id=\"9e788a2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>ESPANYA | IT\u00c0LIA | PORTUGAL | SU\u00cfSSA<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4b82ef0 elementor-widget elementor-widget-text-editor\" data-id=\"4b82ef0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Amb pres\u00e8ncia a Espanya, It\u00e0lia, Portugal i Su\u00efssa, ENINTER mant\u00e9 m\u00e9s de 52.000 ascensors i millora la vida de milers de persones cada dia. <br>50 anys d\u2019experi\u00e8ncia, 53 delegacions i un equip de 800 professionals ens avalen en el nostre objectiu: ser la millor empresa de manteniment d\u2019ascensors a Europa.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-984f09e elementor-align-left btn-verde elementor-widget elementor-widget-button\" data-id=\"984f09e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.eninter.com\/ca\/pressupost-personalitzat\/\">\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\">Vull un pressupost<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\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<div class=\"elementor-element elementor-element-dcac418 e-flex e-con-boxed e-con e-parent\" data-id=\"dcac418\" 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-ff0b4dd elementor-absolute animated-fast elementor-invisible elementor-widget elementor-widget-image\" data-id=\"ff0b4dd\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation&quot;:&quot;fadeInDown&quot;,&quot;_animation_delay&quot;:0}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"556\" height=\"742\" src=\"https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/06\/flecha-abajo-e1749047224940.webp\" class=\"attachment-full size-full wp-image-24751\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3f4e84f elementor-absolute animated-fast elementor-invisible elementor-widget elementor-widget-image\" data-id=\"3f4e84f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation&quot;:&quot;fadeInDown&quot;,&quot;_animation_delay&quot;:100}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"556\" height=\"742\" src=\"https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/06\/flecha-medio-e1749047205487.webp\" class=\"attachment-full size-full wp-image-24757\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-56e72d1 elementor-absolute animated-fast elementor-invisible elementor-widget elementor-widget-image\" data-id=\"56e72d1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation&quot;:&quot;fadeInDown&quot;,&quot;_animation_delay&quot;:200}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"556\" height=\"742\" src=\"https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/06\/flecha-arriba-e1749047178844.webp\" class=\"attachment-full size-full wp-image-24763\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b54042f e-con-full e-flex e-con e-child\" data-id=\"b54042f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e1b2911 elementor-widget elementor-widget-heading\" data-id=\"e1b2911\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:32,&quot;end&quot;:73}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Manteniment d' ascensors per sectors<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-811d724 elementor-widget elementor-widget-text-editor\" data-id=\"811d724\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>ENINTER millora la qualitat de vida de les persones implementant solucions d\u2019accessibilitat a mida segons el sector empresarial o la necessitat.<\/p>\t\t\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<div class=\"elementor-element elementor-element-c131e16 e-grid e-con-full e-con e-parent\" data-id=\"c131e16\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<a class=\"elementor-element elementor-element-5a1a267 e-con-full e-flex e-con e-child\" data-id=\"5a1a267\" data-element_type=\"container\" data-e-type=\"container\" href=\"https:\/\/www.eninter.com\/mantenimiento-de-ascensores-en-edificios-residenciales\/\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5154212 elementor-widget elementor-widget-heading\" data-id=\"5154212\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Edificis residencials<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3a9ae34 elementor-widget elementor-widget-text-editor\" data-id=\"3a9ae34\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Elevem el confort i la seguretat a la teva llar amb els nostres serveis de reparaci\u00f3 d&#8217;ascensors.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-6191f74 e-con-full e-flex e-con e-child\" data-id=\"6191f74\" data-element_type=\"container\" data-e-type=\"container\" href=\"https:\/\/www.eninter.com\/mantenimiento-de-ascensores-en-edificios-residenciales\/\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c945341 elementor-widget elementor-widget-heading\" data-id=\"c945341\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Centres comercials<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ca26465 elementor-widget elementor-widget-text-editor\" data-id=\"ca26465\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Optimitza la mobilitat dels teus clients per oferir un servei r\u00e0pid i eficient que millora l&#8217;experi\u00e8ncia de compra.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-0c93bfe e-con-full e-flex e-con e-child\" data-id=\"0c93bfe\" data-element_type=\"container\" data-e-type=\"container\" href=\"https:\/\/www.eninter.com\/mantenimiento-de-ascensores-en-edificios-residenciales\/\">\n\t\t\t\t<div class=\"elementor-element elementor-element-117f46a elementor-widget elementor-widget-heading\" data-id=\"117f46a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Hotels<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0eb7bc9 elementor-widget elementor-widget-text-editor\" data-id=\"0eb7bc9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Elevem la qualitat dels teus hotel. Confia en nosaltres per mantenir els teus hostes satisfets. <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-cefb0f4 e-con-full e-flex e-con e-child\" data-id=\"cefb0f4\" data-element_type=\"container\" data-e-type=\"container\" href=\"https:\/\/www.eninter.com\/mantenimiento-de-ascensores-en-edificios-residenciales\/\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f7bd42a elementor-widget elementor-widget-heading\" data-id=\"f7bd42a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Centres hospitalaris<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-91d88f2 elementor-widget elementor-widget-text-editor\" data-id=\"91d88f2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>La confian\u00e7a en cada pis. Els nostres t\u00e8cnics asseguren que els ascensors en funcionin sense interrupcions per a un transport r\u00e0pid i segur. <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-1e80c85 e-con-full e-flex e-con e-child\" data-id=\"1e80c85\" data-element_type=\"container\" data-e-type=\"container\" href=\"https:\/\/www.eninter.com\/mantenimiento-de-ascensores-en-edificios-residenciales\/\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b39dcdc elementor-widget elementor-widget-heading\" data-id=\"b39dcdc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Equipaments\np\u00fablics<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ff12f33 elementor-widget elementor-widget-text-editor\" data-id=\"ff12f33\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Fem que l&#8217;accessibilitat sigui una prioritat en espais p\u00fablics. La nostra reparaci\u00f3 d&#8217;ascensors garanteix comoditat per a tots els usuaris. <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-6861908 e-con-full e-flex e-con e-child\" data-id=\"6861908\" data-element_type=\"container\" data-e-type=\"container\" href=\"https:\/\/www.eninter.com\/mantenimiento-de-ascensores-en-edificios-residenciales\/\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0b3ef72 elementor-widget elementor-widget-heading\" data-id=\"0b3ef72\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Edificis d\u2019oficines<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6e86d45 elementor-widget elementor-widget-text-editor\" data-id=\"6e86d45\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Impulsem la productivitat a la teva empresa garantint un flux ininterromput amb els nostres serveis de reparaci\u00f3 d&#8217;ascensors.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-472233a e-con-full e-flex e-con e-parent\" data-id=\"472233a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13fdbc5 elementor-widget elementor-widget-shortcode\" data-id=\"13fdbc5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">\t\t<div data-elementor-type=\"container\" data-elementor-id=\"25920\" class=\"elementor elementor-25920 elementor-25061 elementor-25061\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-60b56e9 e-flex e-con-boxed e-con e-parent\" data-id=\"60b56e9\" 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-a126a0c e-con-full e-flex e-con e-child\" data-id=\"a126a0c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f338087 elementor-invisible elementor-widget elementor-widget-image\" data-id=\"f338087\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"482\" src=\"https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/10\/Logo-eninter-catala.png\" class=\"attachment-large size-large wp-image-13686\" alt=\"logo Eninter espa\u00f1ol\" srcset=\"https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/10\/Logo-eninter-catala.png 1024w, https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/10\/Logo-eninter-catala-300x181.png 300w, https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/10\/Logo-eninter-catala-768x463.png 768w\" 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 class=\"elementor-element elementor-element-e81919b elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"e81919b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:50}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Solucions espec\u00edfiques per a tu<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b3d3e47 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"b3d3e47\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:100}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Donem soluci\u00f3 a tots els problemes de mobilitat que requereixi el teu perfil.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-67b50f4 elementor-align-left btn-verde elementor-mobile-align-justify elementor-widget-mobile__width-initial elementor-invisible elementor-widget elementor-widget-button\" data-id=\"67b50f4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:150}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.eninter.com\/ca\/pressupost-personalitzat\/\">\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\">Podem ajudar-te<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\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-741b6e7 e-grid e-con-full e-con e-child\" data-id=\"741b6e7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-20c876a e-con-full e-flex e-con e-child\" data-id=\"20c876a\" 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-f3816f4 elementor-widget elementor-widget-heading\" data-id=\"f3816f4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Administradors de finques<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-86c812d e-con-full e-flex e-con e-child\" data-id=\"86c812d\" 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-ed79c34 elementor-widget elementor-widget-heading\" data-id=\"ed79c34\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Propietaris<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-57028c5 e-con-full e-flex e-con e-child\" data-id=\"57028c5\" 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-cea9edc elementor-widget elementor-widget-heading\" data-id=\"cea9edc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Grans empreses<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-682daa7 e-con-full e-flex e-con e-child\" data-id=\"682daa7\" 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-032dcc4 elementor-widget elementor-widget-heading\" data-id=\"032dcc4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Estudis d' arquitectura<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-581d276 e-con-full e-flex e-con e-child\" data-id=\"581d276\" 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-84bf1f4 elementor-widget elementor-widget-heading\" data-id=\"84bf1f4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Constructores<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7de00bf e-con-full e-flex e-con e-child\" data-id=\"7de00bf\" 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-585b52b elementor-widget elementor-widget-heading\" data-id=\"585b52b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Enginyers d' edificaci\u00f3<\/h3>\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<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7eaa235 e-flex e-con-boxed e-con e-parent\" data-id=\"7eaa235\" 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-d571e3c elementor-widget elementor-widget-heading\" data-id=\"d571e3c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Testimonis que eleven<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1e638ef elementor-testimonial--align-left elementor-testimonial--skin-default elementor-testimonial--layout-image_inline elementor-pagination-type-bullets elementor-widget elementor-widget-testimonial-carousel\" data-id=\"1e638ef\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;slides_per_view&quot;:&quot;3&quot;,&quot;space_between&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;slides_per_view_tablet&quot;:&quot;2&quot;,&quot;space_between_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;pagination&quot;:&quot;bullets&quot;,&quot;speed&quot;:500,&quot;loop&quot;:&quot;yes&quot;,&quot;space_between_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]}}\" data-widget_type=\"testimonial-carousel.default\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-main-swiper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Diapositivas\">\n\t\t\t\t<div class=\"swiper-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\t<p>En mudar-me a un edifici m\u00e9s antic, em preocupava l'estat de l'ascensor. Gr\u00e0cies a Eninter, no nom\u00e9s es va modernitzar, sin\u00f3 que ara tinc la tranquil\u00b7litat que est\u00e0 en les millors mans. El servei i l\u2019atenci\u00f3 han estat impecables.   <\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial__image\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.eninter.com\/wp-content\/uploads\/2023\/08\/5yllQVHzJT9r7BTZUfxx-1-ef98j.jpg\" alt=\"Luis Romero\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Luis Romero<\/span><span class=\"elementor-testimonial__title\">Propietari<\/span><\/cite>\t\t\t<\/div>\n\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\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\t<p>A la nostra seu corporativa, necessit\u00e0vem una soluci\u00f3 a mida per als nostres ascensors. No nom\u00e9s va entendre les nostres necessitats, sin\u00f3 que les va superar, oferint un servei de qualitat i una resposta r\u00e0pida davant de qualsevol eventualitat.  <\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial__image\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/05\/administradores-de-finca.webp\" alt=\"Alberto Guti\u00e9rrez\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Alberto Guti\u00e9rrez<\/span><span class=\"elementor-testimonial__title\">Administrador de fincas<\/span><\/cite>\t\t\t<\/div>\n\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\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\t<p>Visc en un bloc d\u2019apartaments amb diversos ascensors i, des que Eninter s\u2019encarrega del seu manteniment, hem notat una difer\u00e8ncia. Les revisions s\u00f3n puntuals i qualsevol problema es resol en un temps r\u00e8cord. Estem molt agra\u00efts.   <\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial__image\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/05\/administradores-de-finca.webp\" alt=\"Rosario S\u00e1nchez\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Rosario S\u00e1nchez<\/span><span class=\"elementor-testimonial__title\">Propiet\u00e0ria<\/span><\/cite>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c6a246a elementor-align-center btn-verde-lleno elementor-widget elementor-widget-button\" data-id=\"c6a246a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.eninter.com\/ca\/pressupost-personalitzat\/\">\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\">Vull un pressupost<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\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-248d900 e-flex e-con-boxed e-con e-parent\" data-id=\"248d900\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;background_motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;background_motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-1f1a25a e-con-full e-flex e-con e-child\" data-id=\"1f1a25a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-77ad2d2 elementor-widget elementor-widget-heading\" data-id=\"77ad2d2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u00daltimes not\u00edcies d\u2019Eninter<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-204602b elementor-align-center btn-claro elementor-hidden-mobile elementor-widget elementor-widget-button\" data-id=\"204602b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.eninter.com\/ca\/blog\/\">\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\">Veure m\u00e9s not\u00edcies<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\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-35714d3 e-con-full e-flex e-con e-child\" data-id=\"35714d3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4c2f712 elementor-grid-2 elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget-mobile__width-inherit elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-posts--thumbnail-top elementor-widget elementor-widget-posts\" data-id=\"4c2f712\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;classic_columns&quot;:&quot;2&quot;,&quot;classic_row_gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:40,&quot;sizes&quot;:[]},&quot;classic_columns_tablet&quot;:&quot;2&quot;,&quot;classic_columns_mobile&quot;:&quot;1&quot;,&quot;classic_row_gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;classic_row_gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"posts.classic\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid\" role=\"list\">\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-9019 post type-post status-publish format-standard has-post-thumbnail hentry category-ascensors category-sobre-eninter-ca\" role=\"listitem\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/www.eninter.com\/ca\/zero-es-mes-dalvier-premiat-per-5-anys-sense-accidents-laborals-per-la-mutua-mc\/\" tabindex=\"-1\" >\n\t\t\t<div class=\"elementor-post__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/www.eninter.com\/wp-content\/uploads\/2023\/06\/Dalvier-sin-accidentes-laborales.jpeg\" class=\"attachment-full size-full wp-image-7609\" alt=\"\" srcset=\"https:\/\/www.eninter.com\/wp-content\/uploads\/2023\/06\/Dalvier-sin-accidentes-laborales.jpeg 1200w, https:\/\/www.eninter.com\/wp-content\/uploads\/2023\/06\/Dalvier-sin-accidentes-laborales-300x169.jpeg 300w, https:\/\/www.eninter.com\/wp-content\/uploads\/2023\/06\/Dalvier-sin-accidentes-laborales-1024x576.jpeg 1024w, https:\/\/www.eninter.com\/wp-content\/uploads\/2023\/06\/Dalvier-sin-accidentes-laborales-768x432.jpeg 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/div>\n\t\t<\/a>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h3 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/www.eninter.com\/ca\/zero-es-mes-dalvier-premiat-per-5-anys-sense-accidents-laborals-per-la-mutua-mc\/\" >\n\t\t\t\t\u00a1&#8217;Zero \u00e9s m\u00e9s&#8217;! Dalvier premiat per 5 anys sense accidents laborals per la M\u00fatua (MC)\t\t\t<\/a>\n\t\t<\/h3>\n\t\t\t\t<div class=\"elementor-post__meta-data\">\n\t\t\t\t\t<span class=\"elementor-post-author\">\n\t\t\tAlbert Puig\t\t<\/span>\n\t\t\t\t<span class=\"elementor-post-date\">\n\t\t\t29 de juny de 2023\t\t<\/span>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/article>\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-9022 post type-post status-publish format-standard has-post-thumbnail hentry category-ascensors category-sobre-eninter-ca\" role=\"listitem\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/www.eninter.com\/ca\/eninter-50-anys-dexit-i-dedicacio-units-com-una-gran-familia\/\" tabindex=\"-1\" >\n\t\t\t<div class=\"elementor-post__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"940\" height=\"675\" src=\"https:\/\/www.eninter.com\/wp-content\/uploads\/2023\/06\/50-Aniversario-ENINTER.png\" class=\"attachment-full size-full wp-image-7611\" alt=\"\" srcset=\"https:\/\/www.eninter.com\/wp-content\/uploads\/2023\/06\/50-Aniversario-ENINTER.png 940w, https:\/\/www.eninter.com\/wp-content\/uploads\/2023\/06\/50-Aniversario-ENINTER-300x215.png 300w, https:\/\/www.eninter.com\/wp-content\/uploads\/2023\/06\/50-Aniversario-ENINTER-768x551.png 768w\" sizes=\"(max-width: 940px) 100vw, 940px\" \/><\/div>\n\t\t<\/a>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h3 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/www.eninter.com\/ca\/eninter-50-anys-dexit-i-dedicacio-units-com-una-gran-familia\/\" >\n\t\t\t\tENINTER: 50 Anys d&#8217;\u00e8xit i dedicaci\u00f3, units com una gran fam\u00edlia\t\t\t<\/a>\n\t\t<\/h3>\n\t\t\t\t<div class=\"elementor-post__meta-data\">\n\t\t\t\t\t<span class=\"elementor-post-author\">\n\t\t\tAlbert Puig\t\t<\/span>\n\t\t\t\t<span class=\"elementor-post-date\">\n\t\t\t13 de juny de 2023\t\t<\/span>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/article>\n\t\t\t\t<\/div>\n\t\t\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a30da5d e-con-full e-flex e-con e-child\" data-id=\"a30da5d\" 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-28d20fd e-con-full e-flex e-con e-child\" data-id=\"28d20fd\" 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-7e23158 elementor-widget elementor-widget-heading\" data-id=\"7e23158\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Prensa<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cf7f47d elementor-align-start elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"cf7f47d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\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<span class=\"elementor-icon-list-text\">Lorem ipsum dolor sit amet<\/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<span class=\"elementor-icon-list-text\">Lorem ipsum dolor sit amet<\/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<span class=\"elementor-icon-list-text\">Lorem ipsum dolor sit amet<\/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<span class=\"elementor-icon-list-text\">Lorem ipsum dolor sit amet<\/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<span class=\"elementor-icon-list-text\">Lorem ipsum dolor sit amet<\/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 class=\"elementor-element elementor-element-41f5eb2 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"41f5eb2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\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-125b331 e-flex e-con-boxed e-con e-parent\" data-id=\"125b331\" 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-c05dce6 e-con-full e-flex e-con e-child\" data-id=\"c05dce6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8d744ae elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"8d744ae\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Contacta amb nosaltres<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2bd67fc elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"2bd67fc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>A Eninter, prioritzem la seguretat i l\u2019efici\u00e8ncia dels teus ascensors.<\/p><p>Contacta\u2019ns per resoldre dubtes o con\u00e8ixer els nostres serveis de manteniment.<\/p><p>Ens trobar\u00e0s a:<\/p><p><a href=\"https:\/\/maps.app.goo.gl\/qUX588ei1Z2mcakq5\">Ctra. de l&#8217;Hospitalet 52, Cornell\u00e0 de Llobregat, Barcelona <\/a><\/p><p><a href=\"tel:933779451\">933 77 94 51<\/a><\/p><p><a href=\"mailto:conoce@eninter.com\">conoce@eninter.com<\/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-09cbe9c elementor-widget__width-inherit esp elementor-widget elementor-widget-html\" data-id=\"09cbe9c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script charset=\"utf-8\" type=\"text\/javascript\" src=\"\/\/js-eu1.hsforms.net\/forms\/embed\/v2.js\"><\/script><script>hbspt.forms.create({\n    portalId: \"139723965\",\n    formId: \"af69bcf5-0a24-496f-81ad-0f5d68b6c860\"\n  });\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b66f2ba elementor-widget__width-inherit elementor-button-align-center no-es elementor-widget elementor-widget-form\" data-id=\"b66f2ba\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;step_next_label&quot;:&quot;Seg\\u00fcent&quot;,&quot;step_previous_label&quot;:&quot;Anterior&quot;,&quot;button_width&quot;:&quot;100&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\" data-widget_type=\"form.default\">\n\t\t\t\t\t\t\t<form class=\"elementor-form\" method=\"post\" name=\"Formulari home 2025\" aria-label=\"Formulari home 2025\">\n\t\t\t<input type=\"hidden\" name=\"post_id\" value=\"24424\"\/>\n\t\t\t<input type=\"hidden\" name=\"form_id\" value=\"b66f2ba\"\/>\n\t\t\t<input type=\"hidden\" name=\"referer_title\" value=\"ENINTER\" \/>\n\n\t\t\t\n\t\t\t<div class=\"elementor-form-fields-wrapper elementor-labels-\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-50\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-name\" class=\"elementor-field-label elementor-screen-only\">\n\t\t\t\t\t\t\t\tNom\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[name]\" id=\"form-field-name\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Nom\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_f984d78 elementor-col-50\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_f984d78\" class=\"elementor-field-label elementor-screen-only\">\n\t\t\t\t\t\t\t\tCognoms\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_f984d78]\" id=\"form-field-field_f984d78\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Cognoms\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-50 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-email\" class=\"elementor-field-label elementor-screen-only\">\n\t\t\t\t\t\t\t\tCorreu electr\u00f2nic\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"email\" name=\"form_fields[email]\" id=\"form-field-email\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Correu electr\u00f2nic\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-tel elementor-field-group elementor-column elementor-field-group-field_6e1c716 elementor-col-50 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_6e1c716\" class=\"elementor-field-label elementor-screen-only\">\n\t\t\t\t\t\t\t\tTel\u00e8fon\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<input size=\"1\" type=\"tel\" name=\"form_fields[field_6e1c716]\" id=\"form-field-field_6e1c716\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Tel\u00e8fon\" required=\"required\" pattern=\"[0-9()#&amp;+*-=.]+\" title=\"Only numbers and phone characters (#, -, *, etc) are accepted.\">\n\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_be9deb4 elementor-col-50 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_be9deb4\" class=\"elementor-field-label elementor-screen-only\">\n\t\t\t\t\t\t\t\tDirecci\u00f3\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_be9deb4]\" id=\"form-field-field_be9deb4\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Direcci\u00f3\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_809db49 elementor-col-50 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_809db49\" class=\"elementor-field-label elementor-screen-only\">\n\t\t\t\t\t\t\t\tCodi postal\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_809db49]\" id=\"form-field-field_809db49\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Codi postal\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-message elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-message\" class=\"elementor-field-label elementor-screen-only\">\n\t\t\t\t\t\t\t\tMotiu del missatge\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[message]\" id=\"form-field-message\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Motiu del missatge\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-field_44013fa elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_44013fa\" class=\"elementor-field-label elementor-screen-only\">\n\t\t\t\t\t\t\t\tMissatge\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t<textarea class=\"elementor-field-textual elementor-field  elementor-size-sm\" name=\"form_fields[field_44013fa]\" id=\"form-field-field_44013fa\" rows=\"4\" placeholder=\"Missatge\"><\/textarea>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-acceptance elementor-field-group elementor-column elementor-field-group-field_201e27d elementor-col-100 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_201e27d\" class=\"elementor-field-label elementor-screen-only\">\n\t\t\t\t\t\t\t\tprivacitat\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-subgroup\">\n\t\t\t<span class=\"elementor-field-option\">\n\t\t\t\t<input type=\"checkbox\" name=\"form_fields[field_201e27d]\" id=\"form-field-field_201e27d\" class=\"elementor-field elementor-size-sm  elementor-acceptance-field\" required=\"required\">\n\t\t\t\t<label for=\"form-field-field_201e27d\"><span style=\"font-size: 16px;\">He llegit i accepto la pol\u00edtica de privacitat d\u2019eninter.com<\/span><\/label>\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-acceptance elementor-field-group elementor-column elementor-field-group-field_d884764 elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_d884764\" class=\"elementor-field-label elementor-screen-only\">\n\t\t\t\t\t\t\t\tnewsletter\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-subgroup\">\n\t\t\t<span class=\"elementor-field-option\">\n\t\t\t\t<input type=\"checkbox\" name=\"form_fields[field_d884764]\" id=\"form-field-field_d884764\" class=\"elementor-field elementor-size-sm  elementor-acceptance-field\" checked=\"checked\">\n\t\t\t\t<label for=\"form-field-field_d884764\"><span style=\"font-size: 16px; line-height: 1em;\">Vull rebre Newsletter, butlletins i publicitat d\u2019Eninter per con\u00e8ixer les vostres ofertes<span><\/label>\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-recaptcha_v3 elementor-field-group elementor-column elementor-field-group-field_aec0326 elementor-col-100 recaptcha_v3-bottomright\">\n\t\t\t\t\t<div class=\"elementor-field\" id=\"form-field-field_aec0326\"><div class=\"elementor-g-recaptcha\" data-sitekey=\"6Le1NusnAAAAAN51xTPVL8x5gMm77J8ujUKuotzu\" data-type=\"v3\" data-action=\"Form\" data-badge=\"bottomright\" data-size=\"invisible\"><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text\">\n\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_a25f22d]\" id=\"form-field-field_a25f22d\" class=\"elementor-field elementor-size-sm \" style=\"display:none !important;\">\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\">\n\t\t\t\t\t<button class=\"elementor-button elementor-size-sm\" type=\"submit\" id=\"btn-claro\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Enviar<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/form>\n\t\t\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>Pressupost urgent Veure serveis + 0 ANYS D&#8217;EXPERI\u00c8NCIA + 0 INSTAL\u00b7LACIONS EN MANTENIMENT + 0 PROFESSIONALS Som ENINTER Puges? M\u00e9s de 50 anys com a<\/p>\n","protected":false},"author":9,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"categories":[],"class_list":["post-24424","page","type-page","status-publish","hentry"],"acf":[],"_yoast_wpseo_focuskw":null,"_yoast_wpseo_metadesc":null,"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.6 (Yoast SEO v27.7) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Home Test 2025 - ENINTER<\/title>\n<meta name=\"robots\" content=\"noindex, nofollow\" \/>\n<meta property=\"og:locale\" content=\"ca_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Home Test 2025\" \/>\n<meta property=\"og:description\" content=\"Pressupost urgent Veure serveis + 0 ANYS D&#8217;EXPERI\u00c8NCIA + 0 INSTAL\u00b7LACIONS EN MANTENIMENT + 0 PROFESSIONALS Som ENINTER Puges? M\u00e9s de 50 anys com a\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.eninter.com\/ca\/home-2025-2\/\" \/>\n<meta property=\"og:site_name\" content=\"ENINTER\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/EninterAscensores\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-07T09:47:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/05\/Group-1414.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@Eninter\" \/>\n<meta name=\"twitter:label1\" content=\"Temps estimat de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minuts\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Home Test 2025 - ENINTER","robots":{"index":"noindex","follow":"nofollow"},"og_locale":"ca_ES","og_type":"article","og_title":"Home Test 2025","og_description":"Pressupost urgent Veure serveis + 0 ANYS D&#8217;EXPERI\u00c8NCIA + 0 INSTAL\u00b7LACIONS EN MANTENIMENT + 0 PROFESSIONALS Som ENINTER Puges? M\u00e9s de 50 anys com a","og_url":"https:\/\/www.eninter.com\/ca\/home-2025-2\/","og_site_name":"ENINTER","article_publisher":"https:\/\/www.facebook.com\/EninterAscensores","article_modified_time":"2025-08-07T09:47:52+00:00","og_image":[{"url":"https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/05\/Group-1414.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@Eninter","twitter_misc":{"Temps estimat de lectura":"6 minuts"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.eninter.com\/ca\/home-2025-2\/","url":"https:\/\/www.eninter.com\/ca\/home-2025-2\/","name":"Home Test 2025 - ENINTER","isPartOf":{"@id":"https:\/\/www.eninter.com\/ca\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.eninter.com\/ca\/home-2025-2\/#primaryimage"},"image":{"@id":"https:\/\/www.eninter.com\/ca\/home-2025-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/05\/Group-1414.png","datePublished":"2025-05-23T08:13:07+00:00","dateModified":"2025-08-07T09:47:52+00:00","breadcrumb":{"@id":"https:\/\/www.eninter.com\/ca\/home-2025-2\/#breadcrumb"},"inLanguage":"ca","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.eninter.com\/ca\/home-2025-2\/"]}]},{"@type":"ImageObject","inLanguage":"ca","@id":"https:\/\/www.eninter.com\/ca\/home-2025-2\/#primaryimage","url":"https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/05\/Group-1414.png","contentUrl":"https:\/\/www.eninter.com\/wp-content\/uploads\/2025\/05\/Group-1414.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.eninter.com\/ca\/home-2025-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/www.eninter.com\/ca\/"},{"@type":"ListItem","position":2,"name":"Home Test 2025"}]},{"@type":"WebSite","@id":"https:\/\/www.eninter.com\/ca\/#website","url":"https:\/\/www.eninter.com\/ca\/","name":"ENINTER","description":"Mantenimiento de Ascensores Multimarca","publisher":{"@id":"https:\/\/www.eninter.com\/ca\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.eninter.com\/ca\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ca"},{"@type":"Organization","@id":"https:\/\/www.eninter.com\/ca\/#organization","name":"Eniter","url":"https:\/\/www.eninter.com\/ca\/","logo":{"@type":"ImageObject","inLanguage":"ca","@id":"https:\/\/www.eninter.com\/ca\/#\/schema\/logo\/image\/","url":"https:\/\/www.eninter.com\/wp-content\/uploads\/2023\/08\/logo-eninter-png.png","contentUrl":"https:\/\/www.eninter.com\/wp-content\/uploads\/2023\/08\/logo-eninter-png.png","width":600,"height":340,"caption":"Eniter"},"image":{"@id":"https:\/\/www.eninter.com\/ca\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/EninterAscensores","https:\/\/x.com\/Eninter","https:\/\/www.instagram.com\/eninterascensores\/","https:\/\/www.youtube.com\/user\/ascensoreseninter"]}]}},"_links":{"self":[{"href":"https:\/\/www.eninter.com\/ca\/wp-json\/wp\/v2\/pages\/24424","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.eninter.com\/ca\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.eninter.com\/ca\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.eninter.com\/ca\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/www.eninter.com\/ca\/wp-json\/wp\/v2\/comments?post=24424"}],"version-history":[{"count":0,"href":"https:\/\/www.eninter.com\/ca\/wp-json\/wp\/v2\/pages\/24424\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.eninter.com\/ca\/wp-json\/wp\/v2\/media?parent=24424"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.eninter.com\/ca\/wp-json\/wp\/v2\/categories?post=24424"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}