{"id":79,"date":"2024-08-05T08:47:58","date_gmt":"2024-08-05T08:47:58","guid":{"rendered":"https:\/\/dev.mengisoft.com\/semilla\/?page_id=79"},"modified":"2026-04-23T10:13:13","modified_gmt":"2026-04-23T08:13:13","slug":"inicio","status":"publish","type":"page","link":"https:\/\/dev.mengisoft.com\/codethor\/","title":{"rendered":"Inicio"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"79\" class=\"elementor elementor-79\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-07334e7 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-parent\" data-id=\"07334e7\" data-element_type=\"container\" data-e-type=\"container\" id=\"elementor-distortion\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3e3e2f5 elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-html\" data-id=\"3e3e2f5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!-- CONTENEDOR -->\n<div id=\"elementor-distortion\" class=\"elementor-widget-wrap\">\n  <canvas id=\"distortionCanvas\" style=\"width:100%;height:100%;display:block;\"><\/canvas>\n<\/div>\n\n<script src=\"https:\/\/dev.mengisoft.com\/codethor\/wp-content\/uploads\/js\/three.min.js\"><\/script>\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", () => {\n  if (window.innerWidth <= 1024) return;\n\n  const wrapper = document.getElementById(\"elementor-distortion\");\n  const canvas = document.getElementById(\"distortionCanvas\");\n  const renderer = new THREE.WebGLRenderer({ canvas, alpha: false });\n  renderer.setPixelRatio(Math.min(window.devicePixelRatio, 2));\n  const scene = new THREE.Scene();\n  const camera = new THREE.OrthographicCamera(-1,1,1,-1,0,1);\n  let rtA, rtB;\n\n  \/* ================= FLOW MAP ================= *\/\n  const flowMaterial = new THREE.ShaderMaterial({\n    uniforms:{\n      uPrev:{ value:null },\n      uMouse:{ value:new THREE.Vector2(-1,-1) },\n      uVelocity:{ value:new THREE.Vector2() },\n      uDecay:{ value:0.96 }\n    },\n    vertexShader:`\n      varying vec2 vUv;\n      void main(){\n        vUv = uv;\n        gl_Position = vec4(position,1.0);\n      }\n    `,\n    fragmentShader:`\n      uniform sampler2D uPrev;\n      uniform vec2 uMouse;\n      uniform vec2 uVelocity;\n      uniform float uDecay;\n      varying vec2 vUv;\n      void main(){\n        vec2 flow = texture2D(uPrev, vUv).xy * uDecay;\n        float d = distance(vUv, uMouse);\n        float influence = exp(-pow(d * 7.5, 2.0));\n        flow += uVelocity * influence;\n        gl_FragColor = vec4(flow, 0.0, 1.0);\n      }\n    `\n  });\n  const quad = new THREE.Mesh(new THREE.PlaneGeometry(2,2), flowMaterial);\n  scene.add(quad);\n\n  \/* ================= IMAGE ================= *\/\n  const texture = new THREE.TextureLoader().load(\n    \"https:\/\/dev.mengisoft.com\/codethor\/wp-content\/uploads\/2026\/01\/12180358_gradient_wave_in_monochrome_colours_0901-scaled_b.webp\",\n    () => resize()\n  );\n  const imageMaterial = new THREE.ShaderMaterial({\n    uniforms:{\n      tMap:{ value:texture },\n      tFlow:{ value:null },\n      uStrength:{ value:0.22 },\n      uCover:{ value:new THREE.Vector2(1,1) }\n    },\n    vertexShader: flowMaterial.vertexShader,\n    fragmentShader:`\n      uniform sampler2D tMap;\n      uniform sampler2D tFlow;\n      uniform float uStrength;\n      uniform vec2 uCover;\n      varying vec2 vUv;\n      void main(){\n        vec2 uv = (vUv - 0.5) * uCover + 0.5;\n        vec2 flow = texture2D(tFlow, vUv).xy;\n        uv -= flow * uStrength;\n        uv = clamp(uv, 0.001, 0.999);\n        gl_FragColor = texture2D(tMap, uv);\n      }\n    `\n  });\n  const imageMesh = new THREE.Mesh(new THREE.PlaneGeometry(2,2), imageMaterial);\n\n  \/* ================= INTERACTION ================= *\/\n  let mouse = new THREE.Vector2(-1, -1);\n  let prev = new THREE.Vector2(-1, -1);\n\n  \/\/ Funci\u00f3n para resetear todo al salir (usada por mouseleave y fallback)\n  const resetOnLeave = () => {\n    mouse.set(-1, -1);\n    prev.set(-1, -1);\n    flowMaterial.uniforms.uMouse.value.set(-1, -1);\n    flowMaterial.uniforms.uVelocity.value.set(0, 0);\n    flowMaterial.uniforms.uDecay.value = 0.80; \/\/ Limpieza r\u00e1pida al salir\n  };\n\n  \/\/ Entrada: restaurar comportamiento normal\n  wrapper.addEventListener(\"mouseenter\", () => {\n    flowMaterial.uniforms.uDecay.value = 0.96;\n  });\n\n  \/\/ Salida: reset garantizado (funciona siempre, incluso salida ultrarr\u00e1pida)\n  wrapper.addEventListener(\"mouseleave\", resetOnLeave);\n\n  \/\/ Movimiento: seguimos usando window para fluidez con cabecera transparente\n  window.addEventListener(\"mousemove\", e => {\n    const r = canvas.getBoundingClientRect();\n\n    const inside = \n      e.clientX >= r.left &&\n      e.clientX <= r.right &&\n      e.clientY >= r.top &&\n      e.clientY <= r.bottom;\n\n    if (inside) {\n      const x = (e.clientX - r.left) \/ r.width;\n      const y = 1 - (e.clientY - r.top) \/ r.height;\n\n      if (prev.x !== -1 && prev.y !== -1) {\n        flowMaterial.uniforms.uVelocity.value\n          .set(x - prev.x, y - prev.y)\n          .multiplyScalar(6.0);\n      } else {\n        flowMaterial.uniforms.uVelocity.value.set(0, 0);\n      }\n\n      mouse.set(x, y);\n      prev.set(x, y);\n      flowMaterial.uniforms.uMouse.value.copy(mouse);\n    }\n    \/\/ Si estamos fuera, no hacemos nada \u2192 el mouseleave ya se encarg\u00f3 del reset\n  });\n\n  \/* ================= LOOP ================= *\/\n  function render(){\n    flowMaterial.uniforms.uPrev.value = rtA.texture;\n\n    renderer.setRenderTarget(rtB);\n    renderer.render(scene, camera);\n\n    renderer.setRenderTarget(null);\n    scene.remove(quad);\n    scene.add(imageMesh);\n    imageMaterial.uniforms.tFlow.value = rtB.texture;\n    renderer.render(scene, camera);\n    scene.remove(imageMesh);\n    scene.add(quad);\n\n    [rtA, rtB] = [rtB, rtA];\n\n    requestAnimationFrame(render);\n  }\n\n  \/* ================= RESIZE ================= *\/\n  function resize(){\n    const w = wrapper.clientWidth;\n    const h = wrapper.clientHeight;\n    renderer.setSize(w, h, false);\n\n    if(!rtA){\n      rtA = new THREE.WebGLRenderTarget(w, h, { type:THREE.FloatType });\n      rtB = rtA.clone();\n    } else {\n      rtA.setSize(w, h);\n      rtB.setSize(w, h);\n    }\n\n    if(texture.image){\n      const imgAspect = texture.image.width \/ texture.image.height;\n      const boxAspect = w \/ h;\n      let scaleX = 1, scaleY = 1;\n      if(boxAspect > imgAspect){\n        scaleY = imgAspect \/ boxAspect;\n      } else {\n        scaleX = boxAspect \/ imgAspect;\n      }\n      imageMaterial.uniforms.uCover.value.set(scaleX, scaleY);\n    }\n\n    \/\/ Reset total al redimensionar\n    resetOnLeave();\n    flowMaterial.uniforms.uDecay.value = 0.96;\n  }\n\n  window.addEventListener(\"resize\", resize);\n  resize();\n  render();\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-889c50b centered-container e-flex e-con-boxed e-con e-child\" data-id=\"889c50b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-aa0c3ba e-con-full e-flex e-con e-child\" data-id=\"aa0c3ba\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-313655f e-con-full e-flex e-con e-child\" data-id=\"313655f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6bfc39d animated-fast elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"6bfc39d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:400}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Software, IA y calidad en un solo equipo<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-80bf227 animated-fast elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"80bf227\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:500}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Transformamos ideas en software que impulsa tu negocio<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0bc6177 animated-fast elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"0bc6177\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:500}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tDesarrollamos soluciones digitales, sistemas a medida e inteligencia artificial aplicada para ayudar a las empresas a ser m\u00e1s eficientes, escalables y competitivas.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7b49392 e-con-full animated-fast silicaGlass-yes e-flex elementor-invisible e-con e-child\" data-id=\"7b49392\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;,&quot;animation_delay&quot;:500}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-86786f7 elementor-align-justify elementor-widget elementor-widget-button\" data-id=\"86786f7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dev.mengisoft.com\/codethor\/contacto\/\">\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\">Solicitar presupuesto<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-79c094d e-con-full e-flex e-con e-child\" data-id=\"79c094d\" data-element_type=\"container\" data-e-type=\"container\">\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-f0cab32 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"f0cab32\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;,&quot;animation_delay&quot;:2000}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-66f6293 elementor-align-left elementor-widget elementor-widget-button\" data-id=\"66f6293\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"boton-menu-movil\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#siguiente_seccion\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"material-icons md-keyboard_arrow_down\"><\/i>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Ir a la siguiente secci\u00f3n<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-dc17269 e-con-full elementor-hidden-desktop e-flex e-con e-parent\" data-id=\"dc17269\" 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-f105f0b e-flex e-con-boxed e-con e-child\" data-id=\"f105f0b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-e08c887 e-con-full e-flex e-con e-child\" data-id=\"e08c887\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1c3d5cd animated-fast elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"1c3d5cd\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:400}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Software, IA y calidad en un solo equipo<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c7b44c5 animated-fast elementor-widget-mobile__width-inherit elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"c7b44c5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:500}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Transformamos ideas en software que impulsa tu negocio<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5f9b04f animated-fast elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"5f9b04f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:500}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tDesarrollamos soluciones digitales, sistemas a medida e inteligencia artificial aplicada para ayudar a las empresas a ser m\u00e1s eficientes, escalables y competitivas.\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d83920c animated-fast elementor-invisible elementor-widget elementor-widget-button\" data-id=\"d83920c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:500}\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dev.mengisoft.com\/codethor\/contacto\/\">\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\">Solicitar presupuesto<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0cf012c elementor-align-left elementor-widget elementor-widget-button\" data-id=\"0cf012c\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"boton-menu-movil\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#siguiente_seccion\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"material-icons md-keyboard_arrow_down\"><\/i>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Ir a la siguiente secci\u00f3n<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2f3ecc0 e-con-full e-flex e-con e-parent\" data-id=\"2f3ecc0\" data-element_type=\"container\" data-e-type=\"container\" id=\"siguiente_seccion\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c097483 elementor-icon-list--layout-inline elementor-align-center elementor-widget__width-inherit elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"c097483\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items elementor-inline-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-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\" id=\"OBJECT\" viewBox=\"0 0 32 32\" width=\"512\" height=\"512\"><path d=\"M30.5,16.5a.5.5,0,0,0,0-1H26v-4h4.5a.5.5,0,0,0,0-1H26A4.51,4.51,0,0,0,21.5,6V1.5a.5.5,0,0,0-1,0V6h-4V1.5a.5.5,0,0,0-1,0V6h-4V1.5a.5.5,0,0,0-1,0V6A4.51,4.51,0,0,0,6,10.5H1.5a.5.5,0,0,0,0,1H6v4H1.5a.5.5,0,0,0,0,1H6v4H1.5a.5.5,0,0,0,0,1H6A4.51,4.51,0,0,0,10.5,26v4.5a.5.5,0,0,0,1,0V26h4v4.5a.5.5,0,0,0,1,0V26h4v4.5a.5.5,0,0,0,1,0V26A4.51,4.51,0,0,0,26,21.5h4.5a.5.5,0,0,0,0-1H26v-4Zm-5.5,5A3.5,3.5,0,0,1,21.5,25h-11A3.5,3.5,0,0,1,7,21.5v-11A3.5,3.5,0,0,1,10.5,7h11A3.5,3.5,0,0,1,25,10.5Z\"><\/path><path d=\"M19,10.5H13A2.5,2.5,0,0,0,10.5,13v6A2.5,2.5,0,0,0,13,21.5h6A2.5,2.5,0,0,0,21.5,19V13A2.5,2.5,0,0,0,19,10.5ZM20.5,19A1.5,1.5,0,0,1,19,20.5H13A1.5,1.5,0,0,1,11.5,19V13A1.5,1.5,0,0,1,13,11.5h6A1.5,1.5,0,0,1,20.5,13Z\"><\/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\"><\/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 elementor-inline-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\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m449.118 282.911a26.047 26.047 0 0 0 -7.075-.981 25.68 25.68 0 0 0 -15.991 5.562l-45.709-36.292a26.029 26.029 0 0 0 2.453-11 25.657 25.657 0 0 0 -3.16-12.406l61.746-55.44a25.713 25.713 0 0 0 14.765 4.628 26.381 26.381 0 0 0 3.443-.236l11.793 30.821a25.972 25.972 0 0 0 -2.877 40.535l-19.388 34.816zm-78.634 171.038a13.485 13.485 0 0 1 -13.208 16.156h-34.34a13.265 13.265 0 0 1 -13.114-10.387 241.267 241.267 0 0 0 -8.491-27.935 25.944 25.944 0 0 0 -15.566-46.7c-.094 0-.189 0-.283.009l-8.821-35.359a24.93 24.93 0 0 0 5.424-3.745l47.6 32.925a25.914 25.914 0 0 0 24.148 35.387 26.374 26.374 0 0 0 4.953-.476 245.881 245.881 0 0 1 11.7 40.128zm-255.95-171.08a26.171 26.171 0 0 0 -8.585-7.821l12.972-45.624c.377.019.755.028 1.179.028a25.711 25.711 0 0 0 15.425-5.122l29.246 24.543a25.465 25.465 0 0 0 -2.783 11.642 23.113 23.113 0 0 0 .283 3.632zm-58.681-109.225-15.944 45.695a25.974 25.974 0 0 1 9.246 33.487l28.632 24.029a25.693 25.693 0 0 1 15.473-5.133c.377 0 .754.015 1.132.029l13.019-45.624a25.884 25.884 0 0 1 -10.095-35.1l-24.151-21.827a25.7 25.7 0 0 1 -14.67 4.585 25.272 25.272 0 0 1 -2.642-.137zm136.136-99.606a25.886 25.886 0 0 0 9.293 6.056l-7.642 58.186a25.958 25.958 0 0 0 -23.255 25.812 24.943 24.943 0 0 0 .754 6.264l-31.416 16.227a25.865 25.865 0 0 0 -34.34-4.457l-24.152-21.826a25.666 25.666 0 0 0 1.934-20.411zm42.737-8.944 115.474 15.236a26.141 26.141 0 0 0 5.047 12.855l-45.19 53.958a25.643 25.643 0 0 0 -11.557-2.743 26.034 26.034 0 0 0 -24.859 18.42l-51.747-3.17a26.091 26.091 0 0 0 -16.368-19.807l7.642-58.18a26.06 26.06 0 0 0 21.557-16.567zm136.89 153.773 61.7-55.44a25.845 25.845 0 0 1 .142-25.024l-42.879-39.247a25.834 25.834 0 0 1 -26.133 1.736l-45.19 53.95a25.78 25.78 0 0 1 0 31.024l25.992 31.114a25.9 25.9 0 0 1 26.368 1.887zm-171.516-29.1-4.009 46.115a25.636 25.636 0 0 1 7.594 4.028l71.415-58.251a26.141 26.141 0 0 1 -2.217-6.864l-51.746-3.17a26.02 26.02 0 0 1 -21.037 18.142zm-27.64 49.917a26.055 26.055 0 0 1 11.7-4.845l4.01-46.114a25.825 25.825 0 0 1 -11.51-7.717l-31.416 16.231a24.932 24.932 0 0 1 .8 6.26 26.088 26.088 0 0 1 -2.783 11.642l29.2 24.543zm77.078 66-38.538-33.24a26.008 26.008 0 0 0 2.877-11.929 25.325 25.325 0 0 0 -2.594-11.312l71.417-58.256a25.912 25.912 0 0 0 27.359 2.618l25.991 31.109a25.95 25.95 0 0 0 -1.7 28.421l-55.33 51.949a25.858 25.858 0 0 0 -29.482.637zm169.815 14.776a25.921 25.921 0 0 1 -.8-23.581l-45.663-36.294a25.9 25.9 0 0 1 -30.331 1.26l-55.332 51.949a25.519 25.519 0 0 1 3.491 12.9 26.071 26.071 0 0 1 -1.793 9.43l47.6 32.925a25.88 25.88 0 0 1 31.935-2.146l50.9-46.444zm66.7-117.437a25.834 25.834 0 0 0 -3.444.235l-11.84-30.826a25.94 25.94 0 0 0 -29.2-42.883l-42.876-39.249a25.448 25.448 0 0 0 3.307-12.616 25.947 25.947 0 0 0 -50.191-9.25l-115.527-15.234a25.943 25.943 0 1 0 -50.52 10.58l-108.823 65.849a25.732 25.732 0 0 0 -18.439-7.755 25.923 25.923 0 0 0 -13.963 47.808l-15.944 45.69c-.849-.085-1.745-.132-2.641-.132a25.954 25.954 0 1 0 15.472 46.775l28.632 24.029a25.953 25.953 0 1 0 49.144 11.632 23.13 23.13 0 0 0 -.283-3.637l47.737-18.722a25.92 25.92 0 0 0 36.51 6.212l38.539 33.237a25.923 25.923 0 0 0 23.02 37.883c.094 0 .188-.009.283-.009l8.825 35.36a25.951 25.951 0 0 0 11.934 48.992 26.291 26.291 0 0 0 4.576-.411 226.743 226.743 0 0 1 7.783 25.9 25.4 25.4 0 0 0 24.812 19.632h34.34a25.461 25.461 0 0 0 24.954-30.534 257.106 257.106 0 0 0 -12.5-42.718 25.8 25.8 0 0 0 6.792-33.1l50.945-46.44a25.935 25.935 0 0 0 32.123-40.562l19.388-34.813a25.953 25.953 0 1 0 7.076-50.925z\" fill-rule=\"evenodd\"><\/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\"><\/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 elementor-inline-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\" id=\"Icons\" viewBox=\"0 0 60 60\" width=\"512\" height=\"512\"><path d=\"M52,26a8,8,0,0,0,.96-15.942A11,11,0,0,0,32.146,6.112,5.913,5.913,0,0,0,31,6a6.033,6.033,0,0,0-5.792,4.5A8,8,0,0,0,28,26v2a1,1,0,0,1-1,1H24.816a3,3,0,1,0,0,2H27a3,3,0,0,0,3-3V26h4v4.184a3,3,0,1,0,2,0V26h7v6.184a3,3,0,1,0,2,0V26h4v2a3,3,0,0,0,3,3h2.184a3,3,0,1,0,0-2H52a1,1,0,0,1-1-1V26ZM22,31a1,1,0,1,1,1-1A1,1,0,0,1,22,31Zm13,3a1,1,0,1,1,1-1A1,1,0,0,1,35,34Zm9,2a1,1,0,1,1,1-1A1,1,0,0,1,44,36Zm13-7a1,1,0,1,1-1,1A1,1,0,0,1,57,29ZM22,18a6.035,6.035,0,0,1,4.347-5.77,1,1,0,0,0,.713-.813A4.018,4.018,0,0,1,31,8a3.841,3.841,0,0,1,1.358.246,1,1,0,0,0,1.283-.569A9,9,0,0,1,51,11a1,1,0,0,0,1,1,6,6,0,0,1,0,12H28A6.006,6.006,0,0,1,22,18Z\"><\/path><path d=\"M3,56H8a2.994,2.994,0,0,0,2.98-2.8,1.912,1.912,0,0,1,.615.081l20.364,6.512a5.024,5.024,0,0,0,4.52-.847L57.8,41.855A3.19,3.19,0,0,0,59,39.372a3.226,3.226,0,0,0-.4-1.536,3.169,3.169,0,0,0-4.3-1.223l-10.462,5.91A3.152,3.152,0,0,0,41.2,39.735l-1.709-.29-.072-.008-19.393-3.31a10,10,0,0,0-5,.478l-4.091,1.766A3,3,0,0,0,8,36H3a3,3,0,0,0-3,3V53A3,3,0,0,0,3,56ZM15.757,38.465A7.994,7.994,0,0,1,19.7,38.1l19.436,3.317c.021,0,.048.007.074.01l1.662.282a1.172,1.172,0,0,1,.982,1.142,1.15,1.15,0,0,1-.328.812,1.192,1.192,0,0,1-.833.346H22.857a1,1,0,0,0,0,2h3.714l5.819,3.612a3,3,0,0,0,2.937.007L55.278,38.356a1.165,1.165,0,0,1,1.575.446,1.174,1.174,0,0,1-.3,1.489L35.241,57.371a3.013,3.013,0,0,1-2.691.507L12.2,51.369a3.914,3.914,0,0,0-1.16-.174h-.027L11,40.52Zm21.91,7.544-3.318,1.874a.992.992,0,0,1-.947.014l-3.041-1.888ZM2,39a1,1,0,0,1,1-1H8a1,1,0,0,1,1,1V53a1,1,0,0,1-1,1H3a1,1,0,0,1-1-1Z\"><\/path><path d=\"M5,42H6a1,1,0,0,0,0-2H5a1,1,0,0,0,0,2Z\"><\/path><path d=\"M5,52H6a1,1,0,0,0,0-2H5a1,1,0,0,0,0,2Z\"><\/path><path d=\"M36.309,8.868A.984.984,0,0,0,36.8,9a1,1,0,0,0,.869-.505A4.921,4.921,0,0,1,42,6a1,1,0,0,0,0-2,6.986,6.986,0,0,0-6.064,3.505A1,1,0,0,0,36.309,8.868Z\"><\/path><path d=\"M28.138,14.837a1,1,0,0,0-1.238-.685A4.026,4.026,0,0,0,24,18a1,1,0,0,0,2,0,2.015,2.015,0,0,1,1.453-1.926A1,1,0,0,0,28.138,14.837Z\"><\/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\"><\/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 elementor-inline-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\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.758 234.71-28.313-4.574c-2.311-8.772-5.782-17.148-10.361-24.999l16.791-23.26c2.011-2.785 1.703-6.617-.726-9.046l-20.338-20.338c-2.428-2.431-6.261-2.736-9.047-.727l-23.26 16.79c-7.851-4.578-16.227-8.05-24.999-10.36l-4.574-28.313c-.548-3.392-3.475-5.884-6.91-5.884h-7.38v-77.328c.001-20.772-16.898-37.671-37.67-37.671h-170.941c-20.772 0-37.672 16.899-37.672 37.671v418.658c0 20.771 16.899 37.671 37.672 37.671h170.94c20.772 0 37.671-16.899 37.671-37.671v-77.328h7.38c3.435 0 6.362-2.492 6.91-5.884l4.574-28.313c8.772-2.311 17.146-5.781 24.998-10.361l23.26 16.791c2.785 2.01 6.618 1.702 9.047-.727l20.338-20.338c2.429-2.429 2.736-6.261.726-9.046l-16.791-23.26c4.578-7.849 8.049-16.225 10.36-24.999l28.313-4.574c3.391-.548 5.883-3.476 5.883-6.91v-28.76c.003-3.434-2.49-6.362-5.881-6.91zm-300.197-211.71h115.878v8.905c0 4.489-3.652 8.142-8.142 8.142h-99.594c-4.49 0-8.142-3.652-8.142-8.142zm167.081 442.329c0 13.053-10.619 23.671-23.671 23.671h-170.941c-13.053 0-23.672-10.618-23.672-23.671v-418.658c0-13.053 10.62-23.671 23.672-23.671h13.531v8.905c0 12.209 9.933 22.142 22.142 22.142h99.594c12.209 0 22.142-9.933 22.142-22.142v-8.905h13.531c13.053 0 23.671 10.618 23.671 23.671v418.658zm14-262.311c26.177 3.441 46.455 25.88 46.455 52.982 0 27.101-20.277 49.54-46.455 52.982zm111 61.402-27.04 4.369c-2.852.461-5.128 2.627-5.729 5.452-2.213 10.393-6.273 20.19-12.069 29.122-1.573 2.424-1.495 5.565.197 7.907l16.036 22.214-11.91 11.909-22.214-16.035c-2.342-1.689-5.482-1.768-7.907-.197-8.937 5.798-18.735 9.858-29.123 12.069-2.826.602-4.992 2.878-5.453 5.73l-4.368 27.04h-1.42v-50.909c33.918-3.514 60.455-32.262 60.455-67.092 0-34.831-26.537-63.578-60.455-67.092v-50.909h1.42l4.368 27.04c.46 2.853 2.626 5.129 5.453 5.73 10.388 2.211 20.186 6.271 29.123 12.068 2.423 1.571 5.564 1.494 7.907-.196l22.214-16.035 11.91 11.909-16.037 22.215c-1.691 2.342-1.77 5.482-.197 7.906 5.797 8.936 9.858 18.733 12.07 29.123.602 2.825 2.877 4.991 5.729 5.452l27.04 4.369zm-199.557 188.53c0 3.866-3.134 7-7 7h-55.169c-3.866 0-7-3.134-7-7s3.134-7 7-7h55.169c3.866 0 7 3.134 7 7zm57.393-213.161c.31 3.854-2.563 7.229-6.417 7.538-.19.015-.38.022-.568.022-3.612 0-6.675-2.776-6.97-6.439l-1.383-17.21c-.142.177-.293.349-.455.514l-51.158 52.241c-2.441 2.492-6.344 2.809-9.153.738l-39.572-29.147-56.117 61.868c-1.381 1.522-3.281 2.297-5.187 2.297-1.678 0-3.36-.6-4.701-1.815-2.864-2.597-3.08-7.023-.482-9.888l60.364-66.55c2.412-2.658 6.445-3.063 9.336-.933l39.765 29.289 46.171-47.148-16.147 1.298c-3.837.319-7.228-2.563-7.538-6.417s2.563-7.229 6.417-7.538l33.561-2.697c1.85-.143 3.684.443 5.098 1.647 1.414 1.203 2.292 2.919 2.44 4.77z\"><\/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\"><\/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 elementor-inline-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\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 32 32\" width=\"512\"><path d=\"m6.323 13.791c-.686.734-1.811.928-2.718.404-1.056-.609-1.419-1.962-.809-3.018s1.962-1.418 3.018-.808c.907.523 1.302 1.595 1.009 2.556l3.969 2.291c1.032-.392 2.741-.67 4.708-.711v-3.005h-4.043c-.192 0-.367-.11-.45-.282l-1.058-2.186c-.952.274-2.006-.122-2.523-1.019-.61-1.056-.248-2.408.808-3.018s2.409-.247 3.018.809c.53.916.326 2.057-.428 2.74l.946 1.956h3.73v-3.638c-.979-.227-1.709-1.105-1.709-2.153 0-1.219.99-2.209 2.209-2.209s2.209.99 2.209 2.209c0 1.048-.73 1.926-1.709 2.153v5.638h2.762l1.914-3.956c-.754-.683-.958-1.824-.428-2.74.609-1.056 1.962-1.419 3.018-.809s1.418 1.962.808 3.018c-.517.897-1.571 1.293-2.523 1.019l-2.025 4.186c-.083.172-.258.282-.45.282h-3.076v1.005c1.967.041 3.676.319 4.708.711l3.969-2.291c-.293-.961.102-2.033 1.009-2.556 1.056-.61 2.408-.248 3.018.808s.247 2.409-.809 3.018c-.907.524-2.032.33-2.718-.404l-3.491 2.016c.214.226.314.469.314.693v11c0 .384-.291.821-.953 1.139-1.04.502-3.133.861-5.547.861s-4.507-.359-5.547-.861c-.662-.318-.953-.755-.953-1.139v-11c0-.224.1-.467.314-.693l-3.491-2.016zm15.177 3.871c-1.055.489-3.122.838-5.5.838s-4.445-.349-5.5-.838v2.587c1.801.777 3.858.918 5.5.918s3.699-.141 5.5-.918zm0 9.809v-2.481c-1.835.692-3.857.843-5.5.843s-3.665-.151-5.5-.843v2.481c.017.019.066.073.106.103.166.124.41.235.714.338 1.055.36 2.76.588 4.68.588s3.625-.228 4.68-.588c.304-.103.548-.214.714-.338.04-.03.089-.084.106-.103zm0-3.555v-2.593c-1.835.693-3.857.844-5.5.844s-3.665-.151-5.5-.844v2.593c1.801.777 3.858.917 5.5.917s3.699-.14 5.5-.917zm1.766-18.055c-.578-.334-1.319-.135-1.652.443-.334.578-.136 1.318.442 1.652.578.333 1.319.135 1.652-.443.334-.578.136-1.318-.442-1.652zm5.072 5.816c-.334-.578-1.074-.776-1.652-.442-.578.333-.776 1.074-.443 1.652.334.578 1.074.776 1.652.442.578-.333.777-1.074.443-1.652zm-24.676 0c-.334.578-.135 1.319.443 1.652.578.334 1.318.136 1.652-.442.333-.578.135-1.319-.443-1.652-.578-.334-1.318-.136-1.652.442zm12.338-8.177c-.667 0-1.209.542-1.209 1.209 0 .668.542 1.21 1.209 1.21s1.209-.542 1.209-1.21c0-.667-.542-1.209-1.209-1.209zm-5.473 13c.022.024.053.054.079.074.166.124.41.235.714.338 1.055.36 2.76.588 4.68.588s3.625-.228 4.68-.588c.304-.103.548-.214.714-.338.026-.02.057-.05.079-.074-.022-.024-.053-.054-.079-.074-.166-.124-.41-.235-.714-.338-1.055-.36-2.76-.588-4.68-.588s-3.625.228-4.68.588c-.304.103-.548.214-.714.338-.026.02-.057.05-.079.074zm-1.793-10.639c-.578.334-.776 1.074-.442 1.652.333.578 1.074.776 1.652.443.578-.334.776-1.074.442-1.652-.333-.578-1.074-.777-1.652-.443z\"><\/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\"><\/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 elementor-inline-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\" id=\"Layer_1\" viewBox=\"0 0 128 128\" data-name=\"Layer 1\"><path d=\"m2.00977 59.00049h.00146l16.4624-.01172h.01758a22.50913 22.50913 0 0 1 22.50879 22.50977v6.00928a26.494 26.494 0 0 0 24.11865 26.40576l.18848.01465.10693.0083c1.0459.0708 2.62256.09326 4.26611.09326 1.72314 0 3.51953-.02441 4.85547-.04248.67529-.00928 1.19531-.0166 1.46436-.0166a2.0001 2.0001 0 0 0 2-2l-.02441-7.96045a4.18152 4.18152 0 0 1 1.05371-.59277c.251-.11426.49121-.22559.72314-.34814a4.00127 4.00127 0 0 0 1.63037-5.39355q-.25415-.47388-.54346-.94922l1.814-.95752a3.00907 3.00907 0 0 0 1.22705-4.03857l-.33447-.63672 2.78418-.40381a4.997 4.997 0 0 0 3.81885-7.03125l-7.65384-16.72951c3.15625-7.94824 3.917-23.74463-4.0791-36.14062-4.94873-7.67237-15.15479-16.81788-35.67579-16.81788-40.92773 0-42.6665 38.59961-42.73046 43.00098a2.00074 2.00074 0 0 0 2 2.02881zm16.6997-33.86566v7.16351a1.99937 1.99937 0 0 0 1.49707 1.93555l9.40918 2.44385 4.39063 8.81934a2.00024 2.00024 0 0 0 3.58105-1.7832l-4.79687-9.63478a2.00029 2.00029 0 0 0 -1.2876-1.04395l-8.79346-2.28369v-7.74755a1.99839 1.99839 0 0 0 -.05023-.434 36.71769 36.71769 0 0 1 11.34076-3.87222v5.273h-4a2 2 0 0 0 0 4h6a2.0001 2.0001 0 0 0 2-2v-7.77751c1.51782-.13391 3.0838-.22247 4.74023-.22247.08813 0 .17194.00519.25977.00555v28.99444a2 2 0 0 0 4 0v-28.84216a43.70231 43.70231 0 0 1 13.96948 3.11456 1.98038 1.98038 0 0 0 -.28491 1.01373v17.48194l-5.68457 3.0835v-6.85157a2 2 0 1 0 -4 0v22.35a6 6 0 1 0 4 0v-10.9482l8.63818-4.6855a1.99926 1.99926 0 0 0 1.04639-1.75781v-17.85088a30.06353 30.06353 0 0 1 10.37012 9.87823c7.0766 10.97137 6.58673 24.79022 3.90759 32.00439h-6.26941a2 2 0 1 0 0 4h6.3327l7.48859 16.36768a.99693.99693 0 0 1 -.76123 1.40283l-5.58008.80957a2.00042 2.00042 0 0 0 -1.4834 2.90967l1.188 2.26074-2.44745 1.29102h-1.89875a2 2 0 0 0 0 4h1.35913c.358.52094.6925 1.03943.97388 1.54053-.15039.07959-.32031.15576-.49658.23584-1.09327.49951-3.36768 1.53808-3.36768 4.19189v6.02344c-2.45947.03174-6.46729.07617-8.394-.05469l-.165-.0127a22.47457 22.47457 0 0 1 -20.441-22.41894v-6.00927a26.33465 26.33465 0 0 0 -7.77148-18.75244c-.48218-.48181-.98413-.9361-1.49579-1.37579l2.34589-5.14667h4.48975a2 2 0 1 0 0-4h-5.77589a2 2 0 0 0 -1.81982 1.17036l-2.53333 5.5576a26.328 26.328 0 0 0 -13.94812-3.96283h-.02051l-14.3667.01023c.42243-5.81583 2.68848-20.8419 14.60547-29.86417zm36.29053 38.83587a2 2 0 1 1 -2-2 2.002 2.002 0 0 1 2 2z\"><\/path><path d=\"m18 99.9707a18 18 0 1 0 -18-18 18.02031 18.02031 0 0 0 18 18zm0-32a14 14 0 1 1 -14 14 14.01573 14.01573 0 0 1 14-14z\"><\/path><path d=\"m18 90.9707a9 9 0 1 0 -9-9 9.01047 9.01047 0 0 0 9 9zm0-14a5 5 0 1 1 -5 5 5.00589 5.00589 0 0 1 5-5z\"><\/path><path d=\"m102.35 37.9707a6 6 0 1 0 0-4h-12.59023a2 2 0 0 0 0 4zm5.65-4a2 2 0 1 1 -2 2 2.002 2.002 0 0 1 2-2z\"><\/path><path d=\"m122 41.9707a6.00478 6.00478 0 0 0 -5.65 4h-23.91982a2 2 0 0 0 0 4h23.91982a5.99715 5.99715 0 1 0 5.65-8zm0 8a2 2 0 1 1 2-2 2.002 2.002 0 0 1 -2 2z\"><\/path><path d=\"m122 65.9707a6.00478 6.00478 0 0 0 -5.65 4h-22.7499a2 2 0 0 0 0 4h22.7499a5.99715 5.99715 0 1 0 5.65-8zm0 8a2 2 0 1 1 2-2 2.002 2.002 0 0 1 -2 2z\"><\/path><path d=\"m122 89.9707a6.00478 6.00478 0 0 0 -5.65 4h-22.74014a2 2 0 0 0 0 4h22.74014a5.99715 5.99715 0 1 0 5.65-8zm0 8a2 2 0 1 1 2-2 2.002 2.002 0 0 1 -2 2z\"><\/path><path d=\"m108 101.9707a6.00478 6.00478 0 0 0 -5.65 4h-13.35a2 2 0 0 0 0 4h13.35a5.99715 5.99715 0 1 0 5.65-8zm0 8a2 2 0 1 1 2-2 2.002 2.002 0 0 1 -2 2z\"><\/path><path d=\"m28 44.9707a6 6 0 1 0 -6 6 6.00656 6.00656 0 0 0 6-6zm-8 0a2 2 0 1 1 2 2 2.002 2.002 0 0 1 -2-2z\"><\/path><path d=\"m122 17.9707a6.00478 6.00478 0 0 0 -5.65 4h-32.9501a2 2 0 0 0 0 4h32.9501a5.99715 5.99715 0 1 0 5.65-8zm0 8a2 2 0 1 1 2-2 2.002 2.002 0 0 1 -2 2z\"><\/path><path d=\"m92.3501 61.9707h9.9999a6 6 0 1 0 0-4h-9.9999a2 2 0 0 0 0 4zm15.6499-4a2 2 0 1 1 -2 2 2.002 2.002 0 0 1 2-2z\"><\/path><path d=\"m104.35 85.9707a6 6 0 1 0 0-4h-5.87979a2 2 0 1 0 0 4zm5.65-4a2 2 0 1 1 -2 2 2.002 2.002 0 0 1 2-2z\"><\/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\"><\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7e16b00 e-flex e-con-boxed e-con e-parent\" data-id=\"7e16b00\" 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-d4c204f e-con-full e-flex e-con e-child\" data-id=\"d4c204f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3fc22a5 elementor-widget elementor-widget-heading\" data-id=\"3fc22a5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Somos Codethor<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-096c4ce elementor-widget elementor-widget-heading\" data-id=\"096c4ce\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Creamos tecnolog\u00eda que genera impacto real en tu negocio<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f014752 animated-fast elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"f014752\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:500}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Somos una empresa especializada en desarrollo de software a medida, calidad e inteligencia artificial aplicada.\u00a0 Creamos soluciones robustas, escalables y pensadas para generar impacto real en el negocio.<\/p><p><strong>No construimos solo software.<\/strong><\/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-a68ec83 elementor-widget elementor-widget-button\" data-id=\"a68ec83\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dev.mengisoft.com\/codethor\/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\">Nuestros servicios<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-eae0f82 e-con-full e-flex e-con e-child\" data-id=\"eae0f82\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-25c5c92 elementor-position-inline-start elementor-widget-mobile__width-initial elementor-view-default elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"25c5c92\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m449.23 71.15h-33.85v-35.85c0-13.4-10.9-24.3-24.3-24.3h-270.17c-13.4 0-24.3 10.9-24.3 24.3v35.85h-33.84c-17.98 0-32.6 14.63-32.6 32.6v248.24c0 17.98 14.63 32.6 32.6 32.6h143.76c-.63 28.15-7.05 69.74-39.43 69.74h-18.4c-12.87 0-23.33 10.47-23.33 23.33v9.13c0 7.83 6.37 14.2 14.2 14.2h232.88c7.83 0 14.2-6.37 14.2-14.2v-9.13c0-12.87-10.47-23.33-23.33-23.33h-18.4c-32.38 0-38.79-41.59-39.43-69.74h143.76c17.98 0 32.6-14.63 32.6-32.6v-248.24c-.01-17.98-14.64-32.6-32.62-32.6zm-342.61 5.89h298.77v168.06c0 7.88-6.41 14.3-14.3 14.3h-270.18c-7.88 0-14.3-6.41-14.3-14.3v-168.06zm14.29 192.35h270.17c13.4 0 24.3-10.9 24.3-24.3v-141.86h33.85c.25 0 .52.27.52.52v223.39c0 .25-.27.52-.52.52h-386.46c-.25 0-.52-.27-.52-.52v-223.39c0-.25.27-.52.52-.52h33.85v141.87c0 13.39 10.9 24.29 24.29 24.29zm0-248.39h270.17c7.88 0 14.3 6.41 14.3 14.3v31.74h-298.76v-31.74c0-7.89 6.41-14.3 14.29-14.3zm242.4 443.33c7.35 0 13.33 5.98 13.33 13.33v9.13c0 2.32-1.88 4.2-4.2 4.2h-232.88c-2.32 0-4.2-1.88-4.2-4.2v-9.13c0-7.35 5.98-13.33 13.33-13.33zm-55.4-22.67c2.89 5.05 6.3 9.28 10.14 12.67h-124.09c3.84-3.4 7.24-7.62 10.14-12.67 7.76-13.56 11.94-32.74 12.44-57.06h78.94c.49 24.32 4.67 43.5 12.43 57.06zm163.93-89.67c0 12.46-10.14 22.6-22.6 22.6h-386.47c-12.46 0-22.6-10.14-22.6-22.6v-248.24c0-12.46 10.14-22.6 22.6-22.6h33.85v12.08h-33.85c-5.8 0-10.52 4.72-10.52 10.52v223.39c0 5.8 4.72 10.52 10.52 10.52h386.47c5.8 0 10.52-4.72 10.52-10.52v-223.39c0-5.8-4.72-10.52-10.52-10.52h-33.85v-12.08h33.85c12.46 0 22.6 10.14 22.6 22.6zm-348.01-307.97c0-4.65 3.77-8.43 8.43-8.43 4.65 0 8.43 3.77 8.43 8.43 0 4.65-3.77 8.43-8.43 8.43-4.65 0-8.43-3.78-8.43-8.43zm37.09 0c0-4.65 3.77-8.43 8.43-8.43s8.43 3.77 8.43 8.43c0 4.65-3.77 8.43-8.43 8.43s-8.43-3.78-8.43-8.43zm37.08 0c0-4.65 3.77-8.43 8.43-8.43 4.65 0 8.43 3.77 8.43 8.43 0 4.65-3.77 8.43-8.43 8.43s-8.43-3.78-8.43-8.43zm107.57 13.43h74.17c7.4 0 13.43-6.02 13.43-13.43s-6.02-13.43-13.43-13.43h-74.17c-7.4 0-13.43 6.02-13.43 13.43s6.03 13.43 13.43 13.43zm0-16.86h74.17c1.89 0 3.43 1.54 3.43 3.43s-1.54 3.43-3.43 3.43h-74.17c-1.89 0-3.43-1.54-3.43-3.43s1.54-3.43 3.43-3.43zm-26.39 144.04 7.95.67c.09.01.23.02.32.22s0 .31-.06.38l-5.09 6.14c-3.39 4.08-3.42 9.8-.07 13.92 2.72 3.35 5.81 6.42 9.19 9.11 4.14 3.31 9.87 3.23 13.92-.19l6.09-5.14c.07-.06.18-.15.38-.07.21.08.22.22.23.32l.74 7.94c.49 5.28 4.52 9.35 9.79 9.9 2.07.21 4.15.32 6.24.32 2.24 0 4.47-.12 6.69-.37 5.27-.59 9.27-4.69 9.71-9.97l.67-7.95c.01-.09.02-.23.22-.32s.31 0 .38.06l6.14 5.09c4.08 3.39 9.8 3.42 13.92.07 3.35-2.72 6.42-5.81 9.11-9.19 3.31-4.14 3.23-9.87-.19-13.92l-5.14-6.09c-.06-.07-.15-.18-.07-.38.08-.21.22-.22.32-.23l7.94-.74c5.28-.49 9.35-4.52 9.89-9.79.45-4.29.43-8.64-.05-12.93-.59-5.27-4.69-9.27-9.97-9.71l-7.95-.67c-.09-.01-.23-.02-.32-.22s0-.31.06-.38l5.09-6.14c3.39-4.08 3.42-9.8.07-13.92-2.72-3.35-5.81-6.42-9.19-9.11-4.14-3.31-9.86-3.23-13.92.19l-6.09 5.14c-.07.06-.18.15-.38.07-.21-.08-.22-.22-.23-.32l-.74-7.94c-.49-5.28-4.52-9.35-9.79-9.9-4.29-.45-8.64-.43-12.93.05-5.27.59-9.27 4.69-9.72 9.97l-.67 7.95c-.01.09-.02.23-.22.32s-.31 0-.38-.06l-6.14-5.09c-4.08-3.39-9.8-3.42-13.92-.08-3.35 2.72-6.42 5.81-9.11 9.19-3.31 4.14-3.23 9.86.19 13.92l5.14 6.09c.06.07.15.18.07.38s-.22.22-.32.23l-7.94.74c-5.28.49-9.35 4.52-9.9 9.79-.45 4.29-.43 8.64.05 12.93.6 5.28 4.7 9.27 9.99 9.72zm-.08-21.61c.05-.49.39-.82.87-.86l7.94-.74c3.86-.36 7.18-2.81 8.65-6.39s.83-7.65-1.68-10.62l-5.14-6.09c-.32-.38-.32-.85-.02-1.23 2.25-2.81 4.8-5.39 7.6-7.66.38-.31.85-.31 1.23.01l6.14 5.09c2.99 2.48 7.06 3.09 10.63 1.59s6-4.83 6.32-8.7l.67-7.95c.04-.49.37-.83.86-.88 3.58-.4 7.21-.41 10.79-.04.49.05.82.39.86.87l.74 7.94c.36 3.86 2.81 7.18 6.39 8.65s7.66.83 10.62-1.68l6.09-5.14c.38-.32.85-.32 1.23-.02 2.81 2.25 5.39 4.8 7.66 7.6.31.38.31.85-.01 1.23l-5.09 6.14c-2.48 2.99-3.09 7.06-1.59 10.64 1.5 3.57 4.83 6 8.7 6.32l7.95.67c.49.04.83.37.88.86.4 3.58.41 7.21.04 10.79-.05.49-.39.82-.87.87l-7.94.74c-3.86.36-7.18 2.81-8.65 6.4-1.47 3.58-.83 7.65 1.68 10.62l5.14 6.1c.32.37.32.85.02 1.23-2.25 2.82-4.81 5.39-7.6 7.66-.38.31-.85.31-1.23-.01l-6.14-5.09c-2.99-2.48-7.06-3.09-10.63-1.59s-6 4.83-6.32 8.7l-.67 7.95c-.04.49-.37.83-.86.88-3.58.4-7.21.41-10.79.04-.49-.05-.82-.39-.87-.87l-.74-7.94c-.36-3.86-2.81-7.18-6.39-8.65-1.27-.52-2.61-.78-3.93-.78-2.4 0-4.77.84-6.69 2.45l-6.09 5.14c-.37.32-.85.32-1.23.02-2.81-2.25-5.39-4.8-7.66-7.6-.31-.38-.31-.85.01-1.23l5.09-6.14c2.48-2.99 3.09-7.06 1.59-10.63s-4.83-6-8.7-6.32l-7.95-.67c-.49-.04-.83-.37-.88-.86-.38-3.61-.4-7.24-.03-10.82zm49.68 30.61c14.01 0 25.42-11.4 25.42-25.42s-11.4-25.42-25.42-25.42-25.42 11.4-25.42 25.42 11.41 25.42 25.42 25.42zm0-40.83c8.5 0 15.42 6.92 15.42 15.42s-6.92 15.42-15.42 15.42-15.42-6.92-15.42-15.42 6.92-15.42 15.42-15.42zm-204.04 18.95c-1.95-1.95-1.95-5.12 0-7.07l19.84-19.84c1.95-1.95 5.12-1.95 7.07 0s1.95 5.12 0 7.07l-16.3 16.3 16.3 16.3c1.95 1.95 1.95 5.12 0 7.07-.98.98-2.26 1.46-3.54 1.46s-2.56-.49-3.54-1.46zm81.18 12.77 16.3-16.3-16.3-16.3c-1.95-1.95-1.95-5.12 0-7.07s5.12-1.95 7.07 0l19.84 19.84c1.95 1.95 1.95 5.12 0 7.07l-19.84 19.84c-.98.98-2.26 1.46-3.54 1.46s-2.56-.49-3.54-1.46c-1.94-1.97-1.94-5.13.01-7.08zm-40.2 13.13 16.47-61.46c.71-2.67 3.45-4.25 6.12-3.54s4.25 3.46 3.54 6.12l-16.47 61.46c-.6 2.23-2.62 3.71-4.83 3.71-.43 0-.86-.06-1.3-.17-2.66-.71-4.25-3.45-3.53-6.12z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tDesarrollo de Software a Medida\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tAplicaciones web, plataformas y sistemas backend adaptados a tu negocio.\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c3c609f elementor-position-inline-start elementor-widget-mobile__width-initial elementor-view-default elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"c3c609f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_339609184\"><g><g><path d=\"m853 1378c-2 0-5 0-8-2l-828-287c-10-3-16-12-16-24 0-9 6-19 16-23l455-155c12-5 26 2 31 15 4 12-3 26-16 30l-388 135 754 261 755-261-390-135c-12-4-19-18-15-30 4-13 18-20 30-15l457 156c9 3 16 13 16 24 0 10-7 19-16 23l-828 288c-3-2-6 0-9 0z\"><\/path><\/g><g><path d=\"m853 1691c-2 0-5 0-8-1l-828-286c-10-3-16-13-16-24 0-9 6-19 16-23l455-156c12-4 26 3 31 16 4 12-3 26-16 30l-388 135 754 259 755-259-390-135c-12-4-19-18-15-30 4-13 18-20 30-16l457 158c9 3 16 13 16 24s-7 19-16 24l-828 285c-3-1-6-1-9-1z\"><\/path><\/g><g><path d=\"m925 917h-142c-13 0-23-8-24-21l-19-127c-6-3-13-4-18-7l-104 77c-10 7-24 6-32-2l-102-102c-8-8-9-22-2-31l77-104c-2-6-5-13-7-18l-127-18c-14-3-22-14-22-25v-146c0-13 8-22 20-24l128-18c3-7 4-12 7-19l-78-103c-7-9-7-23 3-32l101-101c9-8 23-9 32-3l104 78c6-3 13-5 18-8l20-129c1-11 12-20 25-20h144c12 0 22 9 23 21l18 128c7 3 13 5 20 8l102-78c10-6 24-6 32 3l102 101c8 9 9 23 2 32l-77 103c2 5 5 12 8 19l128 18c12 2 20 13 20 24v144c0 13-8 22-20 24l-128 18c-3 7-6 12-7 18l78 104c7 10 5 23-3 32l-101 101c-9 8-22 10-32 3l-103-78c-5 3-12 6-19 8l-18 128c-4 12-14 22-27 22zm-122-48h102l16-121c2-10 7-17 17-19 15-6 29-12 40-17 8-4 18-3 25 3l99 73 72-72-74-98c-5-7-7-18-1-27 5-11 11-23 16-39 3-8 12-15 20-16l122-17v-102l-122-17c-10-2-17-7-20-17-5-15-11-29-16-40-4-8-3-18 3-25l73-98-72-72-99 73c-6 6-16 7-24 3-13-6-27-11-41-17-8-3-15-11-16-19l-17-122h-101l-18 122c-2 9-9 16-17 19-12 4-26 10-40 17-8 4-18 3-25-3l-98-73-73 72 74 98c5 7 7 17 3 25-7 14-13 26-16 39-2 10-11 17-19 18l-122 17v102l122 17c10 1 18 8 19 18 3 12 9 26 16 37 4 9 4 18-2 27l-73 98 72 72 98-73c7-6 17-7 25-3 16 7 27 12 39 15 10 3 17 10 18 20z\"><\/path><\/g><g><path d=\"m853 651c-102 0-185-83-185-186s83-184 185-184c103 0 185 83 185 184 1 103-82 186-185 186zm0-322c-76 0-137 61-137 136 0 78 61 137 137 137 75 0 136-61 136-137 2-75-59-136-136-136z\"><\/path><\/g><g><path d=\"m853 1063c-2 0-5 0-8-2l-828-287c-10-2-16-12-16-23 0-10 6-20 16-24l545-188c13-5 26 2 31 15 4 12-3 26-16 30l-478 167 754 262 755-261-480-166c-13-4-20-18-15-31 4-12 18-19 30-15l547 189c9 2 16 12 16 23 0 10-7 20-16 24l-828 285c-3 2-6 2-9 2z\"><\/path><\/g><\/g><\/g><\/g><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tIntegraci\u00f3n de Sistemas\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tConectamos herramientas y plataformas para eliminar trabajo manual y mejorar la eficiencia.\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6ed8093 elementor-position-inline-start elementor-widget-mobile__width-initial elementor-view-default elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"6ed8093\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Layer_1\" viewBox=\"0 0 128 128\" data-name=\"Layer 1\"><path d=\"m2.00977 59.00049h.00146l16.4624-.01172h.01758a22.50913 22.50913 0 0 1 22.50879 22.50977v6.00928a26.494 26.494 0 0 0 24.11865 26.40576l.18848.01465.10693.0083c1.0459.0708 2.62256.09326 4.26611.09326 1.72314 0 3.51953-.02441 4.85547-.04248.67529-.00928 1.19531-.0166 1.46436-.0166a2.0001 2.0001 0 0 0 2-2l-.02441-7.96045a4.18152 4.18152 0 0 1 1.05371-.59277c.251-.11426.49121-.22559.72314-.34814a4.00127 4.00127 0 0 0 1.63037-5.39355q-.25415-.47388-.54346-.94922l1.814-.95752a3.00907 3.00907 0 0 0 1.22705-4.03857l-.33447-.63672 2.78418-.40381a4.997 4.997 0 0 0 3.81885-7.03125l-7.65384-16.72951c3.15625-7.94824 3.917-23.74463-4.0791-36.14062-4.94873-7.67237-15.15479-16.81788-35.67579-16.81788-40.92773 0-42.6665 38.59961-42.73046 43.00098a2.00074 2.00074 0 0 0 2 2.02881zm16.6997-33.86566v7.16351a1.99937 1.99937 0 0 0 1.49707 1.93555l9.40918 2.44385 4.39063 8.81934a2.00024 2.00024 0 0 0 3.58105-1.7832l-4.79687-9.63478a2.00029 2.00029 0 0 0 -1.2876-1.04395l-8.79346-2.28369v-7.74755a1.99839 1.99839 0 0 0 -.05023-.434 36.71769 36.71769 0 0 1 11.34076-3.87222v5.273h-4a2 2 0 0 0 0 4h6a2.0001 2.0001 0 0 0 2-2v-7.77751c1.51782-.13391 3.0838-.22247 4.74023-.22247.08813 0 .17194.00519.25977.00555v28.99444a2 2 0 0 0 4 0v-28.84216a43.70231 43.70231 0 0 1 13.96948 3.11456 1.98038 1.98038 0 0 0 -.28491 1.01373v17.48194l-5.68457 3.0835v-6.85157a2 2 0 1 0 -4 0v22.35a6 6 0 1 0 4 0v-10.9482l8.63818-4.6855a1.99926 1.99926 0 0 0 1.04639-1.75781v-17.85088a30.06353 30.06353 0 0 1 10.37012 9.87823c7.0766 10.97137 6.58673 24.79022 3.90759 32.00439h-6.26941a2 2 0 1 0 0 4h6.3327l7.48859 16.36768a.99693.99693 0 0 1 -.76123 1.40283l-5.58008.80957a2.00042 2.00042 0 0 0 -1.4834 2.90967l1.188 2.26074-2.44745 1.29102h-1.89875a2 2 0 0 0 0 4h1.35913c.358.52094.6925 1.03943.97388 1.54053-.15039.07959-.32031.15576-.49658.23584-1.09327.49951-3.36768 1.53808-3.36768 4.19189v6.02344c-2.45947.03174-6.46729.07617-8.394-.05469l-.165-.0127a22.47457 22.47457 0 0 1 -20.441-22.41894v-6.00927a26.33465 26.33465 0 0 0 -7.77148-18.75244c-.48218-.48181-.98413-.9361-1.49579-1.37579l2.34589-5.14667h4.48975a2 2 0 1 0 0-4h-5.77589a2 2 0 0 0 -1.81982 1.17036l-2.53333 5.5576a26.328 26.328 0 0 0 -13.94812-3.96283h-.02051l-14.3667.01023c.42243-5.81583 2.68848-20.8419 14.60547-29.86417zm36.29053 38.83587a2 2 0 1 1 -2-2 2.002 2.002 0 0 1 2 2z\"><\/path><path d=\"m18 99.9707a18 18 0 1 0 -18-18 18.02031 18.02031 0 0 0 18 18zm0-32a14 14 0 1 1 -14 14 14.01573 14.01573 0 0 1 14-14z\"><\/path><path d=\"m18 90.9707a9 9 0 1 0 -9-9 9.01047 9.01047 0 0 0 9 9zm0-14a5 5 0 1 1 -5 5 5.00589 5.00589 0 0 1 5-5z\"><\/path><path d=\"m102.35 37.9707a6 6 0 1 0 0-4h-12.59023a2 2 0 0 0 0 4zm5.65-4a2 2 0 1 1 -2 2 2.002 2.002 0 0 1 2-2z\"><\/path><path d=\"m122 41.9707a6.00478 6.00478 0 0 0 -5.65 4h-23.91982a2 2 0 0 0 0 4h23.91982a5.99715 5.99715 0 1 0 5.65-8zm0 8a2 2 0 1 1 2-2 2.002 2.002 0 0 1 -2 2z\"><\/path><path d=\"m122 65.9707a6.00478 6.00478 0 0 0 -5.65 4h-22.7499a2 2 0 0 0 0 4h22.7499a5.99715 5.99715 0 1 0 5.65-8zm0 8a2 2 0 1 1 2-2 2.002 2.002 0 0 1 -2 2z\"><\/path><path d=\"m122 89.9707a6.00478 6.00478 0 0 0 -5.65 4h-22.74014a2 2 0 0 0 0 4h22.74014a5.99715 5.99715 0 1 0 5.65-8zm0 8a2 2 0 1 1 2-2 2.002 2.002 0 0 1 -2 2z\"><\/path><path d=\"m108 101.9707a6.00478 6.00478 0 0 0 -5.65 4h-13.35a2 2 0 0 0 0 4h13.35a5.99715 5.99715 0 1 0 5.65-8zm0 8a2 2 0 1 1 2-2 2.002 2.002 0 0 1 -2 2z\"><\/path><path d=\"m28 44.9707a6 6 0 1 0 -6 6 6.00656 6.00656 0 0 0 6-6zm-8 0a2 2 0 1 1 2 2 2.002 2.002 0 0 1 -2-2z\"><\/path><path d=\"m122 17.9707a6.00478 6.00478 0 0 0 -5.65 4h-32.9501a2 2 0 0 0 0 4h32.9501a5.99715 5.99715 0 1 0 5.65-8zm0 8a2 2 0 1 1 2-2 2.002 2.002 0 0 1 -2 2z\"><\/path><path d=\"m92.3501 61.9707h9.9999a6 6 0 1 0 0-4h-9.9999a2 2 0 0 0 0 4zm15.6499-4a2 2 0 1 1 -2 2 2.002 2.002 0 0 1 2-2z\"><\/path><path d=\"m104.35 85.9707a6 6 0 1 0 0-4h-5.87979a2 2 0 1 0 0 4zm5.65-4a2 2 0 1 1 -2 2 2.002 2.002 0 0 1 2-2z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\t Inteligencia Artificial Aplicada\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tLLMs, chatbots, automatizaci\u00f3n inteligente y an\u00e1lisis avanzado de datos.\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-14eeafc elementor-position-inline-start elementor-widget-mobile__width-initial elementor-view-default elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"14eeafc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.758 234.71-28.313-4.574c-2.311-8.772-5.782-17.148-10.361-24.999l16.791-23.26c2.011-2.785 1.703-6.617-.726-9.046l-20.338-20.338c-2.428-2.431-6.261-2.736-9.047-.727l-23.26 16.79c-7.851-4.578-16.227-8.05-24.999-10.36l-4.574-28.313c-.548-3.392-3.475-5.884-6.91-5.884h-7.38v-77.328c.001-20.772-16.898-37.671-37.67-37.671h-170.941c-20.772 0-37.672 16.899-37.672 37.671v418.658c0 20.771 16.899 37.671 37.672 37.671h170.94c20.772 0 37.671-16.899 37.671-37.671v-77.328h7.38c3.435 0 6.362-2.492 6.91-5.884l4.574-28.313c8.772-2.311 17.146-5.781 24.998-10.361l23.26 16.791c2.785 2.01 6.618 1.702 9.047-.727l20.338-20.338c2.429-2.429 2.736-6.261.726-9.046l-16.791-23.26c4.578-7.849 8.049-16.225 10.36-24.999l28.313-4.574c3.391-.548 5.883-3.476 5.883-6.91v-28.76c.003-3.434-2.49-6.362-5.881-6.91zm-300.197-211.71h115.878v8.905c0 4.489-3.652 8.142-8.142 8.142h-99.594c-4.49 0-8.142-3.652-8.142-8.142zm167.081 442.329c0 13.053-10.619 23.671-23.671 23.671h-170.941c-13.053 0-23.672-10.618-23.672-23.671v-418.658c0-13.053 10.62-23.671 23.672-23.671h13.531v8.905c0 12.209 9.933 22.142 22.142 22.142h99.594c12.209 0 22.142-9.933 22.142-22.142v-8.905h13.531c13.053 0 23.671 10.618 23.671 23.671v418.658zm14-262.311c26.177 3.441 46.455 25.88 46.455 52.982 0 27.101-20.277 49.54-46.455 52.982zm111 61.402-27.04 4.369c-2.852.461-5.128 2.627-5.729 5.452-2.213 10.393-6.273 20.19-12.069 29.122-1.573 2.424-1.495 5.565.197 7.907l16.036 22.214-11.91 11.909-22.214-16.035c-2.342-1.689-5.482-1.768-7.907-.197-8.937 5.798-18.735 9.858-29.123 12.069-2.826.602-4.992 2.878-5.453 5.73l-4.368 27.04h-1.42v-50.909c33.918-3.514 60.455-32.262 60.455-67.092 0-34.831-26.537-63.578-60.455-67.092v-50.909h1.42l4.368 27.04c.46 2.853 2.626 5.129 5.453 5.73 10.388 2.211 20.186 6.271 29.123 12.068 2.423 1.571 5.564 1.494 7.907-.196l22.214-16.035 11.91 11.909-16.037 22.215c-1.691 2.342-1.77 5.482-.197 7.906 5.797 8.936 9.858 18.733 12.07 29.123.602 2.825 2.877 4.991 5.729 5.452l27.04 4.369zm-199.557 188.53c0 3.866-3.134 7-7 7h-55.169c-3.866 0-7-3.134-7-7s3.134-7 7-7h55.169c3.866 0 7 3.134 7 7zm57.393-213.161c.31 3.854-2.563 7.229-6.417 7.538-.19.015-.38.022-.568.022-3.612 0-6.675-2.776-6.97-6.439l-1.383-17.21c-.142.177-.293.349-.455.514l-51.158 52.241c-2.441 2.492-6.344 2.809-9.153.738l-39.572-29.147-56.117 61.868c-1.381 1.522-3.281 2.297-5.187 2.297-1.678 0-3.36-.6-4.701-1.815-2.864-2.597-3.08-7.023-.482-9.888l60.364-66.55c2.412-2.658 6.445-3.063 9.336-.933l39.765 29.289 46.171-47.148-16.147 1.298c-3.837.319-7.228-2.563-7.538-6.417s2.563-7.229 6.417-7.538l33.561-2.697c1.85-.143 3.684.443 5.098 1.647 1.414 1.203 2.292 2.919 2.44 4.77z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tCalidad y Testing\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tAseguramos software robusto, estable y sin sorpresas en producci\u00f3n.\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cd0af25 elementor-position-inline-start elementor-widget-mobile__width-initial elementor-view-default elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"cd0af25\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Icons\" viewBox=\"0 0 60 60\" width=\"512\" height=\"512\"><path d=\"M52,26a8,8,0,0,0,.96-15.942A11,11,0,0,0,32.146,6.112,5.913,5.913,0,0,0,31,6a6.033,6.033,0,0,0-5.792,4.5A8,8,0,0,0,28,26v2a1,1,0,0,1-1,1H24.816a3,3,0,1,0,0,2H27a3,3,0,0,0,3-3V26h4v4.184a3,3,0,1,0,2,0V26h7v6.184a3,3,0,1,0,2,0V26h4v2a3,3,0,0,0,3,3h2.184a3,3,0,1,0,0-2H52a1,1,0,0,1-1-1V26ZM22,31a1,1,0,1,1,1-1A1,1,0,0,1,22,31Zm13,3a1,1,0,1,1,1-1A1,1,0,0,1,35,34Zm9,2a1,1,0,1,1,1-1A1,1,0,0,1,44,36Zm13-7a1,1,0,1,1-1,1A1,1,0,0,1,57,29ZM22,18a6.035,6.035,0,0,1,4.347-5.77,1,1,0,0,0,.713-.813A4.018,4.018,0,0,1,31,8a3.841,3.841,0,0,1,1.358.246,1,1,0,0,0,1.283-.569A9,9,0,0,1,51,11a1,1,0,0,0,1,1,6,6,0,0,1,0,12H28A6.006,6.006,0,0,1,22,18Z\"><\/path><path d=\"M3,56H8a2.994,2.994,0,0,0,2.98-2.8,1.912,1.912,0,0,1,.615.081l20.364,6.512a5.024,5.024,0,0,0,4.52-.847L57.8,41.855A3.19,3.19,0,0,0,59,39.372a3.226,3.226,0,0,0-.4-1.536,3.169,3.169,0,0,0-4.3-1.223l-10.462,5.91A3.152,3.152,0,0,0,41.2,39.735l-1.709-.29-.072-.008-19.393-3.31a10,10,0,0,0-5,.478l-4.091,1.766A3,3,0,0,0,8,36H3a3,3,0,0,0-3,3V53A3,3,0,0,0,3,56ZM15.757,38.465A7.994,7.994,0,0,1,19.7,38.1l19.436,3.317c.021,0,.048.007.074.01l1.662.282a1.172,1.172,0,0,1,.982,1.142,1.15,1.15,0,0,1-.328.812,1.192,1.192,0,0,1-.833.346H22.857a1,1,0,0,0,0,2h3.714l5.819,3.612a3,3,0,0,0,2.937.007L55.278,38.356a1.165,1.165,0,0,1,1.575.446,1.174,1.174,0,0,1-.3,1.489L35.241,57.371a3.013,3.013,0,0,1-2.691.507L12.2,51.369a3.914,3.914,0,0,0-1.16-.174h-.027L11,40.52Zm21.91,7.544-3.318,1.874a.992.992,0,0,1-.947.014l-3.041-1.888ZM2,39a1,1,0,0,1,1-1H8a1,1,0,0,1,1,1V53a1,1,0,0,1-1,1H3a1,1,0,0,1-1-1Z\"><\/path><path d=\"M5,42H6a1,1,0,0,0,0-2H5a1,1,0,0,0,0,2Z\"><\/path><path d=\"M5,52H6a1,1,0,0,0,0-2H5a1,1,0,0,0,0,2Z\"><\/path><path d=\"M36.309,8.868A.984.984,0,0,0,36.8,9a1,1,0,0,0,.869-.505A4.921,4.921,0,0,1,42,6a1,1,0,0,0,0-2,6.986,6.986,0,0,0-6.064,3.505A1,1,0,0,0,36.309,8.868Z\"><\/path><path d=\"M28.138,14.837a1,1,0,0,0-1.238-.685A4.026,4.026,0,0,0,24,18a1,1,0,0,0,2,0,2.015,2.015,0,0,1,1.453-1.926A1,1,0,0,0,28.138,14.837Z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tConsultor\u00eda T\u00e9cnica\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tArquitectura, auditor\u00edas y optimizaci\u00f3n de sistemas existentes.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e2a500a e-con-full e-flex e-con e-parent\" data-id=\"e2a500a\" 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-1d365c1 e-con-full e-flex e-con e-child\" data-id=\"1d365c1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4f5152b e-con-full e-flex e-con e-child\" data-id=\"4f5152b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2a59592 e-con-full e-flex e-con e-child\" data-id=\"2a59592\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1423cc4 elementor-widget elementor-widget-button\" data-id=\"1423cc4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dev.mengisoft.com\/codethor\/contacto\/\">\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\">Solicita presupuesto<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-be346ea elementor-widget elementor-widget-heading\" data-id=\"be346ea\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Soluciones inform\u00e1ticas para cualquier tipo de cliente<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b59ddd8 e-con-full e-flex e-con e-child\" data-id=\"b59ddd8\" 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-94b633d elementor-widget elementor-widget-heading\" data-id=\"94b633d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u00bfPorqu\u00e9 Codethor?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-de3de96 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"de3de96\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-check\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Enfoque en valor de negocio, no solo tecnolog\u00eda<\/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<i aria-hidden=\"true\" class=\"fas fa-check\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Equipos senior y aut\u00f3nomos<\/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<i aria-hidden=\"true\" class=\"fas fa-check\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Sistemas escalables y mantenibles<\/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<i aria-hidden=\"true\" class=\"fas fa-check\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">IA aplicada de forma real (no humo)<\/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<i aria-hidden=\"true\" class=\"fas fa-check\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Calidad desde el inicio<\/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<i aria-hidden=\"true\" class=\"fas fa-check\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Visi\u00f3n a largo plazo<\/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-b786f09 elementor-align-right elementor-widget elementor-widget-button\" data-id=\"b786f09\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dev.mengisoft.com\/codethor\/cursos\/\">\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\">Cursos<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-36772f2 e-con-full e-flex e-con e-child\" data-id=\"36772f2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-07131ba e-con-full e-flex e-con e-child\" data-id=\"07131ba\" 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-9705897 e-con-full e-flex e-con e-child\" data-id=\"9705897\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dff3a94 elementor-widget elementor-widget-counter\" data-id=\"dff3a94\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<div class=\"elementor-counter-title\">Proyectos<\/div>\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=\"2000\" data-to-value=\"75\" 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>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-50a2f4c e-con-full e-flex e-con e-child\" data-id=\"50a2f4c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9ec1288 elementor-absolute elementor-widget elementor-widget-button\" data-id=\"9ec1288\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dev.mengisoft.com\/codethor\/servicios\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"phl phlight-arrow-right\"><\/i>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1d8623a elementor-widget elementor-widget-heading\" data-id=\"1d8623a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Dise\u00f1amos tecnolog\u00eda a medida para ayudarte a crecer<\/h2>\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-da4c69b e-flex e-con-boxed e-con e-parent\" data-id=\"da4c69b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d1e44ea e-con-full e-flex e-con e-child\" data-id=\"d1e44ea\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c3fb899 e-con-full e-flex e-con e-child\" data-id=\"c3fb899\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2933753 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"2933753\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Cu\u00e9ntanos tu proyecto y lo convertimos en una soluci\u00f3n real<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-77908cb animated-fast elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"77908cb\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:500}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tCada empresa es diferente. Construimos ventajas competitivas sostenibles.\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-aeae387 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"aeae387\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dev.mengisoft.com\/codethor\/contacto\/\">\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\">Solicita presupuesto<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Software, IA y calidad en un solo equipo Transformamos ideas en software que impulsa tu negocio Desarrollamos soluciones digitales, sistemas a medida e inteligencia artificial aplicada para ayudar a las empresas a ser m\u00e1s eficientes, escalables y competitivas. Solicitar presupuesto Ir a la siguiente secci\u00f3n Software, IA y calidad en un solo equipo Transformamos ideas [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"_acf_changed":false,"site-sidebar-layout":"no-sidebar","site-content-layout":"page-builder","ast-site-content-layout":"full-width-container","site-content-style":"unboxed","site-sidebar-style":"unboxed","ast-global-header-display":"","ast-banner-title-visibility":"disabled","ast-main-header-display":"disabled","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"disabled","site-post-title":"","ast-breadcrumbs-content":"disabled","ast-featured-img":"disabled","footer-sml-layout":"disabled","ast-disable-related-posts":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_joinchat":[],"footnotes":""},"class_list":["post-79","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Inicio - Codethor<\/title>\n<meta name=\"description\" content=\"Desarrollamos soluciones digitales, sistemas a medida e inteligencia artificial aplicada para ayudar a las empresas a ser m\u00e1s eficientes, escalables y competitivas.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dev.mengisoft.com\/codethor\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Inicio - Codethor\" \/>\n<meta property=\"og:description\" content=\"Desarrollamos soluciones digitales, sistemas a medida e inteligencia artificial aplicada para ayudar a las empresas a ser m\u00e1s eficientes, escalables y competitivas.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dev.mengisoft.com\/codethor\/\" \/>\n<meta property=\"og:site_name\" content=\"Codethor\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-23T08:13:13+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minuto\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/\",\"url\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/\",\"name\":\"Inicio - Codethor\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/#website\"},\"datePublished\":\"2024-08-05T08:47:58+00:00\",\"dateModified\":\"2026-04-23T08:13:13+00:00\",\"description\":\"Desarrollamos soluciones digitales, sistemas a medida e inteligencia artificial aplicada para ayudar a las empresas a ser m\u00e1s eficientes, escalables y competitivas.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Inicio\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/#website\",\"url\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/\",\"name\":\"Codethor\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/#organization\",\"name\":\"Codethor\",\"url\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/logotipo-codethor-negro.png\",\"contentUrl\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/logotipo-codethor-negro.png\",\"width\":425,\"height\":194,\"caption\":\"Codethor\"},\"image\":{\"@id\":\"https:\\\/\\\/dev.mengisoft.com\\\/codethor\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Inicio - Codethor","description":"Desarrollamos soluciones digitales, sistemas a medida e inteligencia artificial aplicada para ayudar a las empresas a ser m\u00e1s eficientes, escalables y competitivas.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dev.mengisoft.com\/codethor\/","og_locale":"es_ES","og_type":"article","og_title":"Inicio - Codethor","og_description":"Desarrollamos soluciones digitales, sistemas a medida e inteligencia artificial aplicada para ayudar a las empresas a ser m\u00e1s eficientes, escalables y competitivas.","og_url":"https:\/\/dev.mengisoft.com\/codethor\/","og_site_name":"Codethor","article_modified_time":"2026-04-23T08:13:13+00:00","twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"1 minuto"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/dev.mengisoft.com\/codethor\/","url":"https:\/\/dev.mengisoft.com\/codethor\/","name":"Inicio - Codethor","isPartOf":{"@id":"https:\/\/dev.mengisoft.com\/codethor\/#website"},"datePublished":"2024-08-05T08:47:58+00:00","dateModified":"2026-04-23T08:13:13+00:00","description":"Desarrollamos soluciones digitales, sistemas a medida e inteligencia artificial aplicada para ayudar a las empresas a ser m\u00e1s eficientes, escalables y competitivas.","breadcrumb":{"@id":"https:\/\/dev.mengisoft.com\/codethor\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dev.mengisoft.com\/codethor\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dev.mengisoft.com\/codethor\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/dev.mengisoft.com\/codethor\/"},{"@type":"ListItem","position":2,"name":"Inicio"}]},{"@type":"WebSite","@id":"https:\/\/dev.mengisoft.com\/codethor\/#website","url":"https:\/\/dev.mengisoft.com\/codethor\/","name":"Codethor","description":"","publisher":{"@id":"https:\/\/dev.mengisoft.com\/codethor\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dev.mengisoft.com\/codethor\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/dev.mengisoft.com\/codethor\/#organization","name":"Codethor","url":"https:\/\/dev.mengisoft.com\/codethor\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/dev.mengisoft.com\/codethor\/#\/schema\/logo\/image\/","url":"https:\/\/dev.mengisoft.com\/codethor\/wp-content\/uploads\/2024\/08\/logotipo-codethor-negro.png","contentUrl":"https:\/\/dev.mengisoft.com\/codethor\/wp-content\/uploads\/2024\/08\/logotipo-codethor-negro.png","width":425,"height":194,"caption":"Codethor"},"image":{"@id":"https:\/\/dev.mengisoft.com\/codethor\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/dev.mengisoft.com\/codethor\/wp-json\/wp\/v2\/pages\/79","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dev.mengisoft.com\/codethor\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/dev.mengisoft.com\/codethor\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/dev.mengisoft.com\/codethor\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dev.mengisoft.com\/codethor\/wp-json\/wp\/v2\/comments?post=79"}],"version-history":[{"count":1335,"href":"https:\/\/dev.mengisoft.com\/codethor\/wp-json\/wp\/v2\/pages\/79\/revisions"}],"predecessor-version":[{"id":4390,"href":"https:\/\/dev.mengisoft.com\/codethor\/wp-json\/wp\/v2\/pages\/79\/revisions\/4390"}],"wp:attachment":[{"href":"https:\/\/dev.mengisoft.com\/codethor\/wp-json\/wp\/v2\/media?parent=79"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}