{"id":7,"date":"2025-06-15T19:28:39","date_gmt":"2025-06-15T19:28:39","guid":{"rendered":"https:\/\/aupaire.com\/?page_id=7"},"modified":"2025-07-19T18:09:07","modified_gmt":"2025-07-19T18:09:07","slug":"home-old","status":"publish","type":"page","link":"https:\/\/aupaire.nerdysolutions.io\/ar\/home-old\/","title":{"rendered":"Home-old"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"7\" class=\"elementor elementor-7\">\n\t\t\t\t<div class=\"elementor-element elementor-element-784ff84b e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"784ff84b\" 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-5ea1b447 elementor-widget__width-inherit animated-slow elementor-invisible elementor-widget elementor-widget-html\" data-id=\"5ea1b447\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:3000}\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<canvas id=\"gradient-canvas\"><\/canvas>\n\n<style>\n#gradient-canvas {\n  width:100%;\n  height:100%;\n  position: absolute\n  --gradient-color-1: #0A1738;\n  --gradient-color-2: #0A2540;\n  --gradient-color-3: #1E3880;\n  --gradient-color-4: #0a1738;\n  z-index:-5;\n}\n<\/style>\n\n\n\n<script>\n\n\/*\n*   Stripe WebGl Gradient Animation\n*   ScrollObserver functionality to disable animation when not scrolled into view has been disabled and \n*   commented out for now.\n*\/\n\n\n\/\/Converting colors to proper format\nfunction normalizeColor(hexCode) {\n  return [(hexCode >> 16 & 255) \/ 255, (hexCode >> 8 & 255) \/ 255, (255 & hexCode) \/ 255]\n} [\"SCREEN\", \"LINEAR_LIGHT\"].reduce((hexCode, t, n) => Object.assign(hexCode, {\n  [t]: n\n}), {});\n\n\/\/Essential functionality of WebGl\n\/\/t = width\n\/\/n = height\nclass MiniGl {\n  constructor(canvas, width, height, debug = false) {\n      const _miniGl = this,\n          debug_output = -1 !== document.location.search.toLowerCase().indexOf(\"debug=webgl\");\n      _miniGl.canvas = canvas, _miniGl.gl = _miniGl.canvas.getContext(\"webgl\", {\n          antialias: true\n      }), _miniGl.meshes = [];\n      const context = _miniGl.gl;\n      width && height && this.setSize(width, height), _miniGl.lastDebugMsg, _miniGl.debug = debug && debug_output ? function(e) {\n          const t = new Date;\n          t - _miniGl.lastDebugMsg > 1e3 && console.log(\"---\"), console.log(t.toLocaleTimeString() + Array(Math.max(0, 32 - e.length)).join(\" \") + e + \": \", ...Array.from(arguments).slice(1)), _miniGl.lastDebugMsg = t\n      } : () => {}, Object.defineProperties(_miniGl, {\n          Material: {\n              enumerable: false,\n              value: class {\n                  constructor(vertexShaders, fragments, uniforms = {}) {\n                      const material = this;\n                      function getShaderByType(type, source) {\n                          const shader = context.createShader(type);\n                          return context.shaderSource(shader, source), context.compileShader(shader), context.getShaderParameter(shader, context.COMPILE_STATUS) || console.error(context.getShaderInfoLog(shader)), _miniGl.debug(\"Material.compileShaderSource\", {\n                              source: source\n                          }), shader\n                      }\n                      function getUniformVariableDeclarations(uniforms, type) {\n                          return Object.entries(uniforms).map(([uniform, value]) => value.getDeclaration(uniform, type)).join(\"\\n\")\n                      }\n                      material.uniforms = uniforms, material.uniformInstances = [];\n\n                      const prefix = \"\\n              precision highp float;\\n            \";\n                      material.vertexSource = `\\n              ${prefix}\\n              attribute vec4 position;\\n              attribute vec2 uv;\\n              attribute vec2 uvNorm;\\n              ${getUniformVariableDeclarations(_miniGl.commonUniforms,\"vertex\")}\\n              ${getUniformVariableDeclarations(uniforms,\"vertex\")}\\n              ${vertexShaders}\\n            `,\n                      material.Source = `\\n              ${prefix}\\n              ${getUniformVariableDeclarations(_miniGl.commonUniforms,\"fragment\")}\\n              ${getUniformVariableDeclarations(uniforms,\"fragment\")}\\n              ${fragments}\\n            `,\n                      material.vertexShader = getShaderByType(context.VERTEX_SHADER, material.vertexSource),\n                      material.fragmentShader = getShaderByType(context.FRAGMENT_SHADER, material.Source),\n                      material.program = context.createProgram(),\n                      context.attachShader(material.program, material.vertexShader),\n                      context.attachShader(material.program, material.fragmentShader),\n                      context.linkProgram(material.program),\n                      context.getProgramParameter(material.program, context.LINK_STATUS) || console.error(context.getProgramInfoLog(material.program)),\n                      context.useProgram(material.program),\n                      material.attachUniforms(void 0, _miniGl.commonUniforms),\n                      material.attachUniforms(void 0, material.uniforms)\n                  }\n                  \/\/t = uniform\n                  attachUniforms(name, uniforms) {\n                      \/\/n  = material\n                      const material = this;\n                      void 0 === name ? Object.entries(uniforms).forEach(([name, uniform]) => {\n                          material.attachUniforms(name, uniform)\n                      }) : \"array\" == uniforms.type ? uniforms.value.forEach((uniform, i) => material.attachUniforms(`${name}[${i}]`, uniform)) : \"struct\" == uniforms.type ? Object.entries(uniforms.value).forEach(([uniform, i]) => material.attachUniforms(`${name}.${uniform}`, i)) : (_miniGl.debug(\"Material.attachUniforms\", {\n                          name: name,\n                          uniform: uniforms\n                      }), material.uniformInstances.push({\n                          uniform: uniforms,\n                          location: context.getUniformLocation(material.program, name)\n                      }))\n                  }\n              }\n          },\n          Uniform: {\n              enumerable: !1,\n              value: class {\n                  constructor(e) {\n                      this.type = \"float\", Object.assign(this, e);\n                      this.typeFn = {\n                          float: \"1f\",\n                          int: \"1i\",\n                          vec2: \"2fv\",\n                          vec3: \"3fv\",\n                          vec4: \"4fv\",\n                          mat4: \"Matrix4fv\"\n                      } [this.type] || \"1f\", this.update()\n                  }\n                  update(value) {\n                      void 0 !== this.value && context[`uniform${this.typeFn}`](value, 0 === this.typeFn.indexOf(\"Matrix\") ? this.transpose : this.value, 0 === this.typeFn.indexOf(\"Matrix\") ? this.value : null)\n                  }\n                  \/\/e - name\n                  \/\/t - type\n                  \/\/n - length\n                  getDeclaration(name, type, length) {\n                      const uniform = this;\n                      if (uniform.excludeFrom !== type) {\n                          if (\"array\" === uniform.type) return uniform.value[0].getDeclaration(name, type, uniform.value.length) + `\\nconst int ${name}_length = ${uniform.value.length};`;\n                          if (\"struct\" === uniform.type) {\n                              let name_no_prefix = name.replace(\"u_\", \"\");\n                              return name_no_prefix = \n                                name_no_prefix.charAt(0).toUpperCase() + \n                                name_no_prefix.slice(1), \n                                `uniform struct ${name_no_prefix} \n                                {\\n` + \n                                Object.entries(uniform.value).map(([name, uniform]) => \n                                uniform.getDeclaration(name, type)\n                                .replace(\/^uniform\/, \"\"))\n                                .join(\"\") \n                                + `\\n} ${name}${length>0?`[${length}]`:\"\"};`\n                          }\n                          return `uniform ${uniform.type} ${name}${length>0?`[${length}]`:\"\"};`\n                      }\n                  }\n              }\n          },\n          PlaneGeometry: {\n              enumerable: !1,\n              value: class {\n                  constructor(width, height, n, i, orientation) {\n                    context.createBuffer(), this.attributes = {\n                          position: new _miniGl.Attribute({\n                              target: context.ARRAY_BUFFER,\n                              size: 3\n                          }),\n                          uv: new _miniGl.Attribute({\n                              target: context.ARRAY_BUFFER,\n                              size: 2\n                          }),\n                          uvNorm: new _miniGl.Attribute({\n                              target: context.ARRAY_BUFFER,\n                              size: 2\n                          }),\n                          index: new _miniGl.Attribute({\n                              target: context.ELEMENT_ARRAY_BUFFER,\n                              size: 3,\n                              type: context.UNSIGNED_SHORT\n                          })\n                      }, this.setTopology(n, i), this.setSize(width, height, orientation)\n                  }\n                  setTopology(e = 1, t = 1) {\n                      const n = this;\n                      n.xSegCount = e, n.ySegCount = t, n.vertexCount = (n.xSegCount + 1) * (n.ySegCount + 1), n.quadCount = n.xSegCount * n.ySegCount * 2, n.attributes.uv.values = new Float32Array(2 * n.vertexCount), n.attributes.uvNorm.values = new Float32Array(2 * n.vertexCount), n.attributes.index.values = new Uint16Array(3 * n.quadCount);\n                      for (let e = 0; e <= n.ySegCount; e++)\n                          for (let t = 0; t <= n.xSegCount; t++) {\n                              const i = e * (n.xSegCount + 1) + t;\n                              if (n.attributes.uv.values[2 * i] = t \/ n.xSegCount, n.attributes.uv.values[2 * i + 1] = 1 - e \/ n.ySegCount, n.attributes.uvNorm.values[2 * i] = t \/ n.xSegCount * 2 - 1, n.attributes.uvNorm.values[2 * i + 1] = 1 - e \/ n.ySegCount * 2, t < n.xSegCount && e < n.ySegCount) {\n                                  const s = e * n.xSegCount + t;\n                                  n.attributes.index.values[6 * s] = i, n.attributes.index.values[6 * s + 1] = i + 1 + n.xSegCount, n.attributes.index.values[6 * s + 2] = i + 1, n.attributes.index.values[6 * s + 3] = i + 1, n.attributes.index.values[6 * s + 4] = i + 1 + n.xSegCount, n.attributes.index.values[6 * s + 5] = i + 2 + n.xSegCount\n                              }\n                          }\n                      n.attributes.uv.update(), n.attributes.uvNorm.update(), n.attributes.index.update(), _miniGl.debug(\"Geometry.setTopology\", {\n                          uv: n.attributes.uv,\n                          uvNorm: n.attributes.uvNorm,\n                          index: n.attributes.index\n                      })\n                  }\n                  setSize(width = 1, height = 1, orientation = \"xz\") {\n                      const geometry = this;\n                      geometry.width = width,\n                      geometry.height = height,\n                      geometry.orientation = orientation,\n                      geometry.attributes.position.values && geometry.attributes.position.values.length === 3 * geometry.vertexCount \n                      || (geometry.attributes.position.values = new Float32Array(3 * geometry.vertexCount));\n                      const o = width \/ -2,\n                          r = height \/ -2,\n                          segment_width = width \/ geometry.xSegCount,\n                          segment_height = height \/ geometry.ySegCount;\n                      for (let yIndex= 0; yIndex <= geometry.ySegCount; yIndex++) {\n                          const t = r + yIndex * segment_height;\n                          for (let xIndex = 0; xIndex <= geometry.xSegCount; xIndex++) {\n                              const r = o + xIndex * segment_width,\n                                  l = yIndex * (geometry.xSegCount + 1) + xIndex;\n                              geometry.attributes.position.values[3 * l + \"xyz\".indexOf(orientation[0])] = r, \n                              geometry.attributes.position.values[3 * l + \"xyz\".indexOf(orientation[1])] = -t\n                          }\n                      }\n                      geometry.attributes.position.update(), _miniGl.debug(\"Geometry.setSize\", {\n                          position: geometry.attributes.position\n                      })\n                  }\n              }\n          },\n          Mesh: {\n              enumerable: !1,\n              value: class {\n                  constructor(geometry, material) {\n                      const mesh = this;\n                      mesh.geometry = geometry, mesh.material = material, mesh.wireframe = !1, mesh.attributeInstances = [], Object.entries(mesh.geometry.attributes).forEach(([e, attribute]) => {\n                          mesh.attributeInstances.push({\n                              attribute: attribute,\n                              location: attribute.attach(e, mesh.material.program)\n                          })\n                      }), _miniGl.meshes.push(mesh), _miniGl.debug(\"Mesh.constructor\", {\n                          mesh: mesh\n                      })\n                  }\n                  draw() {\n                    context.useProgram(this.material.program), this.material.uniformInstances.forEach(({\n                          uniform: e,\n                          location: t\n                      }) => e.update(t)), this.attributeInstances.forEach(({\n                          attribute: e,\n                          location: t\n                      }) => e.use(t)), context.drawElements(this.wireframe ? context.LINES : context.TRIANGLES, this.geometry.attributes.index.values.length, context.UNSIGNED_SHORT, 0)\n                  }\n                  remove() {\n                      _miniGl.meshes = _miniGl.meshes.filter(e => e != this)\n                  }\n              }\n          },\n          Attribute: {\n              enumerable: !1,\n              value: class {\n                  constructor(e) {\n                      this.type = context.FLOAT, this.normalized = !1, this.buffer = context.createBuffer(), Object.assign(this, e), this.update()\n                  }\n                  update() {\n                      void 0 !== this.values && (context.bindBuffer(this.target, this.buffer), context.bufferData(this.target, this.values, context.STATIC_DRAW))\n                  }\n                  attach(e, t) {\n                      const n = context.getAttribLocation(t, e);\n                      return this.target === context.ARRAY_BUFFER && (context.enableVertexAttribArray(n), context.vertexAttribPointer(n, this.size, this.type, this.normalized, 0, 0)), n\n                  }\n                  use(e) {\n                    context.bindBuffer(this.target, this.buffer), this.target === context.ARRAY_BUFFER && (context.enableVertexAttribArray(e), context.vertexAttribPointer(e, this.size, this.type, this.normalized, 0, 0))\n                  }\n              }\n          }\n      });\n      const a = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1];\n      _miniGl.commonUniforms = {\n          projectionMatrix: new _miniGl.Uniform({\n              type: \"mat4\",\n              value: a\n          }),\n          modelViewMatrix: new _miniGl.Uniform({\n              type: \"mat4\",\n              value: a\n          }),\n          resolution: new _miniGl.Uniform({\n              type: \"vec2\",\n              value: [1, 1]\n          }),\n          aspectRatio: new _miniGl.Uniform({\n              type: \"float\",\n              value: 1\n          })\n      }\n  }\n  setSize(e = 640, t = 480) {\n      this.width = e, this.height = t, this.canvas.width = e, this.canvas.height = t, this.gl.viewport(0, 0, e, t), this.commonUniforms.resolution.value = [e, t], this.commonUniforms.aspectRatio.value = e \/ t, this.debug(\"MiniGL.setSize\", {\n          width: e,\n          height: t\n      })\n  }\n  \/\/left, right, top, bottom, near, far\n  setOrthographicCamera(e = 0, t = 0, n = 0, i = -2e3, s = 2e3) {\n      this.commonUniforms.projectionMatrix.value = [2 \/ this.width, 0, 0, 0, 0, 2 \/ this.height, 0, 0, 0, 0, 2 \/ (i - s), 0, e, t, n, 1], this.debug(\"setOrthographicCamera\", this.commonUniforms.projectionMatrix.value)\n  }\n  render() {\n      this.gl.clearColor(0, 0, 0, 0), this.gl.clearDepth(1), this.meshes.forEach(e => e.draw())\n  }\n}\n\n\n\n\/\/Sets initial properties\nfunction e(object, propertyName, val) {\n  return propertyName in object ? Object.defineProperty(object, propertyName, {\n      value: val,\n      enumerable: !0,\n      configurable: !0,\n      writable: !0\n  }) : object[propertyName] = val, object\n}\n\n\/\/Gradient object\nclass Gradient {\n  constructor(...t) {\n      e(this, \"el\", void 0), e(this, \"cssVarRetries\", 0), e(this, \"maxCssVarRetries\", 200), e(this, \"angle\", 0), e(this, \"isLoadedClass\", !1), e(this, \"isScrolling\", !1), \/*e(this, \"isStatic\", o.disableAmbientAnimations()),*\/ e(this, \"scrollingTimeout\", void 0), e(this, \"scrollingRefreshDelay\", 200), e(this, \"isIntersecting\", !1), e(this, \"shaderFiles\", void 0), e(this, \"vertexShader\", void 0), e(this, \"sectionColors\", void 0), e(this, \"computedCanvasStyle\", void 0), e(this, \"conf\", void 0), e(this, \"uniforms\", void 0), e(this, \"t\", 1253106), e(this, \"last\", 0), e(this, \"width\", void 0), e(this, \"minWidth\", 1111), e(this, \"height\", 600), e(this, \"xSegCount\", void 0), e(this, \"ySegCount\", void 0), e(this, \"mesh\", void 0), e(this, \"material\", void 0), e(this, \"geometry\", void 0), e(this, \"minigl\", void 0), e(this, \"scrollObserver\", void 0), e(this, \"amp\", 320), e(this, \"seed\", 5), e(this, \"freqX\", 14e-5), e(this, \"freqY\", 29e-5), e(this, \"freqDelta\", 1e-5), e(this, \"activeColors\", [1, 1, 1, 1]), e(this, \"isMetaKey\", !1), e(this, \"isGradientLegendVisible\", !1), e(this, \"isMouseDown\", !1), e(this, \"handleScroll\", () => {\n          clearTimeout(this.scrollingTimeout), this.scrollingTimeout = setTimeout(this.handleScrollEnd, this.scrollingRefreshDelay), this.isGradientLegendVisible && this.hideGradientLegend(), this.conf.playing && (this.isScrolling = !0, this.pause())\n      }), e(this, \"handleScrollEnd\", () => {\n          this.isScrolling = !1, this.isIntersecting && this.play()\n      }), e(this, \"resize\", () => {\n          this.width = window.innerWidth, this.minigl.setSize(this.width, this.height), this.minigl.setOrthographicCamera(), this.xSegCount = Math.ceil(this.width * this.conf.density[0]), this.ySegCount = Math.ceil(this.height * this.conf.density[1]), this.mesh.geometry.setTopology(this.xSegCount, this.ySegCount), this.mesh.geometry.setSize(this.width, this.height), this.mesh.material.uniforms.u_shadow_power.value = this.width < 600 ? 5 : 6\n      }), e(this, \"handleMouseDown\", e => {\n          this.isGradientLegendVisible && (this.isMetaKey = e.metaKey, this.isMouseDown = !0, !1 === this.conf.playing && requestAnimationFrame(this.animate))\n      }), e(this, \"handleMouseUp\", () => {\n          this.isMouseDown = !1\n      }), e(this, \"animate\", e => {\n          if (!this.shouldSkipFrame(e) || this.isMouseDown) {\n              if (this.t += Math.min(e - this.last, 1e3 \/ 15), this.last = e, this.isMouseDown) {\n                  let e = 160;\n                  this.isMetaKey && (e = -160), this.t += e\n              }\n              this.mesh.material.uniforms.u_time.value = this.t, this.minigl.render()\n\n          }\n          if (0 !== this.last && this.isStatic) return this.minigl.render(), void this.disconnect();\n          (\/*this.isIntersecting && *\/this.conf.playing || this.isMouseDown) && requestAnimationFrame(this.animate)\n      }), e(this, \"addIsLoadedClass\", () => {\n          \/*this.isIntersecting && *\/!this.isLoadedClass && (this.isLoadedClass = !0, this.el.classList.add(\"isLoaded\"), setTimeout(() => {\n              this.el.parentElement.classList.add(\"isLoaded\")\n          }, 3e3))\n      }), e(this, \"pause\", () => {\n          this.conf.playing = false\n      }), e(this, \"play\", () => {\n          requestAnimationFrame(this.animate), this.conf.playing = true\n      }), e(this,\"initGradient\", (selector) => {\n        this.el = document.querySelector(selector);\n        this.connect();\n        return this;\n      })\n  }\n  async connect() {\n      this.shaderFiles = {\n          vertex: \"varying vec3 v_color;\\n\\nvoid main() {\\n  float time = u_time * u_global.noiseSpeed;\\n\\n  vec2 noiseCoord = resolution * uvNorm * u_global.noiseFreq;\\n\\n  vec2 st = 1. - uvNorm.xy;\\n\\n  \/\/\\n  \/\/ Tilting the plane\\n  \/\/\\n\\n  \/\/ Front-to-back tilt\\n  float tilt = resolution.y \/ 2.0 * uvNorm.y;\\n\\n  \/\/ Left-to-right angle\\n  float incline = resolution.x * uvNorm.x \/ 2.0 * u_vertDeform.incline;\\n\\n  \/\/ Up-down shift to offset incline\\n  float offset = resolution.x \/ 2.0 * u_vertDeform.incline * mix(u_vertDeform.offsetBottom, u_vertDeform.offsetTop, uv.y);\\n\\n  \/\/\\n  \/\/ Vertex noise\\n  \/\/\\n\\n  float noise = snoise(vec3(\\n    noiseCoord.x * u_vertDeform.noiseFreq.x + time * u_vertDeform.noiseFlow,\\n    noiseCoord.y * u_vertDeform.noiseFreq.y,\\n    time * u_vertDeform.noiseSpeed + u_vertDeform.noiseSeed\\n  )) * u_vertDeform.noiseAmp;\\n\\n  \/\/ Fade noise to zero at edges\\n  noise *= 1.0 - pow(abs(uvNorm.y), 2.0);\\n\\n  \/\/ Clamp to 0\\n  noise = max(0.0, noise);\\n\\n  vec3 pos = vec3(\\n    position.x,\\n    position.y + tilt + incline + noise - offset,\\n    position.z\\n  );\\n\\n  \/\/\\n  \/\/ Vertex color, to be passed to fragment shader\\n  \/\/\\n\\n  if (u_active_colors[0] == 1.) {\\n    v_color = u_baseColor;\\n  }\\n\\n  for (int i = 0; i < u_waveLayers_length; i++) {\\n    if (u_active_colors[i + 1] == 1.) {\\n      WaveLayers layer = u_waveLayers[i];\\n\\n      float noise = smoothstep(\\n        layer.noiseFloor,\\n        layer.noiseCeil,\\n        snoise(vec3(\\n          noiseCoord.x * layer.noiseFreq.x + time * layer.noiseFlow,\\n          noiseCoord.y * layer.noiseFreq.y,\\n          time * layer.noiseSpeed + layer.noiseSeed\\n        )) \/ 2.0 + 0.5\\n      );\\n\\n      v_color = blendNormal(v_color, layer.color, pow(noise, 4.));\\n    }\\n  }\\n\\n  \/\/\\n  \/\/ Finish\\n  \/\/\\n\\n  gl_Position = projectionMatrix * modelViewMatrix * vec4(pos, 1.0);\\n}\",\n          noise: \"\/\/\\n\/\/ Description : Array and textureless GLSL 2D\/3D\/4D simplex\\n\/\/               noise functions.\\n\/\/      Author : Ian McEwan, Ashima Arts.\\n\/\/  Maintainer : stegu\\n\/\/     Lastmod : 20110822 (ijm)\\n\/\/     License : Copyright (C) 2011 Ashima Arts. All rights reserved.\\n\/\/               Distributed under the MIT License. See LICENSE file.\\n\/\/               https:\/\/github.com\/ashima\/webgl-noise\\n\/\/               https:\/\/github.com\/stegu\/webgl-noise\\n\/\/\\n\\nvec3 mod289(vec3 x) {\\n  return x - floor(x * (1.0 \/ 289.0)) * 289.0;\\n}\\n\\nvec4 mod289(vec4 x) {\\n  return x - floor(x * (1.0 \/ 289.0)) * 289.0;\\n}\\n\\nvec4 permute(vec4 x) {\\n    return mod289(((x*34.0)+1.0)*x);\\n}\\n\\nvec4 taylorInvSqrt(vec4 r)\\n{\\n  return 1.79284291400159 - 0.85373472095314 * r;\\n}\\n\\nfloat snoise(vec3 v)\\n{\\n  const vec2  C = vec2(1.0\/6.0, 1.0\/3.0) ;\\n  const vec4  D = vec4(0.0, 0.5, 1.0, 2.0);\\n\\n\/\/ First corner\\n  vec3 i  = floor(v + dot(v, C.yyy) );\\n  vec3 x0 =   v - i + dot(i, C.xxx) ;\\n\\n\/\/ Other corners\\n  vec3 g = step(x0.yzx, x0.xyz);\\n  vec3 l = 1.0 - g;\\n  vec3 i1 = min( g.xyz, l.zxy );\\n  vec3 i2 = max( g.xyz, l.zxy );\\n\\n  \/\/   x0 = x0 - 0.0 + 0.0 * C.xxx;\\n  \/\/   x1 = x0 - i1  + 1.0 * C.xxx;\\n  \/\/   x2 = x0 - i2  + 2.0 * C.xxx;\\n  \/\/   x3 = x0 - 1.0 + 3.0 * C.xxx;\\n  vec3 x1 = x0 - i1 + C.xxx;\\n  vec3 x2 = x0 - i2 + C.yyy; \/\/ 2.0*C.x = 1\/3 = C.y\\n  vec3 x3 = x0 - D.yyy;      \/\/ -1.0+3.0*C.x = -0.5 = -D.y\\n\\n\/\/ Permutations\\n  i = mod289(i);\\n  vec4 p = permute( permute( permute(\\n            i.z + vec4(0.0, i1.z, i2.z, 1.0 ))\\n          + i.y + vec4(0.0, i1.y, i2.y, 1.0 ))\\n          + i.x + vec4(0.0, i1.x, i2.x, 1.0 ));\\n\\n\/\/ Gradients: 7x7 points over a square, mapped onto an octahedron.\\n\/\/ The ring size 17*17 = 289 is close to a multiple of 49 (49*6 = 294)\\n  float n_ = 0.142857142857; \/\/ 1.0\/7.0\\n  vec3  ns = n_ * D.wyz - D.xzx;\\n\\n  vec4 j = p - 49.0 * floor(p * ns.z * ns.z);  \/\/  mod(p,7*7)\\n\\n  vec4 x_ = floor(j * ns.z);\\n  vec4 y_ = floor(j - 7.0 * x_ );    \/\/ mod(j,N)\\n\\n  vec4 x = x_ *ns.x + ns.yyyy;\\n  vec4 y = y_ *ns.x + ns.yyyy;\\n  vec4 h = 1.0 - abs(x) - abs(y);\\n\\n  vec4 b0 = vec4( x.xy, y.xy );\\n  vec4 b1 = vec4( x.zw, y.zw );\\n\\n  \/\/vec4 s0 = vec4(lessThan(b0,0.0))*2.0 - 1.0;\\n  \/\/vec4 s1 = vec4(lessThan(b1,0.0))*2.0 - 1.0;\\n  vec4 s0 = floor(b0)*2.0 + 1.0;\\n  vec4 s1 = floor(b1)*2.0 + 1.0;\\n  vec4 sh = -step(h, vec4(0.0));\\n\\n  vec4 a0 = b0.xzyw + s0.xzyw*sh.xxyy ;\\n  vec4 a1 = b1.xzyw + s1.xzyw*sh.zzww ;\\n\\n  vec3 p0 = vec3(a0.xy,h.x);\\n  vec3 p1 = vec3(a0.zw,h.y);\\n  vec3 p2 = vec3(a1.xy,h.z);\\n  vec3 p3 = vec3(a1.zw,h.w);\\n\\n\/\/Normalise gradients\\n  vec4 norm = taylorInvSqrt(vec4(dot(p0,p0), dot(p1,p1), dot(p2, p2), dot(p3,p3)));\\n  p0 *= norm.x;\\n  p1 *= norm.y;\\n  p2 *= norm.z;\\n  p3 *= norm.w;\\n\\n\/\/ Mix final noise value\\n  vec4 m = max(0.6 - vec4(dot(x0,x0), dot(x1,x1), dot(x2,x2), dot(x3,x3)), 0.0);\\n  m = m * m;\\n  return 42.0 * dot( m*m, vec4( dot(p0,x0), dot(p1,x1),\\n                                dot(p2,x2), dot(p3,x3) ) );\\n}\",\n          blend: \"\/\/\\n\/\/ https:\/\/github.com\/jamieowen\/glsl-blend\\n\/\/\\n\\n\/\/ Normal\\n\\nvec3 blendNormal(vec3 base, vec3 blend) {\\n\\treturn blend;\\n}\\n\\nvec3 blendNormal(vec3 base, vec3 blend, float opacity) {\\n\\treturn (blendNormal(base, blend) * opacity + base * (1.0 - opacity));\\n}\\n\\n\/\/ Screen\\n\\nfloat blendScreen(float base, float blend) {\\n\\treturn 1.0-((1.0-base)*(1.0-blend));\\n}\\n\\nvec3 blendScreen(vec3 base, vec3 blend) {\\n\\treturn vec3(blendScreen(base.r,blend.r),blendScreen(base.g,blend.g),blendScreen(base.b,blend.b));\\n}\\n\\nvec3 blendScreen(vec3 base, vec3 blend, float opacity) {\\n\\treturn (blendScreen(base, blend) * opacity + base * (1.0 - opacity));\\n}\\n\\n\/\/ Multiply\\n\\nvec3 blendMultiply(vec3 base, vec3 blend) {\\n\\treturn base*blend;\\n}\\n\\nvec3 blendMultiply(vec3 base, vec3 blend, float opacity) {\\n\\treturn (blendMultiply(base, blend) * opacity + base * (1.0 - opacity));\\n}\\n\\n\/\/ Overlay\\n\\nfloat blendOverlay(float base, float blend) {\\n\\treturn base<0.5?(2.0*base*blend):(1.0-2.0*(1.0-base)*(1.0-blend));\\n}\\n\\nvec3 blendOverlay(vec3 base, vec3 blend) {\\n\\treturn vec3(blendOverlay(base.r,blend.r),blendOverlay(base.g,blend.g),blendOverlay(base.b,blend.b));\\n}\\n\\nvec3 blendOverlay(vec3 base, vec3 blend, float opacity) {\\n\\treturn (blendOverlay(base, blend) * opacity + base * (1.0 - opacity));\\n}\\n\\n\/\/ Hard light\\n\\nvec3 blendHardLight(vec3 base, vec3 blend) {\\n\\treturn blendOverlay(blend,base);\\n}\\n\\nvec3 blendHardLight(vec3 base, vec3 blend, float opacity) {\\n\\treturn (blendHardLight(base, blend) * opacity + base * (1.0 - opacity));\\n}\\n\\n\/\/ Soft light\\n\\nfloat blendSoftLight(float base, float blend) {\\n\\treturn (blend<0.5)?(2.0*base*blend+base*base*(1.0-2.0*blend)):(sqrt(base)*(2.0*blend-1.0)+2.0*base*(1.0-blend));\\n}\\n\\nvec3 blendSoftLight(vec3 base, vec3 blend) {\\n\\treturn vec3(blendSoftLight(base.r,blend.r),blendSoftLight(base.g,blend.g),blendSoftLight(base.b,blend.b));\\n}\\n\\nvec3 blendSoftLight(vec3 base, vec3 blend, float opacity) {\\n\\treturn (blendSoftLight(base, blend) * opacity + base * (1.0 - opacity));\\n}\\n\\n\/\/ Color dodge\\n\\nfloat blendColorDodge(float base, float blend) {\\n\\treturn (blend==1.0)?blend:min(base\/(1.0-blend),1.0);\\n}\\n\\nvec3 blendColorDodge(vec3 base, vec3 blend) {\\n\\treturn vec3(blendColorDodge(base.r,blend.r),blendColorDodge(base.g,blend.g),blendColorDodge(base.b,blend.b));\\n}\\n\\nvec3 blendColorDodge(vec3 base, vec3 blend, float opacity) {\\n\\treturn (blendColorDodge(base, blend) * opacity + base * (1.0 - opacity));\\n}\\n\\n\/\/ Color burn\\n\\nfloat blendColorBurn(float base, float blend) {\\n\\treturn (blend==0.0)?blend:max((1.0-((1.0-base)\/blend)),0.0);\\n}\\n\\nvec3 blendColorBurn(vec3 base, vec3 blend) {\\n\\treturn vec3(blendColorBurn(base.r,blend.r),blendColorBurn(base.g,blend.g),blendColorBurn(base.b,blend.b));\\n}\\n\\nvec3 blendColorBurn(vec3 base, vec3 blend, float opacity) {\\n\\treturn (blendColorBurn(base, blend) * opacity + base * (1.0 - opacity));\\n}\\n\\n\/\/ Vivid Light\\n\\nfloat blendVividLight(float base, float blend) {\\n\\treturn (blend<0.5)?blendColorBurn(base,(2.0*blend)):blendColorDodge(base,(2.0*(blend-0.5)));\\n}\\n\\nvec3 blendVividLight(vec3 base, vec3 blend) {\\n\\treturn vec3(blendVividLight(base.r,blend.r),blendVividLight(base.g,blend.g),blendVividLight(base.b,blend.b));\\n}\\n\\nvec3 blendVividLight(vec3 base, vec3 blend, float opacity) {\\n\\treturn (blendVividLight(base, blend) * opacity + base * (1.0 - opacity));\\n}\\n\\n\/\/ Lighten\\n\\nfloat blendLighten(float base, float blend) {\\n\\treturn max(blend,base);\\n}\\n\\nvec3 blendLighten(vec3 base, vec3 blend) {\\n\\treturn vec3(blendLighten(base.r,blend.r),blendLighten(base.g,blend.g),blendLighten(base.b,blend.b));\\n}\\n\\nvec3 blendLighten(vec3 base, vec3 blend, float opacity) {\\n\\treturn (blendLighten(base, blend) * opacity + base * (1.0 - opacity));\\n}\\n\\n\/\/ Linear burn\\n\\nfloat blendLinearBurn(float base, float blend) {\\n\\t\/\/ Note : Same implementation as BlendSubtractf\\n\\treturn max(base+blend-1.0,0.0);\\n}\\n\\nvec3 blendLinearBurn(vec3 base, vec3 blend) {\\n\\t\/\/ Note : Same implementation as BlendSubtract\\n\\treturn max(base+blend-vec3(1.0),vec3(0.0));\\n}\\n\\nvec3 blendLinearBurn(vec3 base, vec3 blend, float opacity) {\\n\\treturn (blendLinearBurn(base, blend) * opacity + base * (1.0 - opacity));\\n}\\n\\n\/\/ Linear dodge\\n\\nfloat blendLinearDodge(float base, float blend) {\\n\\t\/\/ Note : Same implementation as BlendAddf\\n\\treturn min(base+blend,1.0);\\n}\\n\\nvec3 blendLinearDodge(vec3 base, vec3 blend) {\\n\\t\/\/ Note : Same implementation as BlendAdd\\n\\treturn min(base+blend,vec3(1.0));\\n}\\n\\nvec3 blendLinearDodge(vec3 base, vec3 blend, float opacity) {\\n\\treturn (blendLinearDodge(base, blend) * opacity + base * (1.0 - opacity));\\n}\\n\\n\/\/ Linear light\\n\\nfloat blendLinearLight(float base, float blend) {\\n\\treturn blend<0.5?blendLinearBurn(base,(2.0*blend)):blendLinearDodge(base,(2.0*(blend-0.5)));\\n}\\n\\nvec3 blendLinearLight(vec3 base, vec3 blend) {\\n\\treturn vec3(blendLinearLight(base.r,blend.r),blendLinearLight(base.g,blend.g),blendLinearLight(base.b,blend.b));\\n}\\n\\nvec3 blendLinearLight(vec3 base, vec3 blend, float opacity) {\\n\\treturn (blendLinearLight(base, blend) * opacity + base * (1.0 - opacity));\\n}\",\n          fragment: \"varying vec3 v_color;\\n\\nvoid main() {\\n  vec3 color = v_color;\\n  if (u_darken_top == 1.0) {\\n    vec2 st = gl_FragCoord.xy\/resolution.xy;\\n    color.g -= pow(st.y + sin(-12.0) * st.x, u_shadow_power) * 0.4;\\n  }\\n  gl_FragColor = vec4(color, 1.0);\\n}\"\n      },\n      this.conf = {\n          presetName: \"\",\n          wireframe: false,\n          density: [.06, .16],\n          zoom: 1,\n          rotation: 0,\n          playing: true\n      }, \n      document.querySelectorAll(\"canvas\").length < 1 ? console.log(\"DID NOT LOAD HERO STRIPE CANVAS\") : (\n        \n        this.minigl = new MiniGl(this.el, null, null, !0), \n        requestAnimationFrame(() => {\n            this.el && (this.computedCanvasStyle = getComputedStyle(this.el), this.waitForCssVars())\n        })\n        \/*\n        this.scrollObserver = await s.create(.1, !1),\n        this.scrollObserver.observe(this.el),\n        this.scrollObserver.onSeparate(() => {\n            window.removeEventListener(\"scroll\", this.handleScroll), window.removeEventListener(\"mousedown\", this.handleMouseDown), window.removeEventListener(\"mouseup\", this.handleMouseUp), window.removeEventListener(\"keydown\", this.handleKeyDown), this.isIntersecting = !1, this.conf.playing && this.pause()\n        }), \n        this.scrollObserver.onIntersect(() => {\n            window.addEventListener(\"scroll\", this.handleScroll), window.addEventListener(\"mousedown\", this.handleMouseDown), window.addEventListener(\"mouseup\", this.handleMouseUp), window.addEventListener(\"keydown\", this.handleKeyDown), this.isIntersecting = !0, this.addIsLoadedClass(), this.play()\n        })*\/\n\n      )\n  }\n  disconnect() {\n      this.scrollObserver && (window.removeEventListener(\"scroll\", this.handleScroll), window.removeEventListener(\"mousedown\", this.handleMouseDown), window.removeEventListener(\"mouseup\", this.handleMouseUp), window.removeEventListener(\"keydown\", this.handleKeyDown), this.scrollObserver.disconnect()), window.removeEventListener(\"resize\", this.resize)\n  }\n  initMaterial() {\n      this.uniforms = {\n          u_time: new this.minigl.Uniform({\n              value: 0\n          }),\n          u_shadow_power: new this.minigl.Uniform({\n              value: 5\n          }),\n          u_darken_top: new this.minigl.Uniform({\n              value: \"\" === this.el.dataset.jsDarkenTop ? 1 : 0\n          }),\n          u_active_colors: new this.minigl.Uniform({\n              value: this.activeColors,\n              type: \"vec4\"\n          }),\n          u_global: new this.minigl.Uniform({\n              value: {\n                  noiseFreq: new this.minigl.Uniform({\n                      value: [this.freqX, this.freqY],\n                      type: \"vec2\"\n                  }),\n                  noiseSpeed: new this.minigl.Uniform({\n                      value: 5e-6\n                  })\n              },\n              type: \"struct\"\n          }),\n          u_vertDeform: new this.minigl.Uniform({\n              value: {\n                  incline: new this.minigl.Uniform({\n                      value: Math.sin(this.angle) \/ Math.cos(this.angle)\n                  }),\n                  offsetTop: new this.minigl.Uniform({\n                      value: -.5\n                  }),\n                  offsetBottom: new this.minigl.Uniform({\n                      value: -.5\n                  }),\n                  noiseFreq: new this.minigl.Uniform({\n                      value: [3, 4],\n                      type: \"vec2\"\n                  }),\n                  noiseAmp: new this.minigl.Uniform({\n                      value: this.amp\n                  }),\n                  noiseSpeed: new this.minigl.Uniform({\n                      value: 10\n                  }),\n                  noiseFlow: new this.minigl.Uniform({\n                      value: 3\n                  }),\n                  noiseSeed: new this.minigl.Uniform({\n                      value: this.seed\n                  })\n              },\n              type: \"struct\",\n              excludeFrom: \"fragment\"\n          }),\n          u_baseColor: new this.minigl.Uniform({\n              value: this.sectionColors[0],\n              type: \"vec3\",\n              excludeFrom: \"fragment\"\n          }),\n          u_waveLayers: new this.minigl.Uniform({\n              value: [],\n              excludeFrom: \"fragment\",\n              type: \"array\"\n          })\n      };\n      for (let e = 1; e < this.sectionColors.length; e += 1) this.uniforms.u_waveLayers.value.push(new this.minigl.Uniform({\n          value: {\n              color: new this.minigl.Uniform({\n                  value: this.sectionColors[e],\n                  type: \"vec3\"\n              }),\n              noiseFreq: new this.minigl.Uniform({\n                  value: [2 + e \/ this.sectionColors.length, 3 + e \/ this.sectionColors.length],\n                  type: \"vec2\"\n              }),\n              noiseSpeed: new this.minigl.Uniform({\n                  value: 11 + .3 * e\n              }),\n              noiseFlow: new this.minigl.Uniform({\n                  value: 6.5 + .3 * e\n              }),\n              noiseSeed: new this.minigl.Uniform({\n                  value: this.seed + 10 * e\n              }),\n              noiseFloor: new this.minigl.Uniform({\n                  value: .1\n              }),\n              noiseCeil: new this.minigl.Uniform({\n                  value: .63 + .07 * e\n              })\n          },\n          type: \"struct\"\n      }));\n      return this.vertexShader = [this.shaderFiles.noise, this.shaderFiles.blend, this.shaderFiles.vertex].join(\"\\n\\n\"), new this.minigl.Material(this.vertexShader, this.shaderFiles.fragment, this.uniforms)\n  }\n  initMesh() {\n      this.material = this.initMaterial(), this.geometry = new this.minigl.PlaneGeometry, this.mesh = new this.minigl.Mesh(this.geometry, this.material)\n  }\n  shouldSkipFrame(e) {\n      return !!window.document.hidden || (!this.conf.playing || (parseInt(e, 10) % 2 == 0 || void 0))\n  }\n  updateFrequency(e) {\n      this.freqX += e, this.freqY += e\n  }\n  toggleColor(index) {\n      this.activeColors[index] = 0 === this.activeColors[index] ? 1 : 0\n  }\n  showGradientLegend() {\n      this.width > this.minWidth && (this.isGradientLegendVisible = !0, document.body.classList.add(\"isGradientLegendVisible\"))\n  }\n  hideGradientLegend() {\n      this.isGradientLegendVisible = !1, document.body.classList.remove(\"isGradientLegendVisible\")\n  }\n  init() {\n      this.initGradientColors(), this.initMesh(), this.resize(), requestAnimationFrame(this.animate), window.addEventListener(\"resize\", this.resize)\n  }\n  \/*\n  * Waiting for the css variables to become available, usually on page load before we can continue.\n  * Using default colors assigned below if no variables have been found after maxCssVarRetries\n  *\/\n  waitForCssVars() {\n      if (this.computedCanvasStyle && -1 !== this.computedCanvasStyle.getPropertyValue(\"--gradient-color-1\").indexOf(\"#\")) this.init(), this.addIsLoadedClass();\n      else {\n          if (this.cssVarRetries += 1, this.cssVarRetries > this.maxCssVarRetries) {\n              return this.sectionColors = [16711680, 16711680, 16711935, 65280, 255],void this.init();\n          }\n          requestAnimationFrame(() => this.waitForCssVars())\n      }\n  }\n  \/*\n  * Initializes the four section colors by retrieving them from css variables.\n  *\/\n  initGradientColors() {\n      this.sectionColors = [\"--gradient-color-1\", \"--gradient-color-2\", \"--gradient-color-3\", \"--gradient-color-4\"].map(cssPropertyName => {\n          let hex = this.computedCanvasStyle.getPropertyValue(cssPropertyName).trim();\n          \/\/Check if shorthand hex value was used and double the length so the conversion in normalizeColor will work.\n          if (4 === hex.length) {\n              const hexTemp = hex.substr(1).split(\"\").map(hexTemp => hexTemp + hexTemp).join(\"\");\n              hex = `#${hexTemp}`\n          }\n          return hex && `0x${hex.substr(1)}`\n      }).filter(Boolean).map(normalizeColor)\n  }\n}\n\n\n\n\n\/*\n*Finally initializing the Gradient class, assigning a canvas to it and calling Gradient.connect() which initializes everything,\n* Use Gradient.pause() and Gradient.play() for controls.\n*\n* Here are some default property values you can change anytime:\n* Amplitude:    Gradient.amp = 0\n* Colors:       Gradient.sectionColors (if you change colors, use normalizeColor(#hexValue)) before you assign it.\n*\n*\n* Useful functions\n* Gradient.toggleColor(index)\n* Gradient.updateFrequency(freq)\n*\/\nvar gradient = new Gradient();\n    gradient.initGradient(\"#gradient-canvas\");\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1d6b45dd e-con-full hero-section e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"1d6b45dd\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-3f3d8819 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"3f3d8819\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-239b25f4 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"239b25f4\" 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<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Trusted, Loving Care for\nEvery Egyptian Family\u2014\nRight at Your Fingertips.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-441fc970 animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"441fc970\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:200}\" 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>Book Egypt\u2019s most trusted Childcare Specialists, Elderly Care Professionals, and Home Nurses. Fully verified. On-demand. Safe. Compassionate. Reliable. All through one secure mobile app.<\/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-24d8d45 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"24d8d45\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3a9efb57 animated-slow elementor-invisible elementor-widget elementor-widget-button\" data-id=\"3a9efb57\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:400}\" 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=\"#\">\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\">Download App<\/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-516d4e9 animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"516d4e9\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:400}\" 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>Browse Verified Caregivers Near You<\/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-64bdaeda e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"64bdaeda\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-010cf9a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"010cf9a\" 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-f114f59 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"f114f59\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-eb359bb elementor-widget__width-inherit pa-carousel-template pa-carousel-horizontal elementor-widget elementor-widget-premium-carousel-widget\" data-id=\"eb359bb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"premium-carousel-widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div id=\"premium-carousel-wrapper-eb359bb\" class=\"premium-carousel-wrapper premium-carousel-hidden carousel-wrapper-eb359bb \" data-settings=\"{&quot;vertical&quot;:false,&quot;appearance&quot;:&quot;all&quot;,&quot;slidesToShow&quot;:1,&quot;infinite&quot;:true,&quot;speed&quot;:900,&quot;fade&quot;:false,&quot;autoplay&quot;:true,&quot;autoplaySpeed&quot;:5500,&quot;draggable&quot;:true,&quot;touchMove&quot;:true,&quot;adaptiveHeight&quot;:false,&quot;variableWidth&quot;:false,&quot;cssEase&quot;:&quot;ease&quot;,&quot;pauseOnHover&quot;:false,&quot;centerMode&quot;:false,&quot;arrows&quot;:false,&quot;dots&quot;:false,&quot;slidesDesk&quot;:1,&quot;slidesTab&quot;:1,&quot;slidesMob&quot;:1,&quot;animation&quot;:&quot;null&quot;,&quot;tabletBreak&quot;:1025,&quot;mobileBreak&quot;:768,&quot;navigation&quot;:[&quot;&quot;,&quot;&quot;,&quot;&quot;],&quot;carouselNavigation&quot;:&quot;none&quot;,&quot;templatesNumber&quot;:3,&quot;hasNavSlider&quot;:false,&quot;mouseTilt&quot;:false,&quot;mouseTiltRev&quot;:false}\">\n\t\t\t<!-- Dots -->\n\t\t\t\n\t\t\t\n\t\t\t<!-- Main Slides -->\n\t\t\t<div id=\"premium-carousel-eb359bb\" class=\"premium-carousel-inner\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-2718 .elementor-element.elementor-element-0bed62e{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2718 .elementor-element.elementor-element-7fccee8 .elementor-wrapper{--video-aspect-ratio:1.77777;}.elementor-2718 .elementor-element.elementor-element-38d1b7f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-65px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2718 .elementor-element.elementor-element-29df35b{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2718 .elementor-element.elementor-element-29df35b:not(.elementor-motion-effects-element-type-background), .elementor-2718 .elementor-element.elementor-element-29df35b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#312F2F70;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2718 .elementor-element.elementor-element-d47f5eb{text-align:center;}.elementor-2718 .elementor-element.elementor-element-d47f5eb .elementor-heading-title{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );color:#FFFFFF;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2718 .elementor-element.elementor-element-d47f5eb .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2718 .elementor-element.elementor-element-d47f5eb .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}\/* Start custom CSS for video, class: .elementor-element-7fccee8 *\/.slider-borderr {\r\n  border: 3px solid transparent;\r\n  border-radius: 12px;\r\n  background-image: \r\n    linear-gradient(#fff, #fff), \r\n    linear-gradient(135deg, #10182d, #18375b);\r\n  background-origin: border-box;\r\n  background-clip: content-box, border-box;\r\n  background-size: 100% 100%;\r\n  box-sizing: border-box;\r\n  padding: 6px;\r\n  display: block;\r\n}\/* End custom CSS *\/<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"2718\" class=\"elementor elementor-2718\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0bed62e e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"0bed62e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7fccee8 slider-borderr elementor-widget elementor-widget-video\" data-id=\"7fccee8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/myaupaire.com\/wp-content\/uploads\/2025\/06\/20250426_005732000_iOS.mp4\" autoplay=\"\" muted=\"muted\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-38d1b7f e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"38d1b7f\" 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-29df35b e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"29df35b\" 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-d47f5eb elementor-widget elementor-widget-heading\" data-id=\"d47f5eb\" 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\">Childcare Specialists<\/h2>\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\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-2749 .elementor-element.elementor-element-2e37b364{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2749 .elementor-element.elementor-element-6a4d7a6c .elementor-wrapper{--video-aspect-ratio:1.77777;}.elementor-2749 .elementor-element.elementor-element-e978c6f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-65px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2749 .elementor-element.elementor-element-79357eb2{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2749 .elementor-element.elementor-element-79357eb2:not(.elementor-motion-effects-element-type-background), .elementor-2749 .elementor-element.elementor-element-79357eb2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#312F2F70;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2749 .elementor-element.elementor-element-22ec71d9{text-align:center;}.elementor-2749 .elementor-element.elementor-element-22ec71d9 .elementor-heading-title{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );color:#FFFFFF;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2749 .elementor-element.elementor-element-22ec71d9 .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2749 .elementor-element.elementor-element-22ec71d9 .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}\/* Start custom CSS for video, class: .elementor-element-6a4d7a6c *\/.slider-borderr {\r\n  border: 3px solid transparent;\r\n  border-radius: 12px;\r\n  background-image: \r\n    linear-gradient(#fff, #fff), \r\n    linear-gradient(135deg, #10182d, #18375b);\r\n  background-origin: border-box;\r\n  background-clip: content-box, border-box;\r\n  background-size: 100% 100%;\r\n  box-sizing: border-box;\r\n  padding: 6px;\r\n  display: block;\r\n}\/* End custom CSS *\/<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"2749\" class=\"elementor elementor-2749\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2e37b364 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"2e37b364\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6a4d7a6c slider-borderr elementor-widget elementor-widget-video\" data-id=\"6a4d7a6c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/myaupaire.com\/wp-content\/uploads\/2025\/06\/Children-Care-Specialist-2.mp4\" autoplay=\"\" muted=\"muted\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e978c6f e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"e978c6f\" 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-79357eb2 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"79357eb2\" 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-22ec71d9 elementor-widget elementor-widget-heading\" data-id=\"22ec71d9\" 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\">Childcare Specialists<\/h2>\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\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-2754 .elementor-element.elementor-element-1682a360{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2754 .elementor-element.elementor-element-c95f559 .elementor-wrapper{--video-aspect-ratio:1.77777;}.elementor-2754 .elementor-element.elementor-element-2986279a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-65px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2754 .elementor-element.elementor-element-bbce558{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2754 .elementor-element.elementor-element-bbce558:not(.elementor-motion-effects-element-type-background), .elementor-2754 .elementor-element.elementor-element-bbce558 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#312F2F70;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2754 .elementor-element.elementor-element-1414b7aa{text-align:center;}.elementor-2754 .elementor-element.elementor-element-1414b7aa .elementor-heading-title{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );color:#FFFFFF;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2754 .elementor-element.elementor-element-1414b7aa .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2754 .elementor-element.elementor-element-1414b7aa .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}\/* Start custom CSS for video, class: .elementor-element-c95f559 *\/.slider-borderr {\r\n  border: 3px solid transparent;\r\n  border-radius: 12px;\r\n  background-image: \r\n    linear-gradient(#fff, #fff), \r\n    linear-gradient(135deg, #10182d, #18375b);\r\n  background-origin: border-box;\r\n  background-clip: content-box, border-box;\r\n  background-size: 100% 100%;\r\n  box-sizing: border-box;\r\n  padding: 6px;\r\n  display: block;\r\n}\/* End custom CSS *\/<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"2754\" class=\"elementor elementor-2754\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1682a360 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"1682a360\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c95f559 slider-borderr elementor-widget elementor-widget-video\" data-id=\"c95f559\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/myaupaire.com\/wp-content\/uploads\/2025\/06\/Children-Care-Specialist-3.mp4\" autoplay=\"\" muted=\"muted\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2986279a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"2986279a\" 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-bbce558 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"bbce558\" 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-1414b7aa elementor-widget elementor-widget-heading\" data-id=\"1414b7aa\" 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\">Childcare Specialists<\/h2>\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\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\n\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ea29372 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"ea29372\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0b0934e elementor-widget__width-inherit pa-carousel-template pa-carousel-horizontal elementor-widget elementor-widget-premium-carousel-widget\" data-id=\"0b0934e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"premium-carousel-widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div id=\"premium-carousel-wrapper-0b0934e\" class=\"premium-carousel-wrapper premium-carousel-hidden carousel-wrapper-0b0934e \" data-settings=\"{&quot;vertical&quot;:false,&quot;appearance&quot;:&quot;all&quot;,&quot;slidesToShow&quot;:1,&quot;infinite&quot;:true,&quot;speed&quot;:900,&quot;fade&quot;:false,&quot;autoplay&quot;:true,&quot;autoplaySpeed&quot;:25000,&quot;draggable&quot;:true,&quot;touchMove&quot;:true,&quot;adaptiveHeight&quot;:false,&quot;variableWidth&quot;:false,&quot;cssEase&quot;:&quot;ease&quot;,&quot;pauseOnHover&quot;:false,&quot;centerMode&quot;:false,&quot;arrows&quot;:false,&quot;dots&quot;:false,&quot;slidesDesk&quot;:1,&quot;slidesTab&quot;:1,&quot;slidesMob&quot;:1,&quot;animation&quot;:&quot;null&quot;,&quot;tabletBreak&quot;:1025,&quot;mobileBreak&quot;:768,&quot;navigation&quot;:[&quot;&quot;,&quot;&quot;,&quot;&quot;],&quot;carouselNavigation&quot;:&quot;none&quot;,&quot;templatesNumber&quot;:3,&quot;hasNavSlider&quot;:false,&quot;mouseTilt&quot;:false,&quot;mouseTiltRev&quot;:false}\">\n\t\t\t<!-- Dots -->\n\t\t\t\n\t\t\t\n\t\t\t<!-- Main Slides -->\n\t\t\t<div id=\"premium-carousel-0b0934e\" class=\"premium-carousel-inner\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-2788 .elementor-element.elementor-element-55428916{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2788 .elementor-element.elementor-element-46ffab33 .elementor-wrapper{--video-aspect-ratio:1.77777;}.elementor-2788 .elementor-element.elementor-element-4219984d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-62px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2788 .elementor-element.elementor-element-14afd931{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2788 .elementor-element.elementor-element-14afd931:not(.elementor-motion-effects-element-type-background), .elementor-2788 .elementor-element.elementor-element-14afd931 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#312F2F70;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2788 .elementor-element.elementor-element-75bbf095{text-align:center;}.elementor-2788 .elementor-element.elementor-element-75bbf095 .elementor-heading-title{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );color:#FFFFFF;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2788 .elementor-element.elementor-element-75bbf095 .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2788 .elementor-element.elementor-element-75bbf095 .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}\/* Start custom CSS for video, class: .elementor-element-46ffab33 *\/.slider-borderr {\r\n  border: 3px solid transparent;\r\n  border-radius: 12px;\r\n  background-image: \r\n    linear-gradient(#fff, #fff), \r\n    linear-gradient(135deg, #10182d, #18375b);\r\n  background-origin: border-box;\r\n  background-clip: content-box, border-box;\r\n  background-size: 100% 100%;\r\n  box-sizing: border-box;\r\n  padding: 6px;\r\n  display: block;\r\n}\/* End custom CSS *\/<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"2788\" class=\"elementor elementor-2788\">\n\t\t\t\t<div class=\"elementor-element elementor-element-55428916 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"55428916\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-46ffab33 slider-borderr elementor-widget elementor-widget-video\" data-id=\"46ffab33\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/myaupaire.com\/wp-content\/uploads\/2025\/06\/Nurse-1.mp4\" autoplay=\"\" muted=\"muted\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4219984d e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"4219984d\" 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-14afd931 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"14afd931\" 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-75bbf095 elementor-widget elementor-widget-heading\" data-id=\"75bbf095\" 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\">Licensed Nurses<\/h2>\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\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-2809 .elementor-element.elementor-element-4ed10c44{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2809 .elementor-element.elementor-element-761bb52f .elementor-wrapper{--video-aspect-ratio:1.77777;}.elementor-2809 .elementor-element.elementor-element-3145cbc3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-62px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2809 .elementor-element.elementor-element-53f85a08{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2809 .elementor-element.elementor-element-53f85a08:not(.elementor-motion-effects-element-type-background), .elementor-2809 .elementor-element.elementor-element-53f85a08 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#312F2F70;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2809 .elementor-element.elementor-element-5daaf249{text-align:center;}.elementor-2809 .elementor-element.elementor-element-5daaf249 .elementor-heading-title{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );color:#FFFFFF;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2809 .elementor-element.elementor-element-5daaf249 .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2809 .elementor-element.elementor-element-5daaf249 .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}\/* Start custom CSS for video, class: .elementor-element-761bb52f *\/.slider-borderr {\r\n  border: 3px solid transparent;\r\n  border-radius: 12px;\r\n  background-image: \r\n    linear-gradient(#fff, #fff), \r\n    linear-gradient(135deg, #10182d, #18375b);\r\n  background-origin: border-box;\r\n  background-clip: content-box, border-box;\r\n  background-size: 100% 100%;\r\n  box-sizing: border-box;\r\n  padding: 6px;\r\n  display: block;\r\n}\/* End custom CSS *\/<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"2809\" class=\"elementor elementor-2809\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4ed10c44 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"4ed10c44\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-761bb52f slider-borderr elementor-widget elementor-widget-video\" data-id=\"761bb52f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/myaupaire.com\/wp-content\/uploads\/2025\/06\/Nurse-2.mp4\" autoplay=\"\" muted=\"muted\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3145cbc3 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"3145cbc3\" 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-53f85a08 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"53f85a08\" 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-5daaf249 elementor-widget elementor-widget-heading\" data-id=\"5daaf249\" 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\">Licensed Nurses<\/h2>\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\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-2814 .elementor-element.elementor-element-449a5344{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2814 .elementor-element.elementor-element-3a45b9f5 .elementor-wrapper{--video-aspect-ratio:1.77777;}.elementor-2814 .elementor-element.elementor-element-69a00c7c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-62px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2814 .elementor-element.elementor-element-fa3ed8{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2814 .elementor-element.elementor-element-fa3ed8:not(.elementor-motion-effects-element-type-background), .elementor-2814 .elementor-element.elementor-element-fa3ed8 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#312F2F70;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2814 .elementor-element.elementor-element-3f1ae6b6{text-align:center;}.elementor-2814 .elementor-element.elementor-element-3f1ae6b6 .elementor-heading-title{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );color:#FFFFFF;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2814 .elementor-element.elementor-element-3f1ae6b6 .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2814 .elementor-element.elementor-element-3f1ae6b6 .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}\/* Start custom CSS for video, class: .elementor-element-3a45b9f5 *\/.slider-borderr {\r\n  border: 3px solid transparent;\r\n  border-radius: 12px;\r\n  background-image: \r\n    linear-gradient(#fff, #fff), \r\n    linear-gradient(135deg, #10182d, #18375b);\r\n  background-origin: border-box;\r\n  background-clip: content-box, border-box;\r\n  background-size: 100% 100%;\r\n  box-sizing: border-box;\r\n  padding: 6px;\r\n  display: block;\r\n}\/* End custom CSS *\/<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"2814\" class=\"elementor elementor-2814\">\n\t\t\t\t<div class=\"elementor-element elementor-element-449a5344 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"449a5344\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3a45b9f5 slider-borderr elementor-widget elementor-widget-video\" data-id=\"3a45b9f5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/myaupaire.com\/wp-content\/uploads\/2025\/06\/Nurse-3.mp4\" autoplay=\"\" muted=\"muted\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-69a00c7c e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"69a00c7c\" 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-fa3ed8 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"fa3ed8\" 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-3f1ae6b6 elementor-widget elementor-widget-heading\" data-id=\"3f1ae6b6\" 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\">Licensed Nurses<\/h2>\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\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\n\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d00f2cc e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"d00f2cc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cd78575 elementor-widget__width-inherit pa-carousel-template pa-carousel-horizontal elementor-widget elementor-widget-premium-carousel-widget\" data-id=\"cd78575\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"premium-carousel-widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div id=\"premium-carousel-wrapper-cd78575\" class=\"premium-carousel-wrapper premium-carousel-hidden carousel-wrapper-cd78575 \" data-settings=\"{&quot;vertical&quot;:false,&quot;appearance&quot;:&quot;all&quot;,&quot;slidesToShow&quot;:1,&quot;infinite&quot;:true,&quot;speed&quot;:900,&quot;fade&quot;:false,&quot;autoplay&quot;:true,&quot;autoplaySpeed&quot;:25000,&quot;draggable&quot;:true,&quot;touchMove&quot;:true,&quot;adaptiveHeight&quot;:false,&quot;variableWidth&quot;:false,&quot;cssEase&quot;:&quot;ease&quot;,&quot;pauseOnHover&quot;:false,&quot;centerMode&quot;:false,&quot;arrows&quot;:false,&quot;dots&quot;:false,&quot;slidesDesk&quot;:1,&quot;slidesTab&quot;:1,&quot;slidesMob&quot;:1,&quot;animation&quot;:&quot;null&quot;,&quot;tabletBreak&quot;:1025,&quot;mobileBreak&quot;:768,&quot;navigation&quot;:[&quot;&quot;,&quot;&quot;,&quot;&quot;],&quot;carouselNavigation&quot;:&quot;none&quot;,&quot;templatesNumber&quot;:3,&quot;hasNavSlider&quot;:false,&quot;mouseTilt&quot;:false,&quot;mouseTiltRev&quot;:false}\">\n\t\t\t<!-- Dots -->\n\t\t\t\n\t\t\t\n\t\t\t<!-- Main Slides -->\n\t\t\t<div id=\"premium-carousel-cd78575\" class=\"premium-carousel-inner\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-2766 .elementor-element.elementor-element-727abfc0{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2766 .elementor-element.elementor-element-6403ab57 .elementor-wrapper{--video-aspect-ratio:1.77777;}.elementor-2766 .elementor-element.elementor-element-6403ab57 > .elementor-widget-container{border-style:none;}.elementor-2766 .elementor-element.elementor-element-18418662{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-65px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2766 .elementor-element.elementor-element-1b2c713d{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2766 .elementor-element.elementor-element-1b2c713d:not(.elementor-motion-effects-element-type-background), .elementor-2766 .elementor-element.elementor-element-1b2c713d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#312F2F70;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2766 .elementor-element.elementor-element-27338ecb{text-align:center;}.elementor-2766 .elementor-element.elementor-element-27338ecb .elementor-heading-title{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );color:#FFFFFF;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2766 .elementor-element.elementor-element-27338ecb .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2766 .elementor-element.elementor-element-27338ecb .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}\/* Start custom CSS for video, class: .elementor-element-6403ab57 *\/.slider-borderr {\r\n  border: 3px solid transparent;\r\n  border-radius: 12px;\r\n  background-image: \r\n    linear-gradient(#fff, #fff), \r\n    linear-gradient(135deg, #10182d, #18375b);\r\n  background-origin: border-box;\r\n  background-clip: content-box, border-box;\r\n  background-size: 100% 100%;\r\n  box-sizing: border-box;\r\n  padding: 6px;\r\n  display: block;\r\n}\/* End custom CSS *\/<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"2766\" class=\"elementor elementor-2766\">\n\t\t\t\t<div class=\"elementor-element elementor-element-727abfc0 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"727abfc0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6403ab57 slider-borderr elementor-widget elementor-widget-video\" data-id=\"6403ab57\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/myaupaire.com\/wp-content\/uploads\/2025\/06\/Elderly-Care-1.mp4\" autoplay=\"\" muted=\"muted\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-18418662 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"18418662\" 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-1b2c713d e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"1b2c713d\" 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-27338ecb elementor-widget elementor-widget-heading\" data-id=\"27338ecb\" 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\">Elderly Care Specialists<\/h2>\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\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-2771 .elementor-element.elementor-element-5a7faa75{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2771 .elementor-element.elementor-element-34e9f57b .elementor-wrapper{--video-aspect-ratio:1.77777;}.elementor-2771 .elementor-element.elementor-element-7eb63b40{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-65px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2771 .elementor-element.elementor-element-4ac32b4d{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2771 .elementor-element.elementor-element-4ac32b4d:not(.elementor-motion-effects-element-type-background), .elementor-2771 .elementor-element.elementor-element-4ac32b4d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#312F2F70;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2771 .elementor-element.elementor-element-1a0b5343{text-align:center;}.elementor-2771 .elementor-element.elementor-element-1a0b5343 .elementor-heading-title{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );color:#FFFFFF;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2771 .elementor-element.elementor-element-1a0b5343 .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2771 .elementor-element.elementor-element-1a0b5343 .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}\/* Start custom CSS for video, class: .elementor-element-34e9f57b *\/.slider-borderr {\r\n  border: 3px solid transparent;\r\n  border-radius: 12px;\r\n  background-image: \r\n    linear-gradient(#fff, #fff), \r\n    linear-gradient(135deg, #10182d, #18375b);\r\n  background-origin: border-box;\r\n  background-clip: content-box, border-box;\r\n  background-size: 100% 100%;\r\n  box-sizing: border-box;\r\n  padding: 6px;\r\n  display: block;\r\n}\/* End custom CSS *\/<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"2771\" class=\"elementor elementor-2771\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5a7faa75 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"5a7faa75\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-34e9f57b slider-borderr elementor-widget elementor-widget-video\" data-id=\"34e9f57b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/myaupaire.com\/wp-content\/uploads\/2025\/06\/Ederly-Care-2.mp4\" autoplay=\"\" muted=\"muted\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7eb63b40 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"7eb63b40\" 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-4ac32b4d e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"4ac32b4d\" 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-1a0b5343 elementor-widget elementor-widget-heading\" data-id=\"1a0b5343\" 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\">Elderly Care Specialists<\/h2>\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\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-2776 .elementor-element.elementor-element-36db43f9{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2776 .elementor-element.elementor-element-267b0121 .elementor-wrapper{--video-aspect-ratio:1.77777;}.elementor-2776 .elementor-element.elementor-element-6d463383{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-65px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2776 .elementor-element.elementor-element-716da2b3{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2776 .elementor-element.elementor-element-716da2b3:not(.elementor-motion-effects-element-type-background), .elementor-2776 .elementor-element.elementor-element-716da2b3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#312F2F70;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2776 .elementor-element.elementor-element-1573b66b{text-align:center;}.elementor-2776 .elementor-element.elementor-element-1573b66b .elementor-heading-title{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );color:#FFFFFF;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2776 .elementor-element.elementor-element-1573b66b .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-2776 .elementor-element.elementor-element-1573b66b .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}}\/* Start custom CSS for video, class: .elementor-element-267b0121 *\/.slider-borderr {\r\n  border: 3px solid transparent;\r\n  border-radius: 12px;\r\n  background-image: \r\n    linear-gradient(#fff, #fff), \r\n    linear-gradient(135deg, #10182d, #18375b);\r\n  background-origin: border-box;\r\n  background-clip: content-box, border-box;\r\n  background-size: 100% 100%;\r\n  box-sizing: border-box;\r\n  padding: 6px;\r\n  display: block;\r\n}\/* End custom CSS *\/<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"2776\" class=\"elementor elementor-2776\">\n\t\t\t\t<div class=\"elementor-element elementor-element-36db43f9 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"36db43f9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-267b0121 slider-borderr elementor-widget elementor-widget-video\" data-id=\"267b0121\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/myaupaire.com\/wp-content\/uploads\/2025\/06\/Elderly-Care-3.mp4\" autoplay=\"\" muted=\"muted\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6d463383 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"6d463383\" 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-716da2b3 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"716da2b3\" 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-1573b66b elementor-widget elementor-widget-heading\" data-id=\"1573b66b\" 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\">Elderly Care Specialists<\/h2>\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\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\n\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7a63947 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"7a63947\" 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-80da850 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"80da850\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-879be10 animated-slow elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"879be10\" 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<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Join Aupaire on\nSocial Media<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d876b3 animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"0d876b3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:300}\" 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>Stay connected with Aupaire! Join us On social media for the latest updates, exclusive content, and more. Don\u2019t miss out\u2014follow Aupaire today and be part of the journey!<\/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-cf4f2c4 e-con-full animated-slow e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no elementor-invisible e-con e-child\" data-id=\"cf4f2c4\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-14a6e12 elementor-arrows-position-inside elementor-pagination-position-outside elementor-widget elementor-widget-image-carousel\" data-id=\"14a6e12\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;speed&quot;:1500,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:25,&quot;sizes&quot;:[]},&quot;navigation&quot;:&quot;both&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;yes&quot;,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Image Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 14\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/Artboard-1-scaled.jpg\" alt=\"Artboard 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 14\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/Artboard-2-scaled.jpg\" alt=\"Artboard 2\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 14\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/Artboard-3-scaled.jpg\" alt=\"Artboard 3\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 14\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/Artboard-2-1-scaled.jpg\" alt=\"Artboard 2 (1)\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 of 14\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/Artboard-3-1-scaled.jpg\" alt=\"Artboard 3\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 of 14\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/2nd-copy-scaled.jpg\" alt=\"2nd copy\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"7 of 14\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/77-scaled.jpg\" alt=\"77\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"8 of 14\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/Artboard-2-2-scaled.jpg\" alt=\"Artboard 2\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"9 of 14\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/Artboard-3-2-scaled.jpg\" alt=\"Artboard 3\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"10 of 14\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/Artboard-4-scaled.jpg\" alt=\"Artboard 4\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"11 of 14\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/5th-post-scaled.jpg\" alt=\"5th post\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"12 of 14\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/6th-scaled.jpg\" alt=\"6th\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"13 of 14\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/7th-P1.jpg\" alt=\"7th P1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"14 of 14\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/7th-P2.jpg\" alt=\"7th P2\" \/><\/figure><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-left\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-right\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-66e948f e-con-full animated-slow e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no elementor-invisible e-con e-child\" data-id=\"66e948f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;,&quot;animation_delay&quot;:400}\">\n\t\t<div class=\"elementor-element elementor-element-567bc41 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"567bc41\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-af0b2ad elementor-widget elementor-widget-video\" data-id=\"af0b2ad\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/www.youtube.com\\\/watch?v=XHOmBV4js_E&quot;,&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9142d88 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"9142d88\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9b3cae6 elementor-widget elementor-widget-video\" data-id=\"9b3cae6\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/www.youtube.com\\\/watch?v=XHOmBV4js_E&quot;,&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f8aa17a e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"f8aa17a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8d8f992 elementor-widget elementor-widget-video\" data-id=\"8d8f992\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/www.youtube.com\\\/watch?v=XHOmBV4js_E&quot;,&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-72a0192 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"72a0192\" 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-c9e76f0 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"c9e76f0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9b16c18 elementor-widget__width-initial elementor-widget-mobile__width-initial gradient-text animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"9b16c18\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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>Aupaire For Customers<\/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-808da30 animated-slow elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"808da30\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:50}\" 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\">Personalized, Verified, <br>and Professional Care Whenever You Need It<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-63670a8 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"63670a8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:50}\" 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\">Aupaire is your trusted partner in finding safe, flexible, and high-quality caregiving services\u2014designed specifically for Egyptian families who deserve peace of mind and dependable support.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a6997bd animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"a6997bd\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:50}\" 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>Finding a caregiver you can truly trust isn\u2019t easy\u2014especially someone who is punctual, experienced, and genuinely caring. That\u2019s why Aupaire exists. We offer Egypt\u2019s most secure and easy-to-use caregiving app\u2014connecting families with fully verified <strong>independent<\/strong> Childcare Specialists, Elderly Care Professionals, and Licensed Home Nurses.<\/p><p>Whether you\u2019re looking for in-home childcare, companionship for an aging parent, or postnatal nursing support, Aupaire makes the process safe, fast, and transparent. Forget risky WhatsApp groups and word-of-mouth referrals. Every professional on our platform is identity-verified, legally cleared, and reviewed by real families\u2014so you can make confident choices based on trust, not chance.<\/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-5e44e35 animated-slow elementor-invisible elementor-widget elementor-widget-button\" data-id=\"5e44e35\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:50}\" 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=\"\/for-customers\">\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\">Read More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f2a3e0d e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"f2a3e0d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-aa84660 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"aa84660\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7a258fb elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"7a258fb\" 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 aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-child\" viewBox=\"0 0 384 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z\"><\/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\tChildcare Specialist \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\tLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit \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-d3454a8 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"d3454a8\" 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 aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-user-nurse\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M319.41,320,224,415.39,128.59,320C57.1,323.1,0,381.6,0,453.79A58.21,58.21,0,0,0,58.21,512H389.79A58.21,58.21,0,0,0,448,453.79C448,381.6,390.9,323.1,319.41,320ZM224,304A128,128,0,0,0,352,176V65.82a32,32,0,0,0-20.76-30L246.47,4.07a64,64,0,0,0-44.94,0L116.76,35.86A32,32,0,0,0,96,65.82V176A128,128,0,0,0,224,304ZM184,71.67a5,5,0,0,1,5-5h21.67V45a5,5,0,0,1,5-5h16.66a5,5,0,0,1,5,5V66.67H259a5,5,0,0,1,5,5V88.33a5,5,0,0,1-5,5H237.33V115a5,5,0,0,1-5,5H215.67a5,5,0,0,1-5-5V93.33H189a5,5,0,0,1-5-5ZM144,160H304v16a80,80,0,0,1-160,0Z\"><\/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\tLicensed Nurse\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\tLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit \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-eafeed9 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"eafeed9\" 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 aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-wheelchair\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z\"><\/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\tElderly Care\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\tLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit \t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4eb36df e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"4eb36df\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b7d1133 elementor-widget elementor-widget-image-carousel\" data-id=\"b7d1133\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;slides_to_show&quot;:&quot;1&quot;,&quot;navigation&quot;:&quot;none&quot;,&quot;autoplay_speed&quot;:8000,&quot;speed&quot;:1000,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;effect&quot;:&quot;slide&quot;}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Image Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper swiper-image-stretch\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/Child-Care-specialist-Slider-2.jpg\" alt=\"Child Care specialist Slider 2\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/Child-Care-specialist-Slider-3.jpg\" alt=\"Child Care specialist Slider 3\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/Child-Care-specialist-Slider.jpg\" alt=\"Child Care specialist Slider\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/Nurse-Slider-1.jpg\" alt=\"Nurse Slider 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/Nurse-Slider-2.jpg\" alt=\"Nurse Slider 2\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/aupaire.nerdysolutions.io\/wp-content\/uploads\/2025\/06\/Elderly-Care-Slider-1.jpg\" alt=\"Elderly Care Slider 1\" \/><\/figure><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\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-afec985 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"afec985\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7ad92f8 animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"7ad92f8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;}\" 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>We\u2019re creating more than just a marketplace. We\u2019re building a caregiving movement that empowers Egyptian women, students, and professionals to earn a dignified living while families get the care they deserve<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-76ab622 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"76ab622\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_top&quot;:&quot;tilt&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-shape elementor-shape-top\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 1000 100\" preserveAspectRatio=\"none\">\n\t<path class=\"elementor-shape-fill\" d=\"M0,6V0h1000v100L0,6z\"\/>\n<\/svg>\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-01e1281 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"01e1281\" 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<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Why Do Thousands Trust \n<br>Aupaire for Their Care Needs?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9677b9c e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"9677b9c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5e2743a e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"5e2743a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a8cf544 elementor-view-stacked elementor-widget__width-inherit animated-slow elementor-shape-circle elementor-position-block-start elementor-mobile-position-block-start elementor-invisible elementor-widget elementor-widget-icon-box\" data-id=\"a8cf544\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:100}\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#ffffff\" id=\"Capa_1\" width=\"800px\" height=\"800px\" viewBox=\"0 0 910.288 910.287\" xml:space=\"preserve\" stroke=\"#ffffff\"><g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"><\/g><g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/g><g id=\"SVGRepo_iconCarrier\"> <g> <g> <path d=\"M873.206,202.06l-1.212-28.51l-28.386-2.915c-109.036-11.198-202.773-51.887-262.21-84.049 c-65.099-35.226-104.56-68.274-104.922-68.579L455.165,0L433.84,17.981c-0.392,0.33-39.853,33.379-104.951,68.604 c-59.437,32.162-153.173,72.851-262.209,84.049l-28.387,2.915l-1.212,28.51c-0.217,5.104-4.777,126.698,42.059,273.937 c27.637,86.887,67.549,164.736,118.627,231.396c64.139,83.701,145.948,149.68,243.155,196.102l14.221,6.793l14.221-6.793 c97.207-46.422,179.017-112.398,243.155-196.102c51.079-66.658,90.991-144.51,118.628-231.395 C877.982,328.759,873.423,207.165,873.206,202.06z M455.143,836.93c-81.095-41.209-149.731-97.887-204.194-168.646 c-46.393-60.275-82.812-130.998-108.248-210.201c-31.088-96.808-38.06-183.144-39.471-225.538 c43.735-6.494,87.949-17.421,131.833-32.597c42.9-14.836,85.598-33.752,126.907-56.221c41.915-22.798,73.81-44.573,93.172-58.812 c19.362,14.238,51.258,36.014,93.173,58.812c41.309,22.47,84.007,41.385,126.907,56.221 c43.896,15.181,88.123,26.108,131.87,32.602c-1.359,41.978-8.194,127.098-38.842,223.443 c-25.317,79.594-61.694,150.672-108.12,211.258C605.537,738.494,536.632,795.52,455.143,836.93z\"><\/path> <polygon points=\"635.013,305.016 588.969,351.06 417.368,522.662 330.399,435.693 318.573,423.867 295.239,447.201 295.239,447.202 271.904,470.537 417.368,616 681.682,351.686 \"><\/polygon> <\/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\tVerified &amp; Vetted Caregivers\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\tEvery caregiver on our platform goes through multi-layer identity checks, health screenings, and criminal background verification. You can see their verification status right on their profile.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2ee7bba e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"2ee7bba\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3959a35 elementor-view-stacked elementor-widget__width-inherit animated-slow elementor-shape-circle elementor-position-block-start elementor-mobile-position-block-start elementor-invisible elementor-widget elementor-widget-icon-box\" data-id=\"3959a35\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:100}\" 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\" width=\"800px\" height=\"800px\" viewBox=\"0 0 24 24\" fill=\"none\"><g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"><\/g><g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/g><g id=\"SVGRepo_iconCarrier\"><path d=\"M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z\" stroke=\"#ffffff\" stroke-width=\"1.5\"><\/path><path d=\"M15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z\" stroke=\"#ffffff\" stroke-width=\"1.5\"><\/path><path d=\"M2 12L4 12\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\"><\/path><path d=\"M20 12L22 12\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\"><\/path><path d=\"M12 4V2\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\"><\/path><path d=\"M12 22V20\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\"><\/path><\/g><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tReal-Time Location Tracking\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\tKnow exactly when your caregiver is on their way and when they arrive at your home.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1bad132 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"1bad132\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-55f6303 elementor-view-stacked elementor-widget__width-inherit animated-slow elementor-shape-circle elementor-position-block-start elementor-mobile-position-block-start elementor-invisible elementor-widget elementor-widget-icon-box\" data-id=\"55f6303\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:100}\" 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\" width=\"800px\" height=\"800px\" viewBox=\"0 0 24 24\" fill=\"none\"><g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"><\/g><g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/g><g id=\"SVGRepo_iconCarrier\"><path d=\"M20 10V7C20 5.89543 19.1046 5 18 5H6C4.89543 5 4 5.89543 4 7V10M20 10V19C20 20.1046 19.1046 21 18 21H6C4.89543 21 4 20.1046 4 19V10M20 10H4M8 3V7M16 3V7\" stroke=\"#ffffff\" stroke-width=\"2\" stroke-linecap=\"round\"><\/path><rect x=\"6\" y=\"12\" width=\"3\" height=\"3\" rx=\"0.5\" fill=\"#ffffff\"><\/rect><rect x=\"10.5\" y=\"12\" width=\"3\" height=\"3\" rx=\"0.5\" fill=\"#ffffff\"><\/rect><rect x=\"15\" y=\"12\" width=\"3\" height=\"3\" rx=\"0.5\" fill=\"#ffffff\"><\/rect><\/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\tFlexible Booking Options\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\tWhether you need someone for a few hours, daily care, or long-term support, FreeNow adapts to your schedule.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6fa3b58 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"6fa3b58\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a9a157f elementor-view-stacked elementor-widget__width-inherit animated-slow elementor-shape-circle elementor-position-block-start elementor-mobile-position-block-start elementor-invisible elementor-widget elementor-widget-icon-box\" data-id=\"a9a157f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:100}\" 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\" width=\"800px\" height=\"800px\" viewBox=\"0 0 192 192\" fill=\"#000000\"><g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"><\/g><g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/g><g id=\"SVGRepo_iconCarrier\"><g fill=\"none\" stroke=\"#ffffff\" stroke-width=\"12\"><path stroke-linecap=\"round\" d=\"M151.8 144.5a74 74 0 0 1-85.59 19.21A74 74 0 0 1 22.42 87.7a74 74 0 0 1 59.55-64.42m28.03.06a74 74 0 0 1 50.06 35.61 74 74 0 0 1 5.915 61.15\"><\/path><path d=\"M76 92h40c4.432 0 8 3.568 8 8v22c0 4.432-3.568 8-8 8H76c-4.432 0-8-3.568-8-8v-22c0-4.432 3.568-8 8-8zm4 0V77.7C80 69.029 87.163 62 96 62s16 7.029 16 15.7V92\"><\/path><\/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\tEscrow Payments\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\tPayments are held securely in escrow and released only after the service is completed to your satisfaction.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-62614b3 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"62614b3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6de86d3 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"6de86d3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-59604f1 elementor-view-stacked elementor-widget__width-inherit animated-slow elementor-shape-circle elementor-position-block-start elementor-mobile-position-block-start elementor-invisible elementor-widget elementor-widget-icon-box\" data-id=\"59604f1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:100}\" 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\" fill=\"#ffffff\" width=\"800px\" height=\"800px\" viewBox=\"0 0 24 24\" stroke=\"#ffffff\"><g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"><\/g><g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/g><g id=\"SVGRepo_iconCarrier\"><path d=\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z\"><\/path><\/g><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tPrivacy-First Experience\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\tOur platform ensures each caregiver undergoes thorough identity checks,\nhealth screenings, and background verifications, with their status\ntransparently displayed on their profiles.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ec19a9d e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"ec19a9d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a2c622b elementor-view-stacked elementor-widget__width-inherit animated-slow elementor-shape-circle elementor-position-block-start elementor-mobile-position-block-start elementor-invisible elementor-widget elementor-widget-icon-box\" data-id=\"a2c622b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:100}\" 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\" width=\"800px\" height=\"800px\" viewBox=\"0 0 24 24\" fill=\"none\"><g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"><\/g><g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/g><g id=\"SVGRepo_iconCarrier\"><path d=\"M7 9V15M21 14V7.2C21 6.0799 21 5.51984 20.782 5.09202C20.5903 4.71569 20.2843 4.40973 19.908 4.21799C19.4802 4 18.9201 4 17.8 4H6.2C5.0799 4 4.51984 4 4.09202 4.21799C3.71569 4.40973 3.40973 4.71569 3.21799 5.09202C3 5.51984 3 6.0799 3 7.2V16.8C3 17.9201 3 18.4802 3.21799 18.908C3.40973 19.2843 3.71569 19.5903 4.09202 19.782C4.51984 20 5.0799 20 6.2 20H12M12 13H12.7976C13.2426 13 13.465 13 13.6765 13.0463C13.8641 13.0874 14.0447 13.1553 14.213 13.2479C14.4026 13.3523 14.57 13.4988 14.9049 13.7918L20.8649 19.0068C21.4792 19.5443 21.5107 20.4893 20.9335 21.0665C20.4082 21.5918 19.5656 21.6199 19.0065 21.1307L13.0928 15.9562C12.6907 15.6043 12.4896 15.4284 12.3452 15.2158C12.2173 15.0273 12.1225 14.8184 12.065 14.5981C12 14.3495 12 14.0823 12 13.5479V13Z\" stroke=\"#ffffff\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/g><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tTransparent Reviews\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\tRead real reviews from other parents and families before booking. See\npunctuality scores, rehire rates, and performance badges on every caregiver\nprofile\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-615c9e7 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"615c9e7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a9539fb elementor-view-stacked elementor-widget__width-inherit animated-slow elementor-shape-circle elementor-position-block-start elementor-mobile-position-block-start elementor-invisible elementor-widget elementor-widget-icon-box\" data-id=\"a9539fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:100}\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#ffffff\" id=\"Layer_1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\" width=\"800px\" height=\"800px\" stroke=\"#ffffff\"><g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"><\/g><g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/g><g id=\"SVGRepo_iconCarrier\"> <g> <g> <rect x=\"40.834\" y=\"427.714\" width=\"112.033\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"152.867\" y=\"444.466\" width=\"47.117\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"71.198\" y=\"475.877\" width=\"32.458\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect y=\"467.501\" width=\"15.706\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"215.689\" y=\"475.877\" width=\"159.149\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"327.722\" y=\"444.466\" width=\"56.54\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"384.262\" y=\"427.714\" width=\"23.035\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"255.477\" y=\"427.714\" width=\"39.787\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"456.507\" y=\"451.795\" width=\"55.493\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"414.626\" y=\"484.254\" width=\"16.753\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"486.871\" y=\"420.384\" width=\"25.129\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect y=\"420.384\" width=\"15.706\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"215.689\" y=\"260.188\" width=\"24.082\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"279.558\" y=\"363.845\" width=\"32.458\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <polygon points=\"232.442,188.99 232.442,203.648 207.313,203.648 207.313,219.354 232.442,219.354 232.442,204.695 262.806,204.695 262.806,188.99 \"><\/polygon> <\/g> <\/g> <g> <g> <rect x=\"255.477\" y=\"292.646\" width=\"39.787\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <path d=\"M475.183,387.926l-34.476-43.413c17.317-4.695,33.06-14.196,45.414-27.643c16.268-17.706,25.227-40.71,25.227-64.771 c0-52.804-42.959-95.763-95.763-95.763c-19.655,0-38.544,5.912-54.624,17.097c-12.483,8.682-22.592,20.047-29.702,33.257 l-75.511-95.088L36.315,387.926H0v15.706h512v-15.706H475.183z M415.586,172.042c44.144,0,80.057,35.913,80.057,80.057 c0,20.116-7.488,39.344-21.087,54.146c-11.908,12.961-27.573,21.549-44.677,24.633l-87.796-110.557 C354.779,190.896,383.319,172.042,415.586,172.042z M253.581,139.589l6.976,16.943h-20.432L253.581,139.589z M56.371,387.926 l6.849-8.624l104.306,0.248v-15.706H75.494l5.82-7.329h29.671V340.81H93.787l64.023-80.622h57.879v-15.706h-45.407l57.371-72.245 h39.371l62.514,151.82h-17.522v15.706h23.989l19.832,48.164H56.371z M372.823,387.926l-12.934-31.411h24.373V340.81h-30.839 l-69.235-168.141l81.973,103.225h-14.357v15.706h26.829l6.652,8.376h-17.775v15.706h30.247l57.371,72.245H372.823z\"><\/path> <\/g> <\/g> <g> <g> <rect x=\"31.411\" y=\"20.417\" width=\"16.753\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"87.951\" y=\"68.581\" width=\"15.706\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"63.869\" y=\"132.45\" width=\"16.753\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"15.706\" y=\"228.777\" width=\"15.706\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"87.951\" y=\"268.564\" width=\"15.706\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"120.409\" y=\"172.237\" width=\"15.706\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"359.133\" y=\"84.286\" width=\"15.706\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"463.836\" y=\"124.074\" width=\"15.706\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"223.018\" y=\"60.204\" width=\"16.753\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"295.264\" y=\"12.041\" width=\"16.753\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"424.049\" y=\"28.793\" width=\"15.706\" height=\"15.706\"><\/rect> <\/g> <\/g> <g> <g> <rect x=\"496.294\" y=\"332.434\" width=\"15.706\" height=\"15.706\"><\/rect> <\/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\tWide Reach Across Egypt\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\tWhether you\u2019re in Cairo, Alexandria, or beyond, FreeNow connects you with\nthe right caregiver in your area.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-78f5bd8 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"78f5bd8\" data-element_type=\"container\" data-e-type=\"container\">\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-1554278 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"1554278\" 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-a95ea8b e-con-full animated-slow e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no elementor-invisible e-con e-child\" data-id=\"a95ea8b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9c9ce43 elementor-widget__width-initial elementor-widget-mobile__width-initial gradient-text elementor-widget elementor-widget-text-editor\" data-id=\"9c9ce43\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Aupaire For Professionals<\/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-3c54532 animated-slow elementor-widget elementor-widget-heading\" data-id=\"3c54532\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" 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\">Your Skills Deserve Recognition &amp; Reward<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a1dbca3 animated-slow elementor-widget elementor-widget-heading\" data-id=\"a1dbca3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" 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\">Put Your Free Time to Work\u2014Earn Extra Income by Helping Families Near You<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2a69a99 animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"2a69a99\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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>Already helping others or studying in a caregiving-related field?<\/p><p>Aupaire gives you a flexible, respectful way to earn extra income on your terms\u2014by offering support to families in need of childcare, elder care, or in-home nursing. Whether you\u2019re looking for part-time work, weekend jobs, or occasional sessions\u2014you decide when to work, how much to charge, and where to go.<\/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-a50747f elementor-widget elementor-widget-button\" data-id=\"a50747f\" 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=\"\/for-professionals\">\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\">Read More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-08c2b77 e-con-full animated-slow e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no elementor-invisible e-con e-child\" data-id=\"08c2b77\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;slideshow&quot;,&quot;background_slideshow_gallery&quot;:[{&quot;id&quot;:580,&quot;url&quot;:&quot;https:\\\/\\\/aupaire.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/20250324_051645269_iOS.png&quot;},{&quot;id&quot;:579,&quot;url&quot;:&quot;https:\\\/\\\/aupaire.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/20250324_051752395_iOS.png&quot;},{&quot;id&quot;:400,&quot;url&quot;:&quot;https:\\\/\\\/aupaire.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/BackgroundShadow-e1750137684645.png&quot;}],&quot;background_slideshow_transition_duration&quot;:2500,&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;background_slideshow_loop&quot;:&quot;yes&quot;,&quot;background_slideshow_slide_duration&quot;:5000,&quot;background_slideshow_slide_transition&quot;:&quot;fade&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e5f4ada gradient-background-1 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"e5f4ada\" 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-00c3ff6 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"00c3ff6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f1ac091 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"f1ac091\" 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<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">What You\u2019ll Gain<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-71e0fec pa-carousel-template pa-carousel-horizontal elementor-widget elementor-widget-premium-carousel-widget\" data-id=\"71e0fec\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"premium-carousel-widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div id=\"premium-carousel-wrapper-71e0fec\" class=\"premium-carousel-wrapper premium-carousel-hidden carousel-wrapper-71e0fec  premium-carousel-dots-below\" data-settings=\"{&quot;vertical&quot;:false,&quot;appearance&quot;:&quot;all&quot;,&quot;slidesToShow&quot;:1,&quot;infinite&quot;:true,&quot;speed&quot;:300,&quot;fade&quot;:false,&quot;autoplay&quot;:true,&quot;autoplaySpeed&quot;:5000,&quot;draggable&quot;:true,&quot;touchMove&quot;:true,&quot;adaptiveHeight&quot;:false,&quot;variableWidth&quot;:true,&quot;cssEase&quot;:&quot;ease&quot;,&quot;pauseOnHover&quot;:false,&quot;centerMode&quot;:false,&quot;arrows&quot;:false,&quot;dots&quot;:true,&quot;slidesDesk&quot;:1,&quot;slidesTab&quot;:1,&quot;slidesMob&quot;:1,&quot;animation&quot;:&quot;null&quot;,&quot;tabletBreak&quot;:1025,&quot;mobileBreak&quot;:768,&quot;navigation&quot;:[&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;],&quot;carouselNavigation&quot;:&quot;dots&quot;,&quot;templatesNumber&quot;:8,&quot;hasNavSlider&quot;:false,&quot;mouseTilt&quot;:false,&quot;mouseTiltRev&quot;:false}\">\n\t\t\t<!-- Dots -->\n\t\t\t\t\t\t\t<div class=\"premium-carousel-nav-dot\">\n\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"fas fa-circle\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\n\t\t\t<!-- Main Slides -->\n\t\t\t<div id=\"premium-carousel-71e0fec\" class=\"premium-carousel-inner\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-1841 .elementor-element.elementor-element-fd21bd5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1841 .elementor-element.elementor-element-57661da{--display:flex;border-style:solid;--border-style:solid;border-width:0px 0px 0px 0px;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;--border-radius:20px 20px 20px 20px;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);--margin-top:30px;--margin-bottom:30px;--margin-left:0px;--margin-right:0px;--padding-top:60px;--padding-bottom:60px;--padding-left:60px;--padding-right:60px;}.elementor-1841 .elementor-element.elementor-element-57661da:not(.elementor-motion-effects-element-type-background), .elementor-1841 .elementor-element.elementor-element-57661da > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF52;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1841 .elementor-element.elementor-element-c55595d{color:var( --e-global-color-primary );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"1841\" class=\"elementor elementor-1841\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fd21bd5 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"fd21bd5\" 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-57661da e-con-full glass-card e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"57661da\" 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-c55595d elementor-widget elementor-widget-text-editor\" data-id=\"c55595d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>Get Discovered by Real Families<\/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-c38e060 elementor-widget elementor-widget-text-editor\" data-id=\"c38e060\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Your verified profile helps you connect with local families actively searching for trusted caregiving support.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-1860 .elementor-element.elementor-element-c486c8b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1860 .elementor-element.elementor-element-e9e97bc{--display:flex;--border-radius:20px 20px 20px 20px;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);--margin-top:30px;--margin-bottom:30px;--margin-left:0px;--margin-right:0px;--padding-top:60px;--padding-bottom:60px;--padding-left:60px;--padding-right:60px;}.elementor-1860 .elementor-element.elementor-element-e9e97bc:not(.elementor-motion-effects-element-type-background), .elementor-1860 .elementor-element.elementor-element-e9e97bc > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1860 .elementor-element.elementor-element-a4af151{color:var( --e-global-color-primary );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"1860\" class=\"elementor elementor-1860\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c486c8b e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"c486c8b\" 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-e9e97bc e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"e9e97bc\" 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-a4af151 elementor-widget elementor-widget-text-editor\" data-id=\"a4af151\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>Get Discovered by Real Families<\/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-8c6fc18 elementor-widget elementor-widget-text-editor\" data-id=\"8c6fc18\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Your verified profile helps you connect with local families actively searching for trusted caregiving support.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-2330 .elementor-element.elementor-element-1e79dedb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2330 .elementor-element.elementor-element-402ae547{--display:flex;--border-radius:20px 20px 20px 20px;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);--margin-top:30px;--margin-bottom:30px;--margin-left:0px;--margin-right:0px;--padding-top:60px;--padding-bottom:60px;--padding-left:60px;--padding-right:60px;}.elementor-2330 .elementor-element.elementor-element-402ae547:not(.elementor-motion-effects-element-type-background), .elementor-2330 .elementor-element.elementor-element-402ae547 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-2330 .elementor-element.elementor-element-62eb7441{color:var( --e-global-color-primary );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"2330\" class=\"elementor elementor-2330\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1e79dedb e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"1e79dedb\" 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-402ae547 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"402ae547\" 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-62eb7441 elementor-widget elementor-widget-text-editor\" data-id=\"62eb7441\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>Instant Payments After Each Session<\/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-11c25422 elementor-widget elementor-widget-text-editor\" data-id=\"11c25422\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Your earnings are released right away\u2014no waiting, no chasing.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-2344 .elementor-element.elementor-element-5a0ef3bc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2344 .elementor-element.elementor-element-5b99d60e{--display:flex;--border-radius:20px 20px 20px 20px;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);--margin-top:30px;--margin-bottom:30px;--margin-left:0px;--margin-right:0px;--padding-top:60px;--padding-bottom:60px;--padding-left:60px;--padding-right:60px;}.elementor-2344 .elementor-element.elementor-element-5b99d60e:not(.elementor-motion-effects-element-type-background), .elementor-2344 .elementor-element.elementor-element-5b99d60e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-2344 .elementor-element.elementor-element-7cb8276e{color:var( --e-global-color-primary );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"2344\" class=\"elementor elementor-2344\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5a0ef3bc e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"5a0ef3bc\" 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-5b99d60e e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"5b99d60e\" 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-7cb8276e elementor-widget elementor-widget-text-editor\" data-id=\"7cb8276e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>Earn Reviews &amp; Build Trust<\/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-52604faa elementor-widget elementor-widget-text-editor\" data-id=\"52604faa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Every completed session boosts your profile through family ratings and feedback.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-2349 .elementor-element.elementor-element-75377be0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2349 .elementor-element.elementor-element-1c79b007{--display:flex;--border-radius:20px 20px 20px 20px;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);--margin-top:30px;--margin-bottom:30px;--margin-left:0px;--margin-right:0px;--padding-top:60px;--padding-bottom:60px;--padding-left:60px;--padding-right:60px;}.elementor-2349 .elementor-element.elementor-element-1c79b007:not(.elementor-motion-effects-element-type-background), .elementor-2349 .elementor-element.elementor-element-1c79b007 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-2349 .elementor-element.elementor-element-fede44b{color:var( --e-global-color-primary );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"2349\" class=\"elementor elementor-2349\">\n\t\t\t\t<div class=\"elementor-element elementor-element-75377be0 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"75377be0\" 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-1c79b007 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"1c79b007\" 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-fede44b elementor-widget elementor-widget-text-editor\" data-id=\"fede44b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>See Your Progress<\/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-2c6e0e77 elementor-widget elementor-widget-text-editor\" data-id=\"2c6e0e77\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Track your earnings, rehire rate, and punctuality inside your own dashboard.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-2357 .elementor-element.elementor-element-6fbec91b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2357 .elementor-element.elementor-element-70e30788{--display:flex;--border-radius:20px 20px 20px 20px;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);--margin-top:30px;--margin-bottom:30px;--margin-left:0px;--margin-right:0px;--padding-top:60px;--padding-bottom:60px;--padding-left:60px;--padding-right:60px;}.elementor-2357 .elementor-element.elementor-element-70e30788:not(.elementor-motion-effects-element-type-background), .elementor-2357 .elementor-element.elementor-element-70e30788 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-2357 .elementor-element.elementor-element-3dae3154{color:var( --e-global-color-primary );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"2357\" class=\"elementor elementor-2357\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6fbec91b e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"6fbec91b\" 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-70e30788 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"70e30788\" 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-3dae3154 elementor-widget elementor-widget-text-editor\" data-id=\"3dae3154\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>Serve Where It\u2019s Convenient<\/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-61c169fd elementor-widget elementor-widget-text-editor\" data-id=\"61c169fd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Work in clients\u2019 homes or offer support from your own space\u2014flexibility is built in.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-2363 .elementor-element.elementor-element-7b43e66a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2363 .elementor-element.elementor-element-64e255a7{--display:flex;--border-radius:20px 20px 20px 20px;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);--margin-top:30px;--margin-bottom:30px;--margin-left:0px;--margin-right:0px;--padding-top:60px;--padding-bottom:60px;--padding-left:60px;--padding-right:60px;}.elementor-2363 .elementor-element.elementor-element-64e255a7:not(.elementor-motion-effects-element-type-background), .elementor-2363 .elementor-element.elementor-element-64e255a7 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-2363 .elementor-element.elementor-element-2e6d5dec{color:var( --e-global-color-primary );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"2363\" class=\"elementor elementor-2363\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7b43e66a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"7b43e66a\" 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-64e255a7 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"64e255a7\" 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-2e6d5dec elementor-widget elementor-widget-text-editor\" data-id=\"2e6d5dec\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>Stay connected through the FREENOW app without ever sharing your phone number or social media.<\/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-69e08959 elementor-widget elementor-widget-text-editor\" data-id=\"69e08959\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Stay connected through the FreeNow app without ever sharing your phone number or social media.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"premium-carousel-template item-wrapper\" >\n\t\t\t\t\t\t\t<style>.elementor-2368 .elementor-element.elementor-element-7fa5ae8e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2368 .elementor-element.elementor-element-342862cb{--display:flex;--border-radius:20px 20px 20px 20px;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);--margin-top:30px;--margin-bottom:30px;--margin-left:0px;--margin-right:0px;--padding-top:60px;--padding-bottom:60px;--padding-left:60px;--padding-right:60px;}.elementor-2368 .elementor-element.elementor-element-342862cb:not(.elementor-motion-effects-element-type-background), .elementor-2368 .elementor-element.elementor-element-342862cb > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-2368 .elementor-element.elementor-element-1bbe2dcd{color:var( --e-global-color-primary );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"2368\" class=\"elementor elementor-2368\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7fa5ae8e e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"7fa5ae8e\" 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-342862cb e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"342862cb\" 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-1bbe2dcd elementor-widget elementor-widget-text-editor\" data-id=\"1bbe2dcd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>Helpful Tools &amp; Tips (Coming Soon)<\/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-69554501 elementor-widget elementor-widget-text-editor\" data-id=\"69554501\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Access resources to improve your caregiving knowledge and handle sessions with more confidence.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\n\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Trusted, Loving Care for Every Egyptian Family\u2014 Right at Your Fingertips. Book Egypt\u2019s most trusted Childcare Specialists, Elderly Care Professionals, and Home Nurses. Fully verified. On-demand. Safe. Compassionate. Reliable. All through one secure mobile app. Download App Browse Verified Caregivers Near You Childcare Specialist Childcare Specialist Childcare Specialist Licensed Nurse Licensed Nurse Licensed Nurse Elderly Care Professional Elderly Care Professional Elderly Care Professional Join Aupaire on Social Media Stay connected with Aupaire! Join us On social media for the latest updates, exclusive content, and more. Don\u2019t miss out\u2014follow Aupaire today and be part of the journey! https:\/\/www.youtube.com\/watch?v=XHOmBV4js_Ehttps:\/\/www.youtube.com\/watch?v=XHOmBV4js_Ehttps:\/\/www.youtube.com\/watch?v=XHOmBV4js_E Aupaire For Customers Personalized, Verified, and Professional Care Whenever You Need It Aupaire is your trusted partner in finding safe, flexible, and high-quality caregiving services\u2014designed specifically for Egyptian families who deserve peace of mind and dependable support. Finding a caregiver you can truly trust isn\u2019t easy\u2014especially someone who is punctual, experienced, and genuinely caring. That\u2019s why Aupaire exists. We offer Egypt\u2019s most secure and easy-to-use caregiving app\u2014connecting families with fully verified independent Childcare Specialists, Elderly Care Professionals, and Licensed Home Nurses. Whether you\u2019re looking for in-home childcare, companionship for an aging parent, or postnatal nursing support, Aupaire makes the process safe, fast, and transparent. Forget risky WhatsApp groups and word-of-mouth referrals. Every professional on our platform is identity-verified, legally cleared, and reviewed by real families\u2014so you can make confident choices based on trust, not chance. Read More Childcare Specialist Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit Licensed Nurse Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit Elderly Care Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit We\u2019re creating more than just a marketplace. We\u2019re building a caregiving movement that empowers Egyptian women, students, and professionals to earn a dignified living while families get the care they deserve Why Do Thousands Trust Aupaire for Their Care Needs? Verified &#038; Vetted Caregivers Every caregiver on our platform goes through multi-layer identity checks, health screenings, and criminal background verification. You can see their verification status right on their profile. Real-Time Location Tracking Know exactly when your caregiver is on their way and when they arrive at your home. Flexible Booking Options Whether you need someone for a few hours, daily care, or long-term support, FreeNow adapts to your schedule. Escrow Payments Payments are held securely in escrow and released only after the service is completed to your satisfaction. Privacy-First Experience Our platform ensures each caregiver undergoes thorough identity checks, health screenings, and background verifications, with their status transparently displayed on their profiles. Transparent Reviews Read real reviews from other parents and families before booking. See punctuality scores, rehire rates, and performance badges on every caregiver profile Wide Reach Across Egypt Whether you\u2019re in Cairo, Alexandria, or beyond, FreeNow connects you with the right caregiver in your area. Aupaire For Professionals Your Skills Deserve Recognition &amp; Reward Put Your Free Time to Work\u2014Earn Extra Income by Helping Families Near You Already helping others or studying in a caregiving-related field? Aupaire gives you a flexible, respectful way to earn extra income on your terms\u2014by offering support to families in need of childcare, elder care, or in-home nursing. Whether you\u2019re looking for part-time work, weekend jobs, or occasional sessions\u2014you decide when to work, how much to charge, and where to go. Read More What You\u2019ll Gain Get Discovered by Real Families Your verified profile helps you connect with local families actively searching for trusted caregiving support. Get Discovered by Real Families Your verified profile helps you connect with local families actively searching for trusted caregiving support. Instant Payments After Each Session Your earnings are released right away\u2014no waiting, no chasing. Earn Reviews &amp; Build Trust Every completed session boosts your profile through family ratings and feedback. See Your Progress Track your earnings, rehire rate, and punctuality inside your own dashboard. Serve Where It\u2019s Convenient Work in clients\u2019 homes or offer support from your own space\u2014flexibility is built in. Stay connected through the FREENOW app without ever sharing your phone number or social media. Stay connected through the FreeNow app without ever sharing your phone number or social media. Helpful Tools &amp; Tips (Coming Soon) Access resources to improve your caregiving knowledge and handle sessions with more confidence.<\/p>","protected":false},"author":4,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"site-sidebar-layout":"no-sidebar","site-content-layout":"","ast-site-content-layout":"full-width-container","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-7","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Home-old - Aupaire<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"ar_AR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Home-old - Aupaire\" \/>\n<meta property=\"og:description\" content=\"Trusted, Loving Care for Every Egyptian Family\u2014 Right at Your Fingertips. Book Egypt\u2019s most trusted Childcare Specialists, Elderly Care Professionals, and Home Nurses. Fully verified. On-demand. Safe. Compassionate. Reliable. All through one secure mobile app. Download App Browse Verified Caregivers Near You Childcare Specialist Childcare Specialist Childcare Specialist Licensed Nurse Licensed Nurse Licensed Nurse Elderly Care Professional Elderly Care Professional Elderly Care Professional Join Aupaire on Social Media Stay connected with Aupaire! Join us On social media for the latest updates, exclusive content, and more. Don\u2019t miss out\u2014follow Aupaire today and be part of the journey! https:\/\/www.youtube.com\/watch?v=XHOmBV4js_Ehttps:\/\/www.youtube.com\/watch?v=XHOmBV4js_Ehttps:\/\/www.youtube.com\/watch?v=XHOmBV4js_E Aupaire For Customers Personalized, Verified, and Professional Care Whenever You Need It Aupaire is your trusted partner in finding safe, flexible, and high-quality caregiving services\u2014designed specifically for Egyptian families who deserve peace of mind and dependable support. Finding a caregiver you can truly trust isn\u2019t easy\u2014especially someone who is punctual, experienced, and genuinely caring. That\u2019s why Aupaire exists. We offer Egypt\u2019s most secure and easy-to-use caregiving app\u2014connecting families with fully verified independent Childcare Specialists, Elderly Care Professionals, and Licensed Home Nurses. Whether you\u2019re looking for in-home childcare, companionship for an aging parent, or postnatal nursing support, Aupaire makes the process safe, fast, and transparent. Forget risky WhatsApp groups and word-of-mouth referrals. Every professional on our platform is identity-verified, legally cleared, and reviewed by real families\u2014so you can make confident choices based on trust, not chance. Read More Childcare Specialist Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit Licensed Nurse Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit Elderly Care Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit We\u2019re creating more than just a marketplace. We\u2019re building a caregiving movement that empowers Egyptian women, students, and professionals to earn a dignified living while families get the care they deserve Why Do Thousands Trust Aupaire for Their Care Needs? Verified &#038; Vetted Caregivers Every caregiver on our platform goes through multi-layer identity checks, health screenings, and criminal background verification. You can see their verification status right on their profile. Real-Time Location Tracking Know exactly when your caregiver is on their way and when they arrive at your home. Flexible Booking Options Whether you need someone for a few hours, daily care, or long-term support, FreeNow adapts to your schedule. Escrow Payments Payments are held securely in escrow and released only after the service is completed to your satisfaction. Privacy-First Experience Our platform ensures each caregiver undergoes thorough identity checks, health screenings, and background verifications, with their status transparently displayed on their profiles. Transparent Reviews Read real reviews from other parents and families before booking. See punctuality scores, rehire rates, and performance badges on every caregiver profile Wide Reach Across Egypt Whether you\u2019re in Cairo, Alexandria, or beyond, FreeNow connects you with the right caregiver in your area. Aupaire For Professionals Your Skills Deserve Recognition &amp; Reward Put Your Free Time to Work\u2014Earn Extra Income by Helping Families Near You Already helping others or studying in a caregiving-related field? Aupaire gives you a flexible, respectful way to earn extra income on your terms\u2014by offering support to families in need of childcare, elder care, or in-home nursing. Whether you\u2019re looking for part-time work, weekend jobs, or occasional sessions\u2014you decide when to work, how much to charge, and where to go. Read More What You\u2019ll Gain Get Discovered by Real Families Your verified profile helps you connect with local families actively searching for trusted caregiving support. Get Discovered by Real Families Your verified profile helps you connect with local families actively searching for trusted caregiving support. Instant Payments After Each Session Your earnings are released right away\u2014no waiting, no chasing. Earn Reviews &amp; Build Trust Every completed session boosts your profile through family ratings and feedback. See Your Progress Track your earnings, rehire rate, and punctuality inside your own dashboard. Serve Where It\u2019s Convenient Work in clients\u2019 homes or offer support from your own space\u2014flexibility is built in. Stay connected through the FREENOW app without ever sharing your phone number or social media. Stay connected through the FreeNow app without ever sharing your phone number or social media. Helpful Tools &amp; Tips (Coming Soon) Access resources to improve your caregiving knowledge and handle sessions with more confidence.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/aupaire.nerdysolutions.io\/ar\/home-old\/\" \/>\n<meta property=\"og:site_name\" content=\"Aupaire\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-19T18:09:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/aupaire.com\/wp-content\/uploads\/2025\/06\/Artboard-1-scaled.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/aupaire.nerdysolutions.io\\\/home-old\\\/\",\"url\":\"https:\\\/\\\/aupaire.nerdysolutions.io\\\/home-old\\\/\",\"name\":\"Home-old - Aupaire\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/aupaire.nerdysolutions.io\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/aupaire.nerdysolutions.io\\\/home-old\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/aupaire.nerdysolutions.io\\\/home-old\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/aupaire.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Artboard-1-scaled.jpg\",\"datePublished\":\"2025-06-15T19:28:39+00:00\",\"dateModified\":\"2025-07-19T18:09:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/aupaire.nerdysolutions.io\\\/home-old\\\/#breadcrumb\"},\"inLanguage\":\"ar\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/aupaire.nerdysolutions.io\\\/home-old\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ar\",\"@id\":\"https:\\\/\\\/aupaire.nerdysolutions.io\\\/home-old\\\/#primaryimage\",\"url\":\"https:\\\/\\\/aupaire.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Artboard-1-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/aupaire.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Artboard-1-scaled.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/aupaire.nerdysolutions.io\\\/home-old\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/aupaire.nerdysolutions.io\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Home-old\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/aupaire.nerdysolutions.io\\\/#website\",\"url\":\"https:\\\/\\\/aupaire.nerdysolutions.io\\\/\",\"name\":\"Aupaire\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/aupaire.nerdysolutions.io\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ar\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Home-old - Aupaire","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"ar_AR","og_type":"article","og_title":"Home-old - Aupaire","og_description":"Trusted, Loving Care for Every Egyptian Family\u2014 Right at Your Fingertips. Book Egypt\u2019s most trusted Childcare Specialists, Elderly Care Professionals, and Home Nurses. Fully verified. On-demand. Safe. Compassionate. Reliable. All through one secure mobile app. Download App Browse Verified Caregivers Near You Childcare Specialist Childcare Specialist Childcare Specialist Licensed Nurse Licensed Nurse Licensed Nurse Elderly Care Professional Elderly Care Professional Elderly Care Professional Join Aupaire on Social Media Stay connected with Aupaire! Join us On social media for the latest updates, exclusive content, and more. Don\u2019t miss out\u2014follow Aupaire today and be part of the journey! https:\/\/www.youtube.com\/watch?v=XHOmBV4js_Ehttps:\/\/www.youtube.com\/watch?v=XHOmBV4js_Ehttps:\/\/www.youtube.com\/watch?v=XHOmBV4js_E Aupaire For Customers Personalized, Verified, and Professional Care Whenever You Need It Aupaire is your trusted partner in finding safe, flexible, and high-quality caregiving services\u2014designed specifically for Egyptian families who deserve peace of mind and dependable support. Finding a caregiver you can truly trust isn\u2019t easy\u2014especially someone who is punctual, experienced, and genuinely caring. That\u2019s why Aupaire exists. We offer Egypt\u2019s most secure and easy-to-use caregiving app\u2014connecting families with fully verified independent Childcare Specialists, Elderly Care Professionals, and Licensed Home Nurses. Whether you\u2019re looking for in-home childcare, companionship for an aging parent, or postnatal nursing support, Aupaire makes the process safe, fast, and transparent. Forget risky WhatsApp groups and word-of-mouth referrals. Every professional on our platform is identity-verified, legally cleared, and reviewed by real families\u2014so you can make confident choices based on trust, not chance. Read More Childcare Specialist Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit Licensed Nurse Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit Elderly Care Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit We\u2019re creating more than just a marketplace. We\u2019re building a caregiving movement that empowers Egyptian women, students, and professionals to earn a dignified living while families get the care they deserve Why Do Thousands Trust Aupaire for Their Care Needs? Verified &#038; Vetted Caregivers Every caregiver on our platform goes through multi-layer identity checks, health screenings, and criminal background verification. You can see their verification status right on their profile. Real-Time Location Tracking Know exactly when your caregiver is on their way and when they arrive at your home. Flexible Booking Options Whether you need someone for a few hours, daily care, or long-term support, FreeNow adapts to your schedule. Escrow Payments Payments are held securely in escrow and released only after the service is completed to your satisfaction. Privacy-First Experience Our platform ensures each caregiver undergoes thorough identity checks, health screenings, and background verifications, with their status transparently displayed on their profiles. Transparent Reviews Read real reviews from other parents and families before booking. See punctuality scores, rehire rates, and performance badges on every caregiver profile Wide Reach Across Egypt Whether you\u2019re in Cairo, Alexandria, or beyond, FreeNow connects you with the right caregiver in your area. Aupaire For Professionals Your Skills Deserve Recognition &amp; Reward Put Your Free Time to Work\u2014Earn Extra Income by Helping Families Near You Already helping others or studying in a caregiving-related field? Aupaire gives you a flexible, respectful way to earn extra income on your terms\u2014by offering support to families in need of childcare, elder care, or in-home nursing. Whether you\u2019re looking for part-time work, weekend jobs, or occasional sessions\u2014you decide when to work, how much to charge, and where to go. Read More What You\u2019ll Gain Get Discovered by Real Families Your verified profile helps you connect with local families actively searching for trusted caregiving support. Get Discovered by Real Families Your verified profile helps you connect with local families actively searching for trusted caregiving support. Instant Payments After Each Session Your earnings are released right away\u2014no waiting, no chasing. Earn Reviews &amp; Build Trust Every completed session boosts your profile through family ratings and feedback. See Your Progress Track your earnings, rehire rate, and punctuality inside your own dashboard. Serve Where It\u2019s Convenient Work in clients\u2019 homes or offer support from your own space\u2014flexibility is built in. Stay connected through the FREENOW app without ever sharing your phone number or social media. Stay connected through the FreeNow app without ever sharing your phone number or social media. Helpful Tools &amp; Tips (Coming Soon) Access resources to improve your caregiving knowledge and handle sessions with more confidence.","og_url":"https:\/\/aupaire.nerdysolutions.io\/ar\/home-old\/","og_site_name":"Aupaire","article_modified_time":"2025-07-19T18:09:07+00:00","og_image":[{"url":"https:\/\/aupaire.com\/wp-content\/uploads\/2025\/06\/Artboard-1-scaled.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/aupaire.nerdysolutions.io\/home-old\/","url":"https:\/\/aupaire.nerdysolutions.io\/home-old\/","name":"Home-old - Aupaire","isPartOf":{"@id":"https:\/\/aupaire.nerdysolutions.io\/#website"},"primaryImageOfPage":{"@id":"https:\/\/aupaire.nerdysolutions.io\/home-old\/#primaryimage"},"image":{"@id":"https:\/\/aupaire.nerdysolutions.io\/home-old\/#primaryimage"},"thumbnailUrl":"https:\/\/aupaire.com\/wp-content\/uploads\/2025\/06\/Artboard-1-scaled.jpg","datePublished":"2025-06-15T19:28:39+00:00","dateModified":"2025-07-19T18:09:07+00:00","breadcrumb":{"@id":"https:\/\/aupaire.nerdysolutions.io\/home-old\/#breadcrumb"},"inLanguage":"ar","potentialAction":[{"@type":"ReadAction","target":["https:\/\/aupaire.nerdysolutions.io\/home-old\/"]}]},{"@type":"ImageObject","inLanguage":"ar","@id":"https:\/\/aupaire.nerdysolutions.io\/home-old\/#primaryimage","url":"https:\/\/aupaire.com\/wp-content\/uploads\/2025\/06\/Artboard-1-scaled.jpg","contentUrl":"https:\/\/aupaire.com\/wp-content\/uploads\/2025\/06\/Artboard-1-scaled.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/aupaire.nerdysolutions.io\/home-old\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/aupaire.nerdysolutions.io\/"},{"@type":"ListItem","position":2,"name":"Home-old"}]},{"@type":"WebSite","@id":"https:\/\/aupaire.nerdysolutions.io\/#website","url":"https:\/\/aupaire.nerdysolutions.io\/","name":"Aupaire","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/aupaire.nerdysolutions.io\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ar"}]}},"_links":{"self":[{"href":"https:\/\/aupaire.nerdysolutions.io\/ar\/wp-json\/wp\/v2\/pages\/7","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aupaire.nerdysolutions.io\/ar\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/aupaire.nerdysolutions.io\/ar\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/aupaire.nerdysolutions.io\/ar\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/aupaire.nerdysolutions.io\/ar\/wp-json\/wp\/v2\/comments?post=7"}],"version-history":[{"count":0,"href":"https:\/\/aupaire.nerdysolutions.io\/ar\/wp-json\/wp\/v2\/pages\/7\/revisions"}],"wp:attachment":[{"href":"https:\/\/aupaire.nerdysolutions.io\/ar\/wp-json\/wp\/v2\/media?parent=7"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}