{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js", "ssg:https://framerusercontent.com/modules/xTatroGwjLaeBlb8nfF5/Pk83wGlYMuZizR3LmHE0/eddhjzMea.js"],
  "sourcesContent": ["import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addPropertyControls, ControlType, RenderTarget, withCSS } from \"framer\";\nimport { motion } from \"framer-motion\";\nimport { containerStyles, usePadding, useRadius, paddingControl, borderRadiusControl, fontControls, useFontControls } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nimport { useCallback, useMemo, useState } from \"react\";\nconst emailRegex = /^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;\nconst validateEmail = email => {\n  return emailRegex.test(String(email).toLowerCase());\n}; /**\n   * FORMSPARK\n   *\n   * @framerIntrinsicWidth 550\n   * @framerIntrinsicHeight 290\n   *\n   * @framerSupportedLayoutWidth fixed\n   * @framerSupportedLayoutHeight fixed\n   */\nconst FormSpark = withCSS(function FormSpark({\n  formId,\n  withName,\n  nameField: name,\n  withEmail,\n  email,\n  withMessage,\n  message,\n  layout,\n  inputs,\n  button,\n  style,\n  gap,\n  onSubmit,\n  ...props\n}) {\n  const [nameValue, setName] = useState(name === null || name === void 0 ? void 0 : name.value);\n  const [emailValue, setEmail] = useState(email === null || email === void 0 ? void 0 : email.value);\n  const [messageValue, setMessage] = useState(message === null || message === void 0 ? void 0 : message.value);\n  const [isNameError, setNameError] = useState(false);\n  const [isEmailError, setEmailError] = useState(false);\n  const [isMessageError, setMessageError] = useState(false);\n  const [isLoading, setLoading] = useState(false);\n  const [isSuccess, setSuccess] = useState(false);\n  const isCanvas = useMemo(() => {\n    return RenderTarget.current() === RenderTarget.canvas;\n  }, []);\n  const gridTemplateRows = useMemo(() => {\n    const rows = [];\n    if (withName || withMessage) {\n      rows.push(\"max-content\");\n    }\n    if (withMessage) {\n      rows.push(\"1fr\");\n    }\n    return [...rows, \"max-content\"].join(\" \");\n  }, [withName, withEmail, withMessage]);\n  const gridTemplateColumns = useMemo(() => {\n    const cols = [];\n    if ((withName && !withEmail || withEmail && !withName) && !withMessage && layout === \"horizontal\") {\n      return \"1fr max-content\";\n    }\n    return \"1fr\";\n  }, [withName, withEmail, withMessage, layout]);\n  const {\n    fontFamily,\n    fontSize,\n    fontWeight\n  } = useFontControls(props);\n  const borderRadius = useRadius(props);\n  const paddingValue = usePadding(props);\n  const validateForm = useCallback(() => {\n    let error = false;\n    setNameError(false);\n    setEmailError(false);\n    setMessageError(false);\n    if (withName && !nameValue) {\n      setNameError(true);\n      error = true;\n    }\n    if (withEmail && (!emailValue || !validateEmail(emailValue))) {\n      setEmailError(true);\n      error = true;\n    }\n    if (withMessage && !messageValue) {\n      setMessageError(true);\n      error = true;\n    }\n    return error;\n  }, [validateEmail, withName, withEmail, withMessage, nameValue, emailValue, messageValue]);\n  const handleSubmit = useCallback(event => {\n    setLoading(true);\n    event.preventDefault();\n    if (validateForm()) {\n      setLoading(false);\n    } else {\n      const data = new FormData(event.target);\n      const entries = Object.fromEntries(data.entries());\n      fetch(`https://api.formspark.io/${formId}`, {\n        method: \"POST\",\n        headers: {\n          \"Content-Type\": \"application/json\",\n          Accept: \"application/json\"\n        },\n        body: JSON.stringify(entries)\n      }).then(() => {\n        setSuccess(true);\n        onSubmit();\n      }).catch(() => setLoading(false));\n    }\n  }, [formId, onSubmit, validateForm]);\n  const handleNameChange = useCallback(event => {\n    setNameError(false);\n    setName(event.target.value);\n  }, []);\n  const handleEmailChange = useCallback(event => {\n    setEmailError(false);\n    setEmail(event.target.value);\n  }, []);\n  const handleMessageChange = useCallback(event => {\n    setMessageError(false);\n    setMessage(event.target.value);\n  }, []);\n  return /*#__PURE__*/_jsx(motion.div, {\n    style: {\n      ...style,\n      ...containerStyles,\n      flexDirection: \"column\",\n      \"--framer-formspark-placeholder-color\": inputs.placeholderColor\n    },\n    children: isSuccess ? /*#__PURE__*/_jsx(motion.div, {\n      style: {\n        height: \"60px\",\n        width: \"60px\",\n        background: button.fill,\n        color: button.color,\n        borderRadius: \"50%\",\n        display: \"flex\",\n        justifyContent: \"center\",\n        alignItems: \"center\"\n      },\n      initial: {\n        scale: 0\n      },\n      animate: {\n        scale: 1\n      },\n      transition: {\n        duration: .3\n      },\n      children: /*#__PURE__*/_jsx(\"svg\", {\n        xmlns: \"http://www.w3.org/2000/svg\",\n        width: \"28\",\n        height: \"28\",\n        children: /*#__PURE__*/_jsx(\"path\", {\n          d: \"M 2 14 L 10 22 L 26 6\",\n          fill: \"transparent\",\n          strokeWidth: \"4\",\n          stroke: \"currentColor\",\n          strokeLinecap: \"round\"\n        })\n      })\n    }) : /*#__PURE__*/_jsxs(\"form\", {\n      style: {\n        display: \"grid\",\n        gridTemplateRows,\n        gridTemplateColumns,\n        gap,\n        width: \"100%\",\n        height: \"100%\"\n      },\n      onSubmit: handleSubmit,\n      method: \"POST\",\n      children: [(withName || withEmail) && /*#__PURE__*/_jsxs(\"div\", {\n        style: {\n          width: \"100%\",\n          display: \"grid\",\n          gridAutoFlow: layout === \"horizontal\" ? \"column\" : \"row\",\n          gap\n        },\n        children: [withName && /*#__PURE__*/_jsx(\"input\", {\n          className: \"framer-formspark-input\",\n          type: \"text\",\n          name: \"name\",\n          placeholder: name.placeholder,\n          value: isCanvas ? name.value : nameValue,\n          onChange: handleNameChange,\n          style: {\n            ...defaultStyle,\n            padding: paddingValue,\n            borderRadius,\n            fontFamily,\n            fontWeight,\n            fontSize,\n            background: inputs.fill,\n            color: inputs.color,\n            boxShadow: `inset 0 0 0 1px ${isNameError ? inputs.error : \"transparent\"}`\n          }\n        }), withEmail && /*#__PURE__*/_jsx(\"input\", {\n          className: \"framer-formspark-input\",\n          type: \"email\",\n          name: \"email\",\n          placeholder: email.placeholder,\n          value: isCanvas ? email.value : emailValue,\n          onChange: handleEmailChange,\n          style: {\n            ...defaultStyle,\n            padding: paddingValue,\n            borderRadius,\n            fontFamily,\n            fontWeight,\n            fontSize,\n            background: inputs.fill,\n            color: inputs.color,\n            boxShadow: `inset 0 0 0 1px ${isEmailError ? inputs.error : \"transparent\"}`\n          }\n        })]\n      }), withMessage && /*#__PURE__*/_jsx(\"textarea\", {\n        className: \"framer-formspark-input\",\n        placeholder: message.placeholder,\n        name: \"message\",\n        value: isCanvas ? message.value : messageValue,\n        onChange: handleMessageChange,\n        style: {\n          ...defaultStyle,\n          minHeight: 0,\n          padding: paddingValue,\n          resize: \"vertical\",\n          borderRadius,\n          background: inputs.fill,\n          fontFamily,\n          fontWeight,\n          fontSize,\n          color: inputs.color,\n          boxShadow: `inset 0 0 0 1px ${isMessageError ? inputs.error : \"transparent\"}`\n        }\n      }), /*#__PURE__*/_jsxs(\"div\", {\n        children: [/*#__PURE__*/_jsx(motion.input, {\n          type: \"submit\",\n          value: button.label,\n          style: {\n            ...defaultStyle,\n            borderRadius,\n            padding: paddingValue,\n            fontFamily,\n            fontWeight: button.fontWeight,\n            fontSize,\n            background: button.fill,\n            cursor: \"pointer\",\n            color: button.color,\n            zIndex: 1\n          },\n          transition: {\n            type: \"ease\",\n            duration: .3\n          },\n          whileHover: {\n            opacity: .8\n          }\n        }), isLoading && /*#__PURE__*/_jsx(\"div\", {\n          style: {\n            borderRadius,\n            position: \"absolute\",\n            display: \"flex\",\n            justifyContent: \"center\",\n            alignItems: \"center\",\n            width: \"100%\",\n            height: \"100%\",\n            left: 0,\n            top: 0,\n            zIndex: 2,\n            color: button.color,\n            background: button.fill\n          },\n          children: /*#__PURE__*/_jsx(motion.div, {\n            style: {\n              height: 16,\n              width: 16\n            },\n            initial: {\n              rotate: 0\n            },\n            animate: {\n              rotate: 360\n            },\n            transition: {\n              duration: 2,\n              repeat: Infinity\n            },\n            children: /*#__PURE__*/_jsxs(\"svg\", {\n              xmlns: \"http://www.w3.org/2000/svg\",\n              width: \"16\",\n              height: \"16\",\n              children: [/*#__PURE__*/_jsx(\"path\", {\n                d: \"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",\n                fill: \"currentColor\",\n                opacity: \"0.2\"\n              }), /*#__PURE__*/_jsx(\"path\", {\n                d: \"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",\n                fill: \"currentColor\"\n              })]\n            })\n          })\n        })]\n      })]\n    })\n  });\n}, [\".framer-formspark-input::placeholder { color: var(--framer-formspark-placeholder-color) !important; }\"]);\nFormSpark.defaultProps = {\n  fontSize: 16,\n  fontFamily: \"Inter\",\n  fontWeight: 400,\n  padding: 15,\n  paddingTop: 15,\n  paddingBottom: 15,\n  paddingLeft: 15,\n  paddingRight: 15,\n  borderRadius: 8,\n  topLeftRadius: 8,\n  topRightRadius: 8,\n  bottomRightRadius: 8,\n  bottomLeftRadius: 8,\n  gap: 15,\n  nameField: {\n    value: undefined,\n    placeholder: \"Name\"\n  },\n  email: {\n    value: undefined,\n    placeholder: \"Email\"\n  },\n  message: {\n    value: undefined,\n    placeholder: \"Message\"\n  },\n  inputs: {\n    fill: \"#EBEBEB\",\n    color: \"#000\",\n    placeholderColor: \"rgba(0, 0, 0, 0.5)\",\n    error: \"#EE4444\"\n  },\n  layout: {\n    fill: \"#EBEBEB\",\n    color: \"#000\",\n    placeholderColor: \"rgba(0, 0, 0, 0.5)\",\n    error: \"#EE4444\"\n  },\n  button: {\n    label: \"Sign Up\",\n    fontWeight: 600,\n    fill: \"#000\",\n    color: \"#FFF\"\n  }\n};\naddPropertyControls(FormSpark, {\n  formId: {\n    title: \"ID\",\n    placeholder: \"7PbPpGN3\",\n    type: ControlType.String,\n    description: \"Create a [FormSpark](https://formspark.io/) account, add a new form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/formspark/)\"\n  },\n  withName: {\n    title: \"Name\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Show\",\n    disabledTitle: \"Hide\",\n    defaultValue: true\n  },\n  nameField: {\n    title: \" \",\n    type: ControlType.Object,\n    controls: {\n      placeholder: {\n        title: \"Placeholder\",\n        type: ControlType.String,\n        defaultValue: \"Name\"\n      },\n      value: {\n        title: \"Value\",\n        type: ControlType.String,\n        defaultValue: \"\"\n      }\n    },\n    hidden: props => !props.withName\n  },\n  withEmail: {\n    title: \"Email\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Show\",\n    disabledTitle: \"Hide\",\n    defaultValue: true\n  },\n  email: {\n    title: \" \",\n    type: ControlType.Object,\n    controls: {\n      placeholder: {\n        title: \"Placeholder\",\n        type: ControlType.String,\n        defaultValue: \"Email\"\n      },\n      value: {\n        title: \"Value\",\n        type: ControlType.String\n      }\n    },\n    hidden: props => !props.withEmail\n  },\n  withMessage: {\n    title: \"Message\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Show\",\n    disabledTitle: \"Hide\",\n    defaultValue: true\n  },\n  message: {\n    title: \" \",\n    type: ControlType.Object,\n    controls: {\n      placeholder: {\n        title: \"Placeholder\",\n        type: ControlType.String,\n        defaultValue: \"Message\"\n      },\n      value: {\n        title: \"Value\",\n        type: ControlType.String\n      }\n    },\n    hidden: props => !props.withMessage\n  },\n  layout: {\n    title: \"Layout\",\n    type: ControlType.Enum,\n    options: [\"horizontal\", \"vertical\"],\n    displaySegmentedControl: true,\n    defaultValue: \"horizontal\"\n  },\n  inputs: {\n    title: \"Inputs\",\n    type: ControlType.Object,\n    controls: {\n      fill: {\n        title: \"Fill\",\n        type: ControlType.Color,\n        defaultValue: \"#EBEBEB\"\n      },\n      color: {\n        title: \"Text\",\n        type: ControlType.Color,\n        defaultValue: \"#000\"\n      },\n      placeholderColor: {\n        title: \"Placeholder\",\n        type: ControlType.Color,\n        defaultValue: \"rgba(0, 0, 0, 0.5)\"\n      },\n      error: {\n        title: \"Error\",\n        type: ControlType.Color,\n        defaultValue: \"#EE4444\"\n      }\n    }\n  },\n  button: {\n    title: \"Button\",\n    type: ControlType.Object,\n    controls: {\n      label: {\n        title: \"Label\",\n        type: ControlType.String,\n        defaultValue: \"Sign Up\"\n      },\n      fontWeight: {\n        ...fontControls.fontWeight,\n        defaultValue: 600\n      },\n      fill: {\n        title: \"Fill\",\n        type: ControlType.Color,\n        defaultValue: \"#000\"\n      },\n      color: {\n        title: \"Text\",\n        type: ControlType.Color,\n        defaultValue: \"#FFF\"\n      }\n    }\n  },\n  ...fontControls,\n  fontSize: {\n    title: \"Font Size\",\n    type: ControlType.Number,\n    displayStepper: true,\n    defaultValue: 16\n  },\n  ...paddingControl,\n  ...borderRadiusControl,\n  gap: {\n    title: \"Gap\",\n    type: ControlType.Number,\n    displayStepper: true,\n    min: 0\n  },\n  onSubmit: {\n    type: ControlType.EventHandler\n  }\n});\nconst defaultStyle = {\n  WebkitAppearance: \"none\",\n  display: \"inline-block\",\n  width: \"100%\",\n  lineHeight: \"1.4em\",\n  outline: \"none\",\n  border: \"none\"\n};\nexport default FormSpark;\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FormSpark\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"290\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"550\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./FormSpark.map", "// Generated by Framer (1c1e241)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, Link, PropertyOverrides, removeHiddenBreakpointLayers, RichText, useHydratedBreakpointVariants, useLocaleInfo, withCSS } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport FormSpark from \"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js\";\nimport Navigation from \"https://framerusercontent.com/modules/tPDzL9KkFY2N3wzenKkc/wCNYFymtt8PQEI6ss6UE/FpNI1eqHu.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/cJLLQG85CnusRXmRXDoV/Aauqel5TvknK2E7MUo0a/h9o7hMpl2.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/tBbdWUcslYh6aKqTH3H7/60uSsz6eMhvcolepvsh2/QCtzoRG1E.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/nU2mfTo8J8H5J0lpS6dM/XewYhYHkwnlSh2UqP1OT/eddhjzMea.js\";\nconst NavigationFonts = getFonts(Navigation);\nconst FormSparkFonts = getFonts(FormSpark);\nconst cycleOrder = [\"gynxMpFgi\", \"RLj4czlbr\", \"P8aJTgQU2\"];\nconst breakpoints = {\n  gynxMpFgi: \"(min-width: 1200px)\",\n  P8aJTgQU2: \"(max-width: 809px)\",\n  RLj4czlbr: \"(min-width: 810px) and (max-width: 1199px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst serializationHash = \"framer-Ks3Un\";\nconst variantClassNames = {\n  gynxMpFgi: \"framer-v-j3b4rs\",\n  P8aJTgQU2: \"framer-v-1k195mf\",\n  RLj4czlbr: \"framer-v-17nc74z\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"gynxMpFgi\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  Desktop: \"gynxMpFgi\",\n  Phone: \"P8aJTgQU2\",\n  Tablet: \"RLj4czlbr\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _humanReadableVariantMap_props_variant, _ref;\n  return {\n    ...props,\n    variant: (_ref = (_humanReadableVariantMap_props_variant = humanReadableVariantMap[props.variant]) !== null && _humanReadableVariantMap_props_variant !== void 0 ? _humanReadableVariantMap_props_variant : props.variant) !== null && _ref !== void 0 ? _ref : \"gynxMpFgi\"\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(undefined, activeLocale);\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var _document_querySelector;\n      (_document_querySelector = document.querySelector('meta[name=\"viewport\"]')) === null || _document_querySelector === void 0 ? void 0 : _document_querySelector.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}-framer-Ks3Un`);\n      return () => {\n        document.body.classList.remove(`${metadata1.bodyClassName}-framer-Ks3Un`);\n      };\n    }\n  }, [undefined, activeLocale]);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const ref1 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [sharedStyle.className, sharedStyle1.className];\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"gynxMpFgi\",\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-Ks3Un\", ...sharedStyleClassNames),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-j3b4rs\", className),\n          ref: ref !== null && ref !== void 0 ? ref : ref1,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsxs(Image, {\n            background: {\n              alt: \"\",\n              fit: \"fill\",\n              intrinsicHeight: 1600,\n              intrinsicWidth: 2400,\n              pixelHeight: 1600,\n              pixelWidth: 2400,\n              sizes: \"100vw\",\n              src: \"https://framerusercontent.com/images/M42xNs5eMdK7hggrahULNgqUdg.webp\",\n              srcSet: \"https://framerusercontent.com/images/M42xNs5eMdK7hggrahULNgqUdg.webp?scale-down-to=512 512w, https://framerusercontent.com/images/M42xNs5eMdK7hggrahULNgqUdg.webp?scale-down-to=1024 1024w, https://framerusercontent.com/images/M42xNs5eMdK7hggrahULNgqUdg.webp?scale-down-to=2048 2048w, https://framerusercontent.com/images/M42xNs5eMdK7hggrahULNgqUdg.webp 2400w\"\n            },\n            className: \"framer-tb4wi3\",\n            children: [/*#__PURE__*/_jsx(Container, {\n              className: \"framer-zjl0o-container\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  P8aJTgQU2: {\n                    variant: \"WftyvbCmA\"\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Navigation, {\n                  height: \"100%\",\n                  id: \"Fq8h2KfQx\",\n                  layoutId: \"Fq8h2KfQx\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"POQ6PoU1a\",\n                  width: \"100%\"\n                })\n              })\n            }), /*#__PURE__*/_jsx(Image, {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 481,\n                intrinsicWidth: 618,\n                pixelHeight: 481,\n                pixelWidth: 618,\n                sizes: \"212px\",\n                src: \"https://framerusercontent.com/images/G6bn8EPfnSNoV9RrIufHdlciiE.png\",\n                srcSet: \"https://framerusercontent.com/images/G6bn8EPfnSNoV9RrIufHdlciiE.png?scale-down-to=512 512w, https://framerusercontent.com/images/G6bn8EPfnSNoV9RrIufHdlciiE.png 618w\"\n              },\n              className: \"framer-1pfw0d0\"\n            }), /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-zoflx4\",\n              children: [/*#__PURE__*/_jsx(Link, {\n                href: {\n                  webPageId: \"ZiaRta0QK\"\n                },\n                children: /*#__PURE__*/_jsx(\"a\", {\n                  className: \"framer-upghtw framer-zqly5\",\n                  \"data-framer-name\": \"Button\",\n                  \"data-reset\": \"button\",\n                  name: \"Button\",\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNjAw\",\n                          \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"14px\",\n                          \"--framer-font-weight\": \"600\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                        },\n                        children: /*#__PURE__*/_jsx(Link, {\n                          href: {\n                            webPageId: \"ZiaRta0QK\"\n                          },\n                          openInNewTab: false,\n                          smoothScroll: false,\n                          children: /*#__PURE__*/_jsx(\"a\", {\n                            className: \"framer-styles-preset-x63cnb\",\n                            \"data-styles-preset\": \"h9o7hMpl2\",\n                            children: \"About Me\"\n                          })\n                        })\n                      })\n                    }),\n                    className: \"framer-927r9s\",\n                    \"data-framer-name\": \"About Me\",\n                    fonts: [\"GF;Inter-600\"],\n                    name: \"About Me\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--font-selector\": \"SW50ZXItTWVkaXVt\",\n                      \"--framer-font-family\": '\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\n                      \"--framer-font-size\": \"25px\",\n                      \"--framer-font-weight\": \"500\",\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"rgb(138, 138, 138)\"\n                    },\n                    children: \"Hello and welcome! With six years of experience in Analysis, Business Intelligence, and Data Science, I have enriched my skills across various industries and countries. My expertise includes Python, SQL, and multiple cloud platforms like AWS, Snowflake, and Azure, enabling me to turn complex data into clear, actionable insights. Explore my portfolio to see how I apply this knowledge in real-world situations, creating meaningful impact in every project.\"\n                  })\n                }),\n                className: \"framer-ybqbqu\",\n                fonts: [\"Inter-Medium\"],\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })]\n            })]\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-91va6y\",\n            \"data-framer-name\": \"Features Large\",\n            name: \"Features Large\",\n            children: /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-1plcub6\",\n              \"data-framer-name\": \"Features\",\n              name: \"Features\",\n              children: [/*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-13q61yl\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    P8aJTgQU2: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 295,\n                        intrinsicWidth: 524,\n                        pixelHeight: 295,\n                        pixelWidth: 524,\n                        sizes: \"min(max(100vw - 40px, 0px), 1000px)\",\n                        src: \"https://framerusercontent.com/images/1MtvrvstuIECD9bPYW3808gQig0.jpg\",\n                        srcSet: \"https://framerusercontent.com/images/1MtvrvstuIECD9bPYW3808gQig0.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/1MtvrvstuIECD9bPYW3808gQig0.jpg 524w\"\n                      }\n                    },\n                    RLj4czlbr: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 295,\n                        intrinsicWidth: 524,\n                        pixelHeight: 295,\n                        pixelWidth: 524,\n                        sizes: \"min(max(100vw - 80px, 0px), 1000px)\",\n                        src: \"https://framerusercontent.com/images/1MtvrvstuIECD9bPYW3808gQig0.jpg\",\n                        srcSet: \"https://framerusercontent.com/images/1MtvrvstuIECD9bPYW3808gQig0.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/1MtvrvstuIECD9bPYW3808gQig0.jpg 524w\"\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 295,\n                      intrinsicWidth: 524,\n                      pixelHeight: 295,\n                      pixelWidth: 524,\n                      sizes: \"min(max(100vw, 0px), 1000px)\",\n                      src: \"https://framerusercontent.com/images/1MtvrvstuIECD9bPYW3808gQig0.jpg\",\n                      srcSet: \"https://framerusercontent.com/images/1MtvrvstuIECD9bPYW3808gQig0.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/1MtvrvstuIECD9bPYW3808gQig0.jpg 524w\"\n                    },\n                    className: \"framer-cvk045\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-9w92tj\",\n                  \"data-framer-name\": \"Content\",\n                  name: \"Content\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h1\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                          \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"50px\",\n                          \"--framer-font-weight\": \"700\",\n                          \"--framer-letter-spacing\": \"-2px\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                        },\n                        children: \"Power Bi\"\n                      })\n                    }),\n                    className: \"framer-oh7l8n\",\n                    fonts: [\"GF;Inter-700\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNTAw\",\n                          \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(136, 136, 136)\"\n                        },\n                        children: \"Where dynamic dashboards and reports bring data to life. Each project reflects my knack for transforming complex data into clear insights, with a focus on sales metrics, customer trends, and more. Experience how I blend data modeling and visual storytelling, using Power BI to deliver real-time, impactful analysis.\"\n                      })\n                    }),\n                    className: \"framer-fz420d\",\n                    fonts: [\"GF;Inter-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(\"div\", {\n                    className: \"framer-17qmnqv\",\n                    children: /*#__PURE__*/_jsx(Link, {\n                      href: {\n                        webPageId: \"TtIAwb4Bu\"\n                      },\n                      children: /*#__PURE__*/_jsx(\"a\", {\n                        className: \"framer-1te58s7 framer-zqly5\",\n                        \"data-framer-name\": \"Button\",\n                        name: \"Button\",\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              style: {\n                                \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                                \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                                \"--framer-font-size\": \"14px\",\n                                \"--framer-font-weight\": \"700\",\n                                \"--framer-text-alignment\": \"center\",\n                                \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                              },\n                              children: \"Explore Power Bi Projects\"\n                            })\n                          }),\n                          className: \"framer-4d8g86\",\n                          fonts: [\"GF;Inter-700\"],\n                          verticalAlignment: \"top\",\n                          withExternalLayout: true\n                        })\n                      })\n                    })\n                  })]\n                })]\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-14ens7s\",\n                children: [/*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-uv5lz1\",\n                  \"data-framer-name\": \"Content\",\n                  name: \"Content\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      P8aJTgQU2: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"30px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-1.2px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Tableau\"\n                          })\n                        })\n                      },\n                      RLj4czlbr: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"40px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-1.8px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Tableau\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                            \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"50px\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-letter-spacing\": \"-2px\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                          },\n                          children: \"Tableau\"\n                        })\n                      }),\n                      className: \"framer-ziqsyg\",\n                      fonts: [\"GF;Inter-700\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNTAw\",\n                          \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(136, 136, 136)\"\n                        },\n                        children: \"Discover the intersection of art and data in my Tableau portfolio. It features storytelling through data with a mix of sophisticated business analytics and captivating public data visualizations. My focus is on crafting intuitive, visually appealing dashboards that make data not just visible, but insightful and actionable.\"\n                      })\n                    }),\n                    className: \"framer-1h3dno\",\n                    fonts: [\"GF;Inter-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(\"div\", {\n                    className: \"framer-dujbk1\",\n                    children: /*#__PURE__*/_jsx(Link, {\n                      href: {\n                        webPageId: \"kOJPAcBGT\"\n                      },\n                      children: /*#__PURE__*/_jsx(\"a\", {\n                        className: \"framer-fn5yo9 framer-zqly5\",\n                        \"data-framer-name\": \"Button\",\n                        name: \"Button\",\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              style: {\n                                \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                                \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                                \"--framer-font-size\": \"14px\",\n                                \"--framer-font-weight\": \"700\",\n                                \"--framer-text-alignment\": \"center\",\n                                \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                              },\n                              children: \"View Tableau Porfolio\"\n                            })\n                          }),\n                          className: \"framer-1e6reez\",\n                          fonts: [\"GF;Inter-700\"],\n                          verticalAlignment: \"top\",\n                          withExternalLayout: true\n                        })\n                      })\n                    })\n                  })]\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    P8aJTgQU2: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 413,\n                        intrinsicWidth: 747,\n                        loading: \"lazy\",\n                        pixelHeight: 413,\n                        pixelWidth: 747,\n                        sizes: \"min(max(100vw - 40px, 0px), 1000px)\",\n                        src: \"https://framerusercontent.com/images/uLKcvS05lgASoXW8ZxNnSi0Z5LQ.jpg\",\n                        srcSet: \"https://framerusercontent.com/images/uLKcvS05lgASoXW8ZxNnSi0Z5LQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/uLKcvS05lgASoXW8ZxNnSi0Z5LQ.jpg 747w\"\n                      }\n                    },\n                    RLj4czlbr: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 413,\n                        intrinsicWidth: 747,\n                        loading: \"lazy\",\n                        pixelHeight: 413,\n                        pixelWidth: 747,\n                        sizes: \"min(max(100vw - 80px, 0px), 1000px)\",\n                        src: \"https://framerusercontent.com/images/uLKcvS05lgASoXW8ZxNnSi0Z5LQ.jpg\",\n                        srcSet: \"https://framerusercontent.com/images/uLKcvS05lgASoXW8ZxNnSi0Z5LQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/uLKcvS05lgASoXW8ZxNnSi0Z5LQ.jpg 747w\"\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 413,\n                      intrinsicWidth: 747,\n                      loading: \"lazy\",\n                      pixelHeight: 413,\n                      pixelWidth: 747,\n                      sizes: \"min(max(100vw, 0px), 1000px)\",\n                      src: \"https://framerusercontent.com/images/uLKcvS05lgASoXW8ZxNnSi0Z5LQ.jpg\",\n                      srcSet: \"https://framerusercontent.com/images/uLKcvS05lgASoXW8ZxNnSi0Z5LQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/uLKcvS05lgASoXW8ZxNnSi0Z5LQ.jpg 747w\"\n                    },\n                    className: \"framer-fth8k6\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-1ae6cjo\",\n            \"data-framer-name\": \"Features Large\",\n            name: \"Features Large\",\n            children: /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-1p0aaqq\",\n              \"data-framer-name\": \"Features\",\n              name: \"Features\",\n              children: /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-fmu733\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    P8aJTgQU2: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 525,\n                        intrinsicWidth: 700,\n                        loading: \"lazy\",\n                        pixelHeight: 525,\n                        pixelWidth: 700,\n                        sizes: \"min(max(100vw - 40px, 0px), 1000px)\",\n                        src: \"https://framerusercontent.com/images/2pjXjXcr8DOlfrpg8vtUvNYSE.jpg\",\n                        srcSet: \"https://framerusercontent.com/images/2pjXjXcr8DOlfrpg8vtUvNYSE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/2pjXjXcr8DOlfrpg8vtUvNYSE.jpg 700w\"\n                      }\n                    },\n                    RLj4czlbr: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 525,\n                        intrinsicWidth: 700,\n                        loading: \"lazy\",\n                        pixelHeight: 525,\n                        pixelWidth: 700,\n                        sizes: \"min(max(100vw - 80px, 0px), 1000px)\",\n                        src: \"https://framerusercontent.com/images/2pjXjXcr8DOlfrpg8vtUvNYSE.jpg\",\n                        srcSet: \"https://framerusercontent.com/images/2pjXjXcr8DOlfrpg8vtUvNYSE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/2pjXjXcr8DOlfrpg8vtUvNYSE.jpg 700w\"\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 525,\n                      intrinsicWidth: 700,\n                      loading: \"lazy\",\n                      pixelHeight: 525,\n                      pixelWidth: 700,\n                      sizes: \"min(max(100vw, 0px), 1000px)\",\n                      src: \"https://framerusercontent.com/images/2pjXjXcr8DOlfrpg8vtUvNYSE.jpg\",\n                      srcSet: \"https://framerusercontent.com/images/2pjXjXcr8DOlfrpg8vtUvNYSE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/2pjXjXcr8DOlfrpg8vtUvNYSE.jpg 700w\"\n                    },\n                    className: \"framer-1vbcdv7\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-udyoym\",\n                  \"data-framer-name\": \"Content\",\n                  name: \"Content\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h1\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                          \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"50px\",\n                          \"--framer-font-weight\": \"700\",\n                          \"--framer-letter-spacing\": \"-2px\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                        },\n                        children: \"Data Science\"\n                      })\n                    }),\n                    className: \"framer-14cwq6p\",\n                    fonts: [\"GF;Inter-700\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNTAw\",\n                          \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(136, 136, 136)\"\n                        },\n                        children: \"Venture into my data science explorations, where I apply machine learning, statistical analysis, and predictive modeling to tackle real-world challenges. This section illustrates my adept use of Python, and other tools in projects ranging from forecasting to sentiment analysis, all showcasing my dedication to using data for informed decision-making and innovative solutions.\"\n                      })\n                    }),\n                    className: \"framer-1tfsoj6\",\n                    fonts: [\"GF;Inter-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(\"div\", {\n                    className: \"framer-8fymhc\",\n                    children: /*#__PURE__*/_jsx(Link, {\n                      href: {\n                        webPageId: \"OAZlMe8aL\"\n                      },\n                      children: /*#__PURE__*/_jsx(\"a\", {\n                        className: \"framer-okr6w1 framer-zqly5\",\n                        \"data-framer-name\": \"Button\",\n                        name: \"Button\",\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              style: {\n                                \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                                \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                                \"--framer-font-size\": \"14px\",\n                                \"--framer-font-weight\": \"700\",\n                                \"--framer-text-alignment\": \"center\",\n                                \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                              },\n                              children: \"Data Science Innovations\"\n                            })\n                          }),\n                          className: \"framer-pcy30\",\n                          fonts: [\"GF;Inter-700\"],\n                          verticalAlignment: \"top\",\n                          withExternalLayout: true\n                        })\n                      })\n                    })\n                  })]\n                })]\n              })\n            })\n          }), /*#__PURE__*/_jsx(RichText, {\n            __fromCanvasComponent: true,\n            children: /*#__PURE__*/_jsx(React.Fragment, {\n              children: /*#__PURE__*/_jsx(\"h2\", {\n                style: {\n                  \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                  \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                  \"--framer-font-size\": \"50px\",\n                  \"--framer-font-weight\": \"700\",\n                  \"--framer-letter-spacing\": \"-2.1px\",\n                  \"--framer-text-alignment\": \"left\",\n                  \"--framer-text-color\": \"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"\n                },\n                children: \"Let's Connect\"\n              })\n            }),\n            className: \"framer-ik1jpf\",\n            fonts: [\"GF;Inter-700\"],\n            verticalAlignment: \"top\",\n            withExternalLayout: true\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-zwpvuo-container\",\n            children: /*#__PURE__*/_jsx(FormSpark, {\n              borderRadius: 8,\n              bottomLeftRadius: 8,\n              bottomRightRadius: 8,\n              button: {\n                color: \"rgb(255, 255, 255)\",\n                fill: \"rgb(0, 0, 0)\",\n                fontWeight: 600,\n                label: \"Send\"\n              },\n              email: {\n                placeholder: \"Email\",\n                value: \"\"\n              },\n              font: false,\n              fontFamily: \"Inter\",\n              fontSize: 16,\n              fontWeight: 400,\n              formId: \"jgwHFj7PZ\",\n              gap: 15,\n              height: \"100%\",\n              id: \"Q_92Yc3X_\",\n              inputs: {\n                color: \"rgb(0, 0, 0)\",\n                error: \"rgb(238, 68, 68)\",\n                fill: \"rgb(235, 235, 235)\",\n                placeholderColor: \"rgba(0, 0, 0, 0.5)\"\n              },\n              isMixedBorderRadius: false,\n              layout: \"horizontal\",\n              layoutId: \"Q_92Yc3X_\",\n              message: {\n                placeholder: \"Message\",\n                value: \"\"\n              },\n              nameField: {\n                placeholder: \"Name\",\n                value: \"\"\n              },\n              padding: 15,\n              paddingBottom: 15,\n              paddingLeft: 15,\n              paddingPerSide: false,\n              paddingRight: 15,\n              paddingTop: 15,\n              style: {\n                height: \"100%\",\n                width: \"100%\"\n              },\n              topLeftRadius: 8,\n              topRightRadius: 8,\n              width: \"100%\",\n              withEmail: true,\n              withMessage: true,\n              withName: true\n            })\n          }), /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-a94okz\",\n            children: [/*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(\"p\", {\n                  className: \"framer-styles-preset-uq0oqh\",\n                  \"data-styles-preset\": \"QCtzoRG1E\",\n                  children: \"\\xa9 Pamela Martinez 2023\"\n                })\n              }),\n              className: \"framer-66933r\",\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            }), /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-1pul8o7\"\n            })]\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-Ks3Un [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}-framer-Ks3Un { background: var(--token-c7018242-f854-4354-93c8-236664cb6489, rgb(255, 255, 255)) /* {\"name\":\"Backdrop\"} */; }`, \".framer-Ks3Un .framer-zqly5 { display: block; }\", \".framer-Ks3Un .framer-j3b4rs { align-content: center; align-items: center; background-color: var(--token-c7018242-f854-4354-93c8-236664cb6489, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-Ks3Un .framer-tb4wi3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 83.1081081081081vh; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-Ks3Un .framer-zjl0o-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\", \".framer-Ks3Un .framer-1pfw0d0 { bottom: 88px; flex: none; height: 157px; left: calc(46.83333333333336% - 212px / 2); overflow: visible; position: absolute; width: 212px; z-index: 1; }\", \".framer-Ks3Un .framer-zoflx4 { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1400px; min-height: 253px; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\", \".framer-Ks3Un .framer-upghtw { align-content: center; align-items: center; background-color: #212121; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 53px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; left: calc(45.50000000000002% - 180px / 2); overflow: visible; padding: 15px 15px 15px 15px; position: absolute; text-decoration: none; width: 180px; z-index: 1; }\", \".framer-Ks3Un .framer-927r9s, .framer-Ks3Un .framer-66933r { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-Ks3Un .framer-ybqbqu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: 283px; left: 130px; position: absolute; top: -196px; white-space: pre-wrap; width: 1043px; word-break: break-word; word-wrap: break-word; z-index: 1; }\", \".framer-Ks3Un .framer-91va6y { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 65px 0px 65px 0px; position: relative; width: 100%; }\", \".framer-Ks3Un .framer-1plcub6, .framer-Ks3Un .framer-1p0aaqq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: auto; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-Ks3Un .framer-13q61yl, .framer-Ks3Un .framer-fmu733 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-Ks3Un .framer-cvk045, .framer-Ks3Un .framer-fth8k6, .framer-Ks3Un .framer-1vbcdv7 { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 383px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\", \".framer-Ks3Un .framer-9w92tj, .framer-Ks3Un .framer-uv5lz1, .framer-Ks3Un .framer-udyoym { align-content: start; align-items: start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-Ks3Un .framer-oh7l8n, .framer-Ks3Un .framer-ziqsyg, .framer-Ks3Un .framer-14cwq6p { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\", \".framer-Ks3Un .framer-fz420d, .framer-Ks3Un .framer-1h3dno { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 460px; word-break: break-word; word-wrap: break-word; }\", \".framer-Ks3Un .framer-17qmnqv, .framer-Ks3Un .framer-dujbk1, .framer-Ks3Un .framer-8fymhc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-Ks3Un .framer-1te58s7, .framer-Ks3Un .framer-fn5yo9 { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 15px 15px 15px; position: relative; text-decoration: none; width: auto; }\", \".framer-Ks3Un .framer-4d8g86, .framer-Ks3Un .framer-1e6reez, .framer-Ks3Un .framer-pcy30 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-Ks3Un .framer-14ens7s { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-Ks3Un .framer-1ae6cjo { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 1px 0px 1px 0px; position: relative; width: 100%; }\", \".framer-Ks3Un .framer-1tfsoj6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 462px; word-break: break-word; word-wrap: break-word; }\", \".framer-Ks3Un .framer-okr6w1 { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 46px; justify-content: center; overflow: visible; padding: 15px 15px 15px 15px; position: relative; text-decoration: none; width: auto; }\", \".framer-Ks3Un .framer-ik1jpf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\", \".framer-Ks3Un .framer-zwpvuo-container { flex: none; height: 290px; position: relative; width: 550px; }\", \".framer-Ks3Un .framer-a94okz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1400px; overflow: visible; padding: 40px 40px 40px 40px; position: relative; width: 100%; }\", \".framer-Ks3Un .framer-1pul8o7 { align-content: start; align-items: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; min-height: 17px; min-width: 26px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Ks3Un .framer-j3b4rs, .framer-Ks3Un .framer-zoflx4, .framer-Ks3Un .framer-upghtw, .framer-Ks3Un .framer-91va6y, .framer-Ks3Un .framer-1plcub6, .framer-Ks3Un .framer-13q61yl, .framer-Ks3Un .framer-cvk045, .framer-Ks3Un .framer-9w92tj, .framer-Ks3Un .framer-17qmnqv, .framer-Ks3Un .framer-1te58s7, .framer-Ks3Un .framer-14ens7s, .framer-Ks3Un .framer-uv5lz1, .framer-Ks3Un .framer-dujbk1, .framer-Ks3Un .framer-fn5yo9, .framer-Ks3Un .framer-fth8k6, .framer-Ks3Un .framer-1ae6cjo, .framer-Ks3Un .framer-1p0aaqq, .framer-Ks3Un .framer-fmu733, .framer-Ks3Un .framer-1vbcdv7, .framer-Ks3Un .framer-udyoym, .framer-Ks3Un .framer-8fymhc, .framer-Ks3Un .framer-okr6w1, .framer-Ks3Un .framer-1pul8o7 { gap: 0px; } .framer-Ks3Un .framer-j3b4rs > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-Ks3Un .framer-j3b4rs > :first-child, .framer-Ks3Un .framer-zoflx4 > :first-child, .framer-Ks3Un .framer-1plcub6 > :first-child, .framer-Ks3Un .framer-cvk045 > :first-child, .framer-Ks3Un .framer-9w92tj > :first-child, .framer-Ks3Un .framer-uv5lz1 > :first-child, .framer-Ks3Un .framer-fth8k6 > :first-child, .framer-Ks3Un .framer-1p0aaqq > :first-child, .framer-Ks3Un .framer-1vbcdv7 > :first-child, .framer-Ks3Un .framer-udyoym > :first-child { margin-top: 0px; } .framer-Ks3Un .framer-j3b4rs > :last-child, .framer-Ks3Un .framer-zoflx4 > :last-child, .framer-Ks3Un .framer-1plcub6 > :last-child, .framer-Ks3Un .framer-cvk045 > :last-child, .framer-Ks3Un .framer-9w92tj > :last-child, .framer-Ks3Un .framer-uv5lz1 > :last-child, .framer-Ks3Un .framer-fth8k6 > :last-child, .framer-Ks3Un .framer-1p0aaqq > :last-child, .framer-Ks3Un .framer-1vbcdv7 > :last-child, .framer-Ks3Un .framer-udyoym > :last-child { margin-bottom: 0px; } .framer-Ks3Un .framer-zoflx4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Ks3Un .framer-upghtw > *, .framer-Ks3Un .framer-91va6y > *, .framer-Ks3Un .framer-1te58s7 > *, .framer-Ks3Un .framer-fn5yo9 > *, .framer-Ks3Un .framer-1ae6cjo > *, .framer-Ks3Un .framer-okr6w1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Ks3Un .framer-upghtw > :first-child, .framer-Ks3Un .framer-91va6y > :first-child, .framer-Ks3Un .framer-13q61yl > :first-child, .framer-Ks3Un .framer-17qmnqv > :first-child, .framer-Ks3Un .framer-1te58s7 > :first-child, .framer-Ks3Un .framer-14ens7s > :first-child, .framer-Ks3Un .framer-dujbk1 > :first-child, .framer-Ks3Un .framer-fn5yo9 > :first-child, .framer-Ks3Un .framer-1ae6cjo > :first-child, .framer-Ks3Un .framer-fmu733 > :first-child, .framer-Ks3Un .framer-8fymhc > :first-child, .framer-Ks3Un .framer-okr6w1 > :first-child, .framer-Ks3Un .framer-1pul8o7 > :first-child { margin-left: 0px; } .framer-Ks3Un .framer-upghtw > :last-child, .framer-Ks3Un .framer-91va6y > :last-child, .framer-Ks3Un .framer-13q61yl > :last-child, .framer-Ks3Un .framer-17qmnqv > :last-child, .framer-Ks3Un .framer-1te58s7 > :last-child, .framer-Ks3Un .framer-14ens7s > :last-child, .framer-Ks3Un .framer-dujbk1 > :last-child, .framer-Ks3Un .framer-fn5yo9 > :last-child, .framer-Ks3Un .framer-1ae6cjo > :last-child, .framer-Ks3Un .framer-fmu733 > :last-child, .framer-Ks3Un .framer-8fymhc > :last-child, .framer-Ks3Un .framer-okr6w1 > :last-child, .framer-Ks3Un .framer-1pul8o7 > :last-child { margin-right: 0px; } .framer-Ks3Un .framer-1plcub6 > *, .framer-Ks3Un .framer-1p0aaqq > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-Ks3Un .framer-13q61yl > *, .framer-Ks3Un .framer-14ens7s > *, .framer-Ks3Un .framer-fmu733 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-Ks3Un .framer-cvk045 > *, .framer-Ks3Un .framer-9w92tj > *, .framer-Ks3Un .framer-uv5lz1 > *, .framer-Ks3Un .framer-fth8k6 > *, .framer-Ks3Un .framer-1vbcdv7 > *, .framer-Ks3Un .framer-udyoym > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Ks3Un .framer-17qmnqv > *, .framer-Ks3Un .framer-dujbk1 > *, .framer-Ks3Un .framer-8fymhc > *, .framer-Ks3Un .framer-1pul8o7 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\", \"@media (min-width: 1200px) { .framer-Ks3Un .hidden-j3b4rs { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1199px) { .framer-Ks3Un .hidden-17nc74z { display: none !important; } .${metadata.bodyClassName}-framer-Ks3Un { background: var(--token-c7018242-f854-4354-93c8-236664cb6489, rgb(255, 255, 255)) /* {\"name\":\"Backdrop\"} */; } .framer-Ks3Un .framer-j3b4rs { width: 810px; } .framer-Ks3Un .framer-1pfw0d0 { bottom: unset; left: 16px; top: calc(53.11111111111113% - 157px / 2); } .framer-Ks3Un .framer-zoflx4 { min-height: 547px; } .framer-Ks3Un .framer-upghtw { order: 1; } .framer-Ks3Un .framer-ybqbqu { height: 376px; order: 0; top: 29px; width: 550px; } .framer-Ks3Un .framer-91va6y { padding: 32px 40px 32px 40px; } .framer-Ks3Un .framer-cvk045, .framer-Ks3Un .framer-fth8k6, .framer-Ks3Un .framer-1vbcdv7 { height: var(--framer-aspect-ratio-supported, 271px); } .framer-Ks3Un .framer-fz420d { width: 310px; } .framer-Ks3Un .framer-1h3dno { width: 327px; } .framer-Ks3Un .framer-1ae6cjo { padding: 60px 40px 60px 40px; } .framer-Ks3Un .framer-1tfsoj6 { width: 317px; }}`, `@media (max-width: 809px) { .framer-Ks3Un .hidden-1k195mf { display: none !important; } .${metadata.bodyClassName}-framer-Ks3Un { background: var(--token-c7018242-f854-4354-93c8-236664cb6489, rgb(255, 255, 255)) /* {\"name\":\"Backdrop\"} */; } .framer-Ks3Un .framer-j3b4rs { width: 390px; } .framer-Ks3Un .framer-tb4wi3 { height: 100vh; } .framer-Ks3Un .framer-1pfw0d0 { bottom: 40px; left: calc(50.00000000000002% - 212px / 2); } .framer-Ks3Un .framer-zoflx4 { min-height: 713px; padding: 20px 20px 120px 20px; } .framer-Ks3Un .framer-upghtw { bottom: 0px; left: calc(50.00000000000002% - 180px / 2); } .framer-Ks3Un .framer-ybqbqu { height: 573px; left: calc(49.743589743589766% - 343px / 2); top: -61px; width: 343px; } .framer-Ks3Un .framer-91va6y, .framer-Ks3Un .framer-1ae6cjo { gap: 20px; padding: 60px 20px 60px 20px; } .framer-Ks3Un .framer-1plcub6, .framer-Ks3Un .framer-1p0aaqq { gap: 60px; } .framer-Ks3Un .framer-13q61yl, .framer-Ks3Un .framer-14ens7s, .framer-Ks3Un .framer-fmu733, .framer-Ks3Un .framer-a94okz { flex-direction: column; } .framer-Ks3Un .framer-cvk045, .framer-Ks3Un .framer-1vbcdv7 { flex: none; height: var(--framer-aspect-ratio-supported, 292px); width: 100%; } .framer-Ks3Un .framer-9w92tj, .framer-Ks3Un .framer-udyoym { flex: none; width: 100%; } .framer-Ks3Un .framer-fz420d { width: 341px; } .framer-Ks3Un .framer-uv5lz1 { flex: none; order: 1; width: 100%; } .framer-Ks3Un .framer-1h3dno { width: 353px; } .framer-Ks3Un .framer-fth8k6 { flex: none; height: var(--framer-aspect-ratio-supported, 291px); order: 0; width: 100%; } .framer-Ks3Un .framer-1tfsoj6 { width: 330px; } .framer-Ks3Un .framer-zwpvuo-container { height: 173px; width: 371px; } .framer-Ks3Un .framer-1pul8o7 { min-width: 166px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Ks3Un .framer-91va6y, .framer-Ks3Un .framer-1plcub6, .framer-Ks3Un .framer-13q61yl, .framer-Ks3Un .framer-14ens7s, .framer-Ks3Un .framer-1ae6cjo, .framer-Ks3Un .framer-1p0aaqq, .framer-Ks3Un .framer-fmu733, .framer-Ks3Un .framer-a94okz { gap: 0px; } .framer-Ks3Un .framer-91va6y > *, .framer-Ks3Un .framer-1ae6cjo > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Ks3Un .framer-91va6y > :first-child, .framer-Ks3Un .framer-1ae6cjo > :first-child { margin-left: 0px; } .framer-Ks3Un .framer-91va6y > :last-child, .framer-Ks3Un .framer-1ae6cjo > :last-child { margin-right: 0px; } .framer-Ks3Un .framer-1plcub6 > *, .framer-Ks3Un .framer-1p0aaqq > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Ks3Un .framer-1plcub6 > :first-child, .framer-Ks3Un .framer-13q61yl > :first-child, .framer-Ks3Un .framer-14ens7s > :first-child, .framer-Ks3Un .framer-1p0aaqq > :first-child, .framer-Ks3Un .framer-fmu733 > :first-child { margin-top: 0px; } .framer-Ks3Un .framer-1plcub6 > :last-child, .framer-Ks3Un .framer-13q61yl > :last-child, .framer-Ks3Un .framer-14ens7s > :last-child, .framer-Ks3Un .framer-1p0aaqq > :last-child, .framer-Ks3Un .framer-fmu733 > :last-child { margin-bottom: 0px; } .framer-Ks3Un .framer-13q61yl > *, .framer-Ks3Un .framer-14ens7s > *, .framer-Ks3Un .framer-fmu733 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Ks3Un .framer-a94okz > *, .framer-Ks3Un .framer-a94okz > :first-child, .framer-Ks3Un .framer-a94okz > :last-child { margin: 0px; } }}`, ...sharedStyle.css, ...sharedStyle1.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * @framerIntrinsicHeight 2632\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RLj4czlbr\":{\"layout\":[\"fixed\",\"auto\"]},\"P8aJTgQU2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      */\nconst FramereddhjzMea = withCSS(Component, css, \"framer-Ks3Un\");\nexport default FramereddhjzMea;\nFramereddhjzMea.displayName = \"Home\";\nFramereddhjzMea.defaultProps = {\n  height: 2632,\n  width: 1200\n};\naddFonts(FramereddhjzMea, [{\n  family: \"Inter\",\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",\n  weight: \"600\"\n}, {\n  family: \"Inter\",\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",\n  weight: \"700\"\n}, {\n  family: \"Inter\",\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",\n  weight: \"500\"\n}, ...NavigationFonts, ...FormSparkFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramereddhjzMea\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"2632\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerIntrinsicWidth\": \"1200\",\n        \"framerImmutableVariables\": \"true\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RLj4czlbr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P8aJTgQU2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["emailRegex", "validateEmail", "email", "FormSpark", "withCSS", "formId", "withName", "name", "withEmail", "withMessage", "message", "layout", "inputs", "button", "style", "gap", "onSubmit", "props", "nameValue", "setName", "ye", "emailValue", "setEmail", "messageValue", "setMessage", "isNameError", "setNameError", "isEmailError", "setEmailError", "isMessageError", "setMessageError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "gridTemplateRows", "rows", "gridTemplateColumns", "cols", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "error", "handleSubmit", "event", "data", "entries", "handleNameChange", "handleEmailChange", "handleMessageChange", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "FormSpark_default", "NavigationFonts", "getFonts", "FpNI1eqHu_default", "FormSparkFonts", "FormSpark_default", "breakpoints", "isBrowser", "variantClassNames", "isBrowser", "removeHiddenBreakpointLayers", "breakpoints", "transitions", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Image2", "Container", "PropertyOverrides", "FpNI1eqHu_default", "Link", "RichText", "x", "FormSpark_default", "css", "FramereddhjzMea", "withCSS", "eddhjzMea_default", "addFonts", "NavigationFonts", "FormSparkFonts", "fonts", "__FramerMetadata__"]
}
