{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/H9CvVrwLrFYAbKP9eYKI/LLwTL59gOwG1vkJhdZ4b/Facebook.js", "ssg:https://framerusercontent.com/modules/HGu8PKPDwAHu4uSgLoYR/8ScWawSL1gtbsgAxdHrd/Instagram.js", "ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js", "ssg:https://framerusercontent.com/modules/zx0IKuGoRlz8piw7z8Rh/868NNOJ8yCbwVHqHJW0C/c0PxOTC0O.js"],
  "sourcesContent": ["import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { useMemo } from \"react\";\nimport { addPropertyControls, ControlType } from \"framer\";\nimport { motion } from \"framer-motion\";\nimport { containerStyles } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nimport { emptyStateStyle, stateParagraphStyle, stateTitleStyle } from \"https://framer.com/m/framer/integrations-styles.js@0.2.0\";\nconst facebookRegex = /^https?:\\/\\/(?:www\\.)?facebook\\.com\\//; /**\n                                                               * Facebook\n                                                               *\n                                                               * @framerIntrinsicWidth 200\n                                                               * @framerIntrinsicHeight 200\n                                                               *\n                                                               * @framerSupportedLayoutWidth any\n                                                               * @framerSupportedLayoutHeight any\n                                                               */\nexport default function Facebook({\n  url,\n  style,\n  ...props\n}) {\n  const encodedUrl = useMemo(() => {\n    if (!facebookRegex.test(url)) {\n      return null;\n    }\n    return encodeURIComponent(url.replace(/(\\?.*)/, \"\"));\n  }, [url]);\n  return url && encodedUrl ? /*#__PURE__*/_jsx(motion.iframe, {\n    style: {\n      ...containerStyles,\n      ...style\n    },\n    src: `https://www.facebook.com/plugins/post.php?href=${encodedUrl}`,\n    frameBorder: 0,\n    width: \"100%\",\n    height: \"100%\",\n    scrolling: \"no\",\n    ...props\n  }) : /*#__PURE__*/_jsxs(motion.div, {\n    style: {\n      ...emptyStateStyle,\n      ...style\n    },\n    ...props,\n    children: [/*#__PURE__*/_jsx(\"h1\", {\n      style: stateTitleStyle,\n      children: \"Facebook\"\n    }), url ? /*#__PURE__*/_jsx(\"p\", {\n      style: stateParagraphStyle,\n      children: \"This post URL doesn\u2019t seem correct.\"\n    }) : /*#__PURE__*/_jsx(\"p\", {\n      style: stateParagraphStyle,\n      children: \"Set a post URL in the Properties.\"\n    })]\n  });\n}\n;\naddPropertyControls(Facebook, {\n  url: {\n    title: \"URL\",\n    type: ControlType.String,\n    placeholder: \"https://www.facebook.com/***\",\n    defaultValue: \"https://www.facebook.com/framerjs/videos/284888495883514\"\n  }\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Facebook\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutWidth\": \"any\",\n        \"framerIntrinsicWidth\": \"200\",\n        \"framerSupportedLayoutHeight\": \"any\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"200\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Facebook.map", "import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { useMemo } from \"react\";\nimport { addPropertyControls, ControlType } from \"framer\";\nimport { motion } from \"framer-motion\";\nimport { containerStyles } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nimport { emptyStateStyle, stateParagraphStyle, stateTitleStyle } from \"https://framer.com/m/framer/integrations-styles.js@0.2.0\";\nconst instagramRegex = /^https?:\\/\\/www\\.instagram\\.com\\/p\\/([^\\/]+)/; /**\n                                                                       * INSTAGRAM\n                                                                       *\n                                                                       * @framerIntrinsicWidth 300\n                                                                       * @framerIntrinsicHeight 410\n                                                                       *\n                                                                       * @framerSupportedLayoutWidth fixed\n                                                                       * @framerSupportedLayoutHeight fixed\n                                                                       */\nexport default function Instagram({\n  url,\n  style,\n  ...props\n}) {\n  const id = useMemo(() => {\n    var ref;\n    const [, id] = (ref = url.match(instagramRegex)) !== null && ref !== void 0 ? ref : [null, null];\n    return id;\n  }, [url]);\n  return url && id ? /*#__PURE__*/_jsx(motion.iframe, {\n    style: {\n      ...containerStyles,\n      ...style\n    },\n    src: `https://www.instagram.com/p/${id}/embed/`,\n    frameBorder: 0,\n    width: \"100%\",\n    height: \"100%\",\n    scrolling: \"no\",\n    ...props\n  }) : /*#__PURE__*/_jsxs(motion.div, {\n    style: {\n      ...emptyStateStyle,\n      ...style\n    },\n    ...props,\n    children: [/*#__PURE__*/_jsx(\"h1\", {\n      style: stateTitleStyle,\n      children: \"Instagram\"\n    }), url ? /*#__PURE__*/_jsx(\"p\", {\n      style: stateParagraphStyle,\n      children: \"This post URL doesn\u2019t seem correct.\"\n    }) : /*#__PURE__*/_jsx(\"p\", {\n      style: stateParagraphStyle,\n      children: \"Set a post URL in the Properties.\"\n    })]\n  });\n}\n;\naddPropertyControls(Instagram, {\n  url: {\n    title: \"URL\",\n    type: ControlType.String,\n    placeholder: \"https://www.instagram.com/p/***\",\n    defaultValue: \"https://www.instagram.com/p/CteMsH8M67r/\"\n  }\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Instagram\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"300\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerIntrinsicHeight\": \"410\",\n        \"framerContractVersion\": \"1\",\n        \"framerSupportedLayoutHeight\": \"fixed\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Instagram.map", "import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addPropertyControls, ControlType, RenderTarget, withCSS } from \"framer\";\nimport { motion } from \"framer-motion\";\nimport { containerStyles, usePadding, useRadius, paddingControl, borderRadiusControl, fontControls, useFontControls } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nimport { useCallback, useMemo, useState } from \"react\";\nconst emailRegex = /^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;\nconst validateEmail = email => {\n  return emailRegex.test(String(email).toLowerCase());\n}; /**\n   * FORMSPARK\n   *\n   * @framerIntrinsicWidth 550\n   * @framerIntrinsicHeight 290\n   *\n   * @framerSupportedLayoutWidth fixed\n   * @framerSupportedLayoutHeight fixed\n   */\nconst FormSpark = withCSS(function FormSpark({\n  formId,\n  withName,\n  nameField: name,\n  withEmail,\n  email,\n  withMessage,\n  message,\n  layout,\n  inputs,\n  button,\n  style,\n  gap,\n  onSubmit,\n  ...props\n}) {\n  const [nameValue, setName] = useState(name === null || name === void 0 ? void 0 : name.value);\n  const [emailValue, setEmail] = useState(email === null || email === void 0 ? void 0 : email.value);\n  const [messageValue, setMessage] = useState(message === null || message === void 0 ? void 0 : message.value);\n  const [isNameError, setNameError] = useState(false);\n  const [isEmailError, setEmailError] = useState(false);\n  const [isMessageError, setMessageError] = useState(false);\n  const [isLoading, setLoading] = useState(false);\n  const [isSuccess, setSuccess] = useState(false);\n  const isCanvas = useMemo(() => {\n    return RenderTarget.current() === RenderTarget.canvas;\n  }, []);\n  const gridTemplateRows = useMemo(() => {\n    const rows = [];\n    if (withName || withMessage) {\n      rows.push(\"max-content\");\n    }\n    if (withMessage) {\n      rows.push(\"1fr\");\n    }\n    return [...rows, \"max-content\"].join(\" \");\n  }, [withName, withEmail, withMessage]);\n  const gridTemplateColumns = useMemo(() => {\n    const cols = [];\n    if ((withName && !withEmail || withEmail && !withName) && !withMessage && layout === \"horizontal\") {\n      return \"1fr max-content\";\n    }\n    return \"1fr\";\n  }, [withName, withEmail, withMessage, layout]);\n  const {\n    fontFamily,\n    fontSize,\n    fontWeight\n  } = useFontControls(props);\n  const borderRadius = useRadius(props);\n  const paddingValue = usePadding(props);\n  const validateForm = useCallback(() => {\n    let error = false;\n    setNameError(false);\n    setEmailError(false);\n    setMessageError(false);\n    if (withName && !nameValue) {\n      setNameError(true);\n      error = true;\n    }\n    if (withEmail && (!emailValue || !validateEmail(emailValue))) {\n      setEmailError(true);\n      error = true;\n    }\n    if (withMessage && !messageValue) {\n      setMessageError(true);\n      error = true;\n    }\n    return error;\n  }, [validateEmail, withName, withEmail, withMessage, nameValue, emailValue, messageValue]);\n  const handleSubmit = useCallback(event => {\n    setLoading(true);\n    event.preventDefault();\n    if (validateForm()) {\n      setLoading(false);\n    } else {\n      const data = new FormData(event.target);\n      const entries = Object.fromEntries(data.entries());\n      fetch(`https://api.formspark.io/${formId}`, {\n        method: \"POST\",\n        headers: {\n          \"Content-Type\": \"application/json\",\n          Accept: \"application/json\"\n        },\n        body: JSON.stringify(entries)\n      }).then(() => {\n        setSuccess(true);\n        onSubmit();\n      }).catch(() => setLoading(false));\n    }\n  }, [formId, onSubmit, validateForm]);\n  const handleNameChange = useCallback(event => {\n    setNameError(false);\n    setName(event.target.value);\n  }, []);\n  const handleEmailChange = useCallback(event => {\n    setEmailError(false);\n    setEmail(event.target.value);\n  }, []);\n  const handleMessageChange = useCallback(event => {\n    setMessageError(false);\n    setMessage(event.target.value);\n  }, []);\n  return /*#__PURE__*/_jsx(motion.div, {\n    style: {\n      ...style,\n      ...containerStyles,\n      flexDirection: \"column\",\n      \"--framer-formspark-placeholder-color\": inputs.placeholderColor\n    },\n    children: isSuccess ? /*#__PURE__*/_jsx(motion.div, {\n      style: {\n        height: \"60px\",\n        width: \"60px\",\n        background: button.fill,\n        color: button.color,\n        borderRadius: \"50%\",\n        display: \"flex\",\n        justifyContent: \"center\",\n        alignItems: \"center\"\n      },\n      initial: {\n        scale: 0\n      },\n      animate: {\n        scale: 1\n      },\n      transition: {\n        duration: .3\n      },\n      children: /*#__PURE__*/_jsx(\"svg\", {\n        xmlns: \"http://www.w3.org/2000/svg\",\n        width: \"28\",\n        height: \"28\",\n        children: /*#__PURE__*/_jsx(\"path\", {\n          d: \"M 2 14 L 10 22 L 26 6\",\n          fill: \"transparent\",\n          strokeWidth: \"4\",\n          stroke: \"currentColor\",\n          strokeLinecap: \"round\"\n        })\n      })\n    }) : /*#__PURE__*/_jsxs(\"form\", {\n      style: {\n        display: \"grid\",\n        gridTemplateRows,\n        gridTemplateColumns,\n        gap,\n        width: \"100%\",\n        height: \"100%\"\n      },\n      onSubmit: handleSubmit,\n      method: \"POST\",\n      children: [(withName || withEmail) && /*#__PURE__*/_jsxs(\"div\", {\n        style: {\n          width: \"100%\",\n          display: \"grid\",\n          gridAutoFlow: layout === \"horizontal\" ? \"column\" : \"row\",\n          gap\n        },\n        children: [withName && /*#__PURE__*/_jsx(\"input\", {\n          className: \"framer-formspark-input\",\n          type: \"text\",\n          name: \"name\",\n          placeholder: name.placeholder,\n          value: isCanvas ? name.value : nameValue,\n          onChange: handleNameChange,\n          style: {\n            ...defaultStyle,\n            padding: paddingValue,\n            borderRadius,\n            fontFamily,\n            fontWeight,\n            fontSize,\n            background: inputs.fill,\n            color: inputs.color,\n            boxShadow: `inset 0 0 0 1px ${isNameError ? inputs.error : \"transparent\"}`\n          }\n        }), withEmail && /*#__PURE__*/_jsx(\"input\", {\n          className: \"framer-formspark-input\",\n          type: \"email\",\n          name: \"email\",\n          placeholder: email.placeholder,\n          value: isCanvas ? email.value : emailValue,\n          onChange: handleEmailChange,\n          style: {\n            ...defaultStyle,\n            padding: paddingValue,\n            borderRadius,\n            fontFamily,\n            fontWeight,\n            fontSize,\n            background: inputs.fill,\n            color: inputs.color,\n            boxShadow: `inset 0 0 0 1px ${isEmailError ? inputs.error : \"transparent\"}`\n          }\n        })]\n      }), withMessage && /*#__PURE__*/_jsx(\"textarea\", {\n        className: \"framer-formspark-input\",\n        placeholder: message.placeholder,\n        name: \"message\",\n        value: isCanvas ? message.value : messageValue,\n        onChange: handleMessageChange,\n        style: {\n          ...defaultStyle,\n          minHeight: 0,\n          padding: paddingValue,\n          resize: \"vertical\",\n          borderRadius,\n          background: inputs.fill,\n          fontFamily,\n          fontWeight,\n          fontSize,\n          color: inputs.color,\n          boxShadow: `inset 0 0 0 1px ${isMessageError ? inputs.error : \"transparent\"}`\n        }\n      }), /*#__PURE__*/_jsxs(\"div\", {\n        children: [/*#__PURE__*/_jsx(motion.input, {\n          type: \"submit\",\n          value: button.label,\n          style: {\n            ...defaultStyle,\n            borderRadius,\n            padding: paddingValue,\n            fontFamily,\n            fontWeight: button.fontWeight,\n            fontSize,\n            background: button.fill,\n            cursor: \"pointer\",\n            color: button.color,\n            zIndex: 1\n          },\n          transition: {\n            type: \"ease\",\n            duration: .3\n          },\n          whileHover: {\n            opacity: .8\n          }\n        }), isLoading && /*#__PURE__*/_jsx(\"div\", {\n          style: {\n            borderRadius,\n            position: \"absolute\",\n            display: \"flex\",\n            justifyContent: \"center\",\n            alignItems: \"center\",\n            width: \"100%\",\n            height: \"100%\",\n            left: 0,\n            top: 0,\n            zIndex: 2,\n            color: button.color,\n            background: button.fill\n          },\n          children: /*#__PURE__*/_jsx(motion.div, {\n            style: {\n              height: 16,\n              width: 16\n            },\n            initial: {\n              rotate: 0\n            },\n            animate: {\n              rotate: 360\n            },\n            transition: {\n              duration: 2,\n              repeat: Infinity\n            },\n            children: /*#__PURE__*/_jsxs(\"svg\", {\n              xmlns: \"http://www.w3.org/2000/svg\",\n              width: \"16\",\n              height: \"16\",\n              children: [/*#__PURE__*/_jsx(\"path\", {\n                d: \"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",\n                fill: \"currentColor\",\n                opacity: \"0.2\"\n              }), /*#__PURE__*/_jsx(\"path\", {\n                d: \"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",\n                fill: \"currentColor\"\n              })]\n            })\n          })\n        })]\n      })]\n    })\n  });\n}, [\".framer-formspark-input::placeholder { color: var(--framer-formspark-placeholder-color) !important; }\"]);\nFormSpark.defaultProps = {\n  fontSize: 16,\n  fontFamily: \"Inter\",\n  fontWeight: 400,\n  padding: 15,\n  paddingTop: 15,\n  paddingBottom: 15,\n  paddingLeft: 15,\n  paddingRight: 15,\n  borderRadius: 8,\n  topLeftRadius: 8,\n  topRightRadius: 8,\n  bottomRightRadius: 8,\n  bottomLeftRadius: 8,\n  gap: 15,\n  nameField: {\n    value: undefined,\n    placeholder: \"Name\"\n  },\n  email: {\n    value: undefined,\n    placeholder: \"Email\"\n  },\n  message: {\n    value: undefined,\n    placeholder: \"Message\"\n  },\n  inputs: {\n    fill: \"#EBEBEB\",\n    color: \"#000\",\n    placeholderColor: \"rgba(0, 0, 0, 0.5)\",\n    error: \"#EE4444\"\n  },\n  layout: {\n    fill: \"#EBEBEB\",\n    color: \"#000\",\n    placeholderColor: \"rgba(0, 0, 0, 0.5)\",\n    error: \"#EE4444\"\n  },\n  button: {\n    label: \"Sign Up\",\n    fontWeight: 600,\n    fill: \"#000\",\n    color: \"#FFF\"\n  }\n};\naddPropertyControls(FormSpark, {\n  formId: {\n    title: \"ID\",\n    placeholder: \"7PbPpGN3\",\n    type: ControlType.String,\n    description: \"Create a [FormSpark](https://formspark.io/) account, add a new form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/formspark/)\"\n  },\n  withName: {\n    title: \"Name\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Show\",\n    disabledTitle: \"Hide\",\n    defaultValue: true\n  },\n  nameField: {\n    title: \" \",\n    type: ControlType.Object,\n    controls: {\n      placeholder: {\n        title: \"Placeholder\",\n        type: ControlType.String,\n        defaultValue: \"Name\"\n      },\n      value: {\n        title: \"Value\",\n        type: ControlType.String,\n        defaultValue: \"\"\n      }\n    },\n    hidden: props => !props.withName\n  },\n  withEmail: {\n    title: \"Email\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Show\",\n    disabledTitle: \"Hide\",\n    defaultValue: true\n  },\n  email: {\n    title: \" \",\n    type: ControlType.Object,\n    controls: {\n      placeholder: {\n        title: \"Placeholder\",\n        type: ControlType.String,\n        defaultValue: \"Email\"\n      },\n      value: {\n        title: \"Value\",\n        type: ControlType.String\n      }\n    },\n    hidden: props => !props.withEmail\n  },\n  withMessage: {\n    title: \"Message\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Show\",\n    disabledTitle: \"Hide\",\n    defaultValue: true\n  },\n  message: {\n    title: \" \",\n    type: ControlType.Object,\n    controls: {\n      placeholder: {\n        title: \"Placeholder\",\n        type: ControlType.String,\n        defaultValue: \"Message\"\n      },\n      value: {\n        title: \"Value\",\n        type: ControlType.String\n      }\n    },\n    hidden: props => !props.withMessage\n  },\n  layout: {\n    title: \"Layout\",\n    type: ControlType.Enum,\n    options: [\"horizontal\", \"vertical\"],\n    displaySegmentedControl: true,\n    defaultValue: \"horizontal\"\n  },\n  inputs: {\n    title: \"Inputs\",\n    type: ControlType.Object,\n    controls: {\n      fill: {\n        title: \"Fill\",\n        type: ControlType.Color,\n        defaultValue: \"#EBEBEB\"\n      },\n      color: {\n        title: \"Text\",\n        type: ControlType.Color,\n        defaultValue: \"#000\"\n      },\n      placeholderColor: {\n        title: \"Placeholder\",\n        type: ControlType.Color,\n        defaultValue: \"rgba(0, 0, 0, 0.5)\"\n      },\n      error: {\n        title: \"Error\",\n        type: ControlType.Color,\n        defaultValue: \"#EE4444\"\n      }\n    }\n  },\n  button: {\n    title: \"Button\",\n    type: ControlType.Object,\n    controls: {\n      label: {\n        title: \"Label\",\n        type: ControlType.String,\n        defaultValue: \"Sign Up\"\n      },\n      fontWeight: {\n        ...fontControls.fontWeight,\n        defaultValue: 600\n      },\n      fill: {\n        title: \"Fill\",\n        type: ControlType.Color,\n        defaultValue: \"#000\"\n      },\n      color: {\n        title: \"Text\",\n        type: ControlType.Color,\n        defaultValue: \"#FFF\"\n      }\n    }\n  },\n  ...fontControls,\n  fontSize: {\n    title: \"Font Size\",\n    type: ControlType.Number,\n    displayStepper: true,\n    defaultValue: 16\n  },\n  ...paddingControl,\n  ...borderRadiusControl,\n  gap: {\n    title: \"Gap\",\n    type: ControlType.Number,\n    displayStepper: true,\n    min: 0\n  },\n  onSubmit: {\n    type: ControlType.EventHandler\n  }\n});\nconst defaultStyle = {\n  WebkitAppearance: \"none\",\n  display: \"inline-block\",\n  width: \"100%\",\n  lineHeight: \"1.4em\",\n  outline: \"none\",\n  border: \"none\"\n};\nexport default FormSpark;\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FormSpark\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"290\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"550\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./FormSpark.map", "// Generated by Framer (d213f04)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, PropertyOverrides, removeHiddenBreakpointLayers, RichText, useHydratedBreakpointVariants, useLocaleInfo, withCSS, withFX } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport Facebook from \"https://framerusercontent.com/modules/H9CvVrwLrFYAbKP9eYKI/LLwTL59gOwG1vkJhdZ4b/Facebook.js\";\nimport Instagram from \"https://framerusercontent.com/modules/HGu8PKPDwAHu4uSgLoYR/8ScWawSL1gtbsgAxdHrd/Instagram.js\";\nimport FormSpark from \"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js\";\nimport Footer from \"https://framerusercontent.com/modules/oCc7Yo8ImnpPm2lAUbmU/8Ow9llMM3sjpPX0GfNQZ/L5foJ2FZt.js\";\nimport Navbar from \"https://framerusercontent.com/modules/Es8h4KpTvuD7VgvfehXt/1zPxaKyYanaajtyNcWGc/sY2lbP07C.js\";\nimport * as sharedStyle3 from \"https://framerusercontent.com/modules/hvLgML6WNFbB8mDudCjj/fi3jRh9dMaJylMtcAjvI/EuZX9vgok.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/xVS5q2xzsxBb0jFhxaO9/2l6lZZuCXoBNWdZ3TJFR/GRWDdsQ6X.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/aurTw8gU5XvdeMYybVm6/SSqDz96TBHlypygWaRMH/jN5gerZjV.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/vwOADpvTOr399GZHoyyT/pi2kSlOLJ9AQNM1ipBEV/MeP2t4nLi.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/HZgFF0IJr8mW8owM6GeF/BqyiMfzjxNeebGbv8s21/c0PxOTC0O.js\";\nconst NavbarFonts = getFonts(Navbar);\nconst RichTextWithFX = withFX(RichText);\nconst MotionDivWithFX = withFX(motion.div);\nconst FormSparkFonts = getFonts(FormSpark);\nconst ContainerWithFX = withFX(Container);\nconst InstagramFonts = getFonts(Instagram);\nconst FacebookFonts = getFonts(Facebook);\nconst FooterFonts = getFonts(Footer);\nconst cycleOrder = [\"G6ukmoxx8\", \"YgVuFp57j\", \"Bim3x2iYJ\", \"jx7SMRuOJ\"];\nconst breakpoints = {\n  Bim3x2iYJ: \"(max-width: 809px)\",\n  G6ukmoxx8: \"(min-width: 1200px) and (max-width: 1439px)\",\n  jx7SMRuOJ: \"(min-width: 1440px)\",\n  YgVuFp57j: \"(min-width: 810px) and (max-width: 1199px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  Bim3x2iYJ: \"framer-v-1gir4mc\",\n  G6ukmoxx8: \"framer-v-17mj0dn\",\n  jx7SMRuOJ: \"framer-v-1s9hqqd\",\n  YgVuFp57j: \"framer-v-x70p0m\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"G6ukmoxx8\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst animation = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 30\n};\nconst transition1 = {\n  delay: 0,\n  duration: .8,\n  ease: [.33, .22, .03, .93],\n  type: \"tween\"\n};\nconst animation1 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 30\n};\nconst transformTemplate = (_, t) => `perspective(1200px) ${t}`;\nconst animation2 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 20\n};\nconst animation3 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 20\n};\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  \"Desktop Large\": \"jx7SMRuOJ\",\n  Desktop: \"G6ukmoxx8\",\n  Phone: \"Bim3x2iYJ\",\n  Tablet: \"YgVuFp57j\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _variant, ref;\n  return {\n    ...props,\n    variant: (ref = (_variant = humanReadableVariantMap[props.variant]) !== null && _variant !== void 0 ? _variant : props.variant) !== null && ref !== void 0 ? ref : \"G6ukmoxx8\"\n  };\n};\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider(undefined, activeLocale);\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var 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  }, [undefined, activeLocale]);\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: \"G6ukmoxx8\",\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-K3qv7\", sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-17mj0dn\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(Container, {\n            className: \"framer-1tkf77d-container\",\n            layoutScroll: true,\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                Bim3x2iYJ: {\n                  variant: \"atVnBdEZK\"\n                },\n                YgVuFp57j: {\n                  variant: \"s4AhQrITI\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(Navbar, {\n                height: \"100%\",\n                id: \"GqwVC11AD\",\n                layoutId: \"GqwVC11AD\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"SHHCUF0mn\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsx(\"section\", {\n            className: \"framer-97blc\",\n            \"data-framer-name\": \"Hero\",\n            name: \"Hero\",\n            children: /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-wsb6bc\",\n              \"data-border\": true,\n              children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  Bim3x2iYJ: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        className: \"framer-styles-preset-1pge0dp\",\n                        \"data-styles-preset\": \"GRWDdsQ6X\",\n                        style: {\n                          \"--framer-text-alignment\": \"center\"\n                        },\n                        children: \"Get in touch with us\"\n                      })\n                    })\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichTextWithFX, {\n                  __framer__animate: {\n                    transition: transition1\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation,\n                  __framer__exit: animation1,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __fromCanvasComponent: true,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-1pge0dp\",\n                      \"data-styles-preset\": \"GRWDdsQ6X\",\n                      children: \"Get in touch with us\"\n                    })\n                  }),\n                  className: \"framer-mrpe2g\",\n                  transformTemplate: transformTemplate,\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsx(RichTextWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __fromCanvasComponent: true,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    className: \"framer-styles-preset-17srw8x\",\n                    \"data-styles-preset\": \"jN5gerZjV\",\n                    children: \"Thank you for considering Bakes & Co. for your bakery and dining needs. We value your feedback, inquiries, and requests. Please feel free to get in touch with us using the following contact information. We're here to assist you and make your experience with us exceptional.\"\n                  })\n                }),\n                className: \"framer-n9grlg\",\n                transformTemplate: transformTemplate,\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-185d1hr\",\n                children: [/*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 854,\n                    intrinsicWidth: 728,\n                    pixelHeight: 854,\n                    pixelWidth: 728,\n                    sizes: \"100px\",\n                    src: new URL(\"https://framerusercontent.com/images/Mb3q4g4KSbpBWwu5S3j0mlu4gA.png\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/Mb3q4g4KSbpBWwu5S3j0mlu4gA.png?scale-down-to=512\").href} 436w, ${new URL(\"https://framerusercontent.com/images/Mb3q4g4KSbpBWwu5S3j0mlu4gA.png\").href} 728w`\n                  },\n                  className: \"framer-176nte5\"\n                }), /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 3543,\n                    intrinsicWidth: 2362,\n                    pixelHeight: 3543,\n                    pixelWidth: 2362,\n                    sizes: \"170px\",\n                    src: new URL(\"https://framerusercontent.com/images/qLeZe0zOefTkKZp46NkhUUEB0x8.jpg\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/qLeZe0zOefTkKZp46NkhUUEB0x8.jpg?scale-down-to=512\").href} 341w, ${new URL(\"https://framerusercontent.com/images/qLeZe0zOefTkKZp46NkhUUEB0x8.jpg?scale-down-to=1024\").href} 682w, ${new URL(\"https://framerusercontent.com/images/qLeZe0zOefTkKZp46NkhUUEB0x8.jpg?scale-down-to=2048\").href} 1365w, ${new URL(\"https://framerusercontent.com/images/qLeZe0zOefTkKZp46NkhUUEB0x8.jpg\").href} 2362w`\n                  },\n                  className: \"framer-amhal9\"\n                }), /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 956,\n                    intrinsicWidth: 1023,\n                    pixelHeight: 956,\n                    pixelWidth: 1023,\n                    sizes: \"100px\",\n                    src: new URL(\"https://framerusercontent.com/images/WqVDS5ZJ4TSIbkYk1XBgN6Dwk.png\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/WqVDS5ZJ4TSIbkYk1XBgN6Dwk.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/WqVDS5ZJ4TSIbkYk1XBgN6Dwk.png\").href} 1023w`\n                  },\n                  className: \"framer-gw4hyx\"\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-1ho7hab\",\n            \"data-framer-name\": \"Contact detail\",\n            name: \"Contact detail\",\n            children: /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-1ibc2bo\",\n              \"data-border\": true,\n              children: [/*#__PURE__*/_jsx(\"div\", {\n                className: \"framer-1v8p429\",\n                \"data-framer-name\": \"IMG\",\n                name: \"IMG\",\n                children: /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-cl18t7\",\n                  children: [/*#__PURE__*/_jsx(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition1\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation2,\n                    __framer__exit: animation3,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-mtgsxh\",\n                    transformTemplate: transformTemplate,\n                    children: /*#__PURE__*/_jsx(RichTextWithFX, {\n                      __framer__animate: {\n                        transition: transition1\n                      },\n                      __framer__animateOnce: true,\n                      __framer__enter: animation2,\n                      __framer__exit: animation3,\n                      __framer__styleAppearEffectEnabled: true,\n                      __framer__threshold: .5,\n                      __fromCanvasComponent: true,\n                      __perspectiveFX: false,\n                      __targetOpacity: 1,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          className: \"framer-styles-preset-186cois\",\n                          \"data-styles-preset\": \"MeP2t4nLi\",\n                          children: \"Contact details\"\n                        })\n                      }),\n                      className: \"framer-1b5zrwp\",\n                      transformTemplate: transformTemplate,\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition1\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation2,\n                    __framer__exit: animation3,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-87xlfw\",\n                    \"data-border\": true,\n                    transformTemplate: transformTemplate,\n                    children: [/*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-17srw8x\",\n                          \"data-styles-preset\": \"jN5gerZjV\",\n                          style: {\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"var(--token-269f3dff-d78a-4e59-ab49-7a21057a3009, rgb(214, 107, 88))\"\n                          },\n                          children: \"Address\"\n                        })\n                      }),\n                      className: \"framer-sl6rqd\",\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-17srw8x\",\n                          \"data-styles-preset\": \"jN5gerZjV\",\n                          style: {\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"123 sweet street, sai gon, vietnam\"\n                        })\n                      }),\n                      className: \"framer-7h3vpo\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition1\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation2,\n                    __framer__exit: animation3,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-s06cv\",\n                    \"data-border\": true,\n                    transformTemplate: transformTemplate,\n                    children: [/*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-17srw8x\",\n                          \"data-styles-preset\": \"jN5gerZjV\",\n                          style: {\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"var(--token-269f3dff-d78a-4e59-ab49-7a21057a3009, rgb(214, 107, 88))\"\n                          },\n                          children: \"Phone\"\n                        })\n                      }),\n                      className: \"framer-zev0xa\",\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-17srw8x\",\n                          \"data-styles-preset\": \"jN5gerZjV\",\n                          style: {\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"var(--token-c94ce77e-c8bd-44cd-aefa-c9184e5e5127, rgb(51, 51, 51))\"\n                          },\n                          children: \"+24 394 203 293\"\n                        })\n                      }),\n                      className: \"framer-v1poa0\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition1\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation2,\n                    __framer__exit: animation3,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-1c2n6ij\",\n                    \"data-border\": true,\n                    transformTemplate: transformTemplate,\n                    children: [/*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-17srw8x\",\n                          \"data-styles-preset\": \"jN5gerZjV\",\n                          style: {\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"var(--token-269f3dff-d78a-4e59-ab49-7a21057a3009, rgb(214, 107, 88))\"\n                          },\n                          children: \"Email\"\n                        })\n                      }),\n                      className: \"framer-quomil\",\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-17srw8x\",\n                          \"data-styles-preset\": \"jN5gerZjV\",\n                          style: {\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Contact@Bakes.Co\"\n                        })\n                      }),\n                      className: \"framer-1gqptp8\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition1\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation2,\n                    __framer__exit: animation3,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-1xm9nt7\",\n                    \"data-border\": true,\n                    transformTemplate: transformTemplate,\n                    children: [/*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-17srw8x\",\n                          \"data-styles-preset\": \"jN5gerZjV\",\n                          style: {\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"var(--token-269f3dff-d78a-4e59-ab49-7a21057a3009, rgb(214, 107, 88))\"\n                          },\n                          children: \"Opening Hours\"\n                        })\n                      }),\n                      className: \"framer-154vg5s\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                      breakpoint: baseVariant,\n                      overrides: {\n                        YgVuFp57j: {\n                          children: /*#__PURE__*/_jsxs(React.Fragment, {\n                            children: [/*#__PURE__*/_jsx(\"p\", {\n                              className: \"framer-styles-preset-17srw8x\",\n                              \"data-styles-preset\": \"jN5gerZjV\",\n                              style: {\n                                \"--framer-text-alignment\": \"left\"\n                              },\n                              children: \"Mon - Fri: 08 AM - 16 PM\"\n                            }), /*#__PURE__*/_jsx(\"p\", {\n                              className: \"framer-styles-preset-17srw8x\",\n                              \"data-styles-preset\": \"jN5gerZjV\",\n                              style: {\n                                \"--framer-text-alignment\": \"left\"\n                              },\n                              children: \"Weekend: 10 AM - 20 PM\"\n                            })]\n                          })\n                        }\n                      },\n                      children: /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-17srw8x\",\n                            \"data-styles-preset\": \"jN5gerZjV\",\n                            style: {\n                              \"--framer-text-alignment\": \"left\"\n                            },\n                            children: \"Mon - Fri: 08 AM - 16 PM | Weekend: 10 AM - 20 PM\"\n                          })\n                        }),\n                        className: \"framer-1vwwf5q\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })\n                    })]\n                  })]\n                })\n              }), /*#__PURE__*/_jsx(\"div\", {\n                className: \"framer-1433kx0\",\n                \"data-framer-name\": \"Line\",\n                name: \"Line\"\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-1af1tuk\",\n                \"data-framer-name\": \"Text\",\n                name: \"Text\",\n                children: [/*#__PURE__*/_jsx(MotionDivWithFX, {\n                  __framer__animate: {\n                    transition: transition1\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation,\n                  __framer__exit: animation1,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-tjmc0a\",\n                  transformTemplate: transformTemplate,\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h3\", {\n                        className: \"framer-styles-preset-186cois\",\n                        \"data-styles-preset\": \"MeP2t4nLi\",\n                        children: \"Reach us\"\n                      })\n                    }),\n                    className: \"framer-t6yc12\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(ContainerWithFX, {\n                  __framer__animate: {\n                    transition: transition1\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation,\n                  __framer__exit: animation1,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: 0,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-10enduq-container\",\n                  transformTemplate: transformTemplate,\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      Bim3x2iYJ: {\n                        layout: \"vertical\"\n                      },\n                      YgVuFp57j: {\n                        layout: \"vertical\"\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(FormSpark, {\n                      borderRadius: 23,\n                      bottomLeftRadius: 23,\n                      bottomRightRadius: 23,\n                      button: {\n                        color: \"rgb(255, 255, 255)\",\n                        fill: 'var(--token-269f3dff-d78a-4e59-ab49-7a21057a3009, rgb(214, 107, 88)) /* {\"name\":\"Red\"} */',\n                        fontWeight: 600,\n                        label: \"Sent\"\n                      },\n                      email: {\n                        placeholder: \"Email\",\n                        value: \"\"\n                      },\n                      font: true,\n                      fontFamily: \"cabinet grotesk\",\n                      fontSize: 16,\n                      fontWeight: 400,\n                      formId: \"\",\n                      gap: 16,\n                      height: \"100%\",\n                      id: \"u0WPv5Es2\",\n                      inputs: {\n                        color: 'var(--token-c94ce77e-c8bd-44cd-aefa-c9184e5e5127, rgb(51, 51, 51)) /* {\"name\":\"Black\"} */',\n                        error: \"rgb(238, 68, 68)\",\n                        fill: \"rgb(255, 255, 255)\",\n                        placeholderColor: \"rgba(0, 0, 0, 0.5)\"\n                      },\n                      isMixedBorderRadius: false,\n                      layout: \"horizontal\",\n                      layoutId: \"u0WPv5Es2\",\n                      message: {\n                        placeholder: \"Message\",\n                        value: \"\"\n                      },\n                      nameField: {\n                        placeholder: \"Your name\",\n                        value: \"\"\n                      },\n                      padding: 12,\n                      paddingBottom: 10,\n                      paddingLeft: 24,\n                      paddingPerSide: true,\n                      paddingRight: 24,\n                      paddingTop: 10,\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      topLeftRadius: 23,\n                      topRightRadius: 23,\n                      width: \"100%\",\n                      withEmail: true,\n                      withMessage: true,\n                      withName: true\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(\"div\", {\n                  className: \"framer-1i1cuc2\",\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-r31q8x\",\n                        \"data-styles-preset\": \"EuZX9vgok\",\n                        style: {\n                          \"--framer-text-color\": \"rgba(51, 51, 51, 0.6)\"\n                        },\n                        children: \"We'll get back to you in 24 hours\"\n                      })\n                    }),\n                    className: \"framer-1lwgqpn\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-576hdb\",\n            \"data-framer-name\": \"Social network\",\n            name: \"Social network\",\n            children: /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-pe2sho\",\n              \"data-border\": true,\n              children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  Bim3x2iYJ: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        className: \"framer-styles-preset-1pge0dp\",\n                        \"data-styles-preset\": \"GRWDdsQ6X\",\n                        style: {\n                          \"--framer-text-alignment\": \"center\"\n                        },\n                        children: \"Stay connected with us\"\n                      })\n                    })\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichTextWithFX, {\n                  __framer__animate: {\n                    transition: transition1\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation,\n                  __framer__exit: animation1,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __fromCanvasComponent: true,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-1pge0dp\",\n                      \"data-styles-preset\": \"GRWDdsQ6X\",\n                      children: \"Stay connected with us\"\n                    })\n                  }),\n                  className: \"framer-18b441h\",\n                  transformTemplate: transformTemplate,\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsx(RichTextWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __fromCanvasComponent: true,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    className: \"framer-styles-preset-17srw8x\",\n                    \"data-styles-preset\": \"jN5gerZjV\",\n                    children: \"Stay connected with us on social media for updates, promotions, and behind-the-scenes glimpses of our bakery\"\n                  })\n                }),\n                className: \"framer-10r0ttc\",\n                transformTemplate: transformTemplate,\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-1bvoiul\",\n                children: [/*#__PURE__*/_jsxs(MotionDivWithFX, {\n                  __framer__animate: {\n                    transition: transition1\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation,\n                  __framer__exit: animation1,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-bhu7w3\",\n                  transformTemplate: transformTemplate,\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h3\", {\n                        className: \"framer-styles-preset-186cois\",\n                        \"data-styles-preset\": \"MeP2t4nLi\",\n                        children: \"Instagram\"\n                      })\n                    }),\n                    className: \"framer-1ljwxqh\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1mq06nn-container\",\n                    children: /*#__PURE__*/_jsx(Instagram, {\n                      height: \"100%\",\n                      id: \"bBNE0fp9V\",\n                      layoutId: \"bBNE0fp9V\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      url: \"https://www.instagram.com/p/Cw9WOyOM4dB/\",\n                      width: \"100%\"\n                    })\n                  })]\n                }), /*#__PURE__*/_jsx(\"div\", {\n                  className: \"framer-widlwd\",\n                  \"data-framer-name\": \"Line\",\n                  name: \"Line\"\n                }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                  __framer__animate: {\n                    transition: transition1\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation,\n                  __framer__exit: animation1,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-58tmsv\",\n                  transformTemplate: transformTemplate,\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h3\", {\n                        className: \"framer-styles-preset-186cois\",\n                        \"data-styles-preset\": \"MeP2t4nLi\",\n                        children: \"Facebook\"\n                      })\n                    }),\n                    className: \"framer-1ar9nr2\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-i8m4e6-container\",\n                    children: /*#__PURE__*/_jsx(Facebook, {\n                      height: \"100%\",\n                      id: \"OIvIFLeA3\",\n                      layoutId: \"OIvIFLeA3\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      url: \"https://www.facebook.com/sonomabakery/posts/pfbid0wJHtdNtDvh4h6SbCN6AWa3h3Qea4yyZoGmaf6MGUd1SnLqdugmTfdeYDDmKi5Lnhl\",\n                      width: \"100%\"\n                    })\n                  })]\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-uleih1-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                Bim3x2iYJ: {\n                  variant: \"iQlhJ16_L\"\n                },\n                YgVuFp57j: {\n                  variant: \"lhLiUXbLf\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(Footer, {\n                height: \"100%\",\n                id: \"GBBGseHzn\",\n                layoutId: \"GBBGseHzn\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"XSL0GO1lA\",\n                width: \"100%\"\n              })\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-K3qv7 [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: var(--token-8f7b71a3-780e-43d9-8e6f-e91d2d09ac4d, rgb(250, 246, 231)) /* {\"name\":\"Background\"} */; }`, \".framer-K3qv7 .framer-5uas41 { display: block; }\", \".framer-K3qv7 .framer-17mj0dn { align-content: center; align-items: center; background-color: var(--token-8f7b71a3-780e-43d9-8e6f-e91d2d09ac4d, #faf6e7); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-K3qv7 .framer-1tkf77d-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 10; }\", \".framer-K3qv7 .framer-97blc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 60px 0px 60px; position: relative; width: 100%; }\", '.framer-K3qv7 .framer-wsb6bc { --border-bottom-width: 0px; --border-color: var(--token-6e2bd9b3-7713-4f74-89c0-883719c1e1d9, #d6956d) /* {\"name\":\"yellow\"} */; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 100%; }', \".framer-K3qv7 .framer-mrpe2g, .framer-K3qv7 .framer-1b5zrwp, .framer-K3qv7 .framer-18b441h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre; width: auto; }\", \".framer-K3qv7 .framer-n9grlg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\", \".framer-K3qv7 .framer-185d1hr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-K3qv7 .framer-176nte5, .framer-K3qv7 .framer-gw4hyx { aspect-ratio: 1 / 1; border-bottom-left-radius: 90px; border-bottom-right-radius: 90px; border-top-left-radius: 90px; border-top-right-radius: 90px; flex: none; height: var(--framer-aspect-ratio-supported, 100px); overflow: hidden; position: relative; width: 100px; will-change: var(--framer-will-change-override, transform); }\", \".framer-K3qv7 .framer-amhal9 { aspect-ratio: 1 / 1; border-bottom-left-radius: 140px; border-bottom-right-radius: 140px; border-top-left-radius: 140px; border-top-right-radius: 140px; flex: none; height: var(--framer-aspect-ratio-supported, 170px); overflow: hidden; position: relative; width: 170px; will-change: var(--framer-will-change-override, transform); }\", \".framer-K3qv7 .framer-1ho7hab, .framer-K3qv7 .framer-576hdb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\", '.framer-K3qv7 .framer-1ibc2bo { --border-bottom-width: 0px; --border-color: var(--token-6e2bd9b3-7713-4f74-89c0-883719c1e1d9, #d6956d) /* {\"name\":\"yellow\"} */; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }', \".framer-K3qv7 .framer-1v8p429 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 40px 40px; position: relative; width: 1px; }\", \".framer-K3qv7 .framer-cl18t7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-K3qv7 .framer-mtgsxh, .framer-K3qv7 .framer-tjmc0a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 20px 20px 20px; position: relative; transform: perspective(1200px); width: 100%; }\", '.framer-K3qv7 .framer-87xlfw, .framer-K3qv7 .framer-s06cv, .framer-K3qv7 .framer-1c2n6ij, .framer-K3qv7 .framer-1xm9nt7 { --border-bottom-width: 0px; --border-color: var(--token-6e2bd9b3-7713-4f74-89c0-883719c1e1d9, #d6956d) /* {\"name\":\"yellow\"} */; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; transform: perspective(1200px); width: 100%; }', \".framer-K3qv7 .framer-sl6rqd, .framer-K3qv7 .framer-zev0xa, .framer-K3qv7 .framer-quomil, .framer-K3qv7 .framer-154vg5s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 30%; word-break: break-word; word-wrap: break-word; }\", \".framer-K3qv7 .framer-7h3vpo, .framer-K3qv7 .framer-v1poa0, .framer-K3qv7 .framer-1gqptp8, .framer-K3qv7 .framer-t6yc12, .framer-K3qv7 .framer-1lwgqpn, .framer-K3qv7 .framer-1ljwxqh, .framer-K3qv7 .framer-1ar9nr2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-K3qv7 .framer-1vwwf5q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 9; }\", \".framer-K3qv7 .framer-1433kx0, .framer-K3qv7 .framer-widlwd { align-self: stretch; background-color: var(--token-6e2bd9b3-7713-4f74-89c0-883719c1e1d9, #d6956d); flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\", \".framer-K3qv7 .framer-1af1tuk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 1px; }\", \".framer-K3qv7 .framer-10enduq-container { flex: none; height: 290px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-K3qv7 .framer-1i1cuc2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 10px 10px 10px; position: relative; width: min-content; }\", '.framer-K3qv7 .framer-pe2sho { --border-bottom-width: 0px; --border-color: var(--token-6e2bd9b3-7713-4f74-89c0-883719c1e1d9, #d6956d) /* {\"name\":\"yellow\"} */; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 100%; }', \".framer-K3qv7 .framer-10r0ttc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; z-index: 9; }\", \".framer-K3qv7 .framer-1bvoiul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-K3qv7 .framer-bhu7w3, .framer-K3qv7 .framer-58tmsv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 300px; }\", \".framer-K3qv7 .framer-1mq06nn-container { flex: none; height: 300px; position: relative; width: 100%; }\", \".framer-K3qv7 .framer-i8m4e6-container { flex: none; height: 300px; position: relative; width: 300px; }\", \".framer-K3qv7 .framer-uleih1-container { flex: none; height: auto; position: relative; width: 100%; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-K3qv7 .framer-17mj0dn, .framer-K3qv7 .framer-97blc, .framer-K3qv7 .framer-wsb6bc, .framer-K3qv7 .framer-185d1hr, .framer-K3qv7 .framer-1ho7hab, .framer-K3qv7 .framer-1ibc2bo, .framer-K3qv7 .framer-1v8p429, .framer-K3qv7 .framer-cl18t7, .framer-K3qv7 .framer-mtgsxh, .framer-K3qv7 .framer-87xlfw, .framer-K3qv7 .framer-s06cv, .framer-K3qv7 .framer-1c2n6ij, .framer-K3qv7 .framer-1xm9nt7, .framer-K3qv7 .framer-1af1tuk, .framer-K3qv7 .framer-tjmc0a, .framer-K3qv7 .framer-1i1cuc2, .framer-K3qv7 .framer-576hdb, .framer-K3qv7 .framer-pe2sho, .framer-K3qv7 .framer-1bvoiul, .framer-K3qv7 .framer-bhu7w3, .framer-K3qv7 .framer-58tmsv { gap: 0px; } .framer-K3qv7 .framer-17mj0dn > *, .framer-K3qv7 .framer-cl18t7 > *, .framer-K3qv7 .framer-1af1tuk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-K3qv7 .framer-17mj0dn > :first-child, .framer-K3qv7 .framer-97blc > :first-child, .framer-K3qv7 .framer-wsb6bc > :first-child, .framer-K3qv7 .framer-1ho7hab > :first-child, .framer-K3qv7 .framer-cl18t7 > :first-child, .framer-K3qv7 .framer-1af1tuk > :first-child, .framer-K3qv7 .framer-1i1cuc2 > :first-child, .framer-K3qv7 .framer-576hdb > :first-child, .framer-K3qv7 .framer-pe2sho > :first-child, .framer-K3qv7 .framer-bhu7w3 > :first-child, .framer-K3qv7 .framer-58tmsv > :first-child { margin-top: 0px; } .framer-K3qv7 .framer-17mj0dn > :last-child, .framer-K3qv7 .framer-97blc > :last-child, .framer-K3qv7 .framer-wsb6bc > :last-child, .framer-K3qv7 .framer-1ho7hab > :last-child, .framer-K3qv7 .framer-cl18t7 > :last-child, .framer-K3qv7 .framer-1af1tuk > :last-child, .framer-K3qv7 .framer-1i1cuc2 > :last-child, .framer-K3qv7 .framer-576hdb > :last-child, .framer-K3qv7 .framer-pe2sho > :last-child, .framer-K3qv7 .framer-bhu7w3 > :last-child, .framer-K3qv7 .framer-58tmsv > :last-child { margin-bottom: 0px; } .framer-K3qv7 .framer-97blc > *, .framer-K3qv7 .framer-1ho7hab > *, .framer-K3qv7 .framer-576hdb > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-K3qv7 .framer-wsb6bc > *, .framer-K3qv7 .framer-pe2sho > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-K3qv7 .framer-185d1hr > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-K3qv7 .framer-185d1hr > :first-child, .framer-K3qv7 .framer-1ibc2bo > :first-child, .framer-K3qv7 .framer-1v8p429 > :first-child, .framer-K3qv7 .framer-mtgsxh > :first-child, .framer-K3qv7 .framer-87xlfw > :first-child, .framer-K3qv7 .framer-s06cv > :first-child, .framer-K3qv7 .framer-1c2n6ij > :first-child, .framer-K3qv7 .framer-1xm9nt7 > :first-child, .framer-K3qv7 .framer-tjmc0a > :first-child, .framer-K3qv7 .framer-1bvoiul > :first-child { margin-left: 0px; } .framer-K3qv7 .framer-185d1hr > :last-child, .framer-K3qv7 .framer-1ibc2bo > :last-child, .framer-K3qv7 .framer-1v8p429 > :last-child, .framer-K3qv7 .framer-mtgsxh > :last-child, .framer-K3qv7 .framer-87xlfw > :last-child, .framer-K3qv7 .framer-s06cv > :last-child, .framer-K3qv7 .framer-1c2n6ij > :last-child, .framer-K3qv7 .framer-1xm9nt7 > :last-child, .framer-K3qv7 .framer-tjmc0a > :last-child, .framer-K3qv7 .framer-1bvoiul > :last-child { margin-right: 0px; } .framer-K3qv7 .framer-1ibc2bo > *, .framer-K3qv7 .framer-1v8p429 > *, .framer-K3qv7 .framer-87xlfw > *, .framer-K3qv7 .framer-s06cv > *, .framer-K3qv7 .framer-1c2n6ij > *, .framer-K3qv7 .framer-1xm9nt7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-K3qv7 .framer-mtgsxh > *, .framer-K3qv7 .framer-tjmc0a > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-K3qv7 .framer-1i1cuc2 > *, .framer-K3qv7 .framer-bhu7w3 > *, .framer-K3qv7 .framer-58tmsv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-K3qv7 .framer-1bvoiul > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\", \"@media (min-width: 1200px) and (max-width: 1439px) { .framer-K3qv7 .hidden-17mj0dn { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1199px) { .framer-K3qv7 .hidden-x70p0m { display: none !important; } .${metadata.bodyClassName} { background: var(--token-8f7b71a3-780e-43d9-8e6f-e91d2d09ac4d, rgb(250, 246, 231)) /* {\"name\":\"Background\"} */; } .framer-K3qv7 .framer-17mj0dn { width: 810px; } .framer-K3qv7 .framer-97blc { padding: 80px 40px 0px 40px; } .framer-K3qv7 .framer-1ho7hab, .framer-K3qv7 .framer-576hdb { padding: 0px 40px 0px 40px; } .framer-K3qv7 .framer-1v8p429 { padding: 0px 20px 40px 20px; } .framer-K3qv7 .framer-1vwwf5q { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-K3qv7 .framer-1af1tuk { padding: 0px 20px 0px 20px; }}`, `@media (max-width: 809px) { .framer-K3qv7 .hidden-1gir4mc { display: none !important; } .${metadata.bodyClassName} { background: var(--token-8f7b71a3-780e-43d9-8e6f-e91d2d09ac4d, rgb(250, 246, 231)) /* {\"name\":\"Background\"} */; } .framer-K3qv7 .framer-17mj0dn { width: 390px; } .framer-K3qv7 .framer-97blc { padding: 80px 20px 0px 20px; } .framer-K3qv7 .framer-mrpe2g, .framer-K3qv7 .framer-18b441h { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-K3qv7 .framer-n9grlg, .framer-K3qv7 .framer-185d1hr, .framer-K3qv7 .framer-10r0ttc { width: 100%; } .framer-K3qv7 .framer-1ho7hab, .framer-K3qv7 .framer-576hdb { padding: 0px 20px 0px 20px; } .framer-K3qv7 .framer-1ibc2bo { flex-direction: column; } .framer-K3qv7 .framer-1v8p429 { flex: none; padding: 0px 20px 20px 20px; width: 100%; } .framer-K3qv7 .framer-1433kx0 { align-self: unset; height: 1px; width: 100%; } .framer-K3qv7 .framer-1af1tuk { flex: none; padding: 0px 20px 0px 20px; width: 100%; } .framer-K3qv7 .framer-1bvoiul { flex-direction: column; gap: 20px; } .framer-K3qv7 .framer-widlwd { height: 1px; width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-K3qv7 .framer-1ibc2bo, .framer-K3qv7 .framer-1bvoiul { gap: 0px; } .framer-K3qv7 .framer-1ibc2bo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-K3qv7 .framer-1ibc2bo > :first-child, .framer-K3qv7 .framer-1bvoiul > :first-child { margin-top: 0px; } .framer-K3qv7 .framer-1ibc2bo > :last-child, .framer-K3qv7 .framer-1bvoiul > :last-child { margin-bottom: 0px; } .framer-K3qv7 .framer-1bvoiul > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`, `@media (min-width: 1440px) { .framer-K3qv7 .hidden-1s9hqqd { display: none !important; } .${metadata.bodyClassName} { background: var(--token-8f7b71a3-780e-43d9-8e6f-e91d2d09ac4d, rgb(250, 246, 231)) /* {\"name\":\"Background\"} */; } .framer-K3qv7 .framer-17mj0dn { width: 1440px; } .framer-K3qv7 .framer-wsb6bc { padding: 60px 60px 60px 60px; } .framer-K3qv7 .framer-1v8p429, .framer-K3qv7 .framer-1af1tuk { padding: 40px 40px 40px 40px; }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerIntrinsicHeight 1859\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YgVuFp57j\":{\"layout\":[\"fixed\",\"auto\"]},\"Bim3x2iYJ\":{\"layout\":[\"fixed\",\"auto\"]},\"jx7SMRuOJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         */\nconst Framerc0PxOTC0O = withCSS(Component, css, \"framer-K3qv7\");\nexport default Framerc0PxOTC0O;\nFramerc0PxOTC0O.displayName = \"Contact\";\nFramerc0PxOTC0O.defaultProps = {\n  height: 1859,\n  width: 1200\n};\naddFonts(Framerc0PxOTC0O, [...NavbarFonts, ...FormSparkFonts, ...InstagramFonts, ...FacebookFonts, ...FooterFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Framerc0PxOTC0O\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"1859\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YgVuFp57j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bim3x2iYJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jx7SMRuOJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerIntrinsicWidth\": \"1200\",\n        \"framerContractVersion\": \"1\"\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": ["facebookRegex", "Facebook", "url", "style", "props", "encodedUrl", "se", "p", "motion", "containerStyles", "u", "emptyStateStyle", "stateTitleStyle", "stateParagraphStyle", "addPropertyControls", "ControlType", "instagramRegex", "Instagram", "url", "style", "props", "id", "se", "ref", "p", "motion", "containerStyles", "u", "emptyStateStyle", "stateTitleStyle", "stateParagraphStyle", "addPropertyControls", "ControlType", "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", "sY2lbP07C_default", "RichTextWithFX", "withFX", "RichText", "MotionDivWithFX", "motion", "FormSparkFonts", "FormSpark_default", "ContainerWithFX", "Container", "InstagramFonts", "Instagram", "FacebookFonts", "Facebook", "FooterFonts", "L5foJ2FZt_default", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "transitions", "animation", "transition1", "animation1", "transformTemplate", "_", "t", "animation2", "animation3", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Container", "PropertyOverrides", "sY2lbP07C_default", "x", "RichTextWithFX", "Image2", "MotionDivWithFX", "RichText", "ContainerWithFX", "FormSpark_default", "Instagram", "Facebook", "L5foJ2FZt_default", "css", "Framerc0PxOTC0O", "withCSS", "c0PxOTC0O_default", "addFonts", "NavbarFonts", "FormSparkFonts", "InstagramFonts", "FacebookFonts", "FooterFonts", "fonts", "__FramerMetadata__"]
}
