{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://ga.jspm.io/npm:easing-coordinates@2.0.2/dist/cjs/index.js", "ssg:https://framerusercontent.com/modules/JJplszDP5k5xNai1xCYE/iyQKQ2iD0mI54aUpF8iY/Utils.js", "ssg:https://ga.jspm.io/npm:hsluv@1.0.0/dist/esm/hsluv.js", "ssg:https://framerusercontent.com/modules/asGZ46WGkVm3oJVhw594/WxGhPjuFqQ40IZFDcpB8/ColorTypes.js", "ssg:https://framerusercontent.com/modules/TX86aFhJkp7QQdu53ihh/zfjcUuwTCGFoDn2Irmmj/CSSNames.js", "ssg:https://framerusercontent.com/modules/12osPFpnGS9gCMXjGTha/EgmtWCJcg7g4Kk2DjsAg/Converters.js", "ssg:https://framerusercontent.com/modules/qiOMLkGzzn6IBxv1YYfP/noQ6pjsCrIpLUsDOg0GQ/Color.js", "ssg:https://framerusercontent.com/modules/TqPeWj5f410fFZQ7gAgf/qKhK4bnhsmwaenV1TcQz/EasingGradient.js", "ssg:https://framerusercontent.com/modules/axy34w8Pd3VhTtVIk8tF/qSnNnrCn9Komq7Ruks78/augiA20Il.js"],
  "sourcesContent": ["import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { useEffect, useRef, useState } from \"react\";\nimport { addPropertyControls, ControlType } from \"framer\";\nimport { useIsOnCanvas, emptyStateStyle, containerStyles } from \"https://framer.com/m/framer/default-utils.js\"; /**\n                                                                                                                * @framerIntrinsicWidth 600\n                                                                                                                * @framerIntrinsicHeight 400\n                                                                                                                *\n                                                                                                                * @framerSupportedLayoutWidth fixed\n                                                                                                                * @framerSupportedLayoutHeight fixed\n                                                                                                                *\n                                                                                                                * @framerDisableUnlink\n                                                                                                                */\nexport default function Embed({\n  type,\n  url,\n  html\n}) {\n  if (type === \"url\" && url) {\n    return /*#__PURE__*/_jsx(EmbedURL, {\n      url: url\n    });\n  }\n  if (type === \"html\" && html) {\n    return /*#__PURE__*/_jsx(EmbedHTML, {\n      html: html\n    });\n  }\n  return /*#__PURE__*/_jsx(Instructions, {});\n}\n;\naddPropertyControls(Embed, {\n  type: {\n    type: ControlType.Enum,\n    defaultValue: \"url\",\n    displaySegmentedControl: true,\n    options: [\"url\", \"html\"],\n    optionTitles: [\"URL\", \"HTML\"]\n  },\n  url: {\n    title: \"URL\",\n    type: ControlType.String,\n    description: \"Some websites don\u2019t support embedding.\",\n    hidden(props) {\n      return props.type !== \"url\";\n    }\n  },\n  html: {\n    title: \"HTML\",\n    displayTextArea: true,\n    type: ControlType.String,\n    hidden(props) {\n      return props.type !== \"html\";\n    }\n  }\n});\nfunction Instructions() {\n  return /*#__PURE__*/_jsx(\"div\", {\n    style: {\n      ...emptyStateStyle,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsx(\"div\", {\n      style: centerTextStyle,\n      children: \"To embed a website or widget, add it to the properties\\xa0panel.\"\n    })\n  });\n}\nfunction EmbedURL({\n  url\n}) {\n  // Add https:// if the URL does not have a protocol.\n  if (!/[a-z]+:\\/\\//.test(url)) {\n    url = \"https://\" + url;\n  }\n  const onCanvas = useIsOnCanvas(); // We need to check if the url is blocked inside an iframe by the X-Frame-Options\n  // or Content-Security-Policy headers on the backend.\n  const [state, setState] = useState(onCanvas ? undefined : false);\n  useEffect(() => {\n    // We only want to check on the canvas.\n    // On the website we want to avoid the additional delay.\n    if (!onCanvas) return; // TODO: We could also use AbortController here.\n    let isLastEffect = true;\n    setState(undefined);\n    async function load() {\n      const response = await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\" + encodeURIComponent(url));\n      if (response.status == 200) {\n        const {\n          isBlocked\n        } = await response.json();\n        if (isLastEffect) {\n          setState(isBlocked);\n        }\n      } else {\n        const message = await response.text();\n        console.error(message);\n        const error = new Error(\"This site can\u2019t be reached.\");\n        setState(error);\n      }\n    }\n    load().catch(error => {\n      console.error(error);\n      setState(error);\n    });\n    return () => {\n      isLastEffect = false;\n    };\n  }, [url]);\n  if (!url.startsWith(\"https://\")) {\n    return /*#__PURE__*/_jsx(ErrorMessage, {\n      message: \"Unsupported protocol.\"\n    });\n  }\n  if (state === undefined) {\n    return /*#__PURE__*/_jsx(LoadingIndicator, {});\n  }\n  if (state instanceof Error) {\n    return /*#__PURE__*/_jsx(ErrorMessage, {\n      message: state.message\n    });\n  }\n  if (state === true) {\n    const message = `Can't embed ${url} due to its content security policy.`;\n    return /*#__PURE__*/_jsx(ErrorMessage, {\n      message: message\n    });\n  }\n  return /*#__PURE__*/_jsx(\"iframe\", {\n    src: url,\n    style: iframeStyle,\n    loading: \"lazy\",\n    // @ts-ignore\n    fetchPriority: onCanvas ? \"low\" : \"auto\",\n    referrerPolicy: \"no-referrer\",\n    sandbox: getSandbox(onCanvas)\n  });\n}\nconst iframeStyle = {\n  width: \"100%\",\n  height: \"100%\",\n  border: \"none\"\n};\nfunction getSandbox(onCanvas) {\n  const result = [\"allow-same-origin\", \"allow-scripts\"];\n  if (!onCanvas) {\n    result.push(\"allow-downloads\", \"allow-forms\", \"allow-modals\", \"allow-orientation-lock\", \"allow-pointer-lock\", \"allow-popups\", \"allow-popups-to-escape-sandbox\", \"allow-presentation\", \"allow-storage-access-by-user-activation\", \"allow-top-navigation-by-user-activation\");\n  }\n  return result.join(\" \");\n}\nfunction EmbedHTML({\n  html\n}) {\n  const ref = useRef(); // If the HTML contains a script tag we can't use\n  // dangerouslySetInnerHTML because it doesn't execute\n  // scripts on the client. Otherwise, we can benefit\n  // from SSG by using dangerouslySetInnerHTML.\n  const hasScript = html.includes(\"</script>\");\n  useEffect(() => {\n    if (!hasScript) return;\n    const div = ref.current;\n    div.innerHTML = html;\n    executeScripts(div);\n    return () => {\n      div.innerHTML = \"\";\n    };\n  }, [html, hasScript]);\n  return /*#__PURE__*/_jsx(\"div\", {\n    ref: ref,\n    style: htmlStyle,\n    dangerouslySetInnerHTML: !hasScript ? {\n      __html: html\n    } : undefined\n  });\n}\nconst htmlStyle = {\n  width: \"100%\",\n  height: \"100%\",\n  display: \"flex\",\n  flexDirection: \"column\",\n  justifyContent: \"center\",\n  alignItems: \"center\"\n}; // This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node) {\n  if (node instanceof Element && node.tagName === \"SCRIPT\") {\n    const script = document.createElement(\"script\");\n    script.text = node.innerHTML;\n    for (const {\n      name,\n      value\n    } of node.attributes) {\n      script.setAttribute(name, value);\n    }\n    node.parentElement.replaceChild(script, node);\n  } else {\n    for (const child of node.childNodes) {\n      executeScripts(child);\n    }\n  }\n} // Generic components\nfunction LoadingIndicator() {\n  return /*#__PURE__*/_jsx(\"div\", {\n    className: \"framerInternalUI-componentPlaceholder\",\n    style: {\n      ...containerStyles,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsx(\"div\", {\n      style: centerTextStyle,\n      children: \"Loading\u2026\"\n    })\n  });\n}\nfunction ErrorMessage({\n  message\n}) {\n  return /*#__PURE__*/_jsx(\"div\", {\n    className: \"framerInternalUI-errorPlaceholder\",\n    style: {\n      ...containerStyles,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsxs(\"div\", {\n      style: centerTextStyle,\n      children: [\"Error: \", message]\n    })\n  });\n}\nconst centerTextStyle = {\n  textAlign: \"center\",\n  minWidth: 140\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Embed\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerDisableUnlink\": \"\",\n        \"framerIntrinsicWidth\": \"600\",\n        \"framerIntrinsicHeight\": \"400\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Embed.map", "var e={};Object.defineProperty(e,\"__esModule\",{value:true});const getParenthesisContent=e=>e.slice(e.indexOf(\"(\")+1,e.lastIndexOf(\")\")).split(\",\").map(e=>e.trim()).filter(e=>\"\"!==e);const convertToNumberMaybe=e=>Number.isNaN(Number(e))?e:Number(e);const roundToMaxTenDecimals=e=>+e.toFixed(10);e.getCoordinate=(e,t)=>({x:roundToMaxTenDecimals(e),y:roundToMaxTenDecimals(t)});e.getFunctionArguments=e=>getParenthesisContent(e).map(e=>convertToNumberMaybe(e));var t={};var r=t&&t.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)Object.hasOwnProperty.call(e,r)&&(t[r]=e[r]);t[\"default\"]=e;return t};Object.defineProperty(t,\"__esModule\",{value:true});const o=r(e);function getBezier(e,t,r){return(1-e)*(1-e)*(1-e)*0+3*((1-e)*(1-e))*e*t+3*(1-e)*(e*e)*r+e*e*e*1}function cubicCoordinates(e,t,r,n,s=10){const i=1/s;let a=[];for(let o=0;o<=1;o+=i)a.push({x:getBezier(o,e,r),y:getBezier(o,t,n)});const u=a.map(e=>o.getCoordinate(e.x,e.y));return u}t.cubicCoordinates=cubicCoordinates;var n={};Object.defineProperty(n,\"__esModule\",{value:true});const s={ease:\"cubic-bezier(0.25, 0.1, 0.25, 1)\",\"ease-in\":\"cubic-bezier(0.42, 0, 1, 1)\",\"ease-in-out\":\"cubic-bezier(0.42, 0, 0.58, 1)\",\"ease-out\":\"cubic-bezier(0, 0, 0.58, 1)\"};n.default=s;var i={};var a=i&&i.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)Object.hasOwnProperty.call(e,r)&&(t[r]=e[r]);t[\"default\"]=e;return t};Object.defineProperty(i,\"__esModule\",{value:true});const u=a(e);function stepsCoordinates(e,t=\"skip-end\"){const r=[];let o=0;while(o<e){const n=o/e;const s=(o+1)/e;let i;if(\"skip-none\"===t)i=o/(e-1);else if(\"skip-both\"===t)i=(o+1)/(e+1);else if(\"skip-start\"===t||\"start\"===t)i=(o+1)/e;else{if(\"skip-end\"!==t&&\"end\"!==t)throw new Error(`Error can't recognise step skip \"${t}\"`);i=o/e}r.push(u.getCoordinate(n,i));r.push(u.getCoordinate(s,i));++o}return r}i.stepsCoordinates=stepsCoordinates;var c={};var d=c&&c.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var l=c&&c.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)Object.hasOwnProperty.call(e,r)&&(t[r]=e[r]);t[\"default\"]=e;return t};Object.defineProperty(c,\"__esModule\",{value:true});const f=t;c.cubicCoordinates=f.cubicCoordinates;const p=d(n);const b=l(e);const g=i;c.stepsCoordinates=g.stepsCoordinates;function easingCoordinates(e,t){const r=`Error parsing \"${e}\".`;p.default[e]&&(e=p.default[e]);if(e.includes(\"steps(\")){const t=b.getFunctionArguments(e);const[o,n]=t;if(t.length<1||t.length>2)throw new Error(`${r} Got ${t.length} arguments but expected 1 or 2.`);if(\"number\"!==typeof t[0])throw new Error(`${r} \"${t[0]}\" is not a number.`);if(2===t.length&&\"string\"!==typeof t[1])throw new Error(`${r} \"${t[1]}\" is not a string.`);return g.stepsCoordinates(o,n)}if(e.includes(\"cubic-bezier(\")){const o=b.getFunctionArguments(e);const[n,s,i,a]=o;if(4!==o.length)throw new Error(`${r} Got ${o.length} arguments but expected 4.`);o.forEach(e=>{if(\"number\"!==typeof e)throw new Error(`${r} \"${e}\" is not a number.`)});return f.cubicCoordinates(n,s,i,a,t)}throw new Error(`${r} If not a typo then please create a GitHub issue :)`)}c.easingCoordinates=easingCoordinates;c.default=easingCoordinates;const _=c.__esModule,C=c.cubicCoordinates,h=c.stepsCoordinates;const m=c.easingCoordinates;export default c;export{_ as __esModule,C as cubicCoordinates,m as easingCoordinates,h as stepsCoordinates};\n\n//# sourceMappingURL=index.js.map", "export function numberFromString(input) {\n  const match = input.match(/\\d?\\.?\\d+/);\n  return match ? Number(match[0]) : undefined;\n}\nexport function isNumeric(value) {\n  return !isNaN(value) && isFinite(value);\n}\nexport function percentToFraction(val) {\n  const digits = numberFromString(val);\n  if (digits !== undefined) {\n    if (val.includes(\"%\")) {\n      return digits / 100;\n    }\n    return digits;\n  }\n  return 0;\n}\nexport function modulate(value, rangeA, rangeB, limit = false) {\n  const [fromLow, fromHigh] = rangeA;\n  const [toLow, toHigh] = rangeB;\n  const result = toLow + (value - fromLow) / (fromHigh - fromLow) * (toHigh - toLow);\n  if (limit === true) {\n    if (toLow < toHigh) {\n      if (result < toLow) {\n        return toLow;\n      }\n      if (result > toHigh) {\n        return toHigh;\n      }\n    } else {\n      if (result > toLow) {\n        return toLow;\n      }\n      if (result < toHigh) {\n        return toHigh;\n      }\n    }\n  }\n  return result;\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"percentToFraction\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"isNumeric\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"numberFromString\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"modulate\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Utils.map", "class Hsluv{constructor(){this.hex=\"#000000\";this.rgb_r=0;this.rgb_g=0;this.rgb_b=0;this.xyz_x=0;this.xyz_y=0;this.xyz_z=0;this.luv_l=0;this.luv_u=0;this.luv_v=0;this.lch_l=0;this.lch_c=0;this.lch_h=0;this.hsluv_h=0;this.hsluv_s=0;this.hsluv_l=0;this.hpluv_h=0;this.hpluv_p=0;this.hpluv_l=0;this.r0s=0;this.r0i=0;this.r1s=0;this.r1i=0;this.g0s=0;this.g0i=0;this.g1s=0;this.g1i=0;this.b0s=0;this.b0i=0;this.b1s=0;this.b1i=0}static fromLinear(s){return s<=.0031308?12.92*s:1.055*Math.pow(s,1/2.4)-.055}static toLinear(s){return s>.04045?Math.pow((s+.055)/1.055,2.4):s/12.92}static yToL(s){return s<=Hsluv.epsilon?s/Hsluv.refY*Hsluv.kappa:116*Math.pow(s/Hsluv.refY,1/3)-16}static lToY(s){return s<=8?Hsluv.refY*s/Hsluv.kappa:Hsluv.refY*Math.pow((s+16)/116,3)}static rgbChannelToHex(s){const h=Math.round(255*s);const t=h%16;const i=(h-t)/16|0;return Hsluv.hexChars.charAt(i)+Hsluv.hexChars.charAt(t)}static hexToRgbChannel(s,h){const t=Hsluv.hexChars.indexOf(s.charAt(h));const i=Hsluv.hexChars.indexOf(s.charAt(h+1));const l=16*t+i;return l/255}static distanceFromOriginAngle(s,h,t){const i=h/(Math.sin(t)-s*Math.cos(t));return i<0?Infinity:i}static distanceFromOrigin(s,h){return Math.abs(h)/Math.sqrt(Math.pow(s,2)+1)}static min6(s,h,t,i,l,u){return Math.min(s,Math.min(h,Math.min(t,Math.min(i,Math.min(l,u)))))}rgbToHex(){this.hex=\"#\";this.hex+=Hsluv.rgbChannelToHex(this.rgb_r);this.hex+=Hsluv.rgbChannelToHex(this.rgb_g);this.hex+=Hsluv.rgbChannelToHex(this.rgb_b)}hexToRgb(){this.hex=this.hex.toLowerCase();this.rgb_r=Hsluv.hexToRgbChannel(this.hex,1);this.rgb_g=Hsluv.hexToRgbChannel(this.hex,3);this.rgb_b=Hsluv.hexToRgbChannel(this.hex,5)}xyzToRgb(){this.rgb_r=Hsluv.fromLinear(Hsluv.m_r0*this.xyz_x+Hsluv.m_r1*this.xyz_y+Hsluv.m_r2*this.xyz_z);this.rgb_g=Hsluv.fromLinear(Hsluv.m_g0*this.xyz_x+Hsluv.m_g1*this.xyz_y+Hsluv.m_g2*this.xyz_z);this.rgb_b=Hsluv.fromLinear(Hsluv.m_b0*this.xyz_x+Hsluv.m_b1*this.xyz_y+Hsluv.m_b2*this.xyz_z)}rgbToXyz(){const s=Hsluv.toLinear(this.rgb_r);const h=Hsluv.toLinear(this.rgb_g);const t=Hsluv.toLinear(this.rgb_b);this.xyz_x=.41239079926595*s+.35758433938387*h+.18048078840183*t;this.xyz_y=.21263900587151*s+.71516867876775*h+.072192315360733*t;this.xyz_z=.019330818715591*s+.11919477979462*h+.95053215224966*t}xyzToLuv(){const s=this.xyz_x+15*this.xyz_y+3*this.xyz_z;let h=4*this.xyz_x;let t=9*this.xyz_y;if(0!==s){h/=s;t/=s}else{h=NaN;t=NaN}this.luv_l=Hsluv.yToL(this.xyz_y);if(0===this.luv_l){this.luv_u=0;this.luv_v=0}else{this.luv_u=13*this.luv_l*(h-Hsluv.refU);this.luv_v=13*this.luv_l*(t-Hsluv.refV)}}luvToXyz(){if(0===this.luv_l){this.xyz_x=0;this.xyz_y=0;this.xyz_z=0;return}const s=this.luv_u/(13*this.luv_l)+Hsluv.refU;const h=this.luv_v/(13*this.luv_l)+Hsluv.refV;this.xyz_y=Hsluv.lToY(this.luv_l);this.xyz_x=0-9*this.xyz_y*s/((s-4)*h-s*h);this.xyz_z=(9*this.xyz_y-15*h*this.xyz_y-h*this.xyz_x)/(3*h)}luvToLch(){this.lch_l=this.luv_l;this.lch_c=Math.sqrt(this.luv_u*this.luv_u+this.luv_v*this.luv_v);if(this.lch_c<1e-8)this.lch_h=0;else{const s=Math.atan2(this.luv_v,this.luv_u);this.lch_h=180*s/Math.PI;this.lch_h<0&&(this.lch_h=360+this.lch_h)}}lchToLuv(){const s=this.lch_h/180*Math.PI;this.luv_l=this.lch_l;this.luv_u=Math.cos(s)*this.lch_c;this.luv_v=Math.sin(s)*this.lch_c}calculateBoundingLines(s){const h=Math.pow(s+16,3)/1560896;const t=h>Hsluv.epsilon?h:s/Hsluv.kappa;const i=t*(284517*Hsluv.m_r0-94839*Hsluv.m_r2);const l=t*(838422*Hsluv.m_r2+769860*Hsluv.m_r1+731718*Hsluv.m_r0);const u=t*(632260*Hsluv.m_r2-126452*Hsluv.m_r1);const v=t*(284517*Hsluv.m_g0-94839*Hsluv.m_g2);const _=t*(838422*Hsluv.m_g2+769860*Hsluv.m_g1+731718*Hsluv.m_g0);const c=t*(632260*Hsluv.m_g2-126452*Hsluv.m_g1);const r=t*(284517*Hsluv.m_b0-94839*Hsluv.m_b2);const o=t*(838422*Hsluv.m_b2+769860*Hsluv.m_b1+731718*Hsluv.m_b0);const n=t*(632260*Hsluv.m_b2-126452*Hsluv.m_b1);this.r0s=i/u;this.r0i=l*s/u;this.r1s=i/(u+126452);this.r1i=(l-769860)*s/(u+126452);this.g0s=v/c;this.g0i=_*s/c;this.g1s=v/(c+126452);this.g1i=(_-769860)*s/(c+126452);this.b0s=r/n;this.b0i=o*s/n;this.b1s=r/(n+126452);this.b1i=(o-769860)*s/(n+126452)}calcMaxChromaHpluv(){const s=Hsluv.distanceFromOrigin(this.r0s,this.r0i);const h=Hsluv.distanceFromOrigin(this.r1s,this.r1i);const t=Hsluv.distanceFromOrigin(this.g0s,this.g0i);const i=Hsluv.distanceFromOrigin(this.g1s,this.g1i);const l=Hsluv.distanceFromOrigin(this.b0s,this.b0i);const u=Hsluv.distanceFromOrigin(this.b1s,this.b1i);return Hsluv.min6(s,h,t,i,l,u)}calcMaxChromaHsluv(s){const h=s/360*Math.PI*2;const t=Hsluv.distanceFromOriginAngle(this.r0s,this.r0i,h);const i=Hsluv.distanceFromOriginAngle(this.r1s,this.r1i,h);const l=Hsluv.distanceFromOriginAngle(this.g0s,this.g0i,h);const u=Hsluv.distanceFromOriginAngle(this.g1s,this.g1i,h);const v=Hsluv.distanceFromOriginAngle(this.b0s,this.b0i,h);const _=Hsluv.distanceFromOriginAngle(this.b1s,this.b1i,h);return Hsluv.min6(t,i,l,u,v,_)}hsluvToLch(){if(this.hsluv_l>99.9999999){this.lch_l=100;this.lch_c=0}else if(this.hsluv_l<1e-8){this.lch_l=0;this.lch_c=0}else{this.lch_l=this.hsluv_l;this.calculateBoundingLines(this.hsluv_l);const s=this.calcMaxChromaHsluv(this.hsluv_h);this.lch_c=s/100*this.hsluv_s}this.lch_h=this.hsluv_h}lchToHsluv(){if(this.lch_l>99.9999999){this.hsluv_s=0;this.hsluv_l=100}else if(this.lch_l<1e-8){this.hsluv_s=0;this.hsluv_l=0}else{this.calculateBoundingLines(this.lch_l);const s=this.calcMaxChromaHsluv(this.lch_h);this.hsluv_s=this.lch_c/s*100;this.hsluv_l=this.lch_l}this.hsluv_h=this.lch_h}hpluvToLch(){if(this.hpluv_l>99.9999999){this.lch_l=100;this.lch_c=0}else if(this.hpluv_l<1e-8){this.lch_l=0;this.lch_c=0}else{this.lch_l=this.hpluv_l;this.calculateBoundingLines(this.hpluv_l);const s=this.calcMaxChromaHpluv();this.lch_c=s/100*this.hpluv_p}this.lch_h=this.hpluv_h}lchToHpluv(){if(this.lch_l>99.9999999){this.hpluv_p=0;this.hpluv_l=100}else if(this.lch_l<1e-8){this.hpluv_p=0;this.hpluv_l=0}else{this.calculateBoundingLines(this.lch_l);const s=this.calcMaxChromaHpluv();this.hpluv_p=this.lch_c/s*100;this.hpluv_l=this.lch_l}this.hpluv_h=this.lch_h}hsluvToRgb(){this.hsluvToLch();this.lchToLuv();this.luvToXyz();this.xyzToRgb()}hpluvToRgb(){this.hpluvToLch();this.lchToLuv();this.luvToXyz();this.xyzToRgb()}hsluvToHex(){this.hsluvToRgb();this.rgbToHex()}hpluvToHex(){this.hpluvToRgb();this.rgbToHex()}rgbToHsluv(){this.rgbToXyz();this.xyzToLuv();this.luvToLch();this.lchToHpluv();this.lchToHsluv()}rgbToHpluv(){this.rgbToXyz();this.xyzToLuv();this.luvToLch();this.lchToHpluv();this.lchToHpluv()}hexToHsluv(){this.hexToRgb();this.rgbToHsluv()}hexToHpluv(){this.hexToRgb();this.rgbToHpluv()}}Hsluv.hexChars=\"0123456789abcdef\";Hsluv.refY=1;Hsluv.refU=.19783000664283;Hsluv.refV=.46831999493879;Hsluv.kappa=903.2962962;Hsluv.epsilon=.0088564516;Hsluv.m_r0=3.240969941904521;Hsluv.m_r1=-1.537383177570093;Hsluv.m_r2=-.498610760293;Hsluv.m_g0=-.96924363628087;Hsluv.m_g1=1.87596750150772;Hsluv.m_g2=.041555057407175;Hsluv.m_b0=.055630079696993;Hsluv.m_b1=-.20397695888897;Hsluv.m_b2=1.056971514242878;export{Hsluv};\n\n//# sourceMappingURL=hsluv.js.map", "// Used for inspection\n/** @public */export var ColorFormat;\n(function (ColorFormat) {\n  ColorFormat[\"RGB\"] = \"rgb\";\n  ColorFormat[\"HSL\"] = \"hsl\";\n  ColorFormat[\"HSV\"] = \"hsv\";\n  ColorFormat[\"HEX\"] = \"hex\";\n  ColorFormat[\"NAME\"] = \"name\";\n})(ColorFormat || (ColorFormat = {}));\nexport var ColorMixModelType;\n(function (ColorMixModelType) {\n  ColorMixModelType[\n  /**\n  * Use the {@link https://en.wikipedia.org/wiki/RGB_color_model | RGB color space} without an alpha value\n  *\n  * @remarks\n  *\n  * ```javascript\n  * const newColor = Color.mix(Color(\"red\"), Color(\"blue\"), {model: ColorMixModelType.RGB})\n  * ```\n  *\n  * @public\n  */\n  \"RGB\"] = \"rgb\";\n  ColorMixModelType[\n  /**\n  * Use the {@link https://en.wikipedia.org/wiki/RGB_color_model | RGB color space} color space with an alpha value\n  *\n  * @remarks\n  *\n  * ```javascript\n  * const newColor = Color.mix(Color(\"red\"), Color(\"blue\"), {model: ColorMixModelType.RGBA})\n  * ```\n  *\n  * @public\n  */\n  \"RGBA\"] = \"rgba\";\n  ColorMixModelType[\n  /**\n  * Use the {@link https://en.wikipedia.org/wiki/HSL_and_HSV | HSL} color space with an alpha value\n  *\n  * @remarks\n  *\n  * ```javascript\n  * const newColor = Color.mix(Color(\"red\"), Color(\"blue\"), {model: ColorMixModelType.HSL})\n  * ```\n  *\n  * @public\n  */\n  \"HSL\"] = \"hsl\";\n  ColorMixModelType[\n  /**\n  * Use the {@link https://en.wikipedia.org/wiki/HSL_and_HSV | HSL} color space with an alpha value\n  *\n  * @remarks\n  *\n  * ```javascript\n  * const newColor = Color.mix(Color(\"red\"), Color(\"blue\"), {model: ColorMixModelType.HSLA})\n  * ```\n  *\n  * @public\n  */\n  \"HSLA\"] = \"hsla\";\n  ColorMixModelType[\n  /**\n  * Use the {@link http://www.hsluv.org | HSLuv } human friendly color model\n  *\n  * @remarks\n  *\n  * ```javascript\n  * const newColor = Color.mix(Color(\"red\"), Color(\"blue\"), {model: ColorMixModelType.HUSL})\n  * ```\n  *\n  * @public\n  */\n  \"HUSL\"] = \"husl\";\n})(ColorMixModelType || (ColorMixModelType = {}));\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"ColorHSV\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"ColorHSLA\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"IncomingColor\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"ColorRGBA\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"ColorTypeRGBA\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"ColorFormat\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"ColorTypeHSVA\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"CompleteColor\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"ColorHSVA\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"ColorHSL\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"ColorRGB\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"ColorMixModelType\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"ColorTypeHSLA\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./ColorTypes.map", "export const cssNames = {\n  aliceblue: \"f0f8ff\",\n  antiquewhite: \"faebd7\",\n  aqua: \"0ff\",\n  aquamarine: \"7fffd4\",\n  azure: \"f0ffff\",\n  beige: \"f5f5dc\",\n  bisque: \"ffe4c4\",\n  black: \"000\",\n  blanchedalmond: \"ffebcd\",\n  blue: \"00f\",\n  blueviolet: \"8a2be2\",\n  brown: \"a52a2a\",\n  burlywood: \"deb887\",\n  burntsienna: \"ea7e5d\",\n  cadetblue: \"5f9ea0\",\n  chartreuse: \"7fff00\",\n  chocolate: \"d2691e\",\n  coral: \"ff7f50\",\n  cornflowerblue: \"6495ed\",\n  cornsilk: \"fff8dc\",\n  crimson: \"dc143c\",\n  cyan: \"0ff\",\n  darkblue: \"00008b\",\n  darkcyan: \"008b8b\",\n  darkgoldenrod: \"b8860b\",\n  darkgray: \"a9a9a9\",\n  darkgreen: \"006400\",\n  darkgrey: \"a9a9a9\",\n  darkkhaki: \"bdb76b\",\n  darkmagenta: \"8b008b\",\n  darkolivegreen: \"556b2f\",\n  darkorange: \"ff8c00\",\n  darkorchid: \"9932cc\",\n  darkred: \"8b0000\",\n  darksalmon: \"e9967a\",\n  darkseagreen: \"8fbc8f\",\n  darkslateblue: \"483d8b\",\n  darkslategray: \"2f4f4f\",\n  darkslategrey: \"2f4f4f\",\n  darkturquoise: \"00ced1\",\n  darkviolet: \"9400d3\",\n  deeppink: \"ff1493\",\n  deepskyblue: \"00bfff\",\n  dimgray: \"696969\",\n  dimgrey: \"696969\",\n  dodgerblue: \"1e90ff\",\n  firebrick: \"b22222\",\n  floralwhite: \"fffaf0\",\n  forestgreen: \"228b22\",\n  fuchsia: \"f0f\",\n  gainsboro: \"dcdcdc\",\n  ghostwhite: \"f8f8ff\",\n  gold: \"ffd700\",\n  goldenrod: \"daa520\",\n  gray: \"808080\",\n  green: \"008000\",\n  greenyellow: \"adff2f\",\n  grey: \"808080\",\n  honeydew: \"f0fff0\",\n  hotpink: \"ff69b4\",\n  indianred: \"cd5c5c\",\n  indigo: \"4b0082\",\n  ivory: \"fffff0\",\n  khaki: \"f0e68c\",\n  lavender: \"e6e6fa\",\n  lavenderblush: \"fff0f5\",\n  lawngreen: \"7cfc00\",\n  lemonchiffon: \"fffacd\",\n  lightblue: \"add8e6\",\n  lightcoral: \"f08080\",\n  lightcyan: \"e0ffff\",\n  lightgoldenrodyellow: \"fafad2\",\n  lightgray: \"d3d3d3\",\n  lightgreen: \"90ee90\",\n  lightgrey: \"d3d3d3\",\n  lightpink: \"ffb6c1\",\n  lightsalmon: \"ffa07a\",\n  lightseagreen: \"20b2aa\",\n  lightskyblue: \"87cefa\",\n  lightslategray: \"789\",\n  lightslategrey: \"789\",\n  lightsteelblue: \"b0c4de\",\n  lightyellow: \"ffffe0\",\n  lime: \"0f0\",\n  limegreen: \"32cd32\",\n  linen: \"faf0e6\",\n  magenta: \"f0f\",\n  maroon: \"800000\",\n  mediumaquamarine: \"66cdaa\",\n  mediumblue: \"0000cd\",\n  mediumorchid: \"ba55d3\",\n  mediumpurple: \"9370db\",\n  mediumseagreen: \"3cb371\",\n  mediumslateblue: \"7b68ee\",\n  mediumspringgreen: \"00fa9a\",\n  mediumturquoise: \"48d1cc\",\n  mediumvioletred: \"c71585\",\n  midnightblue: \"191970\",\n  mintcream: \"f5fffa\",\n  mistyrose: \"ffe4e1\",\n  moccasin: \"ffe4b5\",\n  navajowhite: \"ffdead\",\n  navy: \"000080\",\n  oldlace: \"fdf5e6\",\n  olive: \"808000\",\n  olivedrab: \"6b8e23\",\n  orange: \"ffa500\",\n  orangered: \"ff4500\",\n  orchid: \"da70d6\",\n  palegoldenrod: \"eee8aa\",\n  palegreen: \"98fb98\",\n  paleturquoise: \"afeeee\",\n  palevioletred: \"db7093\",\n  papayawhip: \"ffefd5\",\n  peachpuff: \"ffdab9\",\n  peru: \"cd853f\",\n  pink: \"ffc0cb\",\n  plum: \"dda0dd\",\n  powderblue: \"b0e0e6\",\n  purple: \"800080\",\n  rebeccapurple: \"663399\",\n  red: \"f00\",\n  rosybrown: \"bc8f8f\",\n  royalblue: \"4169e1\",\n  saddlebrown: \"8b4513\",\n  salmon: \"fa8072\",\n  sandybrown: \"f4a460\",\n  seagreen: \"2e8b57\",\n  seashell: \"fff5ee\",\n  sienna: \"a0522d\",\n  silver: \"c0c0c0\",\n  skyblue: \"87ceeb\",\n  slateblue: \"6a5acd\",\n  slategray: \"708090\",\n  slategrey: \"708090\",\n  snow: \"fffafa\",\n  springgreen: \"00ff7f\",\n  steelblue: \"4682b4\",\n  tan: \"d2b48c\",\n  teal: \"008080\",\n  thistle: \"d8bfd8\",\n  tomato: \"ff6347\",\n  turquoise: \"40e0d0\",\n  violet: \"ee82ee\",\n  wheat: \"f5deb3\",\n  white: \"fff\",\n  whitesmoke: \"f5f5f5\",\n  yellow: \"ff0\",\n  yellowgreen: \"9acd32\"\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"cssNames\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./CSSNames.map", "import { Hsluv } from \"hsluv\";\nimport { isNumeric, percentToFraction } from \"https://framerusercontent.com/modules/JJplszDP5k5xNai1xCYE/iyQKQ2iD0mI54aUpF8iY/Utils.js\";\nimport { ColorFormat } from \"https://framerusercontent.com/modules/asGZ46WGkVm3oJVhw594/WxGhPjuFqQ40IZFDcpB8/ColorTypes.js\";\nimport { cssNames } from \"https://framerusercontent.com/modules/TX86aFhJkp7QQdu53ihh/zfjcUuwTCGFoDn2Irmmj/CSSNames.js\";\nexport function rgbToHsluv(r, g, b) {\n  var toConvert = new Hsluv();\n  toConvert.rgb_r = r / 255;\n  toConvert.rgb_g = g / 255;\n  toConvert.rgb_b = b / 255;\n  toConvert.rgbToHsluv();\n  return {\n    h: toConvert.hsluv_h,\n    s: toConvert.hsluv_s,\n    l: toConvert.hsluv_l\n  };\n}\nexport function rgbaFromHusl(h, s, l, a = 1) {\n  var rgb = new Hsluv();\n  rgb.hsluv_h = h;\n  rgb.hsluv_s = s;\n  rgb.hsluv_l = l;\n  rgb.hsluvToRgb();\n  return {\n    r: rgb.rgb_r * 255,\n    g: rgb.rgb_g * 255,\n    b: rgb.rgb_b * 255,\n    a: a\n  };\n}\nexport function hsvToStr(h, s, v, a) {\n  const _h = Math.round(h);\n  const _s = Math.round(s * 100);\n  const _v = Math.round(v * 100);\n  return a === undefined || a === 1 ? \"hsv(\" + _h + \", \" + _s + \"%, \" + _v + \"%)\" : \"hsva(\" + _h + \", \" + _s + \"%, \" + _v + \"%, \" + a + \")\";\n}\nexport function rgbToRgb(r, g, b) {\n  return {\n    r: isNumeric(r) ? bound01(r, 255) * 255 : 0,\n    g: isNumeric(g) ? bound01(g, 255) * 255 : 0,\n    b: isNumeric(b) ? bound01(b, 255) * 255 : 0\n  };\n}\nexport function rgbToHex(r, g, b, allow3Char) {\n  const hex = [pad2(Math.round(r).toString(16)), pad2(Math.round(g).toString(16)), pad2(Math.round(b).toString(16))];\n  if (allow3Char && hex[0].charAt(0) === hex[0].charAt(1) && hex[1].charAt(0) === hex[1].charAt(1) && hex[2].charAt(0) === hex[2].charAt(1)) {\n    return hex[0].charAt(0) + hex[1].charAt(0) + hex[2].charAt(0);\n  }\n  return hex.join(\"\");\n}\nexport function rgbToHsl(r, g, b) {\n  let l;\n  let s;\n  const _r = bound01(r, 255);\n  const _g = bound01(g, 255);\n  const _b = bound01(b, 255);\n  const max = Math.max(_r, _g, _b);\n  const min = Math.min(_r, _g, _b);\n  let h = s = l = (max + min) / 2;\n  if (max === min) {\n    h = s = 0;\n  } else {\n    const d = max - min;\n    s = l > .5 ? d / (2 - max - min) : d / (max + min);\n    switch (max) {\n      case _r:\n        h = (_g - _b) / d + (_g < _b ? 6 : 0);\n        break;\n      case _g:\n        h = (_b - _r) / d + 2;\n        break;\n      case _b:\n        h = (_r - _g) / d + 4;\n        break;\n    }\n    h /= 6;\n  }\n  return {\n    h: h * 360,\n    s,\n    l\n  };\n}\nfunction hue2rgb(p, q, t) {\n  if (t < 0) {\n    t += 1;\n  }\n  if (t > 1) {\n    t -= 1;\n  }\n  if (t < 1 / 6) {\n    return p + (q - p) * 6 * t;\n  }\n  if (t < 1 / 2) {\n    return q;\n  }\n  if (t < 2 / 3) {\n    return p + (q - p) * (2 / 3 - t) * 6;\n  }\n  return p;\n} // HSL to RGB\nexport function hslToRgb(h, s, l) {\n  let r;\n  let g;\n  let b;\n  h = bound01(h, 360);\n  s = bound01(s * 100, 100);\n  l = bound01(l * 100, 100);\n  if (s === 0) {\n    r = g = b = l // Achromatic\n    ;\n  } else {\n    const q = l < .5 ? l * (1 + s) : l + s - l * s;\n    const p = 2 * l - q;\n    r = hue2rgb(p, q, h + 1 / 3);\n    g = hue2rgb(p, q, h);\n    b = hue2rgb(p, q, h - 1 / 3);\n  }\n  return {\n    r: r * 255,\n    g: g * 255,\n    b: b * 255\n  };\n}\nexport function rgbToHsv(r, g, b) {\n  r = bound01(r, 255);\n  g = bound01(g, 255);\n  b = bound01(b, 255);\n  const max = Math.max(r, g, b);\n  const min = Math.min(r, g, b);\n  const d = max - min;\n  let h;\n  const s = max === 0 ? 0 : d / max;\n  const v = max;\n  if (max === min) {\n    h = 0 // achromatic\n    ;\n  } else {\n    switch (max) {\n      case r:\n        h = (g - b) / d + (g < b ? 6 : 0);\n        break;\n      case g:\n        h = (b - r) / d + 2;\n        break;\n      case b:\n        h = (r - g) / d + 4;\n        break;\n    }\n    h /= 6;\n  }\n  return {\n    h: h,\n    s,\n    v\n  };\n}\nexport function hsvToRgb(h, s, v) {\n  h = bound01(h, 360) * 6;\n  s = bound01(s * 100, 100);\n  v = bound01(v * 100, 100);\n  const i = Math.floor(h),\n    f = h - i,\n    p = v * (1 - s),\n    q = v * (1 - f * s),\n    t = v * (1 - (1 - f) * s),\n    mod = i % 6,\n    r = [v, q, p, p, t, v][mod],\n    g = [t, v, v, q, p, p][mod],\n    b = [p, p, t, v, v, q][mod];\n  return {\n    r: r * 255,\n    g: g * 255,\n    b: b * 255\n  };\n}\nfunction bound01(n, max) {\n  let _max;\n  let _n;\n  if (typeof max === \"string\") _max = parseFloat(max);else _max = max;\n  if (typeof n === \"string\") {\n    if (isOnePointZero(n)) {\n      n = \"100%\";\n    }\n    const processPercent = isPercentage(n);\n    _n = Math.min(_max, Math.max(0, parseFloat(n))); // Automatically convert percentage into number\n    if (processPercent) {\n      _n = Math.floor(_n * _max) / 100;\n    }\n  } else {\n    _n = n;\n  } // Handle floating point rounding errors\n  if (Math.abs(_n - _max) < 1e-6) {\n    return 1;\n  } // Convert into [0, 1] range if it isn't already\n  return _n % _max / _max;\n}\nfunction isOnePointZero(n) {\n  return typeof n === \"string\" && n.includes(\".\") && parseFloat(n) === 1;\n}\nfunction isPercentage(n) {\n  return typeof n === \"string\" && n.includes(\"%\");\n}\nfunction pad2(char) {\n  if (char.length === 1) {\n    return \"0\" + char;\n  } else {\n    return \"\" + char;\n  }\n}\nconst matchers = function () {\n  const cssInteger = \"[-\\\\+]?\\\\d+%?\";\n  const cssNumber = \"[-\\\\+]?\\\\d*\\\\.\\\\d+%?\";\n  const cssUnit = \"(?:\" + cssNumber + \")|(?:\" + cssInteger + \")\";\n  const permissiveMatch3 = \"[\\\\s|\\\\(]+(\" + cssUnit + \")[,|\\\\s]+(\" + cssUnit + \")[,|\\\\s]+(\" + cssUnit + \")\\\\s*\\\\)?\";\n  const permissiveMatch4 = \"[\\\\s|\\\\(]+(\" + cssUnit + \")[,|\\\\s]+(\" + cssUnit + \")[,|\\\\s]+(\" + cssUnit + \")[,|\\\\s]+(\" + cssUnit + \")\\\\s*\\\\)?\";\n  return {\n    rgb: new RegExp(\"rgb\" + permissiveMatch3),\n    rgba: new RegExp(\"rgba\" + permissiveMatch4),\n    hsl: new RegExp(\"hsl\" + permissiveMatch3),\n    hsla: new RegExp(\"hsla\" + permissiveMatch4),\n    hsv: new RegExp(\"hsv\" + permissiveMatch3),\n    hsva: new RegExp(\"hsva\" + permissiveMatch4),\n    hex3: /^([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,\n    hex6: /^([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,\n    hex4: /^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,\n    hex8: /^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/\n  };\n}();\nexport function stringToObject(inputColor) {\n  // Early return for gradients\n  if (inputColor.includes(\"gradient(\")) return false; // Early return for variables\n  if (inputColor.includes(\"var(\")) return false;\n  const trimLeft = /^[\\s,#]+/;\n  const trimRight = /\\s+$/;\n  let color = inputColor.replace(trimLeft, \"\").replace(trimRight, \"\").toLowerCase();\n  let named = false;\n  if (cssNames[color]) {\n    color = cssNames[color];\n    named = true;\n  }\n  if (color === \"transparent\") {\n    return {\n      r: 0,\n      g: 0,\n      b: 0,\n      a: 0,\n      format: ColorFormat.NAME\n    };\n  }\n  let match;\n  if (match = matchers.rgb.exec(color)) {\n    return {\n      r: parseInt(match[1]),\n      g: parseInt(match[2]),\n      b: parseInt(match[3]),\n      a: 1,\n      format: ColorFormat.RGB\n    };\n  }\n  if (match = matchers.rgba.exec(color)) {\n    return {\n      r: parseInt(match[1]),\n      g: parseInt(match[2]),\n      b: parseInt(match[3]),\n      a: parseFloat(match[4]),\n      format: ColorFormat.RGB\n    };\n  }\n  if (match = matchers.hsl.exec(color)) {\n    return {\n      h: parseInt(match[1]),\n      s: percentToFraction(match[2]),\n      l: percentToFraction(match[3]),\n      a: 1,\n      format: ColorFormat.HSL\n    };\n  }\n  if (match = matchers.hsla.exec(color)) {\n    return {\n      h: parseInt(match[1]),\n      s: percentToFraction(match[2]),\n      l: percentToFraction(match[3]),\n      a: parseFloat(match[4]),\n      format: ColorFormat.HSL\n    };\n  }\n  if (match = matchers.hsv.exec(color)) {\n    return {\n      h: parseInt(match[1]),\n      s: percentToFraction(match[2]),\n      v: percentToFraction(match[3]),\n      a: 1,\n      format: ColorFormat.HSV\n    };\n  }\n  if (match = matchers.hsva.exec(color)) {\n    return {\n      h: parseInt(match[1]),\n      s: percentToFraction(match[2]),\n      v: percentToFraction(match[3]),\n      a: parseFloat(match[4]),\n      format: ColorFormat.HSV\n    };\n  }\n  if (match = matchers.hex8.exec(color)) {\n    return {\n      r: parseIntFromHex(match[1]),\n      g: parseIntFromHex(match[2]),\n      b: parseIntFromHex(match[3]),\n      a: convertHexToDecimal(match[4]),\n      format: named ? ColorFormat.NAME : ColorFormat.HEX\n    };\n  }\n  if (match = matchers.hex6.exec(color)) {\n    return {\n      r: parseIntFromHex(match[1]),\n      g: parseIntFromHex(match[2]),\n      b: parseIntFromHex(match[3]),\n      a: 1,\n      format: named ? ColorFormat.NAME : ColorFormat.HEX\n    };\n  }\n  if (match = matchers.hex4.exec(color)) {\n    return {\n      r: parseIntFromHex(`${match[1]}${match[1]}`),\n      g: parseIntFromHex(`${match[2]}${match[2]}`),\n      b: parseIntFromHex(`${match[3]}${match[3]}`),\n      a: convertHexToDecimal(match[4] + \"\" + match[4]),\n      format: named ? ColorFormat.NAME : ColorFormat.HEX\n    };\n  }\n  if (match = matchers.hex3.exec(color)) {\n    return {\n      r: parseIntFromHex(`${match[1]}${match[1]}`),\n      g: parseIntFromHex(`${match[2]}${match[2]}`),\n      b: parseIntFromHex(`${match[3]}${match[3]}`),\n      a: 1,\n      format: named ? ColorFormat.NAME : ColorFormat.HEX\n    };\n  } else {\n    return false;\n  }\n}\nfunction parseIntFromHex(hex) {\n  return parseInt(hex, 16);\n}\nfunction convertHexToDecimal(h) {\n  return parseIntFromHex(h) / 255;\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"rgbToHsv\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"hslToRgb\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"rgbaFromHusl\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"rgbToRgb\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"hsvToStr\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"rgbToHsluv\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"rgbToHex\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"stringToObject\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"rgbToHsl\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"hsvToRgb\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Converters.map", "import { modulate, isNumeric, numberFromString } from \"https://framerusercontent.com/modules/JJplszDP5k5xNai1xCYE/iyQKQ2iD0mI54aUpF8iY/Utils.js\";\nimport { rgbToRgb, rgbToHsl as rgbToHslConverter, hslToRgb, rgbToHex, rgbToHsluv, rgbToHsv, rgbaFromHusl, stringToObject, hsvToRgb } from \"https://framerusercontent.com/modules/12osPFpnGS9gCMXjGTha/EgmtWCJcg7g4Kk2DjsAg/Converters.js\";\nimport { ColorFormat, ColorMixModelType } from \"https://framerusercontent.com/modules/asGZ46WGkVm3oJVhw594/WxGhPjuFqQ40IZFDcpB8/ColorTypes.js\";\nimport { cssNames } from \"https://framerusercontent.com/modules/TX86aFhJkp7QQdu53ihh/zfjcUuwTCGFoDn2Irmmj/CSSNames.js\";\nexport { Color };\nconst cache = new Map(); /**\n                         * The Color function can be used to define colors, either as a string value or as an object. All colors\n                         * are converted to a Color object with `r, g, b`, `h, s, l` and an `a` value.\n                         * There are also various helpers on the Color function for working with,\n                         * modifying and detecting colors.\n                         *\n                         * ```jsx\n                         * // HEX\n                         * const blue = Color(\"#0099FF\")\n                         *\n                         * // RGB\n                         * const blue = Color(\"rgb(0, 153, 255)\")\n                         * const blue = Color(0, 153, 255)\n                         * const blue = Color({r: 0, g: 153, b: 255})\n                         * const blue = Color({r: 0, g: 153, b: 255, a: 1})\n                         *\n                         * // HSL\n                         * const blue = Color(\"hsl(204, 100%, 50%)\")\n                         * const blue = Color({h: 204, s: 1, l: 0.5})\n                         * const blue = Color({h: 204, s: 1, l: 0.5, a: 1})\n                         * ```\n                         * @public\n                         */\nfunction Color(color, r, g, b) {\n  if (typeof color === \"string\") {\n    let c = cache.get(color);\n    if (c) return c;\n    c = createColor(color);\n    if (c === undefined) return {\n      ...Color(\"black\"),\n      isValid: false\n    };\n    cache.set(color, c) // TODO: should be frozen?\n    ;\n    return c;\n  }\n  const created = createColor(color, r, g, b);\n  return created !== undefined ? created : {\n    ...Color(\"black\"),\n    isValid: false\n  };\n}\nfunction createColor(color, r, g, b) {\n  if (color === \"\") return undefined;\n  const colorData = getCompleteColorStrategy(color, r, g, b);\n  if (colorData) {\n    const newColor = {\n      r: colorData.r,\n      g: colorData.g,\n      b: colorData.b,\n      a: colorData.a,\n      h: colorData.h,\n      s: colorData.s,\n      l: colorData.l,\n      initialValue: typeof color === \"string\" && colorData.format !== ColorFormat.HSV ? color : undefined,\n      roundA: Math.round(100 * colorData.a) / 100,\n      format: colorData.format,\n      mix: Color.mix,\n      toValue: () => Color.toRgbString(newColor)\n    };\n    return newColor;\n  } else {\n    return undefined;\n  }\n}\n(function (Color1) {\n  function inspect(color, initialValue) {\n    if (color.format === ColorFormat.HSL) {\n      return `<${color.constructor.name} h:${color.h} s:${color.s} l:${color.l} a:${color.a}>`;\n    } else if (color.format === ColorFormat.HEX || color.format === ColorFormat.NAME) {\n      return `<${color.constructor.name} \"${initialValue}\">`;\n    } else {\n      return `<${color.constructor.name} r:${color.r} g:${color.g} b:${color.b} a:${color.a}>`;\n    }\n  }\n  Color1.inspect = inspect;\n  function isColor(color) {\n    if (typeof color === \"string\") {\n      return Color.isColorString(color);\n    } else {\n      return Color.isColorObject(color);\n    }\n  }\n  Color1.isColor = isColor;\n  function isColorString(colorString) {\n    if (typeof colorString === \"string\") {\n      return stringToObject(colorString) !== false;\n    }\n    return false;\n  }\n  Color1.isColorString = isColorString;\n  function isColorObject(color) {\n    return color && typeof color !== \"string\" && typeof color.r === \"number\" && typeof color.g === \"number\" && typeof color.b === \"number\" && typeof color.h === \"number\" && typeof color.s === \"number\" && typeof color.l === \"number\" && typeof color.a === \"number\" && typeof color.roundA === \"number\" && typeof color.format === \"string\";\n  }\n  Color1.isColorObject = isColorObject;\n  function toString(color) {\n    return Color.toRgbString(color);\n  }\n  Color1.toString = toString;\n  function toHex(color, allow3Char = false) {\n    return rgbToHex(color.r, color.g, color.b, allow3Char);\n  }\n  Color1.toHex = toHex;\n  function toHexString(color, allow3Char = false) {\n    return `#${Color.toHex(color, allow3Char)}`;\n  }\n  Color1.toHexString = toHexString;\n  function toRgbString(color) {\n    return color.a === 1 ? \"rgb(\" + Math.round(color.r) + \", \" + Math.round(color.g) + \", \" + Math.round(color.b) + \")\" : \"rgba(\" + Math.round(color.r) + \", \" + Math.round(color.g) + \", \" + Math.round(color.b) + \", \" + color.roundA + \")\";\n  }\n  Color1.toRgbString = toRgbString;\n  function toHusl(color) {\n    return {\n      ...rgbToHsluv(color.r, color.g, color.b),\n      a: color.roundA\n    };\n  }\n  Color1.toHusl = toHusl;\n  function toHslString(color) {\n    const hsl = Color.toHsl(color);\n    const h = Math.round(hsl.h);\n    const s = Math.round(hsl.s * 100);\n    const l = Math.round(hsl.l * 100);\n    return color.a === 1 ? \"hsl(\" + h + \", \" + s + \"%, \" + l + \"%)\" : \"hsla(\" + h + \", \" + s + \"%, \" + l + \"%, \" + color.roundA + \")\";\n  }\n  Color1.toHslString = toHslString;\n  function toHsv(color) {\n    const hsv = rgbToHsv(color.r, color.g, color.b);\n    return {\n      h: hsv.h * 360,\n      s: hsv.s,\n      v: hsv.v,\n      a: color.a\n    };\n  }\n  Color1.toHsv = toHsv;\n  function toHsvString(color) {\n    const hsv = rgbToHsv(color.r, color.g, color.b);\n    const h = Math.round(hsv.h * 360);\n    const s = Math.round(hsv.s * 100);\n    const v = Math.round(hsv.v * 100);\n    return color.a === 1 ? \"hsv(\" + h + \", \" + s + \"%, \" + v + \"%)\" : \"hsva(\" + h + \", \" + s + \"%, \" + v + \"%, \" + color.roundA + \")\";\n  }\n  Color1.toHsvString = toHsvString;\n  function toName(color) {\n    if (color.a === 0) {\n      return \"transparent\";\n    }\n    if (color.a < 1) {\n      return false;\n    }\n    const hex = rgbToHex(color.r, color.g, color.b, true);\n    for (const key of Object.keys(cssNames)) {\n      const value = cssNames[key];\n      if (value === hex) {\n        return key;\n      }\n    }\n    return false;\n  }\n  Color1.toName = toName;\n  function toHsl(color) {\n    return {\n      h: Math.round(color.h),\n      s: color.s,\n      l: color.l,\n      a: color.a\n    };\n  }\n  Color1.toHsl = toHsl;\n  function toRgb(color) {\n    return {\n      r: Math.round(color.r),\n      g: Math.round(color.g),\n      b: Math.round(color.b),\n      a: color.a\n    };\n  }\n  Color1.toRgb = toRgb;\n  function brighten(color, amount = 10) {\n    const rgb = Color.toRgb(color);\n    rgb.r = Math.max(0, Math.min(255, rgb.r - Math.round(255 * -(amount / 100))));\n    rgb.g = Math.max(0, Math.min(255, rgb.g - Math.round(255 * -(amount / 100))));\n    rgb.b = Math.max(0, Math.min(255, rgb.b - Math.round(255 * -(amount / 100))));\n    return Color(rgb);\n  }\n  Color1.brighten = brighten;\n  function lighten(color, amount = 10) {\n    const hsl = Color.toHsl(color);\n    hsl.l += amount / 100;\n    hsl.l = Math.min(1, Math.max(0, hsl.l));\n    return Color(hsl);\n  }\n  Color1.lighten = lighten;\n  function darken(color, amount = 10) {\n    const hsl = Color.toHsl(color);\n    hsl.l -= amount / 100;\n    hsl.l = Math.min(1, Math.max(0, hsl.l));\n    return Color(hsl);\n  }\n  Color1.darken = darken;\n  function saturate(color, amount = 10) {\n    const hsl = Color.toHsl(color);\n    hsl.s += amount / 100;\n    hsl.s = Math.min(1, Math.max(0, hsl.s));\n    return Color(hsl);\n  }\n  Color1.saturate = saturate;\n  function desaturate(color, amount = 10) {\n    const hsl = Color.toHsl(color);\n    hsl.s -= amount / 100;\n    hsl.s = Math.min(1, Math.max(0, hsl.s));\n    return Color(hsl);\n  }\n  Color1.desaturate = desaturate;\n  function grayscale(color) {\n    return Color.desaturate(color, 100);\n  }\n  Color1.grayscale = grayscale;\n  function hueRotate(color, angle) {\n    const hsl = Color.toHsl(color);\n    hsl.h += angle;\n    hsl.h = hsl.h > 360 ? hsl.h - 360 : hsl.h;\n    return Color(hsl);\n  }\n  Color1.hueRotate = hueRotate;\n  function alpha(color, a = 1) {\n    return Color({\n      r: color.r,\n      g: color.g,\n      b: color.b,\n      a: a\n    });\n  }\n  Color1.alpha = alpha;\n  function transparent(color) {\n    return Color.alpha(color, 0);\n  }\n  Color1.transparent = transparent;\n  function multiplyAlpha(color, alphaValue = 1) {\n    return Color({\n      r: color.r,\n      g: color.g,\n      b: color.b,\n      a: color.a * alphaValue\n    });\n  }\n  Color1.multiplyAlpha = multiplyAlpha;\n  function interpolate(colorA, colorB, model = ColorMixModelType.RGB) {\n    if (!Color.isColorObject(colorA) || !Color.isColorObject(colorB)) {\n      throw new TypeError(\"Both arguments for Color.interpolate must be Color objects\");\n    }\n    return progress => {\n      const color = Color.mixAsColor(colorA, colorB, progress, false, model);\n      return color;\n    };\n  }\n  Color1.interpolate = interpolate;\n  function mix(from, toColor, {\n    model = ColorMixModelType.RGB\n  } = {}) {\n    const fromColor = typeof from === \"string\" ? Color(from) : from;\n    const mixer = Color.interpolate(fromColor, toColor, model);\n    return p => Color.toRgbString(mixer(p));\n  }\n  Color1.mix = mix;\n  function mixAsColor(colorA, colorB, fraction = .5, limit = false, model = ColorMixModelType.RGB) {\n    let result = null;\n    if (ColorMixModel.isRGB(model)) {\n      // rgb model\n      result = Color({\n        r: modulate(fraction, [0, 1], [colorA.r, colorB.r], limit),\n        g: modulate(fraction, [0, 1], [colorA.g, colorB.g], limit),\n        b: modulate(fraction, [0, 1], [colorA.b, colorB.b], limit),\n        a: modulate(fraction, [0, 1], [colorA.a, colorB.a], limit)\n      });\n    } else {\n      let hslA, hslB;\n      if (ColorMixModel.isHSL(model)) {\n        // hsl model\n        hslA = Color.toHsl(colorA);\n        hslB = Color.toHsl(colorB);\n      } else {\n        // husl model\n        hslA = Color.toHusl(colorA);\n        hslB = Color.toHusl(colorB);\n      }\n      if (hslA.s === 0) {\n        hslA.h = hslB.h;\n      } else if (hslB.s === 0) {\n        hslB.h = hslA.h;\n      }\n      const fromH = hslA.h;\n      const toH = hslB.h;\n      let deltaH = toH - fromH;\n      if (deltaH > 180) {\n        deltaH = toH - 360 - fromH;\n      } else if (deltaH < -180) {\n        deltaH = toH + 360 - fromH;\n      }\n      const tween = {\n        h: modulate(fraction, [0, 1], [fromH, fromH + deltaH], limit),\n        s: modulate(fraction, [0, 1], [hslA.s, hslB.s], limit),\n        l: modulate(fraction, [0, 1], [hslA.l, hslB.l], limit),\n        a: modulate(fraction, [0, 1], [colorA.a, colorB.a], limit)\n      };\n      if (ColorMixModel.isHSL(model)) {\n        // hsl model\n        result = Color(tween);\n      } else {\n        // husl model\n        result = Color(rgbaFromHusl(tween.h, tween.s, tween.l, tween.a));\n      }\n    }\n    return result;\n  }\n  Color1.mixAsColor = mixAsColor;\n  function random(alphaValue = 1) {\n    function gen() {\n      return Math.floor(Math.random() * 255);\n    }\n    return Color(\"rgba(\" + gen() + \", \" + gen() + \", \" + gen() + \", \" + alphaValue + \")\");\n  }\n  Color1.random = random;\n  function grey(amount = .5, alphaValue = 1) {\n    amount = Math.floor(amount * 255);\n    return Color(\"rgba(\" + amount + \", \" + amount + \", \" + amount + \", \" + alphaValue + \")\");\n  }\n  Color1.grey = grey;\n  var gray = Color1.gray = Color.grey;\n  function rgbToHsl(r, g, b) {\n    return rgbToHslConverter(r, g, b);\n  }\n  Color1.rgbToHsl = rgbToHsl;\n  var isValidColorProperty = Color1.isValidColorProperty = function (name, value) {\n    const isColorKey = name.toLowerCase().slice(-5) === \"color\" || name === \"fill\" || name === \"stroke\";\n    if (isColorKey && typeof value === \"string\" && Color.isColorString(value)) {\n      return true;\n    }\n    return false;\n  };\n  function difference(colorA, colorB) {\n    const _r = (colorA.r + colorB.r) / 2;\n    const deltaR = colorA.r - colorB.r;\n    const deltaG = colorA.g - colorB.g;\n    const deltaB = colorA.b - colorB.b;\n    const deltaR2 = Math.pow(deltaR, 2);\n    const deltaG2 = Math.pow(deltaG, 2);\n    const deltaB2 = Math.pow(deltaB, 2);\n    return Math.sqrt(2 * deltaR2 + 4 * deltaG2 + 3 * deltaB2 + _r * (deltaR2 - deltaB2) / 256);\n  }\n  Color1.difference = difference;\n  function equal(colorA, colorB, tolerance = .1) {\n    if (Math.abs(colorA.r - colorB.r) >= tolerance) {\n      return false;\n    }\n    if (Math.abs(colorA.g - colorB.g) >= tolerance) {\n      return false;\n    }\n    if (Math.abs(colorA.b - colorB.b) >= tolerance) {\n      return false;\n    }\n    if (Math.abs(colorA.a - colorB.a) * 256 >= tolerance) {\n      return false;\n    }\n    return true;\n  }\n  Color1.equal = equal;\n})(Color || (Color = {}));\nconst ColorMixModel = {\n  isRGB(colorModel) {\n    return colorModel === ColorMixModelType.RGB || colorModel === ColorMixModelType.RGBA;\n  },\n  isHSL(colorModel) {\n    return colorModel === ColorMixModelType.HSL || colorModel === ColorMixModelType.HSLA;\n  }\n}; // helpers\nfunction getCompleteColorStrategy(colorOrR, g, b, a = 1) {\n  let completeColor; // RGB arguments have higher priority\n  if (typeof colorOrR === \"number\" && !Number.isNaN(colorOrR) && typeof g === \"number\" && !Number.isNaN(g) && typeof b === \"number\" && !Number.isNaN(b)) {\n    // color used as red - Color(255, 255, 255)\n    const _r = colorOrR;\n    const _g = g;\n    const _b = b;\n    const _a = a;\n    completeColor = getCompleteColorFromRGB({\n      r: _r,\n      g: _g,\n      b: _b,\n      a: _a\n    });\n  } else if (typeof colorOrR === \"string\") {\n    // valid CSS color (including functions)\n    completeColor = getCompleteColorFromString(colorOrR);\n  } else if (typeof colorOrR === \"object\") {\n    // eslint-disable-next-line no-prototype-builtins\n    if (colorOrR.hasOwnProperty(\"r\") && colorOrR.hasOwnProperty(\"g\") && colorOrR.hasOwnProperty(\"b\")) {\n      completeColor = getCompleteColorFromRGB(colorOrR);\n    } else {\n      completeColor = getCompleteColorFromHSL(colorOrR);\n    }\n  }\n  return completeColor;\n}\nfunction getCompleteColorFromString(color) {\n  const result = stringToObject(color);\n  if (result) {\n    if (result.format === ColorFormat.HSL) {\n      return getCompleteColorFromHSL(result);\n    } else if (result.format === ColorFormat.HSV) {\n      return getCompleteColorFromHSV(result);\n    } else {\n      return getCompleteColorFromRGB(result);\n    }\n  }\n}\nfunction getCompleteColorFromHSV(color) {\n  const rgb = hsvToRgb(color.h, color.s, color.v);\n  const hsl = rgbToHslConverter(rgb.r, rgb.g, rgb.b);\n  return {\n    ...hsl,\n    ...rgb,\n    format: ColorFormat.RGB,\n    a: color.a !== undefined ? correctAlpha(color.a) : 1\n  };\n}\nfunction getCompleteColorFromRGB(color) {\n  const rgb = rgbToRgb(color.r, color.g, color.b);\n  const hsl = rgbToHslConverter(rgb.r, rgb.g, rgb.b);\n  return {\n    ...hsl,\n    ...rgb,\n    format: ColorFormat.RGB,\n    a: color.a !== undefined ? correctAlpha(color.a) : 1\n  };\n}\nfunction getCompleteColorFromHSL(color) {\n  let h;\n  let s;\n  let l;\n  let rgb = {\n    r: 0,\n    g: 0,\n    b: 0\n  };\n  let hsl = {\n    h: 0,\n    s: 0,\n    l: 0\n  };\n  h = isNumeric(color.h) ? color.h : 0;\n  h = (h + 360) % 360;\n  s = isNumeric(color.s) ? color.s : 1;\n  if (typeof color.s === \"string\") {\n    s = numberFromString(color.s);\n  }\n  l = isNumeric(color.l) ? color.l : .5;\n  if (typeof color.l === \"string\") {\n    l = numberFromString(color.l);\n  }\n  rgb = hslToRgb(h, s, l);\n  hsl = {\n    h: h,\n    s: s,\n    l: l\n  };\n  return {\n    ...rgb,\n    ...hsl,\n    a: color.a === undefined ? 1 : color.a,\n    format: ColorFormat.HSL\n  };\n}\nfunction correctAlpha(alphaValue) {\n  alphaValue = parseFloat(alphaValue);\n  if (alphaValue < 0) {\n    alphaValue = 0;\n  }\n  if (isNaN(alphaValue) || alphaValue > 1) {\n    alphaValue = 1;\n  }\n  return alphaValue;\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"ColorMixOptions\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"Color\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { addPropertyControls, ControlType } from \"framer\";\nimport { cubicCoordinates, stepsCoordinates } from \"easing-coordinates\";\nimport { Color } from \"https://framerusercontent.com/modules/qiOMLkGzzn6IBxv1YYfP/noQ6pjsCrIpLUsDOg0GQ/Color.js\";\nimport { ColorMixModelType } from \"https://framerusercontent.com/modules/asGZ46WGkVm3oJVhw594/WxGhPjuFqQ40IZFDcpB8/ColorTypes.js\"; /**\n                                                                                                                                   * EASING FOR FRAMER\n                                                                                                                                   * By Benjamin den Boer\n                                                                                                                                   * @framerIntrinsicWidth 200\n                                                                                                                                   * @framerIntrinsicHeight 200\n                                                                                                                                   * @framerDisableUnlink\n                                                                                                                                   *\n                                                                                                                                   * @framerSupportedLayoutWidth fixed\n                                                                                                                                   * @framerSupportedLayoutHeight fixed\n                                                                                                                                   */\nexport default function EasingGradient({\n  from,\n  to,\n  angle,\n  stops,\n  mode,\n  radius,\n  easeString,\n  easeCustom,\n  easing\n}) {\n  // Curves\n  let coordinates;\n  const customBezier = easeCustom.split(\",\").map(Number);\n  if (easeString) {\n    if (easing === \"steps\") {\n      coordinates = stepsCoordinates(stops, \"skip-none\");\n    } else {\n      const {\n        x1,\n        y1,\n        x2,\n        y2\n      } = easeMap[easing];\n      coordinates = cubicCoordinates(x1, y1, x2, y2, stops);\n    }\n  } else {\n    coordinates = cubicCoordinates(customBezier[0], customBezier[1], customBezier[2], customBezier[3], stops);\n  }\n  const allStops = coordinates.map(({\n    x,\n    y\n  }) => {\n    const startColor = Color(from);\n    const endColor = Color(to);\n    let colorMode = ColorMixModelType.HSLA;\n    if (mode === \"hsla\") {\n      colorMode = ColorMixModelType.HSLA;\n    }\n    if (mode === \"rgba\") {\n      colorMode = ColorMixModelType.RGBA;\n    }\n    if (mode === \"husl\") {\n      colorMode = ColorMixModelType.HUSL;\n    }\n    const blend = Color.interpolate(startColor, endColor, colorMode);\n    const color = Color.toHslString(blend(y));\n    return `${color} ${x * 100}%`;\n  });\n  const gradient = `linear-gradient(${angle}deg, ${allStops.join(\", \")})`;\n  return /*#__PURE__*/_jsx(\"div\", {\n    style: {\n      width: \"100%\",\n      height: \"100%\",\n      borderRadius: radius,\n      backgroundImage: gradient\n    }\n  });\n}\n;\nEasingGradient.displayName = \"Easing Gradient\";\nEasingGradient.defaultProps = {\n  from: \"#FB0\",\n  to: \"#90F\",\n  angle: 0,\n  stops: 5,\n  easeString: true,\n  easing: \"ease-in-out\",\n  mode: \"husl\",\n  radius: 0,\n  easeCustom: \"0.645, 0.045, 0.355, 1\"\n};\naddPropertyControls(EasingGradient, {\n  from: {\n    type: ControlType.Color,\n    title: \"Start\"\n  },\n  to: {\n    type: ControlType.Color,\n    title: \"End\"\n  },\n  angle: {\n    type: ControlType.Number,\n    title: \"Angle\",\n    min: 0,\n    max: 360,\n    unit: \"\\xb0\",\n    displayStepper: true,\n    step: 15\n  },\n  stops: {\n    type: ControlType.Number,\n    title: \"Stops\",\n    max: 100,\n    min: 2,\n    displayStepper: true\n  },\n  easeString: {\n    type: ControlType.Boolean,\n    title: \"Ease\",\n    enabledTitle: \"Preset\",\n    disabledTitle: \"Custom\"\n  },\n  easing: {\n    type: ControlType.Enum,\n    title: \"Preset\",\n    hidden(props) {\n      return props.easeString === false;\n    },\n    options: [\"linear\", \"ease\", \"ease-in\", \"ease-out\", \"ease-in-out\", \"steps\"],\n    optionTitles: [\"Linear\", \"Ease\", \"Ease In\", \"Ease Out\", \"Ease In Out\", \"Steps\"]\n  },\n  easeCustom: {\n    type: ControlType.String,\n    title: \"Bezier\",\n    placeholder: \"Cubic Bezier Values\",\n    hidden(props) {\n      return props.easeString === true;\n    }\n  },\n  mode: {\n    type: ControlType.Enum,\n    title: \"Mode\",\n    options: [\"hsla\", \"husl\", \"rgba\"],\n    optionTitles: [\"HSLA\", \"HUSL\", \"RGBA\"]\n  },\n  radius: {\n    type: ControlType.Number,\n    title: \"Radius\",\n    min: 0,\n    max: 1e3\n  }\n});\nconst easeMap = {\n  \"ease-in-out\": {\n    x1: .42,\n    y1: 0,\n    x2: .58,\n    y2: 1\n  },\n  \"ease-out\": {\n    x1: 0,\n    y1: 0,\n    x2: .58,\n    y2: 1\n  },\n  \"ease-in\": {\n    x1: .42,\n    y1: 0,\n    x2: 1,\n    y2: 1\n  },\n  ease: {\n    x1: .25,\n    y1: .1,\n    x2: .25,\n    y2: 1\n  },\n  linear: {\n    x1: .25,\n    y1: .25,\n    x2: .75,\n    y2: .75\n  }\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"EasingGradient\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerDisableUnlink\": \"*\",\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerIntrinsicWidth\": \"200\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerIntrinsicHeight\": \"200\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./EasingGradient.map", "// Generated by Framer (937e5b9)\nimport { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, PropertyOverrides, removeHiddenBreakpointLayers, resolveLink, RichText, useActiveVariantCallback, useHydratedBreakpointVariants, useLocaleInfo, useOverlayState, useRouteElementId, useRouter, withCSS, withFX } from \"framer\";\nimport { AnimatePresence, LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport Arc from \"https://framerusercontent.com/modules/4S4SnR1GdEzX95H1h5mT/TDb0qbFhtN7SkrM58svb/Arc.js\";\nimport Ticker from \"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/ddeyjQ2r9Xibg9wdL56v/Ticker.js\";\nimport Embed from \"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";\nimport EasingGradient from \"https://framerusercontent.com/modules/TqPeWj5f410fFZQ7gAgf/qKhK4bnhsmwaenV1TcQz/EasingGradient.js\";\nimport { Icon as Phosphor } from \"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/H4OHcdXxZyPVKySUy1y2/Phosphor.js\";\nimport List from \"https://framerusercontent.com/modules/aQDYC3PQPG7kinTRRakT/3j8omjaKY9jsNUfnrhyu/bkf_3iqYh.js\";\nimport FeatureBlock from \"https://framerusercontent.com/modules/qZHdDt2MpqEBtcZQsbSH/IeNUfLYwQgJ1fWi5cT63/cRJt9HLAk.js\";\nimport CookiesBanner from \"https://framerusercontent.com/modules/1kZutLuKnsFwynXuzenR/B7KNh6bTVR4Ckr4y48Hj/dUdtlYpYf.js\";\nimport Topbar from \"https://framerusercontent.com/modules/6GyFvqyrplqVgTw5NNy3/oJw60hOqXEqx6T1RBCKT/lWUcIJP0H.js\";\nimport Footer from \"https://framerusercontent.com/modules/8VbC3MjeAE8kqCzbMaWH/TkwP0otdqEVCRTCWa9iy/M82dauGNX.js\";\nimport CTA from \"https://framerusercontent.com/modules/gp0LMwvVmwtT3jiu6j7y/zlcH9VnLG0OD40t6EPij/OlTWqYMo3.js\";\nimport Button from \"https://framerusercontent.com/modules/k8eyIOjEKDKO96jXUggo/icsgzgi7u0fx0uecxIIW/Tnz4seCKc.js\";\nimport { getCookieStatus } from \"https://framerusercontent.com/modules/C6ffqpE0oPad1iIUW1c4/XfFMAQGkruYuQiED0MI7/Cookie.js\";\nimport * as sharedStyle3 from \"https://framerusercontent.com/modules/sVnNPy046ue8sr67v7Ui/JN4p7ZSaWJuWfAp58yEp/pbkah0okA.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/IfIXlxvBdaKybNGOXT8X/DEIuyU57n5rUMuMiLDJw/PhXs23ONo.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/xSVz1oYpJG64cP721nQO/anTB8Wzy4uzemYLYKxqW/puB8kY46u.js\";\nimport * as sharedStyle5 from \"https://framerusercontent.com/modules/yup7JxhRDNGppb8wU9l2/hFIwnGTat2wodWKtTxr7/pzgAh97sX.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/oEeQYyYQzCHGgdH3zLRu/GB5yZWsHrINZd23gvI3G/qW7yqrxL2.js\";\nimport * as sharedStyle4 from \"https://framerusercontent.com/modules/hnX12Znae672vSYu4BSt/dDfYOpgbhaHgVn4tMSFD/xZndidUCt.js\";\nimport * as sharedStyle6 from \"https://framerusercontent.com/modules/8Zsq9FV0lrgkWyUeOHUd/oESww6dSADDdpfCqV9wI/YAP816Y5n.js\";\nimport * as sharedStyle7 from \"https://framerusercontent.com/modules/mOBJVIqNmKqhFqiiv64z/aPvHrmWJKOmOhBXVICgO/zFV_Olyc4.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/8umrU9vHjkuozC0mKP4R/c6OFyqds5uJSmG4ahBmZ/augiA20Il.js\";\nconst TopbarFonts = getFonts(Topbar);\nconst MotionDivWithFX = withFX(motion.div);\nconst ButtonFonts = getFonts(Button);\nconst ArcFonts = getFonts(Arc);\nconst FeatureBlockFonts = getFonts(FeatureBlock);\nconst CTAFonts = getFonts(CTA);\nconst ListFonts = getFonts(List);\nconst TickerFonts = getFonts(Ticker);\nconst ContainerWithFX = withFX(Container);\nconst EasingGradientFonts = getFonts(EasingGradient);\nconst PhosphorFonts = getFonts(Phosphor);\nconst EmbedFonts = getFonts(Embed);\nconst CookiesBannerFonts = getFonts(CookiesBanner);\nconst CookiesBannerGetCookieStatus = getCookieStatus(CookiesBanner);\nconst FooterFonts = getFonts(Footer);\nconst cycleOrder = [\"WQLkyLRf1\", \"Ulru_24ch\", \"jvCw4IpzG\"];\nconst breakpoints = {\n  jvCw4IpzG: \"(max-width: 809px)\",\n  Ulru_24ch: \"(min-width: 810px) and (max-width: 1279px)\",\n  WQLkyLRf1: \"(min-width: 1280px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  jvCw4IpzG: \"framer-v-nj0mn7\",\n  Ulru_24ch: \"framer-v-1feqjcj\",\n  WQLkyLRf1: \"framer-v-72rtr7\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"WQLkyLRf1\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nfunction Overlay({\n  children\n}) {\n  const [visible, setVisible] = useOverlayState();\n  return children({\n    hide: () => setVisible(false),\n    show: () => setVisible(true),\n    toggle: () => setVisible(!visible),\n    visible\n  });\n}\nconst transformTemplate = (_, t) => `translateX(-50%) ${t}`;\nconst animation = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 100\n};\nconst transition1 = {\n  damping: 80,\n  delay: .1,\n  mass: 1,\n  stiffness: 400,\n  type: \"spring\"\n};\nconst animation1 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 100\n};\nconst transformTemplate1 = (_, t) => `perspective(1200px) ${t}`;\nconst transition2 = {\n  damping: 80,\n  delay: .2,\n  mass: 1,\n  stiffness: 400,\n  type: \"spring\"\n};\nconst animation2 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 100\n};\nconst animation3 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 100\n};\nconst animation4 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 100\n};\nconst transformTemplate2 = (_, t) => `translateY(-50%) ${t}`;\nconst transformTemplate3 = (_, t) => `perspective(1200px) translateY(-50%) ${t}`;\nconst animation5 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 0\n};\nconst transition3 = {\n  damping: 80,\n  delay: .4,\n  mass: 1,\n  stiffness: 200,\n  type: \"spring\"\n};\nconst animation6 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition3,\n  x: 0,\n  y: 0\n};\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  Desktop: \"WQLkyLRf1\",\n  Phone: \"jvCw4IpzG\",\n  Tablet: \"Ulru_24ch\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _variant, ref;\n  return {\n    ...props,\n    variant: (ref = (_variant = humanReadableVariantMap[props.variant]) !== null && _variant !== void 0 ? _variant : props.variant) !== null && ref !== void 0 ? ref : \"WQLkyLRf1\"\n  };\n};\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider();\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var ref;\n      (ref = document.querySelector('meta[name=\"viewport\"]')) === null || ref === void 0 ? void 0 : ref.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(metadata1.bodyClassName);\n    }\n  }, []);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const {\n    activeVariantCallback,\n    delay\n  } = useActiveVariantCallback(undefined);\n  const tap42m929 = overlay => activeVariantCallback(async (...args) => {\n    overlay.toggle();\n  });\n  const router = useRouter();\n  const isDisplayed = () => {\n    if (baseVariant === \"jvCw4IpzG\") return !isBrowser();\n    return true;\n  };\n  const id = useRouteElementId(\"H3ZEwzuZX\");\n  const ref1 = React.useRef(null);\n  const id1 = useRouteElementId(\"T3CSSqYEp\");\n  const ref2 = React.useRef(null);\n  const id2 = useRouteElementId(\"E8mzplVt7\");\n  const ref3 = React.useRef(null);\n  const id3 = useRouteElementId(\"LqY1KBASA\");\n  const ref4 = React.useRef(null);\n  const id4 = useRouteElementId(\"wQhl0Hi1_\");\n  const ref5 = React.useRef(null);\n  const isDisplayed1 = () => {\n    if (baseVariant === \"Ulru_24ch\") return !isBrowser();\n    return true;\n  };\n  const isDisplayed2 = () => {\n    if (baseVariant === \"Ulru_24ch\") return true;\n    return !isBrowser();\n  };\n  const id5 = useRouteElementId(\"QC0I9cTKd\");\n  const ref6 = React.useRef(null);\n  const id6 = useRouteElementId(\"uXzBD1hSm\");\n  const ref7 = React.useRef(null);\n  const id7 = useRouteElementId(\"lDX7Krg_Y\");\n  const ref8 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"WQLkyLRf1\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsx(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        className: cx(\"framer-ic5l2\", sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className, sharedStyle4.className, sharedStyle5.className, sharedStyle6.className, sharedStyle7.className),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-72rtr7\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(Container, {\n            className: \"framer-vpjptw-container\",\n            layoutScroll: true,\n            transformTemplate: transformTemplate,\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                jvCw4IpzG: {\n                  variant: \"ZQwaB4_p3\"\n                },\n                Ulru_24ch: {\n                  variant: \"ZQwaB4_p3\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(Topbar, {\n                height: \"100%\",\n                id: \"Ygm8YMedJ\",\n                layoutId: \"Ygm8YMedJ\",\n                link: resolveLink({\n                  hash: \":lDX7Krg_Y\",\n                  webPageId: \"augiA20Il\"\n                }, router),\n                style: {\n                  width: \"100%\"\n                },\n                title: \"\\xdanete a The Array\",\n                variant: \"jRXICbciv\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-66ee6\",\n            \"data-framer-name\": \"Hero\",\n            name: \"Hero\",\n            children: [/*#__PURE__*/_jsxs(MotionDivWithFX, {\n              __framer__animate: {\n                transition: transition1\n              },\n              __framer__animateOnce: true,\n              __framer__enter: animation,\n              __framer__exit: animation1,\n              __framer__styleAppearEffectEnabled: true,\n              __framer__threshold: .5,\n              __perspectiveFX: false,\n              __targetOpacity: 1,\n              className: \"framer-1ulpuz0\",\n              transformTemplate: transformTemplate1,\n              children: [/*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"h1\", {\n                    className: \"framer-styles-preset-mnqs8d\",\n                    \"data-styles-preset\": \"qW7yqrxL2\",\n                    style: {\n                      \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                    },\n                    children: \"\\xdanete a la comunidad que conecta a perfiles expertos con empresas tech\"\n                  })\n                }),\n                className: \"framer-1vo9kp6\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    className: \"framer-styles-preset-11ru2ty\",\n                    \"data-styles-preset\": \"puB8kY46u\",\n                    style: {\n                      \"--framer-text-alignment\": \"left\",\n                      \"--framer-text-color\": \"rgba(255, 255, 255, 0.7)\"\n                    },\n                    children: \"S\\xfamate a The Array y encuentra ayuda, crecimiento y aprendizaje. Trabajar\\xe1s en los proyectos y empresas m\\xe1s top.\"\n                  })\n                }),\n                className: \"framer-162svw6\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })]\n            }), /*#__PURE__*/_jsx(MotionDivWithFX, {\n              __framer__animate: {\n                transition: transition2\n              },\n              __framer__animateOnce: true,\n              __framer__enter: animation,\n              __framer__exit: animation2,\n              __framer__styleAppearEffectEnabled: true,\n              __framer__threshold: .5,\n              __perspectiveFX: false,\n              __targetOpacity: 1,\n              className: \"framer-hb9hqc\",\n              transformTemplate: transformTemplate1,\n              children: /*#__PURE__*/_jsx(Overlay, {\n                children: overlayvoc09q => /*#__PURE__*/_jsx(_Fragment, {\n                  children: /*#__PURE__*/_jsxs(Container, {\n                    className: \"framer-zlzuw6-container\",\n                    children: [/*#__PURE__*/_jsx(Button, {\n                      height: \"100%\",\n                      icon: false,\n                      icon1: \"ArrowFatLinesRight\",\n                      id: \"ULrRGpzY1\",\n                      layoutId: \"ULrRGpzY1\",\n                      link: resolveLink({\n                        hash: \":lDX7Krg_Y\",\n                        webPageId: \"augiA20Il\"\n                      }, router),\n                      tap: tap42m929(overlayvoc09q),\n                      title: \"Quiero unirme\",\n                      variant: \"gSXZ_qzqL\",\n                      width: \"100%\"\n                    }), /*#__PURE__*/_jsx(AnimatePresence, {\n                      children: overlayvoc09q.visible && /*#__PURE__*/_jsx(_Fragment, {\n                        children: /*#__PURE__*/ReactDOM.createPortal( /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(motion.div, {\n                            animate: {\n                              opacity: 1,\n                              transition: {\n                                delay: 0,\n                                duration: 0,\n                                ease: [.5, 0, .88, .77],\n                                type: \"tween\"\n                              }\n                            },\n                            className: \"framer-voc09q\",\n                            exit: {\n                              opacity: 0,\n                              transition: {\n                                delay: 0,\n                                duration: 0,\n                                ease: [.12, .23, .5, 1],\n                                type: \"tween\"\n                              }\n                            },\n                            initial: {\n                              opacity: 0\n                            },\n                            onTap: () => overlayvoc09q.hide()\n                          }, \"f32T6qgSf\")\n                        }), document.querySelector(\"#overlay\"))\n                      })\n                    })]\n                  })\n                })\n              })\n            }), isDisplayed() && /*#__PURE__*/_jsx(Container, {\n              className: \"framer-15v4h58-container hidden-nj0mn7\",\n              children: /*#__PURE__*/_jsx(Arc, {\n                alignmentBaseline: \"bottom\",\n                animate: false,\n                animateDuration: 5,\n                animateEnd: 150,\n                animateStart: -50,\n                color: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n                cylinderHeight: 0,\n                flip: false,\n                font: {\n                  font: \"FORMA DJR DISPLAY\",\n                  fontSize: 10,\n                  fontWeight: 600,\n                  letterSpacing: 3.9,\n                  wordSpacing: 3.9\n                },\n                height: \"100%\",\n                id: \"PzEyNTt_9\",\n                layoutId: \"PzEyNTt_9\",\n                rotate: true,\n                rotateSpeed: 5,\n                slots: [],\n                startOffset: 0,\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                text: \"\u25AA THE ARRAY \u25AA COMUNIDAD GLOBAL\",\n                type: \"circle\",\n                width: \"100%\"\n              })\n            })]\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1s88dr9\",\n            id: id,\n            ref: ref1,\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-mm3quc\",\n              children: [/*#__PURE__*/_jsxs(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-1ekvnt9\",\n                transformTemplate: transformTemplate1,\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    Ulru_24ch: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          className: \"framer-styles-preset-117f9zj\",\n                          \"data-styles-preset\": \"PhXs23ONo\",\n                          children: /*#__PURE__*/_jsxs(\"span\", {\n                            \"data-text-fill\": \"true\",\n                            style: {\n                              backgroundImage: \"linear-gradient(306deg, var(--token-c6ad4137-f14f-4e14-87e0-d228c2e504d6, rgb(251, 9, 223)) 0%, var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) 100%)\"\n                            },\n                            children: [\"Crea. \", /*#__PURE__*/_jsx(\"br\", {}), \"Conoce. \", /*#__PURE__*/_jsx(\"br\", {}), \"Conecta. \", /*#__PURE__*/_jsx(\"br\", {}), \"Comparte.\"]\n                          })\n                        })\n                      })\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h1\", {\n                        className: \"framer-styles-preset-mnqs8d\",\n                        \"data-styles-preset\": \"qW7yqrxL2\",\n                        children: /*#__PURE__*/_jsx(\"span\", {\n                          \"data-text-fill\": \"true\",\n                          style: {\n                            backgroundImage: \"linear-gradient(306deg, var(--token-c6ad4137-f14f-4e14-87e0-d228c2e504d6, rgb(251, 9, 223)) 0%, var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) 100%)\"\n                          },\n                          children: \"Crea. Conoce. Conecta. Comparte.\"\n                        })\n                      })\n                    }),\n                    className: \"framer-1idqim7\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-11ru2ty\",\n                      \"data-styles-preset\": \"puB8kY46u\",\n                      style: {\n                        \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                      },\n                      children: \"Nuestra filosof\\xeda se compone por cuatro letras \u201CC\u201D. Eso es lo que hacemos en nuestra [C]omunidad.\"\n                    })\n                  }),\n                  className: \"framer-wccdff\",\n                  id: id1,\n                  ref: ref2,\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation3,\n                __framer__exit: animation4,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-1kmjld7\",\n                transformTemplate: transformTemplate1,\n                children: [/*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-1whk1ju\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      jvCw4IpzG: {\n                        transformTemplate: undefined\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(Container, {\n                      className: \"framer-1ug68qs-container\",\n                      transformTemplate: transformTemplate2,\n                      children: /*#__PURE__*/_jsx(FeatureBlock, {\n                        height: \"100%\",\n                        icon: \"Cube\",\n                        id: \"ksoNlGSaQ\",\n                        layoutId: \"ksoNlGSaQ\",\n                        style: {\n                          width: \"100%\"\n                        },\n                        subline: \"La comunidad est\\xe1 dirigida y dinamizada por los propios miembros. Apostamos por perfiles l\\xedderes y claves en el sector tech.\",\n                        title: false,\n                        title1: \"\",\n                        variant: \"uyC4wPnxZ\",\n                        width: \"100%\"\n                      })\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-1kg0s9q\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      jvCw4IpzG: {\n                        transformTemplate: transformTemplate1\n                      }\n                    },\n                    children: /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                      __framer__animate: {\n                        transition: transition1\n                      },\n                      __framer__animateOnce: true,\n                      __framer__enter: animation,\n                      __framer__exit: animation1,\n                      __framer__styleAppearEffectEnabled: true,\n                      __framer__threshold: .5,\n                      __perspectiveFX: false,\n                      __targetOpacity: 1,\n                      className: \"framer-1ce6309\",\n                      transformTemplate: transformTemplate3,\n                      children: [/*#__PURE__*/_jsx(Container, {\n                        className: \"framer-17xbz8y-container\",\n                        children: /*#__PURE__*/_jsx(FeatureBlock, {\n                          height: \"100%\",\n                          icon: \"Cube\",\n                          id: \"OfoQ9U3dc\",\n                          layoutId: \"OfoQ9U3dc\",\n                          style: {\n                            width: \"100%\"\n                          },\n                          subline: \"Tendr\\xe1s acceso a las formaciones m\\xe1s actualizadas y demandadas.\",\n                          title: false,\n                          title1: \"\",\n                          variant: \"uyC4wPnxZ\",\n                          width: \"100%\"\n                        })\n                      }), /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-ml3avq-container\",\n                        children: /*#__PURE__*/_jsx(FeatureBlock, {\n                          height: \"100%\",\n                          icon: \"Cube\",\n                          id: \"Jnw8GW8C4\",\n                          layoutId: \"Jnw8GW8C4\",\n                          style: {\n                            width: \"100%\"\n                          },\n                          subline: \"Sabemos que te gusta disfrutar. Por eso organizamos viajes para techies, encuentros digitales y presenciales, charlas, congresos y meet-ups.\",\n                          title: false,\n                          title1: \"\",\n                          variant: \"uyC4wPnxZ\",\n                          width: \"100%\"\n                        })\n                      })]\n                    })\n                  })\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-55uyn9\",\n            children: /*#__PURE__*/_jsxs(MotionDivWithFX, {\n              __framer__animate: {\n                transition: transition1\n              },\n              __framer__animateOnce: true,\n              __framer__enter: animation,\n              __framer__exit: animation1,\n              __framer__styleAppearEffectEnabled: true,\n              __framer__threshold: .5,\n              __perspectiveFX: false,\n              __targetOpacity: 1,\n              className: \"framer-1bvtlmt\",\n              transformTemplate: transformTemplate1,\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-16lax0m\",\n                children: [/*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-1upz35z\",\n                  \"data-border\": true,\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 315,\n                      intrinsicWidth: 500,\n                      loading: \"lazy\",\n                      pixelHeight: 315,\n                      pixelWidth: 500,\n                      src: new URL(\"https://framerusercontent.com/images/sZEVccdEQPJ0rhySkZGyRIuYQQ.png\").href\n                    },\n                    className: \"framer-8osuyx\"\n                  })\n                }), /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-1mk44be\",\n                  \"data-border\": true,\n                  children: /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-136yv0f\",\n                    children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                      breakpoint: baseVariant,\n                      overrides: {\n                        jvCw4IpzG: {\n                          background: {\n                            alt: \"\",\n                            fit: \"fit\",\n                            intrinsicHeight: 614,\n                            intrinsicWidth: 2560,\n                            loading: \"lazy\",\n                            pixelHeight: 614,\n                            pixelWidth: 2560,\n                            sizes: \"100px\",\n                            src: new URL(\"https://framerusercontent.com/images/i0Vb5FonCwKcIHKFZNUDrzqmI.png\").href,\n                            srcSet: `${new URL(\"https://framerusercontent.com/images/i0Vb5FonCwKcIHKFZNUDrzqmI.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/i0Vb5FonCwKcIHKFZNUDrzqmI.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/i0Vb5FonCwKcIHKFZNUDrzqmI.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/i0Vb5FonCwKcIHKFZNUDrzqmI.png\").href} 2560w`\n                          }\n                        }\n                      },\n                      children: /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fit\",\n                          intrinsicHeight: 614,\n                          intrinsicWidth: 2560,\n                          loading: \"lazy\",\n                          pixelHeight: 614,\n                          pixelWidth: 2560,\n                          sizes: \"134px\",\n                          src: new URL(\"https://framerusercontent.com/images/i0Vb5FonCwKcIHKFZNUDrzqmI.png\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/i0Vb5FonCwKcIHKFZNUDrzqmI.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/i0Vb5FonCwKcIHKFZNUDrzqmI.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/i0Vb5FonCwKcIHKFZNUDrzqmI.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/i0Vb5FonCwKcIHKFZNUDrzqmI.png\").href} 2560w`\n                        },\n                        className: \"framer-1w6nnhl\"\n                      })\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-qpg360\",\n                  \"data-border\": true,\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fit\",\n                      intrinsicHeight: 235,\n                      intrinsicWidth: 300,\n                      loading: \"lazy\",\n                      pixelHeight: 235,\n                      pixelWidth: 300,\n                      src: new URL(\"https://framerusercontent.com/images/RsHKmuS0p6yYSNoKwg1gU05XY.png\").href\n                    },\n                    className: \"framer-164wzo0\"\n                  })\n                }), /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-8h9mio\",\n                  \"data-border\": true,\n                  \"data-framer-name\": \"Rows\",\n                  name: \"Rows\",\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fit\",\n                      intrinsicHeight: 462,\n                      intrinsicWidth: 1544,\n                      loading: \"lazy\",\n                      pixelHeight: 462,\n                      pixelWidth: 1544,\n                      sizes: \"98px\",\n                      src: new URL(\"https://framerusercontent.com/images/NtF2nQBhpESEMPQSXthaiUmKh6A.png\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/NtF2nQBhpESEMPQSXthaiUmKh6A.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/NtF2nQBhpESEMPQSXthaiUmKh6A.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/NtF2nQBhpESEMPQSXthaiUmKh6A.png\").href} 1544w`\n                    },\n                    className: \"framer-bi3kgn\"\n                  })\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-qlwy21\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-1tif1bq\",\n                      \"data-styles-preset\": \"pbkah0okA\",\n                      style: {\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"\\xbfReconoces estos logos?\"\n                    })\n                  }),\n                  className: \"framer-t86390\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-21ogod\",\n                      \"data-styles-preset\": \"xZndidUCt\",\n                      style: {\n                        \"--framer-text-color\": \"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"\n                      },\n                      children: \"\\xbfA que s\\xed?, los profesionales y las profesionales de The Array trabajan o han trabajado en proyectos para estas empresas.\"\n                    })\n                  }),\n                  className: \"framer-d4pi8z\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-10rja9v-container\",\n                  children: /*#__PURE__*/_jsx(CTA, {\n                    color: 'var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) /* {\"name\":\"Orange\"} */',\n                    height: \"100%\",\n                    id: \"gPw03m9vd\",\n                    layoutId: \"gPw03m9vd\",\n                    link: resolveLink({\n                      hash: \":GvnFWsAMX\",\n                      webPageId: \"L_0aU_c9q\"\n                    }, router),\n                    title: \"Forma parte de la Comunidad\",\n                    variant: \"DT5wJl0k7\",\n                    width: \"100%\"\n                  })\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1xros1m\",\n            id: id2,\n            ref: ref3,\n            children: /*#__PURE__*/_jsx(MotionDivWithFX, {\n              __framer__animate: {\n                transition: transition1\n              },\n              __framer__animateOnce: true,\n              __framer__enter: animation3,\n              __framer__exit: animation4,\n              __framer__styleAppearEffectEnabled: true,\n              __framer__threshold: .5,\n              __perspectiveFX: false,\n              __targetOpacity: 1,\n              className: \"framer-kshavq\",\n              transformTemplate: transformTemplate1,\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  jvCw4IpzG: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        className: \"framer-styles-preset-117f9zj\",\n                        \"data-styles-preset\": \"PhXs23ONo\",\n                        children: /*#__PURE__*/_jsx(\"span\", {\n                          \"data-text-fill\": \"true\",\n                          style: {\n                            backgroundImage: \"linear-gradient(306deg, var(--token-c6ad4137-f14f-4e14-87e0-d228c2e504d6, rgb(251, 9, 223)) 0%, var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) 100%)\"\n                          },\n                          children: \"Somos la comunidad tech de habla hispana que te conecta con las empresas m\\xe1s top.\"\n                        })\n                      })\n                    })\n                  },\n                  Ulru_24ch: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        className: \"framer-styles-preset-117f9zj\",\n                        \"data-styles-preset\": \"PhXs23ONo\",\n                        children: /*#__PURE__*/_jsx(\"span\", {\n                          \"data-text-fill\": \"true\",\n                          style: {\n                            backgroundImage: \"linear-gradient(306deg, var(--token-c6ad4137-f14f-4e14-87e0-d228c2e504d6, rgb(251, 9, 223)) 0%, var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) 100%)\"\n                          },\n                          children: \"Somos la comunidad tech de habla hispana que te conecta con las empresas m\\xe1s top.\"\n                        })\n                      })\n                    })\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h1\", {\n                      className: \"framer-styles-preset-mnqs8d\",\n                      \"data-styles-preset\": \"qW7yqrxL2\",\n                      children: /*#__PURE__*/_jsx(\"span\", {\n                        \"data-text-fill\": \"true\",\n                        style: {\n                          backgroundImage: \"linear-gradient(306deg, var(--token-c6ad4137-f14f-4e14-87e0-d228c2e504d6, rgb(251, 9, 223)) 0%, var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) 100%)\"\n                        },\n                        children: \"Somos la comunidad tech de habla hispana que te conecta con las empresas m\\xe1s top.\"\n                      })\n                    })\n                  }),\n                  className: \"framer-fxluu8\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1blo9c0\",\n            id: id3,\n            ref: ref4,\n            children: /*#__PURE__*/_jsx(ContainerWithFX, {\n              __framer__animate: {\n                transition: transition3\n              },\n              __framer__animateOnce: true,\n              __framer__enter: animation5,\n              __framer__exit: animation6,\n              __framer__styleAppearEffectEnabled: true,\n              __framer__threshold: .5,\n              __perspectiveFX: false,\n              __targetOpacity: 1,\n              className: \"framer-53hx6k-container\",\n              transformTemplate: transformTemplate1,\n              children: /*#__PURE__*/_jsx(Ticker, {\n                alignment: \"center\",\n                direction: \"left\",\n                fadeOptions: {\n                  fadeAlpha: .5,\n                  fadeContent: true,\n                  fadeInset: 0,\n                  fadeWidth: 50,\n                  overflow: true\n                },\n                gap: 0,\n                height: \"100%\",\n                hoverFactor: 1,\n                id: \"AqIqD_2F6\",\n                layoutId: \"AqIqD_2F6\",\n                padding: 0,\n                paddingBottom: 0,\n                paddingLeft: 0,\n                paddingPerSide: false,\n                paddingRight: 0,\n                paddingTop: 0,\n                sizingOptions: {\n                  heightType: true,\n                  widthType: true\n                },\n                slots: [/*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-duostd\",\n                  children: [/*#__PURE__*/_jsx(Container, {\n                    className: \"framer-ratzfb-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(251, 9, 223, 0.4)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"Code\",\n                      icon2: 'var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255)) /* {\"name\":\"Purple Light\"} */',\n                      id: \"HnT8_xxQF\",\n                      layoutId: \"HnT8_xxQF\",\n                      title: \"Aprendizaje\",\n                      title1: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n                      variant: \"mjSs6PG6L\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-3q7dic-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(251, 9, 223, 0.4)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"TrendUp\",\n                      icon2: 'var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255)) /* {\"name\":\"Purple Light\"} */',\n                      id: \"AhY8kGBD8\",\n                      layoutId: \"AhY8kGBD8\",\n                      title: \"Crecimiento\",\n                      title1: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n                      variant: \"mjSs6PG6L\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-r1ze5w-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(251, 9, 223, 0.4)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CirclesThreePlus\",\n                      icon2: 'var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255)) /* {\"name\":\"Purple Light\"} */',\n                      id: \"AtChWm5nO\",\n                      layoutId: \"AtChWm5nO\",\n                      title: \"Nuevas oportunidades\",\n                      title1: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n                      variant: \"mjSs6PG6L\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-agijil-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(251, 9, 223, 0.4)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"Heart\",\n                      icon2: 'var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255)) /* {\"name\":\"Purple Light\"} */',\n                      id: \"uCVv4t_Ao\",\n                      layoutId: \"uCVv4t_Ao\",\n                      title: \"Apoyo\",\n                      title1: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n                      variant: \"mjSs6PG6L\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-o42ul1-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(251, 9, 223, 0.4)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"GlobeHemisphereEast\",\n                      icon2: 'var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255)) /* {\"name\":\"Purple Light\"} */',\n                      id: \"JeI_yYKR8\",\n                      layoutId: \"JeI_yYKR8\",\n                      title: \"Global\",\n                      title1: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n                      variant: \"mjSs6PG6L\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1a4dync-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(251, 9, 223, 0.4)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CircleDashed\",\n                      icon2: 'var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255)) /* {\"name\":\"Purple Light\"} */',\n                      id: \"eC3suYmzG\",\n                      layoutId: \"eC3suYmzG\",\n                      title: \"Nuevas conexiones\",\n                      title1: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n                      variant: \"mjSs6PG6L\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1l91un7-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(251, 9, 223, 0.4)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"Trophy\",\n                      icon2: 'var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255)) /* {\"name\":\"Purple Light\"} */',\n                      id: \"MR8m4FVJg\",\n                      layoutId: \"MR8m4FVJg\",\n                      title: \"Dirigida por l\\xedderes del sector\",\n                      title1: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n                      variant: \"mjSs6PG6L\",\n                      width: \"100%\"\n                    })\n                  })]\n                })],\n                speed: 35,\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-jca9bx\",\n            id: id4,\n            ref: ref5,\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-a62lqo\",\n              children: [/*#__PURE__*/_jsx(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-6s1n7q\",\n                transformTemplate: transformTemplate1,\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-1b74ta\",\n                      \"data-styles-preset\": \"pzgAh97sX\",\n                      style: {\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\"\n                      },\n                      children: /*#__PURE__*/_jsx(\"span\", {\n                        \"data-text-fill\": \"true\",\n                        style: {\n                          backgroundImage: \"linear-gradient(306deg, var(--token-c6ad4137-f14f-4e14-87e0-d228c2e504d6, rgb(251, 9, 223)) 0%, var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) 100%)\"\n                        },\n                        children: \"EXCLUSIVIDAD PARA LA COMUNIDAD\"\n                      })\n                    })\n                  }),\n                  className: \"framer-dbglro\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-7cz3n3\",\n                transformTemplate: transformTemplate1,\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-1tif1bq\",\n                      \"data-styles-preset\": \"pbkah0okA\",\n                      style: {\n                        \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                      },\n                      children: \"Lo que estabas buscando: los proyectos m\\xe1s top\"\n                    })\n                  }),\n                  className: \"framer-1vq4v4c\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-21ogod\",\n                      \"data-styles-preset\": \"xZndidUCt\",\n                      style: {\n                        \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                      },\n                      children: \"Uni\\xe9ndote a The Array tendr\\xe1s acceso a proyectos tech de las empresas m\\xe1s top de mundo. Para la comunidad, lo mejor.\"\n                    })\n                  }),\n                  className: \"framer-1252mph\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), isDisplayed1() && /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1edt9y0-container hidden-1feqjcj\",\n                  children: /*#__PURE__*/_jsx(Button, {\n                    height: \"100%\",\n                    icon: false,\n                    icon1: \"ArrowFatLinesRight\",\n                    id: \"cxW6JSzzn\",\n                    layoutId: \"cxW6JSzzn\",\n                    link: resolveLink({\n                      hash: \":lDX7Krg_Y\",\n                      webPageId: \"augiA20Il\"\n                    }, router),\n                    title: \"Unirme a The Array\",\n                    variant: \"gSXZ_qzqL\",\n                    width: \"100%\"\n                  })\n                })]\n              }), isDisplayed2() && /*#__PURE__*/_jsx(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-19pwidp hidden-72rtr7 hidden-nj0mn7\",\n                transformTemplate: transformTemplate1,\n                children: /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-nboof8-container\",\n                  children: /*#__PURE__*/_jsx(Button, {\n                    height: \"100%\",\n                    icon: false,\n                    icon1: \"ArrowFatLinesRight\",\n                    id: \"fFMnS10ob\",\n                    layoutId: \"fFMnS10ob\",\n                    link: resolveLink({\n                      hash: \":lDX7Krg_Y\",\n                      webPageId: \"augiA20Il\"\n                    }, router),\n                    title: \"Unirme a The Array\",\n                    variant: \"gSXZ_qzqL\",\n                    width: \"100%\"\n                  })\n                })\n              })]\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-oxnrji\",\n            id: id5,\n            ref: ref6,\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-bs28jz\",\n              children: [/*#__PURE__*/_jsx(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-1389omj\",\n                transformTemplate: transformTemplate1,\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-1b74ta\",\n                      \"data-styles-preset\": \"pzgAh97sX\",\n                      style: {\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\"\n                      },\n                      children: /*#__PURE__*/_jsx(\"span\", {\n                        \"data-text-fill\": \"true\",\n                        style: {\n                          backgroundImage: \"linear-gradient(306deg, var(--token-c6ad4137-f14f-4e14-87e0-d228c2e504d6, rgb(251, 9, 223)) 0%, var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) 100%)\"\n                        },\n                        children: \"todo lo mueve un motor\"\n                      })\n                    })\n                  }),\n                  className: \"framer-gdkjcl\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-15gfuga\",\n                transformTemplate: transformTemplate1,\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsxs(\"h2\", {\n                      className: \"framer-styles-preset-1tif1bq\",\n                      \"data-styles-preset\": \"pbkah0okA\",\n                      style: {\n                        \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                      },\n                      children: [\"Qu\\xe9 nos mueve. \", /*#__PURE__*/_jsx(\"br\", {}), \"Qu\\xe9 nos inspira.\"]\n                    })\n                  }),\n                  className: \"framer-1gwnvsc\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-fsewgb\",\n                  children: [/*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1yvv6ks-container\",\n                    children: /*#__PURE__*/_jsx(EasingGradient, {\n                      angle: 0,\n                      easeCustom: \"0.645, 0.045, 0.355, 1\",\n                      easeString: true,\n                      easing: \"ease-in-out\",\n                      from: \"rgb(231, 90, 38)\",\n                      height: \"100%\",\n                      id: \"AvN8LHCQ7\",\n                      layoutId: \"AvN8LHCQ7\",\n                      mode: \"husl\",\n                      radius: 0,\n                      stops: 5,\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      to: \"rgb(251, 9, 223)\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition1\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation3,\n                    __framer__exit: animation4,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-1l29ede\",\n                    transformTemplate: transformTemplate1,\n                    children: [/*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-25k5wt\",\n                      children: /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-2ew9c9-container\",\n                        children: /*#__PURE__*/_jsx(Phosphor, {\n                          color: 'var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) /* {\"name\":\"Orange\"} */',\n                          height: \"100%\",\n                          iconSearch: \"House\",\n                          iconSelection: \"GlobeHemisphereEast\",\n                          id: \"xbW8wNKmZ\",\n                          layoutId: \"xbW8wNKmZ\",\n                          mirrored: false,\n                          selectByList: true,\n                          style: {\n                            height: \"100%\",\n                            width: \"100%\"\n                          },\n                          weight: \"fill\",\n                          width: \"100%\"\n                        })\n                      })\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-11ru2ty\",\n                          \"data-styles-preset\": \"puB8kY46u\",\n                          style: {\n                            \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                          },\n                          children: \"Somos una comunidad global de personas que creamos, creemos y vivimos de la tecnolog\\xeda.\"\n                        })\n                      }),\n                      className: \"framer-1u2izwq\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition1\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation3,\n                    __framer__exit: animation4,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-1vsi20e\",\n                    transformTemplate: transformTemplate1,\n                    children: [/*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-l7ify0\",\n                      children: /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-14oxuxg-container\",\n                        children: /*#__PURE__*/_jsx(Phosphor, {\n                          color: 'var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) /* {\"name\":\"Orange\"} */',\n                          height: \"100%\",\n                          iconSearch: \"House\",\n                          iconSelection: \"Robot\",\n                          id: \"Tywp_vc3K\",\n                          layoutId: \"Tywp_vc3K\",\n                          mirrored: false,\n                          selectByList: true,\n                          style: {\n                            height: \"100%\",\n                            width: \"100%\"\n                          },\n                          weight: \"fill\",\n                          width: \"100%\"\n                        })\n                      })\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-11ru2ty\",\n                          \"data-styles-preset\": \"puB8kY46u\",\n                          style: {\n                            \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                          },\n                          children: \"No le tememos a lo nuevo, lo perseguimos.\"\n                        })\n                      }),\n                      className: \"framer-zfy6ps\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition1\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation3,\n                    __framer__exit: animation4,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-1hggqkc\",\n                    transformTemplate: transformTemplate1,\n                    children: [/*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-1o5y6cm\",\n                      children: /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-1dbnuni-container\",\n                        children: /*#__PURE__*/_jsx(Phosphor, {\n                          color: 'var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) /* {\"name\":\"Orange\"} */',\n                          height: \"100%\",\n                          iconSearch: \"House\",\n                          iconSelection: \"PuzzlePiece\",\n                          id: \"uS3TdBuwp\",\n                          layoutId: \"uS3TdBuwp\",\n                          mirrored: false,\n                          selectByList: true,\n                          style: {\n                            height: \"100%\",\n                            width: \"100%\"\n                          },\n                          weight: \"fill\",\n                          width: \"100%\"\n                        })\n                      })\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-11ru2ty\",\n                          \"data-styles-preset\": \"puB8kY46u\",\n                          style: {\n                            \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                          },\n                          children: \"Apostamos por la evoluci\\xf3n, el cambio y las nuevas conexiones.\"\n                        })\n                      }),\n                      className: \"framer-v6ixnl\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition1\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation3,\n                    __framer__exit: animation4,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-18b63j5\",\n                    transformTemplate: transformTemplate1,\n                    children: [/*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-97cq9c\",\n                      children: /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-16gux9p-container\",\n                        children: /*#__PURE__*/_jsx(Phosphor, {\n                          color: 'var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) /* {\"name\":\"Orange\"} */',\n                          height: \"100%\",\n                          iconSearch: \"House\",\n                          iconSelection: \"PlusCircle\",\n                          id: \"oAvunc4DO\",\n                          layoutId: \"oAvunc4DO\",\n                          mirrored: false,\n                          selectByList: true,\n                          style: {\n                            height: \"100%\",\n                            width: \"100%\"\n                          },\n                          weight: \"fill\",\n                          width: \"100%\"\n                        })\n                      })\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-11ru2ty\",\n                          \"data-styles-preset\": \"puB8kY46u\",\n                          style: {\n                            \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                          },\n                          children: \"Trabajamos en equipo para conseguir la vida y el mundo que so\\xf1amos.\"\n                        })\n                      }),\n                      className: \"framer-1ufxbyn\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition1\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation3,\n                    __framer__exit: animation4,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-yvj92p\",\n                    transformTemplate: transformTemplate1,\n                    children: [/*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-fbh3nv\",\n                      children: /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-1xqw0z5-container\",\n                        children: /*#__PURE__*/_jsx(Phosphor, {\n                          color: 'var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) /* {\"name\":\"Orange\"} */',\n                          height: \"100%\",\n                          iconSearch: \"House\",\n                          iconSelection: \"Heart\",\n                          id: \"U1U7hg1AK\",\n                          layoutId: \"U1U7hg1AK\",\n                          mirrored: false,\n                          selectByList: true,\n                          style: {\n                            height: \"100%\",\n                            width: \"100%\"\n                          },\n                          weight: \"fill\",\n                          width: \"100%\"\n                        })\n                      })\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-11ru2ty\",\n                          \"data-styles-preset\": \"puB8kY46u\",\n                          style: {\n                            \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                          },\n                          children: \"Apoyamos y respetamos la diversidad.\"\n                        })\n                      }),\n                      className: \"framer-19r4em1\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  })]\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1f91d3p\",\n            id: id6,\n            ref: ref7,\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-wksdyd\",\n              children: [/*#__PURE__*/_jsx(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-o1caf4\",\n                transformTemplate: transformTemplate1,\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-1b74ta\",\n                      \"data-styles-preset\": \"pzgAh97sX\",\n                      style: {\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\"\n                      },\n                      children: /*#__PURE__*/_jsx(\"span\", {\n                        \"data-text-fill\": \"true\",\n                        style: {\n                          backgroundImage: \"linear-gradient(306deg, var(--token-c6ad4137-f14f-4e14-87e0-d228c2e504d6, rgb(251, 9, 223)) 0%, var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) 100%)\"\n                        },\n                        children: \"QUi\\xe9nes somos\"\n                      })\n                    })\n                  }),\n                  className: \"framer-5f2gz1\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-qqxsh2\",\n                transformTemplate: transformTemplate1,\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-1tif1bq\",\n                      \"data-styles-preset\": \"pbkah0okA\",\n                      style: {\n                        \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                      },\n                      children: \"Con\\xf3ce[nos]\"\n                    })\n                  }),\n                  className: \"framer-16xmnz6\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsxs(React.Fragment, {\n                    children: [/*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-21ogod\",\n                      \"data-styles-preset\": \"xZndidUCt\",\n                      style: {\n                        \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                      },\n                      children: \"Somos una comunidad de profesionales IT de habla hispana. No nos importa si est\\xe1s en La Patagonia o en Teruel.\"\n                    }), /*#__PURE__*/_jsxs(\"p\", {\n                      className: \"framer-styles-preset-21ogod\",\n                      \"data-styles-preset\": \"xZndidUCt\",\n                      children: [/*#__PURE__*/_jsx(\"br\", {}), /*#__PURE__*/_jsx(\"span\", {\n                        style: {\n                          \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                        },\n                        children: \"Si tu teclado tiene una letra \u201C\\xf1\u201D, puedes sumarte a The Array y acceder a las empresas l\\xedderes del mercado tech en el mundo.\"\n                      })]\n                    })]\n                  }),\n                  className: \"framer-1p8bw74\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-vpvr6\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1qhgcs4\",\n              children: [/*#__PURE__*/_jsx(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-xg2rxf\",\n                transformTemplate: transformTemplate1,\n                children: /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-gck092\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h1\", {\n                        className: \"framer-styles-preset-3nqyhf\",\n                        \"data-styles-preset\": \"YAP816Y5n\",\n                        children: /*#__PURE__*/_jsx(\"span\", {\n                          \"data-text-fill\": \"true\",\n                          style: {\n                            backgroundImage: \"linear-gradient(285deg, var(--token-c6ad4137-f14f-4e14-87e0-d228c2e504d6, rgb(251, 9, 223)) 0%, var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) 100%)\"\n                          },\n                          children: \"Por qu\\xe9 sumarte a The Array\"\n                        })\n                      })\n                    }),\n                    className: \"framer-r2wyl4\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-11ru2ty\",\n                        \"data-styles-preset\": \"puB8kY46u\",\n                        style: {\n                          \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                        },\n                        children: \"La versi\\xf3n corta es que encontrar\\xe1s ayuda, aprendizaje, crecimiento y oportunidades laborales.\"\n                      })\n                    }),\n                    className: \"framer-1pbfjef\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })\n              }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-1rk63pc\",\n                transformTemplate: transformTemplate1,\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h3\", {\n                      className: \"framer-styles-preset-13xnbb0\",\n                      \"data-styles-preset\": \"zFV_Olyc4\",\n                      style: {\n                        \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                      },\n                      children: \"La versi\\xf3n (un poco) m\\xe1s larga\"\n                    })\n                  }),\n                  className: \"framer-12zm6kn\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-21ogod\",\n                      \"data-styles-preset\": \"xZndidUCt\",\n                      style: {\n                        \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                      },\n                      children: \"Te vamos a llevar a donde siempre has querido estar. Lo haremos en equipo, como una comunidad. Te daremos las herramientas, el conocimiento y, sobre todo, las conexiones para que seas capaz de mostrarle al mundo lo que eres capaz de hacer. Te ayudaremos a desatar tu potencial.\"\n                    })\n                  }),\n                  className: \"framer-11e4sp8\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1isya6\",\n            id: id7,\n            ref: ref8,\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1tez7ge\",\n              children: [/*#__PURE__*/_jsxs(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-15iaft6\",\n                transformTemplate: transformTemplate1,\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-1tif1bq\",\n                      \"data-styles-preset\": \"pbkah0okA\",\n                      style: {\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"var(--token-9133d002-861b-4e56-9ea4-0a0a8b0421f5, rgb(3, 29, 68))\"\n                      },\n                      children: \"Forma parte de la comunidad\"\n                    })\n                  }),\n                  className: \"framer-vchohe\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-11ru2ty\",\n                      \"data-styles-preset\": \"puB8kY46u\",\n                      style: {\n                        \"--framer-text-alignment\": \"center\"\n                      },\n                      children: \"Somos m\\xe1s de 300 profesionales\"\n                    })\n                  }),\n                  className: \"framer-1r4rgp7\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              }), /*#__PURE__*/_jsx(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-ztlkrj\",\n                transformTemplate: transformTemplate1,\n                children: /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-vccmx9-container\",\n                  children: /*#__PURE__*/_jsx(Embed, {\n                    height: \"100%\",\n                    html: '<iframe class=\"airtable-embed\" src=\"https://airtable.com/embed/shrZPuDSNua674ZKb?backgroundColor=pink\" frameborder=\"0\" onmousewheel=\"\" width=\"100%\" height=\"533\" style=\"background: transparent; border: 1px solid #ccc;\"></iframe>',\n                    id: \"JYsWaBXAq\",\n                    layoutId: \"JYsWaBXAq\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    type: \"html\",\n                    url: \"\",\n                    width: \"100%\"\n                  })\n                })\n              })]\n            })\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-1m4cneo-container\",\n            layoutScroll: true,\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                jvCw4IpzG: {\n                  variant: \"Jk4aITLAo\"\n                },\n                Ulru_24ch: {\n                  variant: \"sQ3XezqVf\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(CookiesBannerGetCookieStatus, {\n                height: \"100%\",\n                id: \"BoIKYEQbZ\",\n                layoutId: \"BoIKYEQbZ\",\n                variant: \"QahLQSfyK\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-1ckcn63-container\",\n            children: /*#__PURE__*/_jsx(Footer, {\n              height: \"100%\",\n              id: \"PcygoYjxs\",\n              layoutId: \"PcygoYjxs\",\n              style: {\n                width: \"100%\"\n              },\n              variant: \"NWDLXXgiF\",\n              width: \"100%\"\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-ic5l2 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName} { background: white; }`, \".framer-ic5l2 .framer-lux5qc { display: block; }\", \".framer-ic5l2 .framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1280px; }\", \".framer-ic5l2 .framer-vpjptw-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\", '.framer-ic5l2 .framer-66ee6 { align-content: center; align-items: center; background: linear-gradient(126deg, var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, #e75a26) /* {\"name\":\"Orange\"} */ 0%, var(--token-c6ad4137-f14f-4e14-87e0-d228c2e504d6, rgb(251, 9, 223)) /* {\"name\":\"Pink\"} */ 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100vh; justify-content: space-between; overflow: hidden; padding: 160px 50px 100px 50px; position: relative; width: 100%; z-index: 1; }', \".framer-ic5l2 .framer-1ulpuz0, .framer-ic5l2 .framer-hb9hqc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-ic5l2 .framer-1vo9kp6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 90%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-ic5l2 .framer-162svw6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 597px; word-break: break-word; word-wrap: break-word; }\", \".framer-ic5l2 .framer-zlzuw6-container, .framer-ic5l2 .framer-10rja9v-container, .framer-ic5l2 .framer-ratzfb-container, .framer-ic5l2 .framer-3q7dic-container, .framer-ic5l2 .framer-r1ze5w-container, .framer-ic5l2 .framer-agijil-container, .framer-ic5l2 .framer-o42ul1-container, .framer-ic5l2 .framer-1a4dync-container, .framer-ic5l2 .framer-1l91un7-container, .framer-ic5l2 .framer-1edt9y0-container, .framer-ic5l2 .framer-nboof8-container { flex: none; height: auto; position: relative; width: auto; }\", \".framer-ic5l2 .framer-voc09q { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\", \".framer-ic5l2 .framer-15v4h58-container { bottom: 60px; flex: none; height: 150px; position: absolute; right: 100px; width: 150px; z-index: 1; }\", \".framer-ic5l2 .framer-1s88dr9, .framer-ic5l2 .framer-1xros1m { align-content: center; align-items: center; background-color: rgba(251, 9, 223, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-ic5l2 .framer-mm3quc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-ic5l2 .framer-1ekvnt9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 410px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 1px; }\", \".framer-ic5l2 .framer-1idqim7, .framer-ic5l2 .framer-wccdff, .framer-ic5l2 .framer-d4pi8z, .framer-ic5l2 .framer-r2wyl4, .framer-ic5l2 .framer-1pbfjef, .framer-ic5l2 .framer-vchohe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-ic5l2 .framer-1kmjld7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 457px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 568px; }\", \".framer-ic5l2 .framer-1whk1ju, .framer-ic5l2 .framer-1kg0s9q { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\", \".framer-ic5l2 .framer-1ug68qs-container { flex: none; height: auto; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); width: 266px; }\", \".framer-ic5l2 .framer-1ce6309 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 410px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; right: 0px; top: 50%; transform: perspective(1200px) translateY(-50%); width: 273px; }\", \".framer-ic5l2 .framer-17xbz8y-container { flex: none; height: auto; position: relative; width: 210px; }\", \".framer-ic5l2 .framer-ml3avq-container { flex: none; height: auto; position: relative; width: 273px; }\", \".framer-ic5l2 .framer-55uyn9 { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-ic5l2 .framer-1bvtlmt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-ic5l2 .framer-16lax0m { align-self: stretch; display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: auto; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-ic5l2 .framer-1upz35z { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; aspect-ratio: 1 / 1; background-color: #fedd21; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 235px); justify-content: center; justify-self: start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: transform; }\", \".framer-ic5l2 .framer-8osuyx { flex: none; height: 80px; position: relative; width: 80px; }\", \".framer-ic5l2 .framer-1mk44be, .framer-ic5l2 .framer-qpg360 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 235px); justify-content: center; justify-self: start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: transform; }\", \".framer-ic5l2 .framer-136yv0f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 143px; }\", \".framer-ic5l2 .framer-1w6nnhl { flex: none; height: 86px; position: relative; width: 134px; }\", \".framer-ic5l2 .framer-164wzo0 { flex: none; height: 80px; position: relative; width: 74px; }\", \".framer-ic5l2 .framer-8h9mio { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; aspect-ratio: 1 / 1; background-color: #014284; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 235px); justify-content: center; justify-self: start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: transform; }\", \".framer-ic5l2 .framer-bi3kgn { flex: none; height: 52px; position: relative; width: 98px; }\", \".framer-ic5l2 .framer-qlwy21 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 530px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-ic5l2 .framer-t86390 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 380px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-ic5l2 .framer-nskp2m { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\", \".framer-ic5l2 .framer-kshavq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-ic5l2 .framer-fxluu8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\", \".framer-ic5l2 .framer-1blo9c0 { align-content: center; align-items: center; background-color: rgba(251, 9, 223, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\", \".framer-ic5l2 .framer-53hx6k-container { flex: none; height: 50px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-ic5l2 .framer-duostd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 0px; position: relative; width: min-content; }\", \".framer-ic5l2 .framer-jca9bx, .framer-ic5l2 .framer-oxnrji, .framer-ic5l2 .framer-1f91d3p { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\", \".framer-ic5l2 .framer-a62lqo, .framer-ic5l2 .framer-bs28jz, .framer-ic5l2 .framer-wksdyd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 180px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-ic5l2 .framer-6s1n7q, .framer-ic5l2 .framer-1389omj, .framer-ic5l2 .framer-o1caf4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: visible; padding: 5px 0px 0px 0px; position: sticky; top: 120px; transform: perspective(1200px); width: min-content; will-change: transform; z-index: 1; }\", \".framer-ic5l2 .framer-dbglro { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; min-width: 200px; position: relative; white-space: pre; width: auto; }\", \".framer-ic5l2 .framer-7cz3n3, .framer-ic5l2 .framer-15gfuga, .framer-ic5l2 .framer-qqxsh2, .framer-ic5l2 .framer-1rk63pc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 500px; overflow: visible; padding: 0px 0px 0px 0px; position: sticky; top: 120px; transform: perspective(1200px); width: min-content; will-change: transform; z-index: 1; }\", \".framer-ic5l2 .framer-1vq4v4c, .framer-ic5l2 .framer-1gwnvsc, .framer-ic5l2 .framer-16xmnz6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 501px; word-break: break-word; word-wrap: break-word; }\", \".framer-ic5l2 .framer-1252mph, .framer-ic5l2 .framer-1p8bw74, .framer-ic5l2 .framer-12zm6kn, .framer-ic5l2 .framer-11e4sp8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 1698px; word-break: break-word; word-wrap: break-word; }\", \".framer-ic5l2 .framer-19pwidp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 550px; overflow: visible; padding: 20px 0px 0px 0px; position: relative; transform: perspective(1200px); width: min-content; z-index: 1; }\", \".framer-ic5l2 .framer-gdkjcl, .framer-ic5l2 .framer-5f2gz1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; min-width: 400px; position: relative; white-space: pre; width: auto; }\", \".framer-ic5l2 .framer-fsewgb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 0px 80px 0px; position: relative; width: min-content; }\", \".framer-ic5l2 .framer-1yvv6ks-container { flex: none; height: 78%; left: 27px; position: absolute; top: 90px; width: 3px; z-index: 0; }\", \".framer-ic5l2 .framer-1l29ede { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 40px 0px 40px 0px; position: relative; transform: perspective(1200px); width: min-content; }\", \".framer-ic5l2 .framer-25k5wt, .framer-ic5l2 .framer-l7ify0, .framer-ic5l2 .framer-1o5y6cm, .framer-ic5l2 .framer-97cq9c, .framer-ic5l2 .framer-fbh3nv { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 56px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 56px; will-change: transform; }\", \".framer-ic5l2 .framer-2ew9c9-container, .framer-ic5l2 .framer-14oxuxg-container, .framer-ic5l2 .framer-1dbnuni-container, .framer-ic5l2 .framer-16gux9p-container, .framer-ic5l2 .framer-1xqw0z5-container { flex: none; height: 32px; position: relative; width: 32px; }\", \".framer-ic5l2 .framer-1u2izwq, .framer-ic5l2 .framer-zfy6ps, .framer-ic5l2 .framer-v6ixnl, .framer-ic5l2 .framer-1ufxbyn, .framer-ic5l2 .framer-19r4em1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\", \".framer-ic5l2 .framer-1vsi20e, .framer-ic5l2 .framer-1hggqkc, .framer-ic5l2 .framer-18b63j5, .framer-ic5l2 .framer-yvj92p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 40px 0px 40px 0px; position: relative; transform: perspective(1200px); width: min-content; }\", \".framer-ic5l2 .framer-vpvr6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-ic5l2 .framer-1qhgcs4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-ic5l2 .framer-xg2rxf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 1px; }\", \".framer-ic5l2 .framer-gck092 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 530px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-ic5l2 .framer-1j4eemt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 60px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-ic5l2 .framer-1isya6 { align-content: center; align-items: center; background-color: rgba(251, 9, 223, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\", \".framer-ic5l2 .framer-1tez7ge { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: 870px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-ic5l2 .framer-15iaft6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 561px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-ic5l2 .framer-1r4rgp7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre-wrap; width: 560px; word-break: break-word; word-wrap: break-word; z-index: 1; }\", \".framer-ic5l2 .framer-ztlkrj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 560px; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-ic5l2 .framer-vccmx9-container { flex: none; height: 66.625vh; position: relative; width: 560px; }\", \".framer-ic5l2 .framer-1m4cneo-container { bottom: 20px; flex: none; height: auto; min-width: 350px; position: fixed; right: 20px; width: auto; z-index: 1; }\", \".framer-ic5l2 .framer-1ckcn63-container { flex: none; height: auto; position: relative; width: 100%; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ic5l2 .framer-72rtr7, .framer-ic5l2 .framer-1ulpuz0, .framer-ic5l2 .framer-hb9hqc, .framer-ic5l2 .framer-1s88dr9, .framer-ic5l2 .framer-mm3quc, .framer-ic5l2 .framer-1ekvnt9, .framer-ic5l2 .framer-1kmjld7, .framer-ic5l2 .framer-1ce6309, .framer-ic5l2 .framer-55uyn9, .framer-ic5l2 .framer-1bvtlmt, .framer-ic5l2 .framer-1upz35z, .framer-ic5l2 .framer-1mk44be, .framer-ic5l2 .framer-136yv0f, .framer-ic5l2 .framer-qpg360, .framer-ic5l2 .framer-8h9mio, .framer-ic5l2 .framer-qlwy21, .framer-ic5l2 .framer-nskp2m, .framer-ic5l2 .framer-1xros1m, .framer-ic5l2 .framer-kshavq, .framer-ic5l2 .framer-1blo9c0, .framer-ic5l2 .framer-duostd, .framer-ic5l2 .framer-jca9bx, .framer-ic5l2 .framer-a62lqo, .framer-ic5l2 .framer-6s1n7q, .framer-ic5l2 .framer-7cz3n3, .framer-ic5l2 .framer-19pwidp, .framer-ic5l2 .framer-oxnrji, .framer-ic5l2 .framer-bs28jz, .framer-ic5l2 .framer-1389omj, .framer-ic5l2 .framer-15gfuga, .framer-ic5l2 .framer-fsewgb, .framer-ic5l2 .framer-1l29ede, .framer-ic5l2 .framer-25k5wt, .framer-ic5l2 .framer-1vsi20e, .framer-ic5l2 .framer-l7ify0, .framer-ic5l2 .framer-1hggqkc, .framer-ic5l2 .framer-1o5y6cm, .framer-ic5l2 .framer-18b63j5, .framer-ic5l2 .framer-97cq9c, .framer-ic5l2 .framer-yvj92p, .framer-ic5l2 .framer-fbh3nv, .framer-ic5l2 .framer-1f91d3p, .framer-ic5l2 .framer-wksdyd, .framer-ic5l2 .framer-o1caf4, .framer-ic5l2 .framer-qqxsh2, .framer-ic5l2 .framer-vpvr6, .framer-ic5l2 .framer-1qhgcs4, .framer-ic5l2 .framer-xg2rxf, .framer-ic5l2 .framer-gck092, .framer-ic5l2 .framer-1rk63pc, .framer-ic5l2 .framer-1j4eemt, .framer-ic5l2 .framer-1isya6, .framer-ic5l2 .framer-1tez7ge, .framer-ic5l2 .framer-15iaft6, .framer-ic5l2 .framer-ztlkrj { gap: 0px; } .framer-ic5l2 .framer-72rtr7 > *, .framer-ic5l2 .framer-1s88dr9 > *, .framer-ic5l2 .framer-55uyn9 > *, .framer-ic5l2 .framer-1xros1m > *, .framer-ic5l2 .framer-1blo9c0 > *, .framer-ic5l2 .framer-vpvr6 > *, .framer-ic5l2 .framer-1isya6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ic5l2 .framer-72rtr7 > :first-child, .framer-ic5l2 .framer-1ulpuz0 > :first-child, .framer-ic5l2 .framer-hb9hqc > :first-child, .framer-ic5l2 .framer-1s88dr9 > :first-child, .framer-ic5l2 .framer-1ekvnt9 > :first-child, .framer-ic5l2 .framer-1ce6309 > :first-child, .framer-ic5l2 .framer-55uyn9 > :first-child, .framer-ic5l2 .framer-1upz35z > :first-child, .framer-ic5l2 .framer-1mk44be > :first-child, .framer-ic5l2 .framer-qpg360 > :first-child, .framer-ic5l2 .framer-8h9mio > :first-child, .framer-ic5l2 .framer-qlwy21 > :first-child, .framer-ic5l2 .framer-nskp2m > :first-child, .framer-ic5l2 .framer-1xros1m > :first-child, .framer-ic5l2 .framer-1blo9c0 > :first-child, .framer-ic5l2 .framer-6s1n7q > :first-child, .framer-ic5l2 .framer-7cz3n3 > :first-child, .framer-ic5l2 .framer-19pwidp > :first-child, .framer-ic5l2 .framer-1389omj > :first-child, .framer-ic5l2 .framer-15gfuga > :first-child, .framer-ic5l2 .framer-fsewgb > :first-child, .framer-ic5l2 .framer-o1caf4 > :first-child, .framer-ic5l2 .framer-qqxsh2 > :first-child, .framer-ic5l2 .framer-vpvr6 > :first-child, .framer-ic5l2 .framer-xg2rxf > :first-child, .framer-ic5l2 .framer-gck092 > :first-child, .framer-ic5l2 .framer-1rk63pc > :first-child, .framer-ic5l2 .framer-1isya6 > :first-child, .framer-ic5l2 .framer-1tez7ge > :first-child, .framer-ic5l2 .framer-15iaft6 > :first-child, .framer-ic5l2 .framer-ztlkrj > :first-child { margin-top: 0px; } .framer-ic5l2 .framer-72rtr7 > :last-child, .framer-ic5l2 .framer-1ulpuz0 > :last-child, .framer-ic5l2 .framer-hb9hqc > :last-child, .framer-ic5l2 .framer-1s88dr9 > :last-child, .framer-ic5l2 .framer-1ekvnt9 > :last-child, .framer-ic5l2 .framer-1ce6309 > :last-child, .framer-ic5l2 .framer-55uyn9 > :last-child, .framer-ic5l2 .framer-1upz35z > :last-child, .framer-ic5l2 .framer-1mk44be > :last-child, .framer-ic5l2 .framer-qpg360 > :last-child, .framer-ic5l2 .framer-8h9mio > :last-child, .framer-ic5l2 .framer-qlwy21 > :last-child, .framer-ic5l2 .framer-nskp2m > :last-child, .framer-ic5l2 .framer-1xros1m > :last-child, .framer-ic5l2 .framer-1blo9c0 > :last-child, .framer-ic5l2 .framer-6s1n7q > :last-child, .framer-ic5l2 .framer-7cz3n3 > :last-child, .framer-ic5l2 .framer-19pwidp > :last-child, .framer-ic5l2 .framer-1389omj > :last-child, .framer-ic5l2 .framer-15gfuga > :last-child, .framer-ic5l2 .framer-fsewgb > :last-child, .framer-ic5l2 .framer-o1caf4 > :last-child, .framer-ic5l2 .framer-qqxsh2 > :last-child, .framer-ic5l2 .framer-vpvr6 > :last-child, .framer-ic5l2 .framer-xg2rxf > :last-child, .framer-ic5l2 .framer-gck092 > :last-child, .framer-ic5l2 .framer-1rk63pc > :last-child, .framer-ic5l2 .framer-1isya6 > :last-child, .framer-ic5l2 .framer-1tez7ge > :last-child, .framer-ic5l2 .framer-15iaft6 > :last-child, .framer-ic5l2 .framer-ztlkrj > :last-child { margin-bottom: 0px; } .framer-ic5l2 .framer-1ulpuz0 > *, .framer-ic5l2 .framer-hb9hqc > *, .framer-ic5l2 .framer-1ekvnt9 > *, .framer-ic5l2 .framer-qlwy21 > *, .framer-ic5l2 .framer-6s1n7q > *, .framer-ic5l2 .framer-7cz3n3 > *, .framer-ic5l2 .framer-19pwidp > *, .framer-ic5l2 .framer-1389omj > *, .framer-ic5l2 .framer-15gfuga > *, .framer-ic5l2 .framer-o1caf4 > *, .framer-ic5l2 .framer-qqxsh2 > *, .framer-ic5l2 .framer-gck092 > *, .framer-ic5l2 .framer-1rk63pc > *, .framer-ic5l2 .framer-15iaft6 > *, .framer-ic5l2 .framer-ztlkrj > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ic5l2 .framer-mm3quc > *, .framer-ic5l2 .framer-1bvtlmt > *, .framer-ic5l2 .framer-kshavq > *, .framer-ic5l2 .framer-1qhgcs4 > *, .framer-ic5l2 .framer-1j4eemt > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-ic5l2 .framer-mm3quc > :first-child, .framer-ic5l2 .framer-1kmjld7 > :first-child, .framer-ic5l2 .framer-1bvtlmt > :first-child, .framer-ic5l2 .framer-136yv0f > :first-child, .framer-ic5l2 .framer-kshavq > :first-child, .framer-ic5l2 .framer-duostd > :first-child, .framer-ic5l2 .framer-jca9bx > :first-child, .framer-ic5l2 .framer-a62lqo > :first-child, .framer-ic5l2 .framer-oxnrji > :first-child, .framer-ic5l2 .framer-bs28jz > :first-child, .framer-ic5l2 .framer-1l29ede > :first-child, .framer-ic5l2 .framer-25k5wt > :first-child, .framer-ic5l2 .framer-1vsi20e > :first-child, .framer-ic5l2 .framer-l7ify0 > :first-child, .framer-ic5l2 .framer-1hggqkc > :first-child, .framer-ic5l2 .framer-1o5y6cm > :first-child, .framer-ic5l2 .framer-18b63j5 > :first-child, .framer-ic5l2 .framer-97cq9c > :first-child, .framer-ic5l2 .framer-yvj92p > :first-child, .framer-ic5l2 .framer-fbh3nv > :first-child, .framer-ic5l2 .framer-1f91d3p > :first-child, .framer-ic5l2 .framer-wksdyd > :first-child, .framer-ic5l2 .framer-1qhgcs4 > :first-child, .framer-ic5l2 .framer-1j4eemt > :first-child { margin-left: 0px; } .framer-ic5l2 .framer-mm3quc > :last-child, .framer-ic5l2 .framer-1kmjld7 > :last-child, .framer-ic5l2 .framer-1bvtlmt > :last-child, .framer-ic5l2 .framer-136yv0f > :last-child, .framer-ic5l2 .framer-kshavq > :last-child, .framer-ic5l2 .framer-duostd > :last-child, .framer-ic5l2 .framer-jca9bx > :last-child, .framer-ic5l2 .framer-a62lqo > :last-child, .framer-ic5l2 .framer-oxnrji > :last-child, .framer-ic5l2 .framer-bs28jz > :last-child, .framer-ic5l2 .framer-1l29ede > :last-child, .framer-ic5l2 .framer-25k5wt > :last-child, .framer-ic5l2 .framer-1vsi20e > :last-child, .framer-ic5l2 .framer-l7ify0 > :last-child, .framer-ic5l2 .framer-1hggqkc > :last-child, .framer-ic5l2 .framer-1o5y6cm > :last-child, .framer-ic5l2 .framer-18b63j5 > :last-child, .framer-ic5l2 .framer-97cq9c > :last-child, .framer-ic5l2 .framer-yvj92p > :last-child, .framer-ic5l2 .framer-fbh3nv > :last-child, .framer-ic5l2 .framer-1f91d3p > :last-child, .framer-ic5l2 .framer-wksdyd > :last-child, .framer-ic5l2 .framer-1qhgcs4 > :last-child, .framer-ic5l2 .framer-1j4eemt > :last-child { margin-right: 0px; } .framer-ic5l2 .framer-1kmjld7 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-ic5l2 .framer-1ce6309 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ic5l2 .framer-1upz35z > *, .framer-ic5l2 .framer-1mk44be > *, .framer-ic5l2 .framer-qpg360 > *, .framer-ic5l2 .framer-8h9mio > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ic5l2 .framer-136yv0f > *, .framer-ic5l2 .framer-1vsi20e > *, .framer-ic5l2 .framer-1hggqkc > *, .framer-ic5l2 .framer-18b63j5 > *, .framer-ic5l2 .framer-yvj92p > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ic5l2 .framer-nskp2m > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-ic5l2 .framer-duostd > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-ic5l2 .framer-jca9bx > *, .framer-ic5l2 .framer-oxnrji > *, .framer-ic5l2 .framer-1f91d3p > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-ic5l2 .framer-a62lqo > *, .framer-ic5l2 .framer-bs28jz > *, .framer-ic5l2 .framer-wksdyd > * { margin: 0px; margin-left: calc(180px / 2); margin-right: calc(180px / 2); } .framer-ic5l2 .framer-fsewgb > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-ic5l2 .framer-1l29ede > *, .framer-ic5l2 .framer-25k5wt > *, .framer-ic5l2 .framer-l7ify0 > *, .framer-ic5l2 .framer-1o5y6cm > *, .framer-ic5l2 .framer-97cq9c > *, .framer-ic5l2 .framer-fbh3nv > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ic5l2 .framer-xg2rxf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ic5l2 .framer-1tez7ge > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }\", \"@media (min-width: 1280px) { .framer-ic5l2 .hidden-72rtr7 { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1279px) { .framer-ic5l2 .hidden-1feqjcj { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-ic5l2 .framer-72rtr7 { width: 810px; } .framer-ic5l2 .framer-66ee6 { height: min-content; } .framer-ic5l2 .framer-hb9hqc { padding: 40px 0px 0px 0px; } .framer-ic5l2 .framer-15v4h58-container { height: 117px; width: 117px; } .framer-ic5l2 .framer-1s88dr9, .framer-ic5l2 .framer-1xros1m { background-color: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, #f6f4ff); padding: 80px 50px 80px 50px; } .framer-ic5l2 .framer-mm3quc, .framer-ic5l2 .framer-kshavq { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 10px; } .framer-ic5l2 .framer-1ekvnt9 { flex: none; max-width: unset; width: min-content; } .framer-ic5l2 .framer-1idqim7 { width: 710px; } .framer-ic5l2 .framer-wccdff { width: 349px; } .framer-ic5l2 .framer-1kmjld7 { gap: 60px; height: min-content; justify-content: center; padding: 0px 0px 0px 50px; width: min-content; } .framer-ic5l2 .framer-1whk1ju, .framer-ic5l2 .framer-1kg0s9q { flex: none; height: 448px; width: 271px; } .framer-ic5l2 .framer-1ce6309 { gap: 60px; } .framer-ic5l2 .framer-55uyn9, .framer-ic5l2 .framer-vpvr6 { padding: 100px 50px 100px 50px; } .framer-ic5l2 .framer-1bvtlmt { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 80px; } .framer-ic5l2 .framer-16lax0m { align-self: unset; flex: none; grid-template-columns: repeat(4, minmax(50px, 1fr)); height: min-content; order: 1; width: 100%; } .framer-ic5l2 .framer-1upz35z, .framer-ic5l2 .framer-1mk44be, .framer-ic5l2 .framer-qpg360, .framer-ic5l2 .framer-8h9mio { height: var(--framer-aspect-ratio-supported, 163px); } .framer-ic5l2 .framer-qlwy21 { flex: none; order: 0; width: 100%; } .framer-ic5l2 .framer-fxluu8 { flex: none; width: 710px; } .framer-ic5l2 .framer-1blo9c0 { background-color: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, #f6f4ff); } .framer-ic5l2 .framer-a62lqo, .framer-ic5l2 .framer-bs28jz, .framer-ic5l2 .framer-wksdyd { flex-direction: column; gap: 20px; } .framer-ic5l2 .framer-6s1n7q, .framer-ic5l2 .framer-7cz3n3, .framer-ic5l2 .framer-1389omj, .framer-ic5l2 .framer-15gfuga, .framer-ic5l2 .framer-o1caf4, .framer-ic5l2 .framer-qqxsh2, .framer-ic5l2 .framer-1rk63pc { max-width: 550px; position: relative; top: unset; } .framer-ic5l2 .framer-1qhgcs4 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 80px; justify-content: flex-start; } .framer-ic5l2 .framer-xg2rxf { flex: none; width: 100%; } .framer-ic5l2 .framer-1m4cneo-container { bottom: 0px; left: 0px; min-width: 100%; right: unset; width: 810px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ic5l2 .framer-mm3quc, .framer-ic5l2 .framer-1kmjld7, .framer-ic5l2 .framer-1ce6309, .framer-ic5l2 .framer-1bvtlmt, .framer-ic5l2 .framer-kshavq, .framer-ic5l2 .framer-a62lqo, .framer-ic5l2 .framer-bs28jz, .framer-ic5l2 .framer-wksdyd, .framer-ic5l2 .framer-1qhgcs4 { gap: 0px; } .framer-ic5l2 .framer-mm3quc > *, .framer-ic5l2 .framer-kshavq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ic5l2 .framer-mm3quc > :first-child, .framer-ic5l2 .framer-1ce6309 > :first-child, .framer-ic5l2 .framer-1bvtlmt > :first-child, .framer-ic5l2 .framer-kshavq > :first-child, .framer-ic5l2 .framer-a62lqo > :first-child, .framer-ic5l2 .framer-bs28jz > :first-child, .framer-ic5l2 .framer-wksdyd > :first-child, .framer-ic5l2 .framer-1qhgcs4 > :first-child { margin-top: 0px; } .framer-ic5l2 .framer-mm3quc > :last-child, .framer-ic5l2 .framer-1ce6309 > :last-child, .framer-ic5l2 .framer-1bvtlmt > :last-child, .framer-ic5l2 .framer-kshavq > :last-child, .framer-ic5l2 .framer-a62lqo > :last-child, .framer-ic5l2 .framer-bs28jz > :last-child, .framer-ic5l2 .framer-wksdyd > :last-child, .framer-ic5l2 .framer-1qhgcs4 > :last-child { margin-bottom: 0px; } .framer-ic5l2 .framer-1kmjld7 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-ic5l2 .framer-1kmjld7 > :first-child { margin-left: 0px; } .framer-ic5l2 .framer-1kmjld7 > :last-child { margin-right: 0px; } .framer-ic5l2 .framer-1ce6309 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-ic5l2 .framer-1bvtlmt > *, .framer-ic5l2 .framer-1qhgcs4 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-ic5l2 .framer-a62lqo > *, .framer-ic5l2 .framer-bs28jz > *, .framer-ic5l2 .framer-wksdyd > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`, `@media (max-width: 809px) { .framer-ic5l2 .hidden-nj0mn7 { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-ic5l2 .framer-72rtr7 { width: 390px; } .framer-ic5l2 .framer-66ee6 { height: 80vh; padding: 120px 20px 50px 20px; } .framer-ic5l2 .framer-162svw6 { width: 328px; } .framer-ic5l2 .framer-1s88dr9, .framer-ic5l2 .framer-1xros1m { background-color: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, #f6f4ff); padding: 50px 20px 50px 20px; } .framer-ic5l2 .framer-mm3quc, .framer-ic5l2 .framer-kshavq, .framer-ic5l2 .framer-1qhgcs4 { flex-direction: column; gap: 50px; } .framer-ic5l2 .framer-1ekvnt9, .framer-ic5l2 .framer-fxluu8, .framer-ic5l2 .framer-xg2rxf { flex: none; width: 100%; } .framer-ic5l2 .framer-1kmjld7 { flex-direction: column; height: min-content; } .framer-ic5l2 .framer-1whk1ju, .framer-ic5l2 .framer-1kg0s9q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; width: min-content; } .framer-ic5l2 .framer-1ug68qs-container { position: relative; right: unset; top: unset; transform: unset; } .framer-ic5l2 .framer-1ce6309 { align-content: center; align-items: center; position: relative; right: unset; top: unset; transform: perspective(1200px); } .framer-ic5l2 .framer-17xbz8y-container, .framer-ic5l2 .framer-1u2izwq, .framer-ic5l2 .framer-zfy6ps, .framer-ic5l2 .framer-v6ixnl, .framer-ic5l2 .framer-1ufxbyn, .framer-ic5l2 .framer-19r4em1 { width: 270px; } .framer-ic5l2 .framer-ml3avq-container { width: 269px; } .framer-ic5l2 .framer-55uyn9, .framer-ic5l2 .framer-vpvr6, .framer-ic5l2 .framer-1isya6 { padding: 50px 20px 50px 20px; } .framer-ic5l2 .framer-1bvtlmt { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 50px; } .framer-ic5l2 .framer-16lax0m { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-ic5l2 .framer-1upz35z, .framer-ic5l2 .framer-1mk44be, .framer-ic5l2 .framer-qpg360, .framer-ic5l2 .framer-8h9mio { height: var(--framer-aspect-ratio-supported, 165px); } .framer-ic5l2 .framer-136yv0f { width: 101px; } .framer-ic5l2 .framer-1w6nnhl { height: 80px; order: 0; width: 100px; } .framer-ic5l2 .framer-qlwy21 { flex: none; order: 0; width: 100%; } .framer-ic5l2 .framer-1blo9c0 { background-color: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, #f6f4ff); } .framer-ic5l2 .framer-jca9bx, .framer-ic5l2 .framer-1f91d3p { flex-direction: column; gap: 50px; padding: 50px 20px 50px 20px; } .framer-ic5l2 .framer-a62lqo { flex-direction: column; gap: 50px; max-width: unset; } .framer-ic5l2 .framer-6s1n7q, .framer-ic5l2 .framer-1389omj, .framer-ic5l2 .framer-o1caf4 { max-width: 550px; position: relative; top: unset; } .framer-ic5l2 .framer-7cz3n3 { gap: 40px; max-width: 350px; position: relative; top: unset; } .framer-ic5l2 .framer-oxnrji { flex-direction: column; gap: 20px; padding: 50px 20px 20px 20px; } .framer-ic5l2 .framer-bs28jz { flex-direction: column; gap: 20px; max-width: unset; } .framer-ic5l2 .framer-gdkjcl, .framer-ic5l2 .framer-5f2gz1 { min-width: unset; } .framer-ic5l2 .framer-15gfuga, .framer-ic5l2 .framer-qqxsh2 { max-width: unset; position: relative; top: unset; } .framer-ic5l2 .framer-1gwnvsc { width: auto; } .framer-ic5l2 .framer-fsewgb { gap: 40px; padding: 0px 0px 40px 0px; } .framer-ic5l2 .framer-wksdyd { flex-direction: column; gap: 20px; max-width: 350px; } .framer-ic5l2 .framer-16xmnz6 { max-width: unset; white-space: pre; width: auto; } .framer-ic5l2 .framer-1p8bw74 { max-width: unset; width: 350px; } .framer-ic5l2 .framer-1rk63pc { max-width: 350px; position: relative; top: unset; } .framer-ic5l2 .framer-vccmx9-container { height: 63.62559241706162vh; width: 348px; } .framer-ic5l2 .framer-1m4cneo-container { bottom: 0px; left: 0px; min-width: 100%; right: unset; width: 381px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ic5l2 .framer-mm3quc, .framer-ic5l2 .framer-1kmjld7, .framer-ic5l2 .framer-1whk1ju, .framer-ic5l2 .framer-1kg0s9q, .framer-ic5l2 .framer-1bvtlmt, .framer-ic5l2 .framer-kshavq, .framer-ic5l2 .framer-jca9bx, .framer-ic5l2 .framer-a62lqo, .framer-ic5l2 .framer-7cz3n3, .framer-ic5l2 .framer-oxnrji, .framer-ic5l2 .framer-bs28jz, .framer-ic5l2 .framer-fsewgb, .framer-ic5l2 .framer-1f91d3p, .framer-ic5l2 .framer-wksdyd, .framer-ic5l2 .framer-1qhgcs4 { gap: 0px; } .framer-ic5l2 .framer-mm3quc > *, .framer-ic5l2 .framer-1bvtlmt > *, .framer-ic5l2 .framer-kshavq > *, .framer-ic5l2 .framer-jca9bx > *, .framer-ic5l2 .framer-a62lqo > *, .framer-ic5l2 .framer-1f91d3p > *, .framer-ic5l2 .framer-1qhgcs4 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-ic5l2 .framer-mm3quc > :first-child, .framer-ic5l2 .framer-1kmjld7 > :first-child, .framer-ic5l2 .framer-1bvtlmt > :first-child, .framer-ic5l2 .framer-kshavq > :first-child, .framer-ic5l2 .framer-jca9bx > :first-child, .framer-ic5l2 .framer-a62lqo > :first-child, .framer-ic5l2 .framer-7cz3n3 > :first-child, .framer-ic5l2 .framer-oxnrji > :first-child, .framer-ic5l2 .framer-bs28jz > :first-child, .framer-ic5l2 .framer-fsewgb > :first-child, .framer-ic5l2 .framer-1f91d3p > :first-child, .framer-ic5l2 .framer-wksdyd > :first-child, .framer-ic5l2 .framer-1qhgcs4 > :first-child { margin-top: 0px; } .framer-ic5l2 .framer-mm3quc > :last-child, .framer-ic5l2 .framer-1kmjld7 > :last-child, .framer-ic5l2 .framer-1bvtlmt > :last-child, .framer-ic5l2 .framer-kshavq > :last-child, .framer-ic5l2 .framer-jca9bx > :last-child, .framer-ic5l2 .framer-a62lqo > :last-child, .framer-ic5l2 .framer-7cz3n3 > :last-child, .framer-ic5l2 .framer-oxnrji > :last-child, .framer-ic5l2 .framer-bs28jz > :last-child, .framer-ic5l2 .framer-fsewgb > :last-child, .framer-ic5l2 .framer-1f91d3p > :last-child, .framer-ic5l2 .framer-wksdyd > :last-child, .framer-ic5l2 .framer-1qhgcs4 > :last-child { margin-bottom: 0px; } .framer-ic5l2 .framer-1kmjld7 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ic5l2 .framer-1whk1ju > *, .framer-ic5l2 .framer-1kg0s9q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ic5l2 .framer-1whk1ju > :first-child, .framer-ic5l2 .framer-1kg0s9q > :first-child { margin-left: 0px; } .framer-ic5l2 .framer-1whk1ju > :last-child, .framer-ic5l2 .framer-1kg0s9q > :last-child { margin-right: 0px; } .framer-ic5l2 .framer-7cz3n3 > *, .framer-ic5l2 .framer-fsewgb > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ic5l2 .framer-oxnrji > *, .framer-ic5l2 .framer-bs28jz > *, .framer-ic5l2 .framer-wksdyd > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css, ...sharedStyle4.css, ...sharedStyle5.css, ...sharedStyle6.css, ...sharedStyle7.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerIntrinsicHeight 6977.5\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerIntrinsicWidth 1280\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ulru_24ch\":{\"layout\":[\"fixed\",\"auto\"]},\"jvCw4IpzG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         */\nconst FrameraugiA20Il = withCSS(Component, css, \"framer-ic5l2\");\nexport default FrameraugiA20Il;\nFrameraugiA20Il.displayName = \"Profesionales It\";\nFrameraugiA20Il.defaultProps = {\n  height: 6977.5,\n  width: 1280\n};\naddFonts(FrameraugiA20Il, [...TopbarFonts, ...ButtonFonts, ...ArcFonts, ...FeatureBlockFonts, ...CTAFonts, ...ListFonts, ...TickerFonts, ...EasingGradientFonts, ...PhosphorFonts, ...EmbedFonts, ...CookiesBannerFonts, ...FooterFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts, ...sharedStyle4.fonts, ...sharedStyle5.fonts, ...sharedStyle6.fonts, ...sharedStyle7.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FrameraugiA20Il\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"6977.5\",\n        \"framerIntrinsicWidth\": \"1280\",\n        \"framerContractVersion\": \"1\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ulru_24ch\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jvCw4IpzG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerResponsiveScreen\": \"\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "e", "getParenthesisContent", "convertToNumberMaybe", "roundToMaxTenDecimals", "t", "r", "o", "getBezier", "cubicCoordinates", "s", "i", "a", "n", "u", "stepsCoordinates", "c", "d", "l", "f", "p", "b", "g", "easingCoordinates", "_", "C", "h", "m", "numberFromString", "input", "match", "isNumeric", "value", "percentToFraction", "val", "digits", "modulate", "rangeA", "rangeB", "limit", "fromLow", "fromHigh", "toLow", "toHigh", "result", "Hsluv", "s", "h", "t", "i", "l", "u", "v", "_", "c", "r", "o", "n", "ColorFormat", "ColorMixModelType", "cssNames", "rgbToHsluv", "r", "g", "b", "toConvert", "Hsluv", "rgbaFromHusl", "h", "s", "l", "a", "rgb", "rgbToRgb", "r", "g", "b", "isNumeric", "bound01", "rgbToHex", "allow3Char", "hex", "pad2", "rgbToHsl", "l", "s", "_r", "_g", "_b", "max", "min", "h", "d", "hue2rgb", "p", "q", "t", "hslToRgb", "rgbToHsv", "v", "hsvToRgb", "i", "f", "mod", "n", "_max", "_n", "isOnePointZero", "processPercent", "isPercentage", "char", "matchers", "cssInteger", "cssUnit", "permissiveMatch3", "permissiveMatch4", "stringToObject", "inputColor", "trimLeft", "trimRight", "color", "named", "cssNames", "ColorFormat", "match", "percentToFraction", "parseIntFromHex", "convertHexToDecimal", "cache", "Color", "color", "g", "b", "c", "createColor", "created", "colorData", "getCompleteColorStrategy", "newColor", "ColorFormat", "Color1", "inspect", "initialValue", "isColor", "isColorString", "colorString", "stringToObject", "isColorObject", "toString", "toHex", "allow3Char", "rgbToHex", "toHexString", "toRgbString", "toHusl", "rgbToHsluv", "toHslString", "hsl", "h", "s", "l", "toHsv", "hsv", "rgbToHsv", "toHsvString", "v", "toName", "hex", "key", "cssNames", "toHsl", "toRgb", "brighten", "amount", "rgb", "lighten", "darken", "saturate", "desaturate", "grayscale", "hueRotate", "angle", "alpha", "a", "transparent", "multiplyAlpha", "alphaValue", "interpolate", "colorA", "colorB", "model", "ColorMixModelType", "progress", "mix", "from", "toColor", "fromColor", "mixer", "p", "mixAsColor", "fraction", "limit", "result", "ColorMixModel", "modulate", "hslA", "hslB", "fromH", "toH", "deltaH", "tween", "rgbaFromHusl", "random", "gen", "grey", "gray", "rgbToHsl", "r", "isValidColorProperty", "name", "value", "difference", "_r", "deltaR", "deltaG", "deltaB", "deltaR2", "deltaG2", "deltaB2", "equal", "tolerance", "colorModel", "colorOrR", "completeColor", "getCompleteColorFromRGB", "getCompleteColorFromString", "getCompleteColorFromHSL", "getCompleteColorFromHSV", "hsvToRgb", "correctAlpha", "rgbToRgb", "isNumeric", "numberFromString", "hslToRgb", "EasingGradient", "from", "to", "angle", "stops", "mode", "radius", "easeString", "easeCustom", "easing", "coordinates", "customBezier", "h", "x1", "y1", "x2", "y2", "easeMap", "C", "allStops", "x", "y", "startColor", "Color", "endColor", "colorMode", "ColorMixModelType", "blend", "gradient", "p", "addPropertyControls", "ControlType", "props", "TopbarFonts", "getFonts", "lWUcIJP0H_default", "MotionDivWithFX", "withFX", "motion", "ButtonFonts", "Tnz4seCKc_default", "ArcFonts", "Arc_default", "FeatureBlockFonts", "cRJt9HLAk_default", "CTAFonts", "OlTWqYMo3_default", "ListFonts", "bkf_3iqYh_default", "TickerFonts", "Ticker", "ContainerWithFX", "Container", "EasingGradientFonts", "EasingGradient", "PhosphorFonts", "Icon", "EmbedFonts", "Embed", "CookiesBannerFonts", "dUdtlYpYf_default", "CookiesBannerGetCookieStatus", "getCookieStatus", "FooterFonts", "M82dauGNX_default", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "transitions", "Overlay", "children", "visible", "setVisible", "useOverlayState", "transformTemplate", "_", "t", "animation", "transition1", "animation1", "transformTemplate1", "transition2", "animation2", "animation3", "animation4", "transformTemplate2", "transformTemplate3", "animation5", "transition3", "animation6", "metadata", "augiA20Il_default", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "activeVariantCallback", "delay", "useActiveVariantCallback", "tap42m929", "overlay", "args", "router", "useRouter", "isDisplayed", "useRouteElementId", "ref1", "pe", "id1", "ref2", "id2", "ref3", "id3", "ref4", "id4", "ref5", "isDisplayed1", "isDisplayed2", "id5", "ref6", "id6", "ref7", "id7", "ref8", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Container", "PropertyOverrides", "lWUcIJP0H_default", "resolveLink", "MotionDivWithFX", "RichText", "overlayvoc09q", "l", "Tnz4seCKc_default", "AnimatePresence", "qa", "Arc_default", "cRJt9HLAk_default", "Image2", "OlTWqYMo3_default", "ContainerWithFX", "Ticker", "bkf_3iqYh_default", "EasingGradient", "Icon", "Embed", "CookiesBannerGetCookieStatus", "M82dauGNX_default", "css", "FrameraugiA20Il", "withCSS", "addFonts", "TopbarFonts", "ButtonFonts", "ArcFonts", "FeatureBlockFonts", "CTAFonts", "ListFonts", "TickerFonts", "EasingGradientFonts", "PhosphorFonts", "EmbedFonts", "CookiesBannerFonts", "FooterFonts", "fonts", "__FramerMetadata__"]
}
