{"id":4780,"date":"2026-01-13T16:59:17","date_gmt":"2026-01-13T15:59:17","guid":{"rendered":"https:\/\/innovacore.group\/?page_id=4780"},"modified":"2026-03-17T09:29:44","modified_gmt":"2026-03-17T08:29:44","slug":"legyen-core-tag","status":"publish","type":"page","link":"https:\/\/innovacore.group\/hu\/legyen-core-tag\/","title":{"rendered":"Legy\u00e9l a CORE tagja"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"4780\" class=\"elementor elementor-4780 elementor-2946\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ba1ff3f e-con-full hero-trigger e-flex e-con e-parent\" data-id=\"ba1ff3f\" 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-233ac3b e-con-full animated-background e-flex e-con e-child\" data-id=\"233ac3b\" 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-3c1bcde e-con-full e-flex e-con e-child\" data-id=\"3c1bcde\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c4480c elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget elementor-widget-html\" data-id=\"3c4480c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div id=\"innovacore-magnet\">\r\n    <canvas id=\"magnetCanvas\"><\/canvas>\r\n<\/div>\r\n\r\n<style>\r\n    #innovacore-magnet { \r\n        width: 100%; \r\n        height: 400px; \r\n        display: flex; \r\n        justify-content: center;\r\n        align-items: center;\r\n        background: transparent; \r\n        overflow: hidden;\r\n        position: relative;\r\n        z-index: 10; \/* Z-index \u00e9lev\u00e9 pour garantir la capture de la souris *\/\r\n        cursor: crosshair; \r\n        \/* Important : permet les \u00e9v\u00e9nements de souris m\u00eame si transparent *\/\r\n        pointer-events: auto; \r\n    }\r\n<\/style>\r\n\r\n<script>\r\n(function() {\r\n    const canvas = document.getElementById('magnetCanvas');\r\n    const ctx = canvas.getContext('2d');\r\n    const root = document.getElementById('innovacore-magnet');\r\n    \r\n    let w, h;\r\n    let particles = [];\r\n    \r\n    \/\/ Souris (initialis\u00e9e hors champ)\r\n    let mouse = { x: -9999, y: -9999 };\r\n    \r\n    \/\/ Configuration\r\n    const particleColor = 'rgba(245, 245, 245, 1)'; \r\n    const particleCount = 150; \/\/ Nombre de particules pour un pilier dense\r\n    const magneticForce = 0.05; \/\/ Force d'attraction vers le centre\r\n    const mouseRepulsion = 2.5; \/\/ Force de dispersion (tr\u00e8s forte)\r\n    const mouseRadius = 150; \/\/ Rayon d'effet de la souris\r\n    const friction = 0.94; \/\/ Ralentissement pour \u00e9viter l'effet \"ressort\" infini\r\n\r\n    function init() {\r\n        w = root.offsetWidth;\r\n        h = 400;\r\n        \r\n        const dpr = window.devicePixelRatio || 1;\r\n        canvas.width = w * dpr;\r\n        canvas.height = h * dpr;\r\n        canvas.style.width = w + 'px';\r\n        canvas.style.height = h + 'px';\r\n        ctx.scale(dpr, dpr);\r\n        \r\n        createParticles();\r\n    }\r\n\r\n    function createParticles() {\r\n        particles = [];\r\n        for (let i = 0; i < particleCount; i++) {\r\n            resetParticle({});\r\n        }\r\n    }\r\n\r\n    function resetParticle(p) {\r\n        \/\/ Appara\u00eet al\u00e9atoirement \u00e0 gauche OU \u00e0 droite de l'\u00e9cran\r\n        const side = Math.random() > 0.5 ? 0 : w;\r\n        \r\n        p.x = side + (Math.random() - 0.5) * 50; \/\/ Un peu en dehors ou au bord\r\n        p.y = Math.random() * h;\r\n        \r\n        \/\/ Vitesse initiale vers le centre\r\n        p.vx = (Math.random() - 0.5) * 2;\r\n        p.vy = (Math.random() - 0.5) * 2;\r\n        \r\n        p.size = Math.random() * 2 + 1; \/\/ Taille variable\r\n        p.life = 1; \/\/ Vie pour g\u00e9rer l'opacit\u00e9 ou le respawn si besoin\r\n        \r\n        \/\/ Vitesse verticale constante une fois au centre (pour l'effet de flux ascendant)\r\n        p.flowSpeed = -0.5 - Math.random(); \r\n        \r\n        \/\/ Est-ce une particule existante qu'on recycle ?\r\n        if (p.push) particles.push(p);\r\n        return p;\r\n    }\r\n\r\n    function draw() {\r\n        ctx.clearRect(0, 0, w, h);\r\n        \r\n        const centerX = w \/ 2;\r\n        \r\n        \/\/ Lueur centrale pour le pilier (Background)\r\n        ctx.globalCompositeOperation = 'screen'; \/\/ Mode fusion pour la lumi\u00e8re\r\n        const gradient = ctx.createLinearGradient(centerX - 20, 0, centerX + 20, 0);\r\n        gradient.addColorStop(0, 'rgba(245, 245, 245, 0)');\r\n        gradient.addColorStop(0.5, 'rgba(245, 245, 245, 0.05)'); \/\/ Lueur tr\u00e8s subtile\r\n        gradient.addColorStop(1, 'rgba(245, 245, 245, 0)');\r\n        ctx.fillStyle = gradient;\r\n        ctx.fillRect(centerX - 50, 0, 100, h);\r\n        ctx.globalCompositeOperation = 'source-over'; \/\/ Retour normal\r\n\r\n        particles.forEach(p => {\r\n            \/\/ 1. ATTRACTION MAGN\u00c9TIQUE (Le Pilier)\r\n            \/\/ Calcul de la distance au centre X\r\n            const dxCenter = centerX - p.x;\r\n            \r\n            \/\/ Force horizontale : Attire vers le centre\r\n            \/\/ Plus on est loin, plus on est attir\u00e9. Plus on est pr\u00e8s, plus \u00e7a se calme.\r\n            p.vx += dxCenter * 0.001 * (p.size * 0.5); \r\n            \r\n            \/\/ Force verticale : Tendance \u00e0 monter (flux d'\u00e9nergie)\r\n            p.vy += -0.02; \r\n\r\n            \/\/ 2. DISPERSION (Souris)\r\n            const dxMouse = p.x - mouse.x;\r\n            const dyMouse = p.y - mouse.y;\r\n            const distMouse = Math.sqrt(dxMouse * dxMouse + dyMouse * dyMouse);\r\n\r\n            if (distMouse < mouseRadius) {\r\n                \/\/ Calcul de la force de r\u00e9pulsion (inversement proportionnelle \u00e0 la distance)\r\n                const force = (mouseRadius - distMouse) \/ mouseRadius;\r\n                \r\n                \/\/ On explose la v\u00e9locit\u00e9\r\n                p.vx += (dxMouse \/ distMouse) * force * mouseRepulsion;\r\n                p.vy += (dyMouse \/ distMouse) * force * mouseRepulsion;\r\n            }\r\n\r\n            \/\/ 3. PHYSIQUE\r\n            p.vx *= friction; \/\/ Friction pour que les particules ne partent pas \u00e0 l'infini\r\n            p.vy *= friction;\r\n            \r\n            p.x += p.vx;\r\n            p.y += p.vy;\r\n\r\n            \/\/ Si la particule est pi\u00e9g\u00e9e au centre (dans le pilier), on limite sa vitesse X\r\n            \/\/ pour qu'elle ne \"vibre\" pas trop, mais on la laisse monter\r\n            if (Math.abs(p.x - centerX) < 20 && distMouse > mouseRadius) {\r\n                p.vx *= 0.8; \/\/ Friction X plus forte au centre\r\n                p.y += p.flowSpeed; \/\/ Monte plus vite\r\n            }\r\n\r\n            \/\/ 4. RESPAWN (Cycle de vie)\r\n            \/\/ Si la particule sort en haut, en bas, ou trop sur les c\u00f4t\u00e9s (apr\u00e8s dispersion)\r\n            if (p.y < -50 || p.y > h + 50 || p.x < -100 || p.x > w + 100) {\r\n                resetParticle(p);\r\n            }\r\n\r\n            \/\/ 5. DESSIN\r\n            \/\/ Opacit\u00e9 : plus c'est proche du centre, plus c'est solide\r\n            const distToCenter = Math.abs(p.x - centerX);\r\n            const alpha = Math.max(0.2, 1 - (distToCenter \/ (w\/2)));\r\n            \r\n            ctx.fillStyle = particleColor;\r\n            ctx.globalAlpha = alpha;\r\n            ctx.beginPath();\r\n            ctx.arc(p.x, p.y, p.size, 0, Math.PI * 2);\r\n            ctx.fill();\r\n        });\r\n        \r\n        ctx.globalAlpha = 1;\r\n        requestAnimationFrame(draw);\r\n    }\r\n\r\n    const updateMouse = (e) => {\r\n        const r = canvas.getBoundingClientRect();\r\n        mouse.x = e.clientX - r.left;\r\n        mouse.y = e.clientY - r.top;\r\n    };\r\n\r\n    window.addEventListener('resize', init);\r\n    \r\n    \/\/ \u00c9v\u00e9nements souris\r\n    canvas.addEventListener('mousemove', updateMouse);\r\n    \/\/ Important : quand la souris part, on met ses coordonn\u00e9es tr\u00e8s loin\r\n    \/\/ pour arr\u00eater la dispersion imm\u00e9diatement\r\n    canvas.addEventListener('mouseleave', () => { \r\n        mouse.x = -9999; \r\n        mouse.y = -9999; \r\n    });\r\n\r\n    init();\r\n    \r\n    \/\/ Initialisation des particules\r\n    for (let i = 0; i < particleCount; i++) {\r\n        particles.push(resetParticle({}));\r\n    }\r\n    \r\n    draw();\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-18ba1ca elementor-widget elementor-widget-heading\" data-id=\"18ba1ca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Legy\u00e9l <span class=\"ic-nycd\">core member<\/span>.<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2f9f5e9 elementor-widget elementor-widget-text-editor\" data-id=\"2f9f5e9\" 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>\u00c1ll\u00edtsd meg az ad\u00e1st, kezdj el \u00e9p\u00edteni. Alkalmazd a CORE m\u00f3dszertant a c\u00e9gekben \u00e9s add egyens\u00falyt a p\u00e9nz\u00fcgyi sikered \u00e9s az \u00e1ltalad el\u00e9rt eredm\u00e9nyek k\u00f6z\u00f6tt.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b24f958 e-con-full e-flex e-con e-child\" data-id=\"b24f958\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5d879c3 elementor-widget elementor-widget-button\" data-id=\"5d879c3\" 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=\"#concept\">\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\">TUDj meg t\u00f6bbet<\/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-0153046 elementor-widget elementor-widget-button\" data-id=\"0153046\" 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=\"#cta\">\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\">\u00c9P\u00cdTKEZNI VELENK\u00dcNK<\/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\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-02eca23 animated-slow e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"02eca23\" data-element_type=\"container\" data-e-type=\"container\" id=\"concept\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-6dbab67 e-con-full e-flex e-con e-child\" data-id=\"6dbab67\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0401e53 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"0401e53\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">A KONCEPT<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9de8b4 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"f9de8b4\" 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<div class=\"elementor-element elementor-element-5bd7df4 e-con-full e-flex e-con e-child\" data-id=\"5bd7df4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-413f6fc e-con-full e-flex e-con e-child\" data-id=\"413f6fc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-194a169 animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"194a169\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" 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=\"433\" height=\"433\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-cta-job-optimized.jpg\" class=\"attachment-large size-large wp-image-4696\" alt=\"\" srcset=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-cta-job-optimized.jpg 433w, https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-cta-job-optimized-300x300.jpg 300w, https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-cta-job-optimized-150x150.jpg 150w\" sizes=\"(max-width: 433px) 100vw, 433px\" \/>\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-21d0889 animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"21d0889\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Csatlakozz a CORE-hoz. Egy elit oper\u00e1torokb\u00f3l \u00e1ll\u00f3 csoport egyetlen c\u00e9l vez\u00e9relve: behatolni, stabiliz\u00e1lni \u00e9s sk\u00e1l\u00e1zni a leg\u00edg\u00e9retesebb c\u00e9geket \u00fagy, hogy azokat a saj\u00e1tjainknak tekintj\u00fck.<\/p><p data-path-to-node=\"8\">Az \u00fcgyn\u00f6ki modell megs\u00e9r\u00fclt. Egy <b data-path-to-node=\"8\" data-index-in-node=\"57\">kibont\u00f3 alternat\u00edv\u00e1t<\/b> \u00e9p\u00edt\u00fcnk. CORE Tagk\u00e9nt nem vagy szabad\u00fasz\u00f3 vagy klasszikus\/\u00f6reg modell \u00fcgyn\u00f6ks\u00e9g, aki sz\u00e1ml\u00e1z. Te egy <b data-path-to-node=\"8\" data-index-in-node=\"154\">Strat\u00e9giai Partner \u00e9s Mentor<\/b> vagy. Elindulsz egy projektben tud\u00e1sodat \u00e9s eszk\u00f6zeidet korl\u00e1tok n\u00e9lk\u00fcl megosztva.<\/p><p data-path-to-node=\"9\">Misszi\u00f3d egyszer\u0171, m\u00e9gis ig\u00e9nyes: k\u00eds\u00e9rd a v\u00e1llalatokat forr\u00e1sok biztos\u00edt\u00e1s\u00e1hoz, pivot\u00e1l\u00e1shoz vagy nemzetk\u00f6zi sk\u00e1l\u00e1z\u00e1shoz. Egyes\u00edtett agyk\u00e9nt dolgozunk, hogy a c\u00e9g sikeres legyen. Nem id\u0151 alapj\u00e1n sz\u00e1ml\u00e1zunk; eredm\u00e9nyek, r\u00e9szv\u00e9nyek \u00e9s k\u00f6z\u00f6s hossz\u00fa t\u00e1v\u00fa \u00e9rt\u00e9k alapj\u00e1n j\u00e1r d\u00edj.<\/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-d06fb77 e-con-full e-flex e-con e-child\" data-id=\"d06fb77\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c1bd029 e-con-full e-flex e-con e-child\" data-id=\"c1bd029\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5a8fcd2 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"5a8fcd2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInRight&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Nem az \u00f3r\u00e1kat sz\u00e1ml\u00e1zzuk,<br>\n&gt;Mi=<span class=\"ic-nycd\">eszk\u00f6z\u00f6ket<\/span> \u00e9p\u00edt\u00fcnk.<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-bfb6544 e-con-full e-flex e-con e-child\" data-id=\"bfb6544\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4057e64 e-con-full e-flex e-con e-child\" data-id=\"4057e64\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-cbd2ec6 e-con-full e-flex e-con e-child\" data-id=\"cbd2ec6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8c95abf e-con-full e-flex e-con e-child\" data-id=\"8c95abf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dfbe1fc elementor-widget-mobile__width-inherit elementor-widget elementor-widget-image\" data-id=\"dfbe1fc\" data-element_type=\"widget\" data-e-type=\"widget\" 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=\"800\" height=\"800\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/solar_document-add-outline.svg\" class=\"attachment-large size-large wp-image-1158\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2052546 e-con-full e-flex e-con e-child\" data-id=\"2052546\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0e0ee16 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"0e0ee16\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Radik\u00e1lis Nagylelk\u00fbs\u00e9g<\/h3>\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-7db6c6e e-con-full e-flex e-con e-child\" data-id=\"7db6c6e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6b7a07f animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"6b7a07f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Nem rejtegetj\u00fck a tud\u00e1st. Teljes m\u00e9rt\u00e9kben megosztjuk a playbookokat \u00e9s eszk\u00f6z\u00f6ket a t\u00e1mogatott c\u00e9gekkel. Siker\u00fck szinte a mi siker\u00fcnk.<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-811232e e-con-full e-flex e-con e-child\" data-id=\"811232e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e340447 e-con-full e-flex e-con e-child\" data-id=\"e340447\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a9220f6 e-con-full e-flex e-con e-child\" data-id=\"a9220f6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-bdc167e e-con-full e-flex e-con e-child\" data-id=\"bdc167e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-83693f2 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-image\" data-id=\"83693f2\" data-element_type=\"widget\" data-e-type=\"widget\" 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=\"800\" height=\"800\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/solar_tuning-square-2-outline-about-us-2.svg\" class=\"attachment-large size-large wp-image-2286\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0233f37 e-con-full e-flex e-con e-child\" data-id=\"0233f37\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8f1e9e1 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"8f1e9e1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Nincs sz\u00e1mla, 100% \u00f6sszehangolts\u00e1g<\/h3>\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-20ec175 e-con-full e-flex e-con e-child\" data-id=\"20ec175\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5c4628e animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"5c4628e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Kock\u00e1zatd\u00edj n\u00e9lk\u00fcli piacelgondoz\u00e1s: a d\u00edjt\u00e9telt megsz\u00fcntetj\u00fck. Id\u0151nket arra ford\u00edtjuk, hogy r\u00e9szesed\u00e9st \u00e9s visszat\u00e9r\u0151 bev\u00e9teli forr\u00e1sokat szerezz\u00fcnk k\u00e9s\u0151bb.<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a78e32b e-con-full e-flex e-con e-child\" data-id=\"a78e32b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6ea80c3 e-con-full e-flex e-con e-child\" data-id=\"6ea80c3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d870e26 e-con-full e-flex e-con e-child\" data-id=\"d870e26\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2b92617 e-con-full e-flex e-con e-child\" data-id=\"2b92617\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-93ba148 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-image\" data-id=\"93ba148\" data-element_type=\"widget\" data-e-type=\"widget\" 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=\"800\" height=\"800\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/solar_settings-minimalistic-outline-about-us-3.svg\" class=\"attachment-large size-large wp-image-2297\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-02ad853 e-con-full e-flex e-con e-child\" data-id=\"02ad853\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8edec9b animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"8edec9b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Mentor &amp; Oper\u00e1tor<\/h3>\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-65a93c4 e-con-full e-flex e-con e-child\" data-id=\"65a93c4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bf3d7c8 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"bf3d7c8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Strat\u00e9gak\u00e9nt m\u0171k\u00f6dsz a t\u00f6bbi szak\u00e9rt\u0151 mellett. \u00datmutatod az alap\u00edt\u00f3t, megsz\u00fcnteted a sz\u0171k keresztmetszeteket, \u00e9s tulajdonosi precizit\u00e1ssal v\u00e9grehajtasz.<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4bb11c2 e-flex e-con-boxed e-con e-parent\" data-id=\"4bb11c2\" 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-212099e e-con-full e-flex e-con e-child\" data-id=\"212099e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7c8fcb2 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"7c8fcb2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">A K\u00d6Z\u00d6SS\u00c9G<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2fcac5a elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"2fcac5a\" 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<div class=\"elementor-element elementor-element-e23fce2 e-con-full e-flex e-con e-child\" data-id=\"e23fce2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c331d3d animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"c331d3d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Olyan \u00f6kosziszt\u00e9ma, ahol a szak\u00e9rtelmed <span class=\"ic-nycd\">n\u00f6vekszik<\/span>.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0216c7b elementor-widget elementor-widget-text-editor\" data-id=\"0216c7b\" 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>Most m\u00e1r nem vagy <strong>egyed\u00fcl dolgoz\u00f3<\/strong> tan\u00e1csad\u00f3 vagy <strong>\u00f6reg modell \u00fcgyn\u00f6ks\u00e9g<\/strong>. R\u00e9szt veszel egy ipari g\u00e9pezetben, amelyet az\u00e9rt terveztek, hogy behatoljon a piacokra.<\/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-b73a9d0 e-con-full e-flex e-con e-child\" data-id=\"b73a9d0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-85a00f9 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"85a00f9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInLeft&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-aeaf5c4 e-con-full e-flex e-con e-child\" data-id=\"aeaf5c4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4768954 animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"4768954\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:1}\" 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=\"800\" height=\"800\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-icone-experts-founders.svg\" class=\"attachment-large size-large wp-image-2235\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6ac3479 e-con-full e-flex e-con e-child\" data-id=\"6ac3479\" 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-15b70ae elementor-widget elementor-widget-heading\" data-id=\"15b70ae\" 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\">Tulajdonosi mentalit\u00e1s<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a8103c0 elementor-widget elementor-widget-text-editor\" data-id=\"a8103c0\" 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>Nem k\u00e9r\u00fcnk \u201e\u00fcgyf\u00e9l-briefet\u201d. Bemen\u00fcnk a t\u00e1rgyal\u00f3terembe. D\u00f6nt\u00e9seket hozunk \u00fagy, mintha a p\u00e9nz\u00fcnk lenne az asztalon.<\/p><p><strong>A c\u00e9l<\/strong>: Vezesse a c\u00e9get potenci\u00e1lb\u00f3l \u201ebankk\u00e9sz\u201d esett\u00e9.<\/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-33b8463 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"33b8463\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-00174c6 e-con-full e-flex e-con e-child\" data-id=\"00174c6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e67097c animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"e67097c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:1}\" 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=\"800\" height=\"800\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-icone-experts-operators.svg\" class=\"attachment-large size-large wp-image-2257\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-32b224f e-con-full e-flex e-con e-child\" data-id=\"32b224f\" 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-362a2cd elementor-widget elementor-widget-heading\" data-id=\"362a2cd\" 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\">Kieg\u00e9sz\u00edt\u0151 Er\u0151<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-42239e7 elementor-widget elementor-widget-text-editor\" data-id=\"42239e7\" 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>Senki sem nyer egyed\u00fcl. Hozd a konkr\u00e9t eszk\u00f6zedet (\u00c9rt\u00e9kes\u00edt\u00e9s, Tech, M&amp;A) \u00e9s csatlakozz a t\u00f6bbi CORE tag munk\u00e1j\u00e1hoz.<\/p><p><strong>A c\u00e9l<\/strong>: egy holisztikus beavatkoz\u00e1s, ahol a v\u00e1llalkoz\u00e1s minden szeglet\u00e9t egy szak\u00e9rt\u0151 fedi le.<\/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-3669a8b e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"3669a8b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-017a661 e-con-full e-flex e-con e-child\" data-id=\"017a661\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c67fd80 animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"c67fd80\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:1}\" 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=\"800\" height=\"800\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-icone-experts-investors.svg\" class=\"attachment-large size-large wp-image-2246\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0f9bec8 e-con-full e-flex e-con e-child\" data-id=\"0f9bec8\" 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-6d5003f elementor-widget elementor-widget-heading\" data-id=\"6d5003f\" 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\">Diverzifik\u00e1lt Portf\u00f3li\u00f3<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d58c070 elementor-widget elementor-widget-text-editor\" data-id=\"d58c070\" 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>Fizet\u00e9s helyett portf\u00f3li\u00f3t \u00e9p\u00edtesz. Siker-d\u00edjak, R\u00e9szv\u00e9teli Hozz\u00e1j\u00e1rul\u00e1s \u00e9s hossz\u00fa t\u00e1v\u00fa Menedzsment D\u00edjak, m\u0171veleti csapatok r\u00e9v\u00e9n keresel.<\/p><p><strong>A C\u00e9l<\/strong>: r\u00e9sztulajdonosk\u00e9nt lenni a v\u00e1llalatok \u00f6kosziszt\u00e9m\u00e1j\u00e1ban, amelyet n\u00f6veksz\u00fcnk.<\/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<\/div>\n\t\t<div class=\"elementor-element elementor-element-4372856 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"4372856\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:500}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5c3e331 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"5c3e331\" 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=\"#cta\">\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\">Tegy\u00fck fel a projektedet<\/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-e2dc2d0 e-con-full e-flex e-con e-child\" data-id=\"e2dc2d0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4017fb1 e-con-full e-flex e-con e-child\" data-id=\"4017fb1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a1641a7 animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"a1641a7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:1,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" 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=\"619\" height=\"283\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-apropos-avantage-optimized.jpg\" class=\"attachment-large size-large wp-image-1204\" alt=\"\" srcset=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-apropos-avantage-optimized.jpg 619w, https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-apropos-avantage-optimized-300x137.jpg 300w\" sizes=\"(max-width: 619px) 100vw, 619px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9be19a8 e-con-full e-flex e-con e-child\" data-id=\"9be19a8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a5899b1 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"a5899b1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Innovacore-hoz csatlakozva abbahagyod az id\u0151\u00e9rt val\u00f3 cser\u00e9t. Elkezded <span class=\"ic-nycd\">\u00e9rt\u00e9k felhalmoz\u00e1s\u00e1t<\/span>.<\/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<div class=\"elementor-element elementor-element-6d27d1b e-flex e-con-boxed e-con e-parent\" data-id=\"6d27d1b\" 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-d16af87 e-con-full e-flex e-con e-child\" data-id=\"d16af87\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8692d23 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"8692d23\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">FOLYAMAT<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-77bfe67 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"77bfe67\" 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<div class=\"elementor-element elementor-element-248a2c5 e-con-full e-flex e-con e-child\" data-id=\"248a2c5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4e3f512 e-con-full e-flex e-con e-child\" data-id=\"4e3f512\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e7614b4 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"e7614b4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Az utad <span class=\"ic-nycd\">core operator<\/span>k\u00e9nt.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-54178d6 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"54178d6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;animation_delay&quot;:100,&quot;animation_mobile&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e127eac elementor-widget elementor-widget-text-editor\" data-id=\"e127eac\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>A projektre t\u00f6rt\u00e9n\u0151 onboardingt\u00f3l a felemelked\u00e9s megoszt\u00e1s\u00e1ig. \u00cdgy vetj\u00fck be kollekt\u00edv er\u0151nket.<\/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-b7565c2 e-con-full e-flex e-con e-child\" data-id=\"b7565c2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-44c587d e-con-full e-flex e-con e-child\" data-id=\"44c587d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-9af5f28 e-con-full e-flex e-con e-child\" data-id=\"9af5f28\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-74bd5c3 circle elementor-widget elementor-widget-heading\" data-id=\"74bd5c3\" 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\">01<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2269917 elementor-widget elementor-widget-heading\" data-id=\"2269917\" 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\">Integr\u00e1ci\u00f3s M\u00e9lyelemz\u00e9s \u00e9s Eszk\u00f6zbead\u00e1s<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-393922f elementor-widget elementor-widget-text-editor\" data-id=\"393922f\" 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>Csatlakozol egy csapathoz. Kinyitod a kell\u00e9kt\u00e1rad. Elemezz\u00fck a c\u00e9lc\u00e9get, \u00e9s azonnal bevezetj\u00fck az \u00e1ltalunk ny\u00fajtott \u201eEszk\u00f6z\u00f6ket\u201d (sablonok, strat\u00e9gi\u00e1k, h\u00e1l\u00f3zatok) a v\u00e9rz\u00e9s le\u00e1ll\u00edt\u00e1sa vagy a n\u00f6veked\u00e9s beind\u00edt\u00e1sa \u00e9rdek\u00e9ben.<\/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-3e05b14 e-con-full e-flex e-con e-child\" data-id=\"3e05b14\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-68429c3 elementor-widget elementor-widget-html\" data-id=\"68429c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\\\"arrow-widget-container\\\">\\r\\n    <div class=\\\"standalone-arrow\\\"><\/div>\\r\\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4cd115b e-con-full e-flex e-con e-child\" data-id=\"4cd115b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c09813b circle elementor-widget elementor-widget-heading\" data-id=\"c09813b\" 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\">02<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3094bb8 elementor-widget elementor-widget-heading\" data-id=\"3094bb8\" 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\">Mentor\u00e1l\u00e1si Strat\u00e9gia &amp; Ir\u00e1ny<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-575e1ff elementor-widget elementor-widget-text-editor\" data-id=\"575e1ff\" 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>Vezeted a saj\u00e1t vertik\u00e1dat. Mentork\u00e9nt seg\u00edted a bels\u0151 csapatot vagy az alap\u00edt\u00f3t. Fel\u00e9p\u00edted a Finansz\u00edroz\u00e1s, \u00c1talak\u00edt\u00e1s vagy Sk\u00e1l\u00e1z\u00e1s k\u00f6ves\u00fatj\u00e1t. Te vagy az \u00e9p\u00edt\u00e9sz.<\/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-e96cbc9 e-con-full e-flex e-con e-child\" data-id=\"e96cbc9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9a7eb42 elementor-widget elementor-widget-html\" data-id=\"9a7eb42\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\\\"arrow-widget-container\\\">\\r\\n    <div class=\\\"standalone-arrow\\\"><\/div>\\r\\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c8aef94 e-con-full e-flex e-con e-child\" data-id=\"c8aef94\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e469076 circle elementor-widget elementor-widget-heading\" data-id=\"e469076\" 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\">03<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-de43646 elementor-widget elementor-widget-heading\" data-id=\"de43646\" 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\">V\u00e9grehajt\u00e1s a \"Skin in the Game\" szakaszban<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-38a6af7 elementor-widget elementor-widget-text-editor\" data-id=\"38a6af7\" 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>Nem csak tan\u00e1csot adunk; meg is tessz\u00fck. Egy\u00fctt v\u00e9grehajtjuk az \u00fctemtervet a &#8222;Unlock&#8221; (T\u00e1mogat\u00e1s, Nyeres\u00e9g) el\u00e9r\u00e9s\u00e9\u00e9rt. Itt m\u00e9rik a hat\u00e1sodat.<\/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-b204675 e-con-full e-flex e-con e-child\" data-id=\"b204675\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d837354 elementor-widget elementor-widget-html\" data-id=\"d837354\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\\\"arrow-widget-container\\\">\\r\\n    <div class=\\\"standalone-arrow\\\"><\/div>\\r\\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-92c71ee e-con-full e-flex e-con e-child\" data-id=\"92c71ee\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-22ef9ea circle elementor-widget elementor-widget-heading\" data-id=\"22ef9ea\" 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\">04<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4dd26f9 elementor-widget elementor-widget-heading\" data-id=\"4dd26f9\" 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\">\u00c9rt\u00e9kbizonys\u00e1g \u00e9s D\u00edjaz\u00e1s<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6a3b767 elementor-widget elementor-widget-text-editor\" data-id=\"6a3b767\" 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>Miut\u00e1n el\u00e9rt\u00fck a m\u00e9rf\u00f6ldk\u00f6vet, a modell \u00e1tkapcsol. Aktiv\u00e1ljuk a visszat\u00e9r\u0151 szerz\u0151d\u00e9seket \u00e9s \u00e9rv\u00e9nyes\u00edtj\u00fck r\u00e9szv\u00e9nyhelyzeteinket. A teljes\u00edtm\u00e9ny alapj\u00e1n fizet\u00fcnk, amit te alak\u00edtott\u00e1l ki.<\/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<\/div>\n\t\t<div class=\"elementor-element elementor-element-04f8709 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"04f8709\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:200}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d650426 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"d650426\" 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=\"#cta\">\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\">TEGY\u00dcK MEG A PROJEKTED<\/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-8c26c67 animated-slow e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"8c26c67\" data-element_type=\"container\" data-e-type=\"container\" id=\"cta\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d74e966 e-con-full e-flex e-con e-child\" data-id=\"d74e966\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b7c8c30 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"b7c8c30\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">AKCI\u00d3<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-222c1a7 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"222c1a7\" 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<div class=\"elementor-element elementor-element-f320f2e e-con-full e-flex e-con e-child\" data-id=\"f320f2e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-ea41033 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"ea41033\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInLeft&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6c4700c elementor-widget elementor-widget-heading\" data-id=\"6c4700c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">K\u00e9szen \u00e1llsz abbahagyni a <span class=\"ic-nycd\">sz\u00e1ml\u00e1z\u00e1st<\/span> \u00e9s elkezdeni <span class=\"ic-nycd\">\u00e9p\u00edteni<\/span>?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-46283c6 elementor-widget elementor-widget-text-editor\" data-id=\"46283c6\" 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>Tapasztalt szakembereket keres\u00fcnk: \u00c9rt\u00e9kes\u00edt\u00e9si Igazgat\u00f3k, P\u00e9nz\u00fcgyi Vezet\u0151k, Technikai Igazgat\u00f3k, Operat\u00edv Igazgat\u00f3k, Marketing Igazgat\u00f3k, N\u00f6veked\u00e9si Hackerek, akik relev\u00e1ns eszk\u00f6z\u00f6ket szeretn\u00e9nek \u00e9p\u00edteni.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6b33bad elementor-widget elementor-widget-heading\" data-id=\"6b33bad\" 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\">Hozz\u00e1j\u00e1rulsz ahhoz, hogy megoszd<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e355618 elementor-widget elementor-widget-html\" data-id=\"e355618\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"give-item-wrapper\">\r\n    <div class=\"give-icon\">\r\n        <div class=\"give-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"give-text\">\r\n        Korl\u00e1toz\u00e1s n\u00e9lk\u00fcli m\u0171k\u00f6d\u0151 eszk\u00f6zeid (playbookok, sablonok, h\u00e1l\u00f3zat)\u00a0\r\n    <\/div>\r\n<\/div>\r\n\r\n<div class=\"give-item-wrapper\">\r\n    <div class=\"give-icon\">\r\n        <div class=\"give-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"give-text\">\r\n        Id\u0151befektet\u00e9s \u201eskin in the game\u201d gondolkod\u00e1ssal (azonnali d\u00edjak n\u00e9lk\u00fcl)\r\n    <\/div>\r\n<\/div>\r\n\r\n<div class=\"give-item-wrapper\">\r\n    <div class=\"give-icon\">\r\n        <div class=\"give-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"give-text\">\r\n        Radik\u00e1lis \u0151szintes\u00e9g \u00e9s akt\u00edv mentor\u00e1l\u00e1si k\u00e9pess\u00e9gek\r\n    <\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-43734f7 elementor-widget elementor-widget-heading\" data-id=\"43734f7\" 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\">Meg fogsz kapni<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1239bca elementor-widget elementor-widget-html\" data-id=\"1239bca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"get-item-wrapper\">\r\n    <div class=\"get-icon\">\r\n        <div class=\"get-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"get-text\">\r\n        Exkluz\u00edv lehet\u0151s\u00e9gek magas potenci\u00e1l\u00fa v\u00e1llalkoz\u00e1sokra \u00e9s \u00e1talak\u00edt\u00e1sokra\r\n    <\/div>\r\n<\/div>\r\n\r\n<div class=\"get-item-wrapper\">\r\n    <div class=\"get-icon\">\r\n        <div class=\"get-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"get-text\">\r\n        R\u00e9szv\u00e9nyesi r\u00e9szv\u00e9tel \u00e9s siker-alap\u00fa d\u00edjaz\u00e1s\r\n    <\/div>\r\n<\/div>\r\n\r\n<div class=\"get-item-wrapper\">\r\n    <div class=\"get-icon\">\r\n        <div class=\"get-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"get-text\">\r\n        Lehet\u0151s\u00e9g egy elit t\u00e1rsas\u00e1g C-szint\u0171 oper\u00e1torokb\u00f3l \u00e1ll\u00f3 k\u00f6z\u00f6ss\u00e9g\u00e9hez\r\n    <\/div>\r\n<\/div>\r\n\r\n<div class=\"get-item-wrapper\">\r\n    <div class=\"get-icon\">\r\n        <div class=\"get-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"get-text\">\r\n        Hossz\u00fa t\u00e1v\u00fa visszaes\u0151 bev\u00e9tel a v\u00e9grehajt\u00e1si szerz\u0151d\u00e9sekb\u0151l\r\n    <\/div>\r\n<\/div>\r\n\r\n<div class=\"get-item-wrapper\">\r\n    <div class=\"get-icon\">\r\n        <div class=\"get-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"get-text\">\r\n        Szabads\u00e1g, hogy strat\u00e9giai partnerk\u00e9nt m\u0171k\u00f6dj, nem pedig besz\u00e1ll\u00edt\u00f3k\u00e9nt\r\n    <\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c248a2 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"9c248a2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;animation_delay&quot;:1,&quot;background_background&quot;:&quot;classic&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-976531f elementor-widget elementor-widget-jet-form-builder-form\" data-id=\"976531f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"jet-form-builder-form.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<link rel='stylesheet' id='wp-block-library-css' href='https:\/\/innovacore.group\/wp-includes\/css\/dist\/block-library\/common.min.css?ver=7.0.2' media='all' \/>\n<style id=\"jet-form-builder-2598-inline-css\"><\/style><form  class=\"jet-form-builder layout-column submit-type-reload\" action=\"https:\/\/innovacore.group\/hu\/wp-json\/wp\/v2\/pages\/4780\/?87rU8v=j8B14n44Q0sm&amp;method=reload\" method=\"POST\" data-form-id=\"2598\" data-layout=\"column\" enctype=\"multipart\/form-data\" novalidate=\"null\" ssr_validation_method=\"rest\"><input type=\"hidden\" id=\"_wpnonce_2598\" name=\"_wpnonce\" value=\"8650514f23\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/hu\/wp-json\/wp\/v2\/pages\/4780\" \/>\r\n<input type=\"hidden\" name=\"_jfb_current_render_states[]\" value=\"DEFAULT.STATE\" data-jfb-sync \/><input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"_jet_engine_booking_form_id\" data-field-name=\"_jet_engine_booking_form_id\" value=\"2598\">\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"_jet_engine_refer\" data-field-name=\"_jet_engine_refer\" value=\"https:\/\/innovacore.group\/hu\/wp-json\/wp\/v2\/pages\/4780\/\">\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"__queried_post_id\" data-field-name=\"__queried_post_id\" value=\"4780\">\n<div class=\"jet-form-builder-page \" data-page=\"1\" data-page-offset=\"75\">\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"postID\" data-field-name=\"postID\" data-jfb-sync=\"null\" value=\"4780\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"utm_source\" data-field-name=\"utm_source\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"utm_medium\" data-field-name=\"utm_medium\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"utm_campaign\" data-field-name=\"utm_campaign\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"utm_content\" data-field-name=\"utm_content\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"utm_id\" data-field-name=\"utm_id\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"fbclid\" data-field-name=\"fbclid\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"ggclid\" data-field-name=\"ggclid\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"isocode\" data-field-name=\"isocode\" data-jfb-sync=\"null\" value=\"en\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"form-type\" data-field-name=\"form-type\" data-jfb-sync=\"null\" value=\"general\">\n\n\n\n<div  data-validation-type=\"advanced\" data-validation-messages=\"{&quot;url&quot;:&quot;Please fill a valid url.&quot;,&quot;empty&quot;:&quot;Please fill in this field.&quot;}\" class=\"jet-form-builder-row field-type-text-field\" >\n<div class=\"jet-form-builder__field-wrap\">\n\t\t\t\t<input placeholder=\"Your website url\" name=\"web_url\" id=\"web_url\" type=\"url\" data-field-name=\"web_url\" class=\"jet-form-builder__field text-field\" data-jfb-sync=\"null\" autocomplete=\"off_pcn5DzHM\">\n\t\t\t\t\t<\/div><div class=\"jet-form-builder__desc\"><small>Please feel free to share your URL so that we can become familiar with the specifics of your activity. If you wish to share other links and\/or any additional useful information, please use the field below.<\/small><\/div>\n<\/div>\n\n<div  class=\"jet-form-builder-row field-type-textarea-field\" >\n<div class=\"jet-form-builder__field-wrap\">\n\t\t<textarea class=\"jet-form-builder__field textarea-field\" placeholder=\"Your message \/ project\" required=\"required\" name=\"project_description\" data-field-name=\"project_description\" id=\"project_description\" data-jfb-sync=\"null\"><\/textarea>\n\t<\/div><div class=\"jet-form-builder__desc\"><small>You will be contacted soon by a innovacore team member; to help them prepare for your discussion effectively, we invite you to describe your project in as much detail as possible and to share any useful information with them.<\/small><\/div>\n<\/div>\n\n<div class=\"jet-form-builder__next-page-wrap\">\n\t\t\t\t\t<button class=\"jet-form-builder__next-page\" type=\"button\">Next<\/button>\n\t<\/div>\n<\/div>\n<div class=\"jet-form-builder-page jet-form-builder-page--hidden\" data-page=\"2\" data-page-offset=\"75\">\n\n<div  data-validation-type=\"advanced\" data-validation-messages=\"{&quot;empty&quot;:&quot;Please fill in this field.&quot;}\" class=\"jet-form-builder-row field-type-text-field\" >\n<div class=\"jet-form-builder__field-wrap\">\n\t\t\t\t<input placeholder=\"Your first and last name*\" required=\"required\" name=\"firstname\" id=\"firstname\" type=\"text\" data-field-name=\"firstname\" class=\"jet-form-builder__field text-field\" data-jfb-sync=\"null\" autocomplete=\"off_fiCyhp5a\">\n\t\t\t\t\t<\/div>\n<\/div>\n\n<div  data-validation-type=\"advanced\" data-validation-rules=\"[{&quot;__visible&quot;:true,&quot;message&quot;:&quot;Veuillez entrer une adresse e-mail correcte.&quot;,&quot;type&quot;:&quot;regexp&quot;,&quot;value&quot;:&quot;^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\\\.[a-zA-Z]{2,}$&quot;}]\" data-validation-messages=\"{&quot;empty&quot;:&quot;Please enter a valid email.&quot;,&quot;email&quot;:&quot;Please enter a valid email.&quot;}\" class=\"jet-form-builder-row field-type-text-field\" >\n<div class=\"jet-form-builder__field-wrap\">\n\t\t\t\t<input placeholder=\"Your email *\" required=\"required\" name=\"email\" id=\"email\" type=\"text\" data-field-name=\"email\" class=\"jet-form-builder__field text-field\" data-jfb-sync=\"null\" autocomplete=\"off_06i4AtkB\">\n\t\t\t\t\t<\/div>\n<\/div>\n\n<div  data-validation-type=\"advanced\" data-validation-rules=\"[{&quot;__visible&quot;:true,&quot;type&quot;:&quot;regexp&quot;,&quot;value&quot;:&quot;^\\\\s*(?:\\\\+|00)?\\\\d{1,4}[\\\\s.-]?(?:\\\\d{1,4}[\\\\s.-]?){3,10}\\\\d\\\\s*$&quot;,&quot;message&quot;:&quot;Sorry, the mobile phone number you entered is incorrect. Please check your entry and enter a valid mobile phone number.&quot;}]\" data-validation-messages=\"{&quot;empty&quot;:&quot;Please fill out this field.&quot;,&quot;email&quot;:&quot;Merci d&#039;entrer un email valide.&quot;}\" class=\"jet-form-builder-row field-type-text-field\" >\n<div class=\"jet-form-builder__field-wrap\">\n\t\t\t\t<input placeholder=\"Your phone *\" required=\"required\" name=\"phone\" id=\"phone\" type=\"tel\" data-field-name=\"phone\" class=\"jet-form-builder__field text-field\" data-jfb-sync=\"null\" autocomplete=\"off_I89p1CuE\">\n\t\t\t\t\t<\/div><div class=\"jet-form-builder__desc\"><small>Please enter your international phone prefix in the format 00XXx or +XXx.<\/small><\/div>\n<\/div>\n\n<div  class=\"jet-form-builder-row field-type-checkbox-field\" >\n<div class=\"jet-form-builder__fields-group checkradio-wrap\" data-jfb-sync><div class=\"jet-form-builder__field-wrap checkboxes-wrap checkradio-wrap\"><label class=\"jet-form-builder__field-label for-checkbox\">\n\t\t\t<input type=\"checkbox\" name=\"field_name\" value=\"true\" data-field-name=\"field_name\"  class=\"jet-form-builder__field checkboxes-field checkradio-field\" required=\"required\" data-default-val=\"[&quot;&quot;]\"><span>I accept the privacy policy and wish to be contacted by a innovacore representative.<\/span><\/label><\/div><\/div>\n<\/div>\n\n<input type=\"hidden\" class=\"captcha-token\" name=\"_captcha_token\" value=\"\"\/><div  class=\"jet-form-builder-row field-type-submit-field\" >\n\t<div data-type=\"submit\" class=\"jet-form-builder__action-button-wrapper jet-form-builder__submit-wrap\">\n\t<button class=\"jet-form-builder__action-button jet-form-builder__submit submit-type-reload\" type=\"submit\">Submit<\/button>\n\t<\/div>\n\t\n<\/div>\n\n<\/div>\t<div class=\"jet-form-builder-messages-wrap\" data-form-id=\"2598\"><\/div>\n<\/form>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ab7640e animated-slow e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"ab7640e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-64a1470 e-con-full e-flex e-con e-child\" data-id=\"64a1470\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ac0797d animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"ac0797d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">GYIK<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b118ace elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"b118ace\" 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<div class=\"elementor-element elementor-element-4a95063 e-con-full e-flex e-con e-child\" data-id=\"4a95063\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6787fb9 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"6787fb9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInLeft&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c811cf7 elementor-widget elementor-widget-text-editor\" data-id=\"c811cf7\" 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>K\u00e9rd\u00e9sek? Ellenvet\u00e9sek? N\u00e9zd meg a GyIK-ot a leggyakoribb k\u00e9rd\u00e9sekre adott v\u00e1laszok\u00e9rt.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3f68e10 elementor-widget elementor-widget-html\" data-id=\"3f68e10\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\r\ndocument.addEventListener(\"DOMContentLoaded\", function() {\r\n    \r\n    \/\/ On attache l'\u00e9v\u00e9nement au document pour attraper les clics \r\n    \/\/ m\u00eame si les \u00e9l\u00e9ments sont charg\u00e9s dynamiquement par JetEngine\r\n    document.body.addEventListener('click', function(e) {\r\n        \r\n        \/\/ On v\u00e9rifie si on a cliqu\u00e9 sur un header (ou un de ses enfants)\r\n        const header = e.target.closest('.faq-header');\r\n        \r\n        if (header) {\r\n            \/\/ On trouve l'item parent\r\n            const item = header.closest('.faq-item');\r\n            if (!item) return;\r\n\r\n            \/\/ Est-ce qu'il est d\u00e9j\u00e0 ouvert ?\r\n            const isActive = item.classList.contains('active');\r\n            \r\n            \/\/ 1. FERMER TOUS LES AUTRES (Mode Accord\u00e9on strict)\r\n            \/\/ On cherche tous les items qui sont dans le m\u00eame conteneur\r\n            const parentList = item.closest('.jet-listing-dynamic-repeater__items');\r\n            if (parentList) {\r\n                const siblings = parentList.querySelectorAll('.faq-item');\r\n                siblings.forEach(sibling => {\r\n                    sibling.classList.remove('active');\r\n                    const body = sibling.querySelector('.faq-body');\r\n                    if(body) body.style.maxHeight = null;\r\n                });\r\n            }\r\n\r\n            \/\/ 2. OUVRIR CELUI-CI (S'il n'\u00e9tait pas d\u00e9j\u00e0 ouvert)\r\n            if (!isActive) {\r\n                item.classList.add('active');\r\n                const body = item.querySelector('.faq-body');\r\n                if (body) {\r\n                    body.style.maxHeight = body.scrollHeight + \"px\";\r\n                }\r\n            }\r\n        }\r\n    });\r\n\r\n});\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-daf2403 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"daf2403\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;animation_delay&quot;:1,&quot;animation_mobile&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c664584 elementor-widget elementor-widget-html\" data-id=\"c664584\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"custom-faq-wrapper\">\r\n\r\n    <div class=\"faq-item\">\r\n        <div class=\"faq-header\">\r\n            <h4 class=\"faq-question\">Ez egy fizetett munka vagy szabad\u00fasz\u00f3 megb\u00edz\u00e1s?<\/h4>\r\n            <div class=\"faq-icon\">\r\n                <div class=\"faq-icon-line horizontal\"><\/div>\r\n                <div class=\"faq-icon-line vertical\"><\/div>\r\n            <\/div>\r\n        <\/div>\r\n        <div class=\"faq-body\">\r\n            <div class=\"faq-answer\">\r\n                Egy\u00e1ltal\u00e1n nem. Ez egy <strong>Partners\u00e9g<\/strong>. Csatlakozol az Innovacore-hoz tagk\u00e9nt. Megosztod a szak\u00e9rtelmedet a projekteken cser\u00e9be egy \u00e9rt\u00e9k r\u00e9szesed\u00e9s\u00e9\u00e9rt (R\u00e9szv\u00e9nyek, Siker D\u00edjak, J\u00f6v\u0151beli Szerz\u0151d\u00e9sek). Olyanoknak sz\u00f3l, akik hajland\u00f3ak id\u0151t fektetni, hogy k\u00e9s\u0151bb sokkal t\u00f6bbet keressenek.\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <div class=\"faq-item\">\r\n        <div class=\"faq-header\">\r\n            <h4 class=\"faq-question\">Mit \u00e9rttek a \"Eszk\u00f6z\u00f6k korl\u00e1tlan megoszt\u00e1sa\u201d alatt?<\/h4>\r\n            <div class=\"faq-icon\">\r\n                <div class=\"faq-icon-line horizontal\"><\/div>\r\n                <div class=\"faq-icon-line vertical\"><\/div>\r\n            <\/div>\r\n        <\/div>\r\n        <div class=\"faq-body\">\r\n            <div class=\"faq-answer\">\r\n                Helyt\u00e1llunk a <strong>ny\u00edlt forr\u00e1sk\u00f3d\u00fa v\u00e9grehajt\u00e1sban<\/strong> portf\u00f3li\u00f3nkban. Ha van egy \u00fct\u0151s \u00e9rt\u00e9kes\u00edt\u00e9si szkripted vagy p\u00e9nz\u00fcgyi modelljeid, hozd az asztalra. Nem sablonokat adunk el; ezekkel \u00e9p\u00edt\u00fcnk sikeres c\u00e9geket.\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <div class=\"faq-item\">\r\n        <div class=\"faq-header\">\r\n            <h4 class=\"faq-question\">Hogyan v\u00e1lasztjuk ki a seg\u00edtett c\u00e9geket?<\/h4>\r\n            <div class=\"faq-icon\">\r\n                <div class=\"faq-icon-line horizontal\"><\/div>\r\n                <div class=\"faq-icon-line vertical\"><\/div>\r\n            <\/div>\r\n        <\/div>\r\n        <div class=\"faq-body\">\r\n            <div class=\"faq-answer\">\r\n                Olyan c\u00e9geket v\u00e1lasztunk ki, amelyek sk\u00e1l\u00e1z\u00f3d\u00e1si vagy visszapattan\u00e1si potenci\u00e1llal rendelkeznek. A CORE <strong>egy\u00fcttesen<\/strong> d\u00f6nt. Ha a projekt illeszkedik a V\u00e1llalati vagy Fordulati programunkba, \u00e9s hissz\u00fck, hogy k\u00e9pesek vagyunk p\u00e9nz\u00fcgyi forr\u00e1st vagy n\u00f6veked\u00e9st \u201eUnlock\u201d-olni, beind\u00edtjuk a folyamatot.\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <div class=\"faq-item\">\r\n        <div class=\"faq-header\">\r\n            <h4 class=\"faq-question\">Lehet-e ezt v\u00e9gezni m\u00e1s tev\u00e9kenys\u00e9g mellett?<\/h4>\r\n            <div class=\"faq-icon\">\r\n                <div class=\"faq-icon-line horizontal\"><\/div>\r\n                <div class=\"faq-icon-line vertical\"><\/div>\r\n            <\/div>\r\n        <\/div>\r\n        <div class=\"faq-body\">\r\n            <div class=\"faq-answer\">\r\n                Igen, kezdetben. Sok tag kezdi <strong>r\u00e9szid\u0151s szak\u00e9rt\u0151k\u00e9nt<\/strong> vagy mentorokk\u00e9nt. V\u00e9g\u00fcl az a c\u00e9l, hogy a sikeres projektjeink visszat\u00e9r\u0151 bev\u00e9tel\u00e9t megteremts\u00e9k \u00fagy, hogy teljes m\u00e9rt\u00e9kben az Innovacore \u00f6kosziszt\u00e9m\u00e1j\u00e1ra koncentr\u00e1lhassunk.\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <div class=\"faq-item\">\r\n        <div class=\"faq-header\">\r\n            <h4 class=\"faq-question\">Mi a \"Disrupt\u00edv Modell\"?<\/h4>\r\n            <div class=\"faq-icon\">\r\n                <div class=\"faq-icon-line horizontal\"><\/div>\r\n                <div class=\"faq-icon-line vertical\"><\/div>\r\n            <\/div>\r\n        <\/div>\r\n        <div class=\"faq-body\">\r\n            <div class=\"faq-answer\">\r\n                A piac tele van olyan tan\u00e1csad\u00f3kkal, akik kock\u00e1zat n\u00e9lk\u00fcl adnak tan\u00e1csokat. Ezt \u00fagy vampiresz, hogy: <strong>\u201eCsak akkor nyer\u00fcnk, ha te nyersz.\u201d<\/strong> A legink\u00e1bb \u00f6sszehangolt partnerk\u00e9nt hatolunk be a \u00f6kosziszt\u00e9m\u00e1ba, amelyet egy alap\u00edt\u00f3nak tal\u00e1lhat. Nem k\u00f6lt\u00fcnk p\u00e9nzt; vagyont teremt\u00fcnk.\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>#innovacore-magnet { width: 100%; height: 400px; display: flex; justify-content: center; align-items: center; background: transparent; overflow: hidden; position: relative; z-index: 10; \/* Z-index \u00e9lev\u00e9 pour garantir la capture de la souris *\/ cursor: crosshair; \/* Important : permet les \u00e9v\u00e9nements de souris m\u00eame si transparent *\/ pointer-events: auto; } Legy\u00e9l core member. \u00c1ll\u00edtsd meg az ad\u00e1st, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2369,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-4780","page","type-page","status-publish","has-post-thumbnail","hentry"],"_links":{"self":[{"href":"https:\/\/innovacore.group\/hu\/wp-json\/wp\/v2\/pages\/4780","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/innovacore.group\/hu\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/innovacore.group\/hu\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/innovacore.group\/hu\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/innovacore.group\/hu\/wp-json\/wp\/v2\/comments?post=4780"}],"version-history":[{"count":5,"href":"https:\/\/innovacore.group\/hu\/wp-json\/wp\/v2\/pages\/4780\/revisions"}],"predecessor-version":[{"id":7473,"href":"https:\/\/innovacore.group\/hu\/wp-json\/wp\/v2\/pages\/4780\/revisions\/7473"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/innovacore.group\/hu\/wp-json\/wp\/v2\/media\/2369"}],"wp:attachment":[{"href":"https:\/\/innovacore.group\/hu\/wp-json\/wp\/v2\/media?parent=4780"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}