{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js", "ssg:https://framerusercontent.com/modules/oGXRxOzStxej5ADnLN1C/LZK12B9ikXEN0abuFzw6/aATwu7DJW.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://submit-form.com/${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: 0.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: 0.3\n          },\n          whileHover: {\n            opacity: 0.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        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerIntrinsicWidth\": \"550\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./FormSpark.map", "// Generated by Framer (ea5112a)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, Link, optimizeAppear, optimizeAppearTransformTemplate, PropertyOverrides, removeHiddenBreakpointLayers, RichText, SVG, useHydratedBreakpointVariants, withCSS } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport FormSpark from \"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js\";\nimport Navbar from \"https://framerusercontent.com/modules/trp2AO4KzA3eeaSLrKhF/btWJZXAhMaM09nuwevw2/Hj0SAsC8L.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/Vhj4LwxoooSXySrFbamu/lrSqgFocnsvTUa1hSHUv/f2Fx1I5pJ.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/2XBDuEyY8A8JodEq2nYY/9ZWm0h4XE9VWYjEJT3p9/aATwu7DJW.js\";\nconst NavbarFonts = getFonts(Navbar);\nconst FormSparkFonts = getFonts(FormSpark);\nconst cycleOrder = [\"ItDDpLjif\", \"bCNKfT7hM\", \"xpHIKsUDv\"];\nconst breakpoints = {\n  bCNKfT7hM: \"(min-width: 810px) and (max-width: 1439px)\",\n  ItDDpLjif: \"(min-width: 1440px)\",\n  xpHIKsUDv: \"(max-width: 809px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  bCNKfT7hM: \"framer-v-1ygfpyw\",\n  ItDDpLjif: \"framer-v-4crkod\",\n  xpHIKsUDv: \"framer-v-1gvw09n\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"ItDDpLjif\", breakpoints, variantClassNames);\n}\nconst humanReadableVariantMap = {\n  Desktop: \"ItDDpLjif\",\n  Phone: \"xpHIKsUDv\",\n  Tablet: \"bCNKfT7hM\"\n};\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transition1 = {\n  damping: 49,\n  delay: 0,\n  mass: 1,\n  stiffness: 140,\n  type: \"spring\"\n};\nconst animation = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 11\n};\nconst transformTemplate = (_, t) => `perspective(1200px) ${t}`;\nconst animation1 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst animation2 = {\n  opacity: .001,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 11\n};\nconst transition2 = {\n  damping: 30,\n  delay: 0,\n  mass: 1,\n  stiffness: 400,\n  type: \"spring\"\n};\nconst animation3 = {\n  opacity: .6,\n  rotate: 0,\n  scale: 1.1,\n  transition: transition2\n};\nconst transformTemplate1 = (_, t) => `${t} rotate(-48deg)`;\nconst metadata = metadataProvider();\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"ItDDpLjif\",\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider();\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var ref;\n      (ref = document.querySelector('meta[name=\"viewport\"]')) === null || ref === void 0 ? void 0 : ref.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(metadata1.bodyClassName);\n    }\n  }, []);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"ItDDpLjif\",\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-934Ly\", sharedStyle.className),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-4crkod\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              bCNKfT7hM: {\n                \"data-framer-appear-id\": \"zw0y4p\",\n                animate: optimizeAppear(\"animate\", \"zw0y4p\", animation1, \"1ygfpyw\"),\n                initial: optimizeAppear(\"initial\", \"zw0y4p\", animation2, \"1ygfpyw\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"zw0y4p\", transformTemplate)\n              },\n              xpHIKsUDv: {\n                \"data-framer-appear-id\": \"6t95pq\",\n                animate: optimizeAppear(\"animate\", \"6t95pq\", animation1, \"1gvw09n\"),\n                initial: optimizeAppear(\"initial\", \"6t95pq\", animation2, \"1gvw09n\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"6t95pq\", transformTemplate)\n              }\n            },\n            children: /*#__PURE__*/_jsx(Container, {\n              animate: optimizeAppear(\"animate\", \"x7ccsw\", animation1, \"4crkod\"),\n              className: \"framer-x7ccsw-container\",\n              \"data-framer-appear-id\": \"x7ccsw\",\n              exit: animation,\n              initial: optimizeAppear(\"initial\", \"x7ccsw\", animation2, \"4crkod\"),\n              transformTemplate: optimizeAppearTransformTemplate(\"x7ccsw\", transformTemplate),\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  xpHIKsUDv: {\n                    variant: \"qECA2dMIk\"\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Navbar, {\n                  height: \"100%\",\n                  id: \"e17mxSGH8\",\n                  layoutId: \"e17mxSGH8\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"sYtrDcsDp\",\n                  width: \"100%\"\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-b8bo8w\",\n            \"data-framer-name\": \"Contact Hero\",\n            name: \"Contact Hero\",\n            children: [/*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-yaq5u\",\n              \"data-framer-name\": \"Contact\",\n              name: \"Contact\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  bCNKfT7hM: {\n                    \"data-framer-appear-id\": \"53i89i\",\n                    animate: optimizeAppear(\"animate\", \"53i89i\", animation1, \"1ygfpyw\"),\n                    initial: optimizeAppear(\"initial\", \"53i89i\", animation2, \"1ygfpyw\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"53i89i\", transformTemplate)\n                  },\n                  xpHIKsUDv: {\n                    \"data-framer-appear-id\": \"kazqu8\",\n                    animate: optimizeAppear(\"animate\", \"kazqu8\", animation1, \"1gvw09n\"),\n                    initial: optimizeAppear(\"initial\", \"kazqu8\", animation2, \"1gvw09n\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"kazqu8\", transformTemplate)\n                  }\n                },\n                children: /*#__PURE__*/_jsxs(motion.div, {\n                  animate: optimizeAppear(\"animate\", \"1kqwbe9\", animation1, \"4crkod\"),\n                  className: \"framer-1kqwbe9\",\n                  \"data-framer-appear-id\": \"1kqwbe9\",\n                  \"data-framer-name\": \"Contact Wrapper\",\n                  exit: animation,\n                  initial: optimizeAppear(\"initial\", \"1kqwbe9\", animation2, \"4crkod\"),\n                  name: \"Contact Wrapper\",\n                  transformTemplate: optimizeAppearTransformTemplate(\"1kqwbe9\", transformTemplate),\n                  children: [/*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-lymomi\",\n                    \"data-framer-name\": \"Contact Heading Wrapper\",\n                    name: \"Contact Heading Wrapper\",\n                    children: [/*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-vusi4b\",\n                      \"data-framer-name\": \"Contact Heading\",\n                      name: \"Contact Heading\",\n                      children: [/*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsxs(\"p\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\n                              \"--framer-font-family\": '\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"44px\",\n                              \"--framer-letter-spacing\": \"-0.88px\",\n                              \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                            },\n                            children: [\"Let's work togheter \", /*#__PURE__*/_jsx(\"span\", {\n                              style: {\n                                \"--font-selector\": \"R0Y7T3BlbiBTYW5zLTMwMGl0YWxpYw==\",\n                                \"--framer-font-family\": '\"Open Sans\", sans-serif',\n                                \"--framer-font-style\": \"italic\",\n                                \"--framer-font-weight\": \"300\",\n                                \"--framer-text-color\": \"rgba(255, 255, 255, 0.41)\"\n                              },\n                              children: \"&\"\n                            }), \" make your website turn visitors into engaged customers\"]\n                          })\n                        }),\n                        className: \"framer-inxz1s\",\n                        \"data-framer-name\": \"Let's work togheter & make your website turn visitors into engaged customers\",\n                        fonts: [\"GF;Open Sans-regular\", \"GF;Open Sans-300italic\"],\n                        name: \"Let's work togheter & make your website turn visitors into engaged customers\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      }), /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-mxe4aq\",\n                            \"data-styles-preset\": \"f2Fx1I5pJ\",\n                            style: {\n                              \"--framer-text-color\": \"var(--token-36c9622d-7f24-4ce9-8cb1-33450977e208, rgb(134, 134, 134))\"\n                            },\n                            children: \"Thank you for visiting my portfolio! I'm excited to hear from you. If you have any questions, comments, or project inquiries, please don't hesitate to get in touch with me.  I'll do my best to get back to you as soon as possible within 24 hours!\"\n                          })\n                        }),\n                        className: \"framer-1aic5vd\",\n                        \"data-framer-name\": \"Thank you for visiting my portfolio! I'm excited to hear from you. If you have any questions, comments, or project inquiries, please don't hesitate to get in touch with me. I'll do my best to get back to you as soon as possible within 24 hours!\",\n                        name: \"Thank you for visiting my portfolio! I'm excited to hear from you. If you have any questions, comments, or project inquiries, please don't hesitate to get in touch with me. I'll do my best to get back to you as soon as possible within 24 hours!\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })]\n                    }), /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-1ysd45i\",\n                      \"data-framer-name\": \"Social\",\n                      name: \"Social\",\n                      children: [/*#__PURE__*/_jsx(Link, {\n                        href: \"https://twitter.com/lucas_empty\",\n                        children: /*#__PURE__*/_jsx(motion.a, {\n                          className: \"framer-oepjtl framer-163ntiv\",\n                          whileHover: animation3,\n                          children: /*#__PURE__*/_jsx(SVG, {\n                            className: \"framer-1ch1o5y\",\n                            \"data-framer-name\": \"Social Logo\",\n                            fill: \"rgba(0,0,0,1)\",\n                            intrinsicHeight: 14,\n                            intrinsicWidth: 16,\n                            name: \"Social Logo\",\n                            svg: '<svg width=\"16\" height=\"14\" viewBox=\"0 0 16 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_9_2526)\">\\n<path d=\"M15.9991 2.21089C15.3991 2.47627 14.7658 2.64213 14.0992 2.74165C14.7658 2.34358 15.2991 1.71331 15.5325 0.950346C14.8992 1.31524 14.1992 1.58062 13.4326 1.74648C12.8326 1.11621 11.966 0.71814 11.0327 0.71814C9.23282 0.71814 7.76623 2.17772 7.76623 3.96902C7.76623 4.2344 7.79957 4.46661 7.86623 4.69881C5.16638 4.56613 2.73318 3.27241 1.09994 1.28207C0.833287 1.77965 0.666629 2.31041 0.666629 2.90751C0.666629 4.03537 1.23326 5.03054 2.13321 5.62764C1.59991 5.59447 1.09994 5.46178 0.633298 5.22957V5.26274C0.633298 6.85501 1.76657 8.1819 3.26648 8.48045C2.99983 8.5468 2.69985 8.57997 2.39987 8.57997C2.19988 8.57997 1.96656 8.5468 1.76657 8.51363C2.19988 9.80735 3.39981 10.7693 4.83306 10.7693C3.69979 11.6318 2.29987 12.1626 0.766624 12.1626C0.499972 12.1626 0.23332 12.1626 0 12.1294C1.46658 13.0582 3.16649 13.589 5.03305 13.589C11.066 13.589 14.3659 8.61314 14.3659 4.30075C14.3659 4.16806 14.3659 4.0022 14.3659 3.86951C14.9992 3.43827 15.5658 2.87434 15.9991 2.21089Z\" fill=\"#F3F3F3\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_9_2526\">\\n<rect width=\"15.9991\" height=\"12.8708\" fill=\"white\" transform=\"translate(0 0.71814)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',\n                            withExternalLayout: true\n                          })\n                        })\n                      }), /*#__PURE__*/_jsx(Link, {\n                        href: \"https://twitter.com/lucas_empty\",\n                        children: /*#__PURE__*/_jsx(motion.a, {\n                          className: \"framer-2vnfz1 framer-163ntiv\",\n                          whileHover: animation3,\n                          children: /*#__PURE__*/_jsx(SVG, {\n                            className: \"framer-1csrwoh\",\n                            \"data-framer-name\": \"Social Logo\",\n                            fill: \"rgba(0,0,0,1)\",\n                            intrinsicHeight: 18,\n                            intrinsicWidth: 10,\n                            name: \"Social Logo\",\n                            svg: '<svg width=\"10\" height=\"18\" viewBox=\"0 0 10 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.67591 17.8281V9.91435H0V6.83021H2.67591V4.55575C2.67591 1.91626 4.29576 0.479004 6.66167 0.479004C7.79497 0.479004 8.76898 0.562977 9.05283 0.60051V3.35894L7.41194 3.35968C6.12523 3.35968 5.87609 3.96818 5.87609 4.86113V6.83021H8.94478L8.54523 9.91435H5.87609V17.8281H2.67591Z\" fill=\"#F3F3F3\"/>\\n</svg>\\n',\n                            withExternalLayout: true\n                          })\n                        })\n                      }), /*#__PURE__*/_jsx(Link, {\n                        href: \"https://www.instagram.com/lucas.webflow/\",\n                        children: /*#__PURE__*/_jsx(motion.a, {\n                          className: \"framer-1exizyl framer-163ntiv\",\n                          whileHover: animation3,\n                          children: /*#__PURE__*/_jsx(SVG, {\n                            className: \"framer-drnai3\",\n                            \"data-framer-name\": \"Social Logo\",\n                            fill: \"rgba(0,0,0,1)\",\n                            intrinsicHeight: 20,\n                            intrinsicWidth: 20,\n                            name: \"Social Logo\",\n                            svg: '<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.75219 2.2394C12.342 2.2394 12.6486 2.24906 13.6717 2.29548C14.2868 2.30297 14.8961 2.41538 15.473 2.62783C15.8914 2.78841 16.2714 3.0344 16.5885 3.34997C16.9055 3.66554 17.1527 4.04369 17.3141 4.46008C17.5275 5.03427 17.6405 5.64063 17.648 6.25281C17.6942 7.27098 17.7044 7.57621 17.7044 10.1536C17.7044 12.731 17.6947 13.0362 17.648 14.0544C17.6405 14.6666 17.5275 15.2729 17.3141 15.8471C17.1527 16.2635 16.9055 16.6416 16.5885 16.9572C16.2714 17.2728 15.8914 17.5188 15.473 17.6794C14.8961 17.8918 14.2868 18.0042 13.6717 18.0117C12.6491 18.0577 12.3424 18.0678 9.75219 18.0678C7.16198 18.0678 6.85529 18.0581 5.83269 18.0117C5.21757 18.0042 4.6083 17.8918 4.03136 17.6794C3.61297 17.5188 3.23301 17.2728 2.91592 16.9572C2.59884 16.6416 2.35166 16.2635 2.19031 15.8471C1.97685 15.2729 1.8639 14.6666 1.85637 14.0544C1.81018 13.0362 1.80002 12.731 1.80002 10.1536C1.80002 7.57621 1.80972 7.27098 1.85637 6.25281C1.8639 5.64063 1.97685 5.03427 2.19031 4.46008C2.35166 4.04369 2.59884 3.66554 2.91592 3.34997C3.23301 3.0344 3.61297 2.78841 4.03136 2.62783C4.6083 2.41538 5.21757 2.30297 5.83269 2.29548C6.85575 2.24952 7.16244 2.2394 9.75219 2.2394ZM9.75219 0.5C7.11948 0.5 6.78785 0.511032 5.75325 0.557919C4.94821 0.573855 4.15172 0.725553 3.39766 1.00656C2.7508 1.24911 2.1649 1.62922 1.68086 2.12035C1.18692 2.60226 0.804671 3.18568 0.560801 3.82987C0.278446 4.58033 0.12602 5.37302 0.110007 6.1742C0.0638195 7.20295 0.0527344 7.533 0.0527344 10.1531C0.0527344 12.7733 0.0638194 13.1033 0.110931 14.133C0.126943 14.9342 0.279369 15.7269 0.561725 16.4773C0.805324 17.1214 1.18726 17.7048 1.68086 18.1868C2.16517 18.6781 2.75139 19.0582 3.39859 19.3006C4.15265 19.5816 4.94914 19.7333 5.75417 19.7493C6.78878 19.7952 7.11902 19.8072 9.75312 19.8072C12.3872 19.8072 12.7175 19.7962 13.7521 19.7493C14.5571 19.7333 15.3536 19.5816 16.1076 19.3006C16.7518 19.0521 17.3367 18.6726 17.825 18.1863C18.3134 17.7 18.6943 17.1176 18.9436 16.4764C19.2259 15.7259 19.3784 14.9333 19.3944 14.1321C19.4406 13.1033 19.4517 12.7733 19.4517 10.1531C19.4517 7.533 19.4406 7.20295 19.3935 6.17329C19.3774 5.3721 19.225 4.57941 18.9427 3.82895C18.6991 3.18485 18.3171 2.60143 17.8235 2.11943C17.3392 1.62819 16.753 1.24808 16.1058 1.00564C15.3517 0.724633 14.5553 0.572935 13.7502 0.556999C12.7165 0.511032 12.3849 0.5 9.75219 0.5Z\" fill=\"#F3F3F3\"/>\\n<path d=\"M9.75044 5.19629C8.76531 5.19629 7.8023 5.48702 6.9832 6.03171C6.16409 6.57641 5.52568 7.3506 5.14868 8.2564C4.77169 9.16219 4.67305 10.1589 4.86524 11.1205C5.05743 12.0821 5.53182 12.9653 6.22841 13.6586C6.925 14.3519 7.81251 14.824 8.77871 15.0153C9.74491 15.2065 10.7464 15.1084 11.6565 14.7332C12.5667 14.358 13.3446 13.7226 13.8919 12.9074C14.4392 12.0922 14.7313 11.1338 14.7313 10.1534C14.7313 8.8387 14.2066 7.57783 13.2725 6.64819C12.3384 5.71856 11.0715 5.19629 9.75044 5.19629ZM9.75044 13.3711C9.11098 13.3711 8.48588 13.1824 7.95419 12.8288C7.4225 12.4753 7.0081 11.9727 6.76339 11.3848C6.51868 10.7968 6.45466 10.1498 6.57941 9.52566C6.70416 8.90148 7.01209 8.32814 7.46425 7.87814C7.91642 7.42813 8.49251 7.12168 9.11968 6.99752C9.74685 6.87336 10.3969 6.93708 10.9877 7.18063C11.5785 7.42417 12.0834 7.83659 12.4387 8.36574C12.794 8.89489 12.9836 9.517 12.9836 10.1534C12.9836 11.0068 12.643 11.8252 12.0366 12.4287C11.4303 13.0321 10.6079 13.3711 9.75044 13.3711Z\" fill=\"#F3F3F3\"/>\\n<path d=\"M14.9296 6.15855C15.5724 6.15855 16.0935 5.63993 16.0935 5.00017C16.0935 4.36042 15.5724 3.8418 14.9296 3.8418C14.2867 3.8418 13.7656 4.36042 13.7656 5.00017C13.7656 5.63993 14.2867 6.15855 14.9296 6.15855Z\" fill=\"#F3F3F3\"/>\\n</svg>\\n',\n                            withExternalLayout: true\n                          })\n                        })\n                      }), /*#__PURE__*/_jsx(Link, {\n                        href: \"https://twitter.com/lucas_empty\",\n                        children: /*#__PURE__*/_jsx(motion.a, {\n                          className: \"framer-pf2lbo framer-163ntiv\",\n                          whileHover: animation3,\n                          children: /*#__PURE__*/_jsx(SVG, {\n                            className: \"framer-hp8xp4\",\n                            \"data-framer-name\": \"Social Logo\",\n                            fill: \"rgba(0,0,0,1)\",\n                            intrinsicHeight: 19,\n                            intrinsicWidth: 20,\n                            name: \"Social Logo\",\n                            svg: '<svg width=\"20\" height=\"19\" viewBox=\"0 0 20 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.72925 0.144043C4.58765 0.144043 0.451172 4.26076 0.451172 9.37781C0.451172 13.4561 3.11862 16.9187 6.79119 18.1499C7.25509 18.2268 7.40973 17.9575 7.40973 17.6882C7.40973 17.4574 7.40973 16.8802 7.40973 16.1108C4.8196 16.6879 4.27838 14.8796 4.27838 14.8796C3.85313 13.8023 3.23459 13.533 3.23459 13.533C2.3841 12.9559 3.31191 12.9559 3.31191 12.9559C4.23972 13.0328 4.74228 13.9177 4.74228 13.9177C5.55411 15.3413 6.90717 14.9181 7.44839 14.6872C7.52571 14.0716 7.75766 13.6869 8.02827 13.4561C5.97936 13.2252 3.81447 12.4173 3.81447 8.87765C3.81447 7.87732 4.1624 7.03089 4.78094 6.41531C4.70362 6.18446 4.3557 5.26109 4.85826 3.95297C4.85826 3.95297 5.63143 3.72213 7.40973 4.91482C8.14424 4.72245 8.95608 4.60703 9.72925 4.60703C10.5024 4.60703 11.3143 4.72245 12.0488 4.91482C13.8271 3.72213 14.6002 3.95297 14.6002 3.95297C15.1028 5.22261 14.7935 6.14599 14.6776 6.41531C15.2574 7.06937 15.644 7.87732 15.644 8.87765C15.644 12.4173 13.4791 13.1867 11.3916 13.4176C11.7395 13.6869 12.0101 14.264 12.0101 15.1104C12.0101 16.3416 12.0101 17.3419 12.0101 17.6497C12.0101 17.8806 12.1647 18.1884 12.6673 18.1114C16.3399 16.9187 19.0073 13.4561 19.0073 9.37781C19.0073 4.26076 14.8708 0.144043 9.72925 0.144043Z\" fill=\"#F3F3F3\"/>\\n</svg>\\n',\n                            withExternalLayout: true\n                          })\n                        })\n                      })]\n                    })]\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-ps1sz6\",\n                    \"data-framer-name\": \"Contact Form\",\n                    name: \"Contact Form\",\n                    children: /*#__PURE__*/_jsx(Container, {\n                      className: \"framer-13pirla-container\",\n                      children: /*#__PURE__*/_jsx(FormSpark, {\n                        borderRadius: 8,\n                        bottomLeftRadius: 8,\n                        bottomRightRadius: 8,\n                        button: {\n                          color: 'var(--token-b4bc3b46-a478-443a-9ea6-b99a0360b06a, rgb(18, 18, 18)) /* {\"name\":\"Black\"} */',\n                          fill: 'var(--token-5d3e0af9-9983-45ee-8035-346f9c7ac53a, rgb(251, 251, 251)) /* {\"name\":\"White\"} */',\n                          fontWeight: 600,\n                          label: \"Send e-mail\"\n                        },\n                        email: {\n                          placeholder: \"Enter your e-mail\",\n                          value: \"\"\n                        },\n                        font: true,\n                        fontFamily: \"satoshi\",\n                        fontSize: 16,\n                        fontWeight: 400,\n                        formId: \"\",\n                        gap: 25,\n                        height: \"100%\",\n                        id: \"CES0r4B4h\",\n                        inputs: {\n                          color: 'var(--token-5d3e0af9-9983-45ee-8035-346f9c7ac53a, rgb(251, 251, 251)) /* {\"name\":\"White\"} */',\n                          error: \"rgb(238, 68, 68)\",\n                          fill: \"rgba(84, 84, 84, 0.26)\",\n                          placeholderColor: \"rgba(251, 251, 251, 0.68)\"\n                        },\n                        isMixedBorderRadius: false,\n                        layout: \"vertical\",\n                        layoutId: \"CES0r4B4h\",\n                        message: {\n                          placeholder: \"Your message...\",\n                          value: \"\"\n                        },\n                        nameField: {\n                          placeholder: \"Enter your name\",\n                          value: \"\"\n                        },\n                        padding: 18,\n                        paddingBottom: 18,\n                        paddingLeft: 18,\n                        paddingPerSide: false,\n                        paddingRight: 18,\n                        paddingTop: 18,\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                    })\n                  })]\n                })\n              })\n            }), /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                bCNKfT7hM: {\n                  \"data-framer-appear-id\": \"tvinzd\",\n                  animate: optimizeAppear(\"animate\", \"tvinzd\", animation1, \"1ygfpyw\"),\n                  initial: optimizeAppear(\"initial\", \"tvinzd\", animation2, \"1ygfpyw\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"tvinzd\", transformTemplate)\n                },\n                xpHIKsUDv: {\n                  \"data-framer-appear-id\": \"1wfuevb\",\n                  animate: optimizeAppear(\"animate\", \"1wfuevb\", animation1, \"1gvw09n\"),\n                  initial: optimizeAppear(\"initial\", \"1wfuevb\", animation2, \"1gvw09n\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1wfuevb\", transformTemplate)\n                }\n              },\n              children: /*#__PURE__*/_jsx(motion.div, {\n                animate: optimizeAppear(\"animate\", \"9btnjc\", animation1, \"4crkod\"),\n                className: \"framer-9btnjc\",\n                \"data-framer-appear-id\": \"9btnjc\",\n                \"data-framer-name\": \"Gradient\",\n                exit: animation,\n                initial: optimizeAppear(\"initial\", \"9btnjc\", animation2, \"4crkod\"),\n                name: \"Gradient\",\n                transformTemplate: optimizeAppearTransformTemplate(\"9btnjc\", transformTemplate),\n                children: /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    sizes: \"2182.667px\",\n                    src: new URL(\"https://framerusercontent.com/images/hCQ8IwA2bHvk0TF9jdTQrV2JNU.png\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/hCQ8IwA2bHvk0TF9jdTQrV2JNU.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/hCQ8IwA2bHvk0TF9jdTQrV2JNU.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/hCQ8IwA2bHvk0TF9jdTQrV2JNU.png\").href} 1251w`\n                  },\n                  className: \"framer-1d5ydp2\",\n                  \"data-framer-name\": \"Gradient\",\n                  name: \"Gradient\",\n                  transformTemplate: transformTemplate1\n                })\n              })\n            })]\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-934Ly [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName} { background: #121212; }`, \".framer-934Ly .framer-163ntiv { display: block; }\", \".framer-934Ly .framer-4crkod { align-content: center; align-items: center; background-color: #121212; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1440px; }\", \".framer-934Ly .framer-x7ccsw-container { flex: none; height: auto; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-934Ly .framer-b8bo8w { align-content: center; align-items: center; background-color: #121212; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: 100vh; justify-content: center; overflow: hidden; padding: 40px 64px 120px 64px; position: relative; width: 100%; }\", \".framer-934Ly .framer-yaq5u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 97px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 10; }\", \".framer-934Ly .framer-1kqwbe9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 97px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 1px; }\", \".framer-934Ly .framer-lymomi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 552px; }\", \".framer-934Ly .framer-vusi4b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-934Ly .framer-inxz1s { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 552px; word-break: break-word; word-wrap: break-word; }\", \".framer-934Ly .framer-1aic5vd { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.9; position: relative; white-space: pre-wrap; width: 552px; word-break: break-word; word-wrap: break-word; }\", \".framer-934Ly .framer-1ysd45i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-934Ly .framer-oepjtl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 14px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 16px; }\", \".framer-934Ly .framer-1ch1o5y { flex: none; height: 14px; position: relative; width: 16px; }\", \".framer-934Ly .framer-2vnfz1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 10px; }\", \".framer-934Ly .framer-1csrwoh { flex: none; height: 18px; position: relative; width: 10px; }\", \".framer-934Ly .framer-1exizyl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 20px; }\", \".framer-934Ly .framer-drnai3 { flex: none; height: 20px; position: relative; width: 20px; }\", \".framer-934Ly .framer-pf2lbo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 19px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 20px; }\", \".framer-934Ly .framer-hp8xp4 { flex: none; height: 19px; position: relative; width: 20px; }\", \".framer-934Ly .framer-ps1sz6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-934Ly .framer-13pirla-container { flex: none; height: 345px; position: relative; width: 100%; }\", \".framer-934Ly .framer-9btnjc { bottom: 0px; flex: none; height: 293px; left: 0px; overflow: hidden; position: absolute; transform: perspective(1200px); width: 100%; z-index: 1; }\", \".framer-934Ly .framer-1d5ydp2 { aspect-ratio: 1.0008000620616213 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2181px); left: -356px; opacity: 0.8; position: absolute; top: -705px; transform: rotate(-48deg); width: 2183px; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-934Ly .framer-4crkod, .framer-934Ly .framer-b8bo8w, .framer-934Ly .framer-yaq5u, .framer-934Ly .framer-1kqwbe9, .framer-934Ly .framer-lymomi, .framer-934Ly .framer-vusi4b, .framer-934Ly .framer-1ysd45i, .framer-934Ly .framer-oepjtl, .framer-934Ly .framer-2vnfz1, .framer-934Ly .framer-1exizyl, .framer-934Ly .framer-pf2lbo, .framer-934Ly .framer-ps1sz6 { gap: 0px; } .framer-934Ly .framer-4crkod > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-934Ly .framer-4crkod > :first-child, .framer-934Ly .framer-b8bo8w > :first-child, .framer-934Ly .framer-lymomi > :first-child, .framer-934Ly .framer-vusi4b > :first-child, .framer-934Ly .framer-ps1sz6 > :first-child { margin-top: 0px; } .framer-934Ly .framer-4crkod > :last-child, .framer-934Ly .framer-b8bo8w > :last-child, .framer-934Ly .framer-lymomi > :last-child, .framer-934Ly .framer-vusi4b > :last-child, .framer-934Ly .framer-ps1sz6 > :last-child { margin-bottom: 0px; } .framer-934Ly .framer-b8bo8w > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-934Ly .framer-yaq5u > *, .framer-934Ly .framer-1kqwbe9 > * { margin: 0px; margin-left: calc(97px / 2); margin-right: calc(97px / 2); } .framer-934Ly .framer-yaq5u > :first-child, .framer-934Ly .framer-1kqwbe9 > :first-child, .framer-934Ly .framer-1ysd45i > :first-child, .framer-934Ly .framer-oepjtl > :first-child, .framer-934Ly .framer-2vnfz1 > :first-child, .framer-934Ly .framer-1exizyl > :first-child, .framer-934Ly .framer-pf2lbo > :first-child { margin-left: 0px; } .framer-934Ly .framer-yaq5u > :last-child, .framer-934Ly .framer-1kqwbe9 > :last-child, .framer-934Ly .framer-1ysd45i > :last-child, .framer-934Ly .framer-oepjtl > :last-child, .framer-934Ly .framer-2vnfz1 > :last-child, .framer-934Ly .framer-1exizyl > :last-child, .framer-934Ly .framer-pf2lbo > :last-child { margin-right: 0px; } .framer-934Ly .framer-lymomi > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-934Ly .framer-vusi4b > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-934Ly .framer-1ysd45i > * { margin: 0px; margin-left: calc(34px / 2); margin-right: calc(34px / 2); } .framer-934Ly .framer-oepjtl > *, .framer-934Ly .framer-2vnfz1 > *, .framer-934Ly .framer-1exizyl > *, .framer-934Ly .framer-pf2lbo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-934Ly .framer-ps1sz6 > * { margin: 0px; margin-bottom: calc(49px / 2); margin-top: calc(49px / 2); } }\", \"@media (min-width: 1440px) { .framer-934Ly .hidden-4crkod { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1439px) { .framer-934Ly .hidden-1ygfpyw { display: none !important; } .${metadata.bodyClassName} { background: #121212; } .framer-934Ly .framer-4crkod { width: 810px; } .framer-934Ly .framer-b8bo8w { height: min-content; padding: 66px 64px 120px 64px; } .framer-934Ly .framer-yaq5u { gap: 0px; } .framer-934Ly .framer-1kqwbe9 { flex-direction: column; gap: 82px; } .framer-934Ly .framer-lymomi, .framer-934Ly .framer-inxz1s, .framer-934Ly .framer-1aic5vd { width: 100%; } .framer-934Ly .framer-ps1sz6 { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-934Ly .framer-yaq5u, .framer-934Ly .framer-1kqwbe9 { gap: 0px; } .framer-934Ly .framer-yaq5u > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-934Ly .framer-yaq5u > :first-child { margin-left: 0px; } .framer-934Ly .framer-yaq5u > :last-child { margin-right: 0px; } .framer-934Ly .framer-1kqwbe9 > * { margin: 0px; margin-bottom: calc(82px / 2); margin-top: calc(82px / 2); } .framer-934Ly .framer-1kqwbe9 > :first-child { margin-top: 0px; } .framer-934Ly .framer-1kqwbe9 > :last-child { margin-bottom: 0px; } }}`, `@media (max-width: 809px) { .framer-934Ly .hidden-1gvw09n { display: none !important; } .${metadata.bodyClassName} { background: #121212; } .framer-934Ly .framer-4crkod { width: 390px; } .framer-934Ly .framer-b8bo8w { height: min-content; padding: 40px 16px 120px 16px; } .framer-934Ly .framer-yaq5u { gap: 0px; } .framer-934Ly .framer-1kqwbe9 { flex-direction: column; gap: 82px; } .framer-934Ly .framer-lymomi { gap: 40px; width: 100%; } .framer-934Ly .framer-vusi4b { gap: 16px; } .framer-934Ly .framer-inxz1s, .framer-934Ly .framer-1aic5vd { width: 100%; } .framer-934Ly .framer-ps1sz6 { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-934Ly .framer-yaq5u, .framer-934Ly .framer-1kqwbe9, .framer-934Ly .framer-lymomi, .framer-934Ly .framer-vusi4b { gap: 0px; } .framer-934Ly .framer-yaq5u > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-934Ly .framer-yaq5u > :first-child { margin-left: 0px; } .framer-934Ly .framer-yaq5u > :last-child { margin-right: 0px; } .framer-934Ly .framer-1kqwbe9 > * { margin: 0px; margin-bottom: calc(82px / 2); margin-top: calc(82px / 2); } .framer-934Ly .framer-1kqwbe9 > :first-child, .framer-934Ly .framer-lymomi > :first-child, .framer-934Ly .framer-vusi4b > :first-child { margin-top: 0px; } .framer-934Ly .framer-1kqwbe9 > :last-child, .framer-934Ly .framer-lymomi > :last-child, .framer-934Ly .framer-vusi4b > :last-child { margin-bottom: 0px; } .framer-934Ly .framer-lymomi > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-934Ly .framer-vusi4b > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}`, ...sharedStyle.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerIntrinsicHeight 893\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerIntrinsicWidth 1440\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bCNKfT7hM\":{\"layout\":[\"fixed\",\"auto\"]},\"xpHIKsUDv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                */\nconst FrameraATwu7DJW = withCSS(Component, css, \"framer-934Ly\");\nexport default FrameraATwu7DJW;\nFrameraATwu7DJW.displayName = \"Contact\";\nFrameraATwu7DJW.defaultProps = {\n  height: 893,\n  width: 1440\n};\naddFonts(FrameraATwu7DJW, [{\n  family: \"Open Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/aATwu7DJW:default\",\n    url: \"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4nY1M2xLER.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4nY1M2xLER.ttf\",\n  weight: \"400\"\n}, {\n  family: \"Open Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/aATwu7DJW:default\",\n    url: \"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVcUwaERZjA.ttf\"\n  },\n  style: \"italic\",\n  url: \"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVcUwaERZjA.ttf\",\n  weight: \"300\"\n}, ...NavbarFonts, ...FormSparkFonts, ...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FrameraATwu7DJW\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bCNKfT7hM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xpHIKsUDv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"1440\",\n        \"framerIntrinsicHeight\": \"893\",\n        \"framerResponsiveScreen\": \"\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["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", "NavbarFonts", "getFonts", "Hj0SAsC8L_default", "FormSparkFonts", "FormSpark_default", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "humanReadableVariantMap", "transitions", "transition1", "animation", "transformTemplate", "_", "t", "animation1", "animation2", "transition2", "animation3", "transformTemplate1", "metadata", "aATwu7DJW_default", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "PropertyOverrides", "optimizeAppear", "optimizeAppearTransformTemplate", "Container", "Hj0SAsC8L_default", "RichText", "x", "Link", "SVG", "FormSpark_default", "Image2", "css", "FrameraATwu7DJW", "withCSS", "addFonts", "NavbarFonts", "FormSparkFonts", "fonts", "__FramerMetadata__"]
}
