{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js", "ssg:https://framerusercontent.com/modules/gQSkQQYxN4uohz97AxZ8/e43XHadTUXVrFAXmqSOi/qPcxQxCdB.js", "ssg:https://framerusercontent.com/modules/6aTNxFi4sLGOgjqgVO9n/7RVXlo8aKvDSRDhppkr0/rRvGzMVqi.js", "ssg:https://framerusercontent.com/modules/95OCRoFDkdvaYXoUwbIX/o0hPzGL0Mdi3djV164Ub/fpnrqnSY4.js"],
  "sourcesContent": ["import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { addPropertyControls, ControlType, motion } from \"framer\";\nimport { containerStyles, useRadius, borderRadiusControl } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nimport { useMemo } from \"react\";\nconst coordinatesRegex = /^((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?),\\s*((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?)$/; /**\n                                                                                         * GOOGLE MAPS\n                                                                                         *\n                                                                                         * @framerIntrinsicWidth 600\n                                                                                         * @framerIntrinsicHeight 400\n                                                                                         *\n                                                                                         * @framerSupportedLayoutWidth fixed\n                                                                                         * @framerSupportedLayoutHeight fixed\n                                                                                         */\nexport default function GoogleMaps({\n  coordinates,\n  zoom,\n  style,\n  ...props\n}) {\n  const borderRadius = useRadius(props);\n  const [latitude1, longitude1] = useMemo(() => {\n    var ref;\n    const [, latitude, longitude] = (ref = coordinates.match(coordinatesRegex)) !== null && ref !== void 0 ? ref : [null, \"\", \"\"];\n    return [latitude, longitude];\n  }, [coordinates]);\n  return /*#__PURE__*/_jsx(motion.div, {\n    style: {\n      ...style,\n      ...containerStyles,\n      overflow: \"hidden\",\n      borderRadius\n    },\n    ...props,\n    children: /*#__PURE__*/_jsx(\"iframe\", {\n      style: {\n        height: \"100%\",\n        width: \"100%\",\n        border: 0\n      },\n      src: `https://maps.google.com/maps?q=${latitude1},${longitude1}&z=${zoom}&output=embed`\n    })\n  });\n}\n;\naddPropertyControls(GoogleMaps, {\n  coordinates: {\n    type: ControlType.String,\n    title: \"Coordinates\",\n    placeholder: \"52.37588, 4.891295\",\n    defaultValue: \"52.37588, 4.891295\",\n    description: \"GPS coordinates can be found directly in [Google Maps](https://maps.google.com).\"\n  },\n  zoom: {\n    type: ControlType.Number,\n    step: 1,\n    min: 0,\n    max: 25,\n    title: \"Zoom\",\n    defaultValue: 15\n  },\n  ...borderRadiusControl\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"GoogleMaps\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"600\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerIntrinsicHeight\": \"400\",\n        \"framerContractVersion\": \"1\",\n        \"framerSupportedLayoutHeight\": \"fixed\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./GoogleMaps.map", "import { fontStore } from \"framer\";\nfontStore.loadWebFontsFromSelectors([\"FS;Clash Display-semibold\"]);\nexport const fonts = [{\n  family: \"Clash Display\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:css/qPcxQxCdB:default\",\n    url: \"https://framerusercontent.com/third-party-assets/fontshare/wf/FPDAZ2S6SW4QMSRIIKNNGTPM6VIXYMKO/5HNPQ453FRLIQWV2FNOBUU3FKTDZQVSG/Z3MGHFHX6DCTLQ55LJYRJ5MDCZPMFZU6.woff2\"\n  },\n  style: \"normal\",\n  url: \"https://framerusercontent.com/third-party-assets/fontshare/wf/FPDAZ2S6SW4QMSRIIKNNGTPM6VIXYMKO/5HNPQ453FRLIQWV2FNOBUU3FKTDZQVSG/Z3MGHFHX6DCTLQ55LJYRJ5MDCZPMFZU6.woff2\",\n  weight: \"600\"\n}];\nexport const css = ['.framer-CRjLU .framer-styles-preset-1tjdm2f:not(.rich-text-wrapper), .framer-CRjLU .framer-styles-preset-1tjdm2f.rich-text-wrapper h5 { --framer-font-family: \"Clash Display\", sans-serif; --framer-font-size: 21px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-8ea77d43-c7cc-4dc1-9f1d-2f84bb258ca3, #222831); --framer-text-decoration: none; --framer-text-transform: none; }'];\nexport const className = \"framer-CRjLU\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "// Generated by Framer (8563fcd)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, getFonts, RichText, useActiveVariantCallback, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nimport { Icon as Phosphor } from \"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/b8mF82iYh6CpQf0ZP2Id/laxsSNBtxdFLRs0pTRgR/dVIwmr50W.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/gQSkQQYxN4uohz97AxZ8/e43XHadTUXVrFAXmqSOi/qPcxQxCdB.js\";\nconst PhosphorFonts = getFonts(Phosphor);\nconst enabledGestures = {\n  pIBE1KgpP: {\n    hover: true\n  }\n};\nconst cycleOrder = [\"pIBE1KgpP\", \"dEAoR4cr1\"];\nconst variantClassNames = {\n  dEAoR4cr1: \"framer-v-js0ghf\",\n  pIBE1KgpP: \"framer-v-k17kf0\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst humanReadableVariantMap = {\n  Closed: \"pIBE1KgpP\",\n  Open: \"dEAoR4cr1\"\n};\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"pIBE1KgpP\",\n  question: AWSjGYVqE = \"Question Title\",\n  answer: ycUUKKf_G = \"All individual Framer subscriptions have been grandfathered into a Pro plan at your existing rate. If you were on a Small Team plan, then all 5 seats have been converted over to Pro seats at your existing rate. Regardless of your subscription plan, all new paid editors that you add to your subscription will be billed at the new plan rates.\",\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"pIBE1KgpP\",\n    enabledGestures,\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;\n  const {\n    activeVariantCallback,\n    delay\n  } = useActiveVariantCallback(baseVariant);\n  const onTap1e19sra = activeVariantCallback(async (...args) => {\n    setVariant(\"dEAoR4cr1\");\n  });\n  const onTap1qhwpwh = activeVariantCallback(async (...args) => {\n    setVariant(\"pIBE1KgpP\");\n  });\n  const isDisplayed = () => {\n    if (baseVariant === \"dEAoR4cr1\") return true;\n    return false;\n  };\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-FmGuF\", sharedStyle.className, sharedStyle1.className, classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-k17kf0\", className),\n          \"data-border\": true,\n          \"data-framer-name\": \"Closed\",\n          \"data-highlight\": true,\n          layoutDependency: layoutDependency,\n          layoutId: \"pIBE1KgpP\",\n          onTap: onTap1e19sra,\n          ref: ref,\n          style: {\n            \"--border-bottom-width\": \"1px\",\n            \"--border-color\": \"var(--token-44e0d7f1-2159-4869-aa7a-d50de3afd6b3, rgba(0, 0, 0, 0.25))\",\n            \"--border-left-width\": \"0px\",\n            \"--border-right-width\": \"0px\",\n            \"--border-style\": \"solid\",\n            \"--border-top-width\": \"0px\",\n            ...style\n          },\n          ...addPropertyOverrides({\n            \"pIBE1KgpP-hover\": {\n              \"data-framer-name\": undefined\n            },\n            dEAoR4cr1: {\n              \"data-framer-name\": \"Open\",\n              onTap: onTap1qhwpwh\n            }\n          }, baseVariant, gestureVariant),\n          children: [/*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-s06w0c\",\n            layoutDependency: layoutDependency,\n            layoutId: \"V8GP0_awJ\",\n            children: [/*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(motion.h5, {\n                  className: \"framer-styles-preset-1tjdm2f\",\n                  \"data-styles-preset\": \"qPcxQxCdB\",\n                  style: {\n                    \"--framer-text-color\": \"var(--extracted-1lwpl3i)\"\n                  },\n                  children: \"Question Title\"\n                })\n              }),\n              className: \"framer-vfe7py\",\n              layoutDependency: layoutDependency,\n              layoutId: \"WbJZwiFpw\",\n              style: {\n                \"--extracted-1lwpl3i\": \"var(--token-8ea77d43-c7cc-4dc1-9f1d-2f84bb258ca3, rgb(34, 40, 49))\",\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\"\n              },\n              text: AWSjGYVqE,\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-xv2ev0-container\",\n              layoutDependency: layoutDependency,\n              layoutId: \"seWP9T3jf-container\",\n              style: {\n                opacity: .5,\n                rotate: 0\n              },\n              variants: {\n                \"pIBE1KgpP-hover\": {\n                  opacity: 1\n                },\n                dEAoR4cr1: {\n                  rotate: 180\n                }\n              },\n              children: /*#__PURE__*/_jsx(Phosphor, {\n                color: 'var(--token-6cd9cfb7-0483-41c2-b188-fa8fd28492c9, rgb(102, 102, 102)) /* {\"name\":\"Text Light\"} */',\n                height: \"100%\",\n                iconSearch: \"House\",\n                iconSelection: \"CaretDown\",\n                id: \"seWP9T3jf\",\n                layoutId: \"seWP9T3jf\",\n                mirrored: false,\n                selectByList: true,\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                weight: \"bold\",\n                width: \"100%\"\n              })\n            })]\n          }), isDisplayed() && /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1e8kp03\",\n            layoutDependency: layoutDependency,\n            layoutId: \"Xjx00f5Ut\",\n            style: {\n              opacity: 0\n            },\n            variants: {\n              dEAoR4cr1: {\n                opacity: 1\n              }\n            },\n            children: /*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(motion.p, {\n                  className: \"framer-styles-preset-fr15fp\",\n                  \"data-styles-preset\": \"dVIwmr50W\",\n                  style: {\n                    \"--framer-text-color\": \"var(--extracted-r6o4lv)\"\n                  },\n                  children: \"All individual Framer subscriptions have been grandfathered into a Pro plan at your existing rate. If you were on a Small Team plan, then all 5 seats have been converted over to Pro seats at your existing rate. Regardless of your subscription plan, all new paid editors that you add to your subscription will be billed at the new plan rates.\"\n                })\n              }),\n              className: \"framer-x5fyqn\",\n              layoutDependency: layoutDependency,\n              layoutId: \"XtO6cxALH\",\n              style: {\n                \"--extracted-r6o4lv\": \"var(--token-52bac29a-57c4-480a-8f53-5797390175c9, rgb(97, 105, 117))\",\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\"\n              },\n              text: ycUUKKf_G,\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            })\n          })]\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-FmGuF [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; } }\", \".framer-FmGuF .framer-1k2y3kx { display: block; }\", \".framer-FmGuF .framer-k17kf0 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 0px 24px 0px; position: relative; width: 600px; }\", \".framer-FmGuF .framer-s06w0c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-FmGuF .framer-vfe7py { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\", \".framer-FmGuF .framer-xv2ev0-container { flex: none; height: 24px; position: relative; width: 24px; }\", \".framer-FmGuF .framer-1e8kp03 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\", \".framer-FmGuF .framer-x5fyqn { flex: 1 0 0px; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\", \".framer-FmGuF .framer-v-k17kf0 .framer-k17kf0 { cursor: pointer; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FmGuF .framer-k17kf0, .framer-FmGuF .framer-1e8kp03 { gap: 0px; } .framer-FmGuF .framer-k17kf0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-FmGuF .framer-k17kf0 > :first-child { margin-top: 0px; } .framer-FmGuF .framer-k17kf0 > :last-child { margin-bottom: 0px; } .framer-FmGuF .framer-1e8kp03 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-FmGuF .framer-1e8kp03 > :first-child { margin-left: 0px; } .framer-FmGuF .framer-1e8kp03 > :last-child { margin-right: 0px; } }\", \".framer-FmGuF.framer-v-js0ghf .framer-1e8kp03 { height: min-content; padding: 20px 0px 10px 0px; }\", ...sharedStyle.css, ...sharedStyle1.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * @framerIntrinsicHeight 77\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * @framerIntrinsicWidth 600\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dEAoR4cr1\":{\"layout\":[\"fixed\",\"auto\"]},\"HaxBObc46\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * @framerVariables {\"AWSjGYVqE\":\"question\",\"ycUUKKf_G\":\"answer\"}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            */\nconst FramerrRvGzMVqi = withCSS(Component, css, \"framer-FmGuF\");\nexport default FramerrRvGzMVqi;\nFramerrRvGzMVqi.displayName = \"Elements/Accordion\";\nFramerrRvGzMVqi.defaultProps = {\n  height: 77,\n  width: 600\n};\naddPropertyControls(FramerrRvGzMVqi, {\n  variant: {\n    options: [\"pIBE1KgpP\", \"dEAoR4cr1\"],\n    optionTitles: [\"Closed\", \"Open\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  },\n  AWSjGYVqE: {\n    defaultValue: \"Question Title\",\n    displayTextArea: false,\n    title: \"Question\",\n    type: ControlType.String\n  },\n  ycUUKKf_G: {\n    defaultValue: \"All individual Framer subscriptions have been grandfathered into a Pro plan at your existing rate. If you were on a Small Team plan, then all 5 seats have been converted over to Pro seats at your existing rate. Regardless of your subscription plan, all new paid editors that you add to your subscription will be billed at the new plan rates.\",\n    displayTextArea: true,\n    title: \"Answer\",\n    type: ControlType.String\n  }\n});\naddFonts(FramerrRvGzMVqi, [...PhosphorFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerrRvGzMVqi\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"600\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dEAoR4cr1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HaxBObc46\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerVariables\": \"{\\\"AWSjGYVqE\\\":\\\"question\\\",\\\"ycUUKKf_G\\\":\\\"answer\\\"}\",\n        \"framerIntrinsicHeight\": \"77\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./rRvGzMVqi.map", "// Generated by Framer (4fadce2)\nimport { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, PropertyOverrides, removeHiddenBreakpointLayers, resolveLink, RichText, useActiveVariantCallback, useHydratedBreakpointVariants, useLocaleInfo, useOverlayState, useRouteElementId, useRouter, withCSS } from \"framer\";\nimport { AnimatePresence, LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport BaseForm from \"https://framerusercontent.com/modules/3TIPm66HqJdHPsJ986xt/wZ7h9NbmSTVm1nLVqBzL/BaseForm.js\";\nimport GoogleMaps from \"https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js\";\nimport { Icon as Phosphor } from \"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";\nimport Navbar from \"https://framerusercontent.com/modules/vUDYrTn1iDAzD6BVumLt/XqbrYHREnEIYvaX7vxlv/D8Cm6M7_m.js\";\nimport Footer from \"https://framerusercontent.com/modules/vsUA8DqBWrx0mPcT2NF6/JbjhGvcDf8D17pDi9Ecm/I8vBvKH4D.js\";\nimport ElementsAccordion from \"https://framerusercontent.com/modules/6aTNxFi4sLGOgjqgVO9n/7RVXlo8aKvDSRDhppkr0/rRvGzMVqi.js\";\nimport * as sharedStyle3 from \"https://framerusercontent.com/modules/qDsZK3iWm3k6rEdHi5Zu/zDufFcWldOBjqcGxzX50/dVIwmr50W.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/ucTRcC8oNQuOihNqOVRb/WbDKjb6NVVkdjUk3uDHt/JPWh8LMfX.js\";\nimport * as sharedStyle4 from \"https://framerusercontent.com/modules/6qtmv1KOrPpwJ4YpAqOZ/hIzHyoqn7hK1WiD93tg9/NqIxyt9Bi.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/fQazkP8s8ldiBAUkvp22/ZiPKJjZ6pflIkusFGqVT/OBUUOOZEs.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/wOYfsnzYjQxwZbveFwho/e5AzQla86NwDayqK2wfp/S5nYElLJy.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/1SUTZMYXeyTo2j8R5CIX/smPzHZiCHG7VaQMJgVfB/fpnrqnSY4.js\";\nconst NavbarFonts = getFonts(Navbar);\nconst GoogleMapsFonts = getFonts(GoogleMaps);\nconst BaseFormFonts = getFonts(BaseForm);\nconst PhosphorFonts = getFonts(Phosphor);\nconst ElementsAccordionFonts = getFonts(ElementsAccordion);\nconst FooterFonts = getFonts(Footer);\nconst cycleOrder = [\"krVWfsiEy\", \"kRRjhh2_S\", \"ittMAJllC\"];\nconst breakpoints = {\n  ittMAJllC: \"(max-width: 767px)\",\n  kRRjhh2_S: \"(min-width: 768px) and (max-width: 1199px)\",\n  krVWfsiEy: \"(min-width: 1200px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst serializationHash = \"framer-uiTgq\";\nconst variantClassNames = {\n  ittMAJllC: \"framer-v-1z0kkim\",\n  kRRjhh2_S: \"framer-v-1q4vtbk\",\n  krVWfsiEy: \"framer-v-1ljhsbu\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"krVWfsiEy\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst Overlay = ({\n  children,\n  blockDocumentScrolling,\n  enabled = true\n}) => {\n  const [visible, setVisible] = useOverlayState({\n    blockDocumentScrolling\n  });\n  return children({\n    hide: () => setVisible(false),\n    show: () => setVisible(true),\n    toggle: () => setVisible(!visible),\n    visible: enabled && visible\n  });\n};\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  Desktop: \"krVWfsiEy\",\n  Phone: \"ittMAJllC\",\n  Tablet: \"kRRjhh2_S\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _humanReadableVariantMap_props_variant, _ref;\n  return {\n    ...props,\n    variant: (_ref = (_humanReadableVariantMap_props_variant = humanReadableVariantMap[props.variant]) !== null && _humanReadableVariantMap_props_variant !== void 0 ? _humanReadableVariantMap_props_variant : props.variant) !== null && _ref !== void 0 ? _ref : \"krVWfsiEy\"\n  };\n};\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale,\n    setLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider(undefined, activeLocale);\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var _document_querySelector;\n      (_document_querySelector = document.querySelector('meta[name=\"viewport\"]')) === null || _document_querySelector === void 0 ? void 0 : _document_querySelector.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(`${metadata1.bodyClassName}-framer-uiTgq`);\n      return () => {\n        document.body.classList.remove(`${metadata1.bodyClassName}-framer-uiTgq`);\n      };\n    }\n  }, [undefined, activeLocale]);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const {\n    activeVariantCallback,\n    delay\n  } = useActiveVariantCallback(undefined);\n  const onSubmit42m929 = overlay => activeVariantCallback(async (...args) => {\n    overlay.toggle();\n  });\n  const onTapzn6atv = overlay => activeVariantCallback(async (...args) => {\n    overlay.hide();\n  });\n  const ref1 = React.useRef(null);\n  const id = useRouteElementId(\"IYcL6Cleb\");\n  const ref2 = React.useRef(null);\n  const router = useRouter();\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className, sharedStyle4.className];\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"krVWfsiEy\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsxs(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: [/*#__PURE__*/_jsxs(motion.div, {\n        ...restProps,\n        className: cx(serializationHash, ...sharedStyleClassNames, \"framer-1ljhsbu\", className),\n        ref: ref !== null && ref !== void 0 ? ref : ref1,\n        style: {\n          ...style\n        },\n        children: [/*#__PURE__*/_jsx(\"div\", {\n          className: \"framer-1t5nd98\",\n          children: /*#__PURE__*/_jsx(Container, {\n            className: \"framer-w60jls-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                ittMAJllC: {\n                  variant: \"E3Ho3aNxe\"\n                },\n                kRRjhh2_S: {\n                  variant: \"E3Ho3aNxe\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(Navbar, {\n                height: \"100%\",\n                id: \"ukZz2dhc3\",\n                layoutId: \"ukZz2dhc3\",\n                style: {\n                  maxWidth: \"100%\",\n                  width: \"100%\"\n                },\n                variant: \"u19VgTFju\",\n                width: \"100%\"\n              })\n            })\n          })\n        }), /*#__PURE__*/_jsx(\"div\", {\n          className: \"framer-y4uw65\",\n          \"data-framer-name\": \"Map\",\n          name: \"Map\",\n          children: /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-1ok0fxx\",\n            \"data-framer-name\": \"2 columns\",\n            id: id,\n            name: \"2 columns\",\n            ref: ref2,\n            children: [/*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-1uivhya\",\n              children: /*#__PURE__*/_jsx(Container, {\n                className: \"framer-11z1d2j-container\",\n                children: /*#__PURE__*/_jsx(GoogleMaps, {\n                  borderRadius: 0,\n                  bottomLeftRadius: 0,\n                  bottomRightRadius: 0,\n                  coordinates: \"52.37588, 4.891295\",\n                  height: \"100%\",\n                  id: \"Wbz1ReIqk\",\n                  isMixedBorderRadius: false,\n                  layoutId: \"Wbz1ReIqk\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  topLeftRadius: 0,\n                  topRightRadius: 0,\n                  width: \"100%\",\n                  zoom: 15\n                })\n              })\n            }), /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-hcaddx\",\n              children: [/*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    className: \"framer-styles-preset-v3om8n\",\n                    \"data-styles-preset\": \"S5nYElLJy\",\n                    children: \"Contact us\"\n                  })\n                }),\n                className: \"framer-1u9guda\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"h2\", {\n                    className: \"framer-styles-preset-pxh325\",\n                    \"data-styles-preset\": \"OBUUOOZEs\",\n                    children: \"Let's talk\"\n                  })\n                }),\n                className: \"framer-c86j5w\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(Overlay, {\n                children: overlay => /*#__PURE__*/_jsx(_Fragment, {\n                  children: /*#__PURE__*/_jsxs(Container, {\n                    className: \"framer-7pumfr-container\",\n                    children: [/*#__PURE__*/_jsx(BaseForm, {\n                      button: {\n                        label: \"Submit\",\n                        shouldAppear: true\n                      },\n                      contentType: \"application/json\",\n                      height: \"100%\",\n                      id: \"G_eemIwL5\",\n                      inputs: [{\n                        gridColumn: \"1\",\n                        label: \"Full Name\",\n                        max: \"\",\n                        min: \"\",\n                        name: \"name\",\n                        options: [],\n                        placeholder: \"Uwais Al Qorni\",\n                        required: true,\n                        step: 0,\n                        type: \"text\",\n                        value: \"\"\n                      }, {\n                        gridColumn: \"1\",\n                        label: \"Email\",\n                        max: \"\",\n                        min: \"\",\n                        name: \"email\",\n                        options: [],\n                        placeholder: \"uwais@lqorni.id\",\n                        required: true,\n                        step: 0,\n                        type: \"email\",\n                        value: \"\"\n                      }, {\n                        gridColumn: \"2\",\n                        label: \"Message\",\n                        max: \"\",\n                        min: \"\",\n                        name: \"message\",\n                        options: [],\n                        placeholder: \"Your message\",\n                        required: true,\n                        step: 0,\n                        type: \"textarea\",\n                        value: \"\"\n                      }],\n                      layoutId: \"G_eemIwL5\",\n                      link: resolveLink({\n                        webPageId: \"bROYPFCfJ\"\n                      }, router),\n                      method: \"post\",\n                      onSubmit: onSubmit42m929(overlay),\n                      redirectAs: \"overlay\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      styles: {\n                        button: {\n                          align: \"flex-start\",\n                          borderRadius: 4,\n                          color: \"rgb(255, 255, 255)\",\n                          fill: 'var(--token-dabfcbee-d1af-4eb1-8c87-794887fc1f7a, rgb(255, 121, 0)) /* {\"name\":\"Brand\"} */',\n                          font: {\n                            fontFamily: '\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\n                            fontSize: \"16px\",\n                            fontStyle: \"normal\",\n                            fontWeight: 500,\n                            letterSpacing: \"0em\",\n                            lineHeight: \"1.5em\"\n                          },\n                          padding: 15,\n                          paddingBottom: 16,\n                          paddingLeft: 48,\n                          paddingPerSide: true,\n                          paddingRight: 48,\n                          paddingTop: 16\n                        },\n                        form: {\n                          columnGap: 32,\n                          columns: \"2\",\n                          fill: \"rgba(255, 121, 0, 0)\",\n                          rowGap: 48\n                        },\n                        input: {\n                          borderObject: {\n                            borderColor: 'var(--token-44e0d7f1-2159-4869-aa7a-d50de3afd6b3, rgba(0, 0, 0, 0.09)) /* {\"name\":\"Border\"} */',\n                            borderWidth: 1\n                          },\n                          borderRadius: 6,\n                          color: \"rgb(0, 0, 0)\",\n                          fill: \"rgba(235, 235, 235, 0)\",\n                          focusObject: {\n                            focusColor: \"rgb(0, 153, 255)\",\n                            focusWidthFrom: 0,\n                            focusWidthTo: 2\n                          },\n                          font: {\n                            fontFamily: '\"Manrope\", \"Manrope Placeholder\", sans-serif',\n                            fontSize: \"16px\",\n                            fontStyle: \"normal\",\n                            fontWeight: 400,\n                            letterSpacing: \"0em\",\n                            lineHeight: \"1.5em\"\n                          },\n                          padding: 16,\n                          paddingBottom: 16,\n                          paddingLeft: 16,\n                          paddingPerSide: false,\n                          paddingRight: 16,\n                          paddingTop: 16,\n                          placeholderColor: 'var(--token-dd62ab5d-7064-41e5-9a6d-74b386c7a513, rgb(145, 145, 145)) /* {\"name\":\"Text -- Less contrast\"} */'\n                        },\n                        label: {\n                          borderRadius: 8,\n                          color: 'var(--token-52bac29a-57c4-480a-8f53-5797390175c9, rgb(97, 105, 117)) /* {\"name\":\"Text\"} */',\n                          fill: \"rgba(0, 0, 0, 0)\",\n                          font: {\n                            fontFamily: '\"Manrope\", \"Manrope Placeholder\", sans-serif',\n                            fontSize: \"18px\",\n                            fontStyle: \"normal\",\n                            fontWeight: 400,\n                            letterSpacing: \"0em\",\n                            lineHeight: \"1.5em\"\n                          },\n                          padding: 0,\n                          paddingBottom: 0,\n                          paddingLeft: 0,\n                          paddingPerSide: false,\n                          paddingRight: 0,\n                          paddingTop: 0\n                        }\n                      },\n                      url: \"https://submit-form.com/j9xBXxYh\",\n                      width: \"100%\"\n                    }), /*#__PURE__*/_jsx(AnimatePresence, {\n                      children: overlay.visible && /*#__PURE__*/_jsx(_Fragment, {\n                        children: /*#__PURE__*/ReactDOM.createPortal( /*#__PURE__*/_jsxs(React.Fragment, {\n                          children: [/*#__PURE__*/_jsx(motion.div, {\n                            animate: {\n                              opacity: 1,\n                              transition: {\n                                delay: 0,\n                                duration: 0,\n                                ease: [.5, 0, .88, .77],\n                                type: \"tween\"\n                              }\n                            },\n                            className: \"framer-19gsgc7\",\n                            exit: {\n                              opacity: 0,\n                              transition: {\n                                delay: 0,\n                                duration: 0,\n                                ease: [.12, .23, .5, 1],\n                                type: \"tween\"\n                              }\n                            },\n                            initial: {\n                              opacity: 0\n                            },\n                            onTap: () => overlay.hide()\n                          }, \"ibmogd4MU\"), /*#__PURE__*/_jsxs(\"div\", {\n                            className: \"framer-5cx530\",\n                            children: [/*#__PURE__*/_jsx(RichText, {\n                              __fromCanvasComponent: true,\n                              children: /*#__PURE__*/_jsx(React.Fragment, {\n                                children: /*#__PURE__*/_jsx(\"h3\", {\n                                  className: \"framer-styles-preset-1449a79\",\n                                  \"data-styles-preset\": \"JPWh8LMfX\",\n                                  style: {\n                                    \"--framer-text-alignment\": \"center\",\n                                    \"--framer-text-color\": \"var(--token-57f1fa2e-1e1e-4d93-bdaf-318a3616f0ba, rgb(255, 255, 255))\"\n                                  },\n                                  children: \"Thank you for contacting us!\"\n                                })\n                              }),\n                              className: \"framer-1odxnw8\",\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-fr15fp\",\n                                  \"data-styles-preset\": \"dVIwmr50W\",\n                                  style: {\n                                    \"--framer-text-alignment\": \"center\",\n                                    \"--framer-text-color\": \"var(--token-57f1fa2e-1e1e-4d93-bdaf-318a3616f0ba, rgb(255, 255, 255))\"\n                                  },\n                                  children: \"Our team has received your message and we will get back to you as soon as possible.\"\n                                })\n                              }),\n                              className: \"framer-1tpamzk\",\n                              verticalAlignment: \"top\",\n                              withExternalLayout: true\n                            }), /*#__PURE__*/_jsxs(motion.div, {\n                              className: \"framer-jxriv4\",\n                              onTap: onTapzn6atv(overlay),\n                              children: [/*#__PURE__*/_jsx(RichText, {\n                                __fromCanvasComponent: true,\n                                children: /*#__PURE__*/_jsx(React.Fragment, {\n                                  children: /*#__PURE__*/_jsx(\"p\", {\n                                    className: \"framer-styles-preset-dh7xe2\",\n                                    \"data-styles-preset\": \"NqIxyt9Bi\",\n                                    children: \"Close\"\n                                  })\n                                }),\n                                className: \"framer-13056rg\",\n                                verticalAlignment: \"top\",\n                                withExternalLayout: true\n                              }), /*#__PURE__*/_jsx(motion.div, {\n                                className: \"framer-17ilsr7\",\n                                onTap: onTapzn6atv(overlay),\n                                children: /*#__PURE__*/_jsx(Container, {\n                                  className: \"framer-7jj6wr-container\",\n                                  children: /*#__PURE__*/_jsx(Phosphor, {\n                                    color: \"rgb(0, 0, 0)\",\n                                    height: \"100%\",\n                                    iconSearch: \"House\",\n                                    iconSelection: \"X\",\n                                    id: \"CKqa9hMQN\",\n                                    layoutId: \"CKqa9hMQN\",\n                                    mirrored: false,\n                                    selectByList: true,\n                                    style: {\n                                      height: \"100%\",\n                                      width: \"100%\"\n                                    },\n                                    weight: \"regular\",\n                                    width: \"100%\"\n                                  })\n                                })\n                              })]\n                            })]\n                          })]\n                        }), document.querySelector(\"#overlay\"))\n                      })\n                    })]\n                  })\n                })\n              })]\n            })]\n          })\n        }), /*#__PURE__*/_jsxs(\"div\", {\n          className: \"framer-1rta19l\",\n          children: [/*#__PURE__*/_jsx(RichText, {\n            __fromCanvasComponent: true,\n            children: /*#__PURE__*/_jsx(React.Fragment, {\n              children: /*#__PURE__*/_jsx(\"h2\", {\n                className: \"framer-styles-preset-pxh325\",\n                \"data-styles-preset\": \"OBUUOOZEs\",\n                children: \"Frequently Asked Questions\"\n              })\n            }),\n            className: \"framer-1gsgqao\",\n            verticalAlignment: \"top\",\n            withExternalLayout: true\n          }), /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-7ys8cc\",\n            \"data-framer-name\": \"1 columns\",\n            name: \"1 columns\",\n            children: [/*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-1v4vm93\",\n              children: [/*#__PURE__*/_jsx(Container, {\n                className: \"framer-j85jm4-container\",\n                children: /*#__PURE__*/_jsx(ElementsAccordion, {\n                  answer: \"All individual Framer subscriptions have been grandfathered into a Pro plan at your existing rate. If you were on a Small Team plan, then all 5 seats have been converted over to Pro seats at your existing rate. Regardless of your subscription plan, all new paid editors that you add to your subscription will be billed at the new plan rates.\",\n                  height: \"100%\",\n                  id: \"eo7R02RV8\",\n                  layoutId: \"eo7R02RV8\",\n                  question: \"What makes Wh\\xefmsy different from other advertising tools?\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"pIBE1KgpP\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-qe8rm6-container\",\n                children: /*#__PURE__*/_jsx(ElementsAccordion, {\n                  answer: \"Wh\\xefmsy is designed for seamless integration with popular ecommerce platforms. Simply follow our step-by-step guide in the user dashboard.\",\n                  height: \"100%\",\n                  id: \"YzV5b4SBR\",\n                  layoutId: \"YzV5b4SBR\",\n                  question: \"How do I integrate Wh\\xefmsy with my ecommerce platform?\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"pIBE1KgpP\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-klz1b-container\",\n                children: /*#__PURE__*/_jsx(ElementsAccordion, {\n                  answer: \"Absolutely. We prioritize data security, employing advanced encryption methods to ensure your information remains confidential and protected.\",\n                  height: \"100%\",\n                  id: \"XFdR_otC0\",\n                  layoutId: \"XFdR_otC0\",\n                  question: \" Is my data secure with Wh\\xefmsy?\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"pIBE1KgpP\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-gdrygl-container\",\n                children: /*#__PURE__*/_jsx(ElementsAccordion, {\n                  answer: \"Yes, while Wh\\xefmsy offers automated optimizations, you retain full control and can customize campaigns to your preference.\",\n                  height: \"100%\",\n                  id: \"rFGq8CYtP\",\n                  layoutId: \"rFGq8CYtP\",\n                  question: \" Can I customize my ad campaigns on Wh\\xefmsy?\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"pIBE1KgpP\",\n                  width: \"100%\"\n                })\n              })]\n            }), /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-1vbwvjy\",\n              children: [/*#__PURE__*/_jsx(Container, {\n                className: \"framer-1pa9ir0-container\",\n                children: /*#__PURE__*/_jsx(ElementsAccordion, {\n                  answer: \"Our AI analyzes your ad performance, market trends, and user behavior to provide tailored strategies that enhance your campaign results.\\n\\n\",\n                  height: \"100%\",\n                  id: \"AkuuVw9As\",\n                  layoutId: \"AkuuVw9As\",\n                  question: \"How does the AI-powered recommendation feature work?\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"pIBE1KgpP\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-1njtx6h-container\",\n                children: /*#__PURE__*/_jsx(ElementsAccordion, {\n                  answer: \"Not at all. Wh\\xefmsy's intuitive interface and comprehensive tutorials make it suitable for both beginners and seasoned advertisers.\",\n                  height: \"100%\",\n                  id: \"Dc1fADnp3\",\n                  layoutId: \"Dc1fADnp3\",\n                  question: \"Do I need any prior advertising experience to use Wh\\xefmsy?\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"pIBE1KgpP\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-1tadfv6-container\",\n                children: /*#__PURE__*/_jsx(ElementsAccordion, {\n                  answer: \"We offer various pricing tiers to cater to different business needs. Check our Pricing page for detailed information.\",\n                  height: \"100%\",\n                  id: \"FlPzpIw7G\",\n                  layoutId: \"FlPzpIw7G\",\n                  question: \"How does Wh\\xefmsy's pricing work?\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"pIBE1KgpP\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-1ua2v16-container\",\n                children: /*#__PURE__*/_jsx(ElementsAccordion, {\n                  answer: \"es, Wh\\xefmsy supports team collaboration, allowing multiple users to work on campaigns, share insights, and optimize strategies together.\",\n                  height: \"100%\",\n                  id: \"SpfosXiNz\",\n                  layoutId: \"SpfosXiNz\",\n                  question: \"Can I collaborate with my team on Wh\\xefmsy?\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"pIBE1KgpP\",\n                  width: \"100%\"\n                })\n              })]\n            })]\n          })]\n        }), /*#__PURE__*/_jsx(Container, {\n          className: \"framer-1t7y5f5-container\",\n          children: /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              ittMAJllC: {\n                variant: \"INSn4dU8j\"\n              },\n              kRRjhh2_S: {\n                variant: \"tRaTzfE48\"\n              }\n            },\n            children: /*#__PURE__*/_jsx(Footer, {\n              height: \"100%\",\n              id: \"SYBLfnNvn\",\n              layoutId: \"SYBLfnNvn\",\n              style: {\n                width: \"100%\"\n              },\n              variant: \"NNwJx0MA1\",\n              width: \"100%\"\n            })\n          })\n        })]\n      }), /*#__PURE__*/_jsx(\"div\", {\n        className: serializationHash,\n        id: \"overlay\"\n      })]\n    })\n  });\n});\nconst css = ['.framer-uiTgq[data-border=\"true\"]::after, .framer-uiTgq [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName}-framer-uiTgq { background: var(--token-f2398191-dc87-44f2-bd61-df52d0dbfbff, rgb(255, 255, 255)) /* {\"name\":\"Backdrop\"} */; }`, \".framer-uiTgq.framer-fqnq2h, .framer-uiTgq .framer-fqnq2h { display: block; }\", \".framer-uiTgq.framer-1ljhsbu { align-content: center; align-items: center; background-color: var(--token-f2398191-dc87-44f2-bd61-df52d0dbfbff, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-uiTgq .framer-1t5nd98 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-uiTgq .framer-w60jls-container { flex: none; height: auto; max-width: 100%; position: relative; width: 1200px; z-index: 10; }\", \".framer-uiTgq .framer-y4uw65 { 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 24px 0px 0px; position: relative; width: 100%; }\", \".framer-uiTgq .framer-1ok0fxx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 128px; height: 797px; justify-content: flex-start; overflow: visible; padding: 64px 24px 0px 0px; position: relative; width: 100%; }\", \".framer-uiTgq .framer-1uivhya { flex: none; height: 100%; overflow: hidden; position: relative; width: 49%; }\", \".framer-uiTgq .framer-11z1d2j-container { flex: none; height: 672px; left: 0px; position: absolute; top: calc(50.00000000000002% - 672px / 2); width: 100%; z-index: 1; }\", \".framer-uiTgq .framer-hcaddx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-uiTgq .framer-1u9guda, .framer-uiTgq .framer-c86j5w, .framer-uiTgq .framer-13056rg, .framer-uiTgq .framer-1gsgqao { --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-uiTgq .framer-7pumfr-container, .framer-uiTgq .framer-j85jm4-container, .framer-uiTgq .framer-qe8rm6-container, .framer-uiTgq .framer-klz1b-container, .framer-uiTgq .framer-gdrygl-container, .framer-uiTgq .framer-1pa9ir0-container, .framer-uiTgq .framer-1njtx6h-container, .framer-uiTgq .framer-1tadfv6-container, .framer-uiTgq .framer-1ua2v16-container, .framer-uiTgq .framer-1t7y5f5-container { flex: none; height: auto; position: relative; width: 100%; }\", \".framer-uiTgq .framer-19gsgc7 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\", \".framer-uiTgq .framer-5cx530 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 0px; overflow: hidden; padding: 0px 0px 0px 0px; position: fixed; top: 0px; width: 100%; z-index: 10; }\", \".framer-uiTgq .framer-1odxnw8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-uiTgq .framer-1tpamzk { --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: 482px; word-break: break-word; word-wrap: break-word; }\", \".framer-uiTgq .framer-jxriv4 { align-content: center; align-items: center; border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: auto; justify-content: center; overflow: hidden; padding: 8px 24px 8px 24px; position: relative; width: auto; will-change: var(--framer-will-change-override, transform); }\", \".framer-uiTgq .framer-17ilsr7 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: var(--framer-aspect-ratio-supported, 16px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 16px; will-change: var(--framer-will-change-override, transform); }\", \".framer-uiTgq .framer-7jj6wr-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 15px; }\", \".framer-uiTgq .framer-1rta19l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-uiTgq .framer-7ys8cc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 128px; height: auto; justify-content: flex-start; max-width: 1300px; overflow: hidden; padding: 24px 24px 24px 24px; position: relative; width: 100%; }\", \".framer-uiTgq .framer-1v4vm93, .framer-uiTgq .framer-1vbwvjy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-uiTgq.framer-1ljhsbu, .framer-uiTgq .framer-1t5nd98, .framer-uiTgq .framer-y4uw65, .framer-uiTgq .framer-1ok0fxx, .framer-uiTgq .framer-hcaddx, .framer-uiTgq .framer-5cx530, .framer-uiTgq .framer-jxriv4, .framer-uiTgq .framer-17ilsr7, .framer-uiTgq .framer-1rta19l, .framer-uiTgq .framer-7ys8cc, .framer-uiTgq .framer-1v4vm93, .framer-uiTgq .framer-1vbwvjy { gap: 0px; } .framer-uiTgq.framer-1ljhsbu > *, .framer-uiTgq .framer-1rta19l > *, .framer-uiTgq .framer-1v4vm93 > *, .framer-uiTgq .framer-1vbwvjy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uiTgq.framer-1ljhsbu > :first-child, .framer-uiTgq .framer-y4uw65 > :first-child, .framer-uiTgq .framer-hcaddx > :first-child, .framer-uiTgq .framer-5cx530 > :first-child, .framer-uiTgq .framer-17ilsr7 > :first-child, .framer-uiTgq .framer-1rta19l > :first-child, .framer-uiTgq .framer-1v4vm93 > :first-child, .framer-uiTgq .framer-1vbwvjy > :first-child { margin-top: 0px; } .framer-uiTgq.framer-1ljhsbu > :last-child, .framer-uiTgq .framer-y4uw65 > :last-child, .framer-uiTgq .framer-hcaddx > :last-child, .framer-uiTgq .framer-5cx530 > :last-child, .framer-uiTgq .framer-17ilsr7 > :last-child, .framer-uiTgq .framer-1rta19l > :last-child, .framer-uiTgq .framer-1v4vm93 > :last-child, .framer-uiTgq .framer-1vbwvjy > :last-child { margin-bottom: 0px; } .framer-uiTgq .framer-1t5nd98 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uiTgq .framer-1t5nd98 > :first-child, .framer-uiTgq .framer-1ok0fxx > :first-child, .framer-uiTgq .framer-jxriv4 > :first-child, .framer-uiTgq .framer-7ys8cc > :first-child { margin-left: 0px; } .framer-uiTgq .framer-1t5nd98 > :last-child, .framer-uiTgq .framer-1ok0fxx > :last-child, .framer-uiTgq .framer-jxriv4 > :last-child, .framer-uiTgq .framer-7ys8cc > :last-child { margin-right: 0px; } .framer-uiTgq .framer-y4uw65 > *, .framer-uiTgq .framer-5cx530 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-uiTgq .framer-1ok0fxx > *, .framer-uiTgq .framer-7ys8cc > * { margin: 0px; margin-left: calc(128px / 2); margin-right: calc(128px / 2); } .framer-uiTgq .framer-hcaddx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-uiTgq .framer-jxriv4 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-uiTgq .framer-17ilsr7 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\", \"@media (min-width: 1200px) { .framer-uiTgq .hidden-1ljhsbu { display: none !important; } }\", `@media (min-width: 768px) and (max-width: 1199px) { .framer-uiTgq .hidden-1q4vtbk { display: none !important; } .${metadata.bodyClassName}-framer-uiTgq { background: var(--token-f2398191-dc87-44f2-bd61-df52d0dbfbff, rgb(255, 255, 255)) /* {\"name\":\"Backdrop\"} */; } .framer-uiTgq.framer-1ljhsbu { width: 768px; } .framer-uiTgq .framer-y4uw65 { padding: 0px 0px 0px 0px; } .framer-uiTgq .framer-1ok0fxx { flex-direction: column; gap: 48px; height: auto; padding: 48px 0px 0px 0px; } .framer-uiTgq .framer-1uivhya { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; width: 100%; } .framer-uiTgq .framer-11z1d2j-container { height: 377px; left: unset; order: 0; position: relative; top: unset; } .framer-uiTgq .framer-hcaddx { flex: none; padding: 24px 24px 24px 24px; width: 100%; } .framer-uiTgq .framer-1tpamzk { width: 384px; } .framer-uiTgq .framer-7ys8cc { gap: 48px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-uiTgq .framer-1ok0fxx, .framer-uiTgq .framer-1uivhya, .framer-uiTgq .framer-7ys8cc { gap: 0px; } .framer-uiTgq .framer-1ok0fxx > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-uiTgq .framer-1ok0fxx > :first-child { margin-top: 0px; } .framer-uiTgq .framer-1ok0fxx > :last-child { margin-bottom: 0px; } .framer-uiTgq .framer-1uivhya > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uiTgq .framer-1uivhya > :first-child, .framer-uiTgq .framer-7ys8cc > :first-child { margin-left: 0px; } .framer-uiTgq .framer-1uivhya > :last-child, .framer-uiTgq .framer-7ys8cc > :last-child { margin-right: 0px; } .framer-uiTgq .framer-7ys8cc > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } }}`, `@media (max-width: 767px) { .framer-uiTgq .hidden-1z0kkim { display: none !important; } .${metadata.bodyClassName}-framer-uiTgq { background: var(--token-f2398191-dc87-44f2-bd61-df52d0dbfbff, rgb(255, 255, 255)) /* {\"name\":\"Backdrop\"} */; } .framer-uiTgq.framer-1ljhsbu { width: 429px; } .framer-uiTgq .framer-y4uw65 { padding: 0px 0px 0px 0px; } .framer-uiTgq .framer-1ok0fxx { flex-direction: column; gap: 24px; height: auto; padding: 0px 0px 0px 0px; } .framer-uiTgq .framer-1uivhya { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; width: 100%; } .framer-uiTgq .framer-11z1d2j-container { height: 377px; left: unset; order: 0; position: relative; top: unset; } .framer-uiTgq .framer-hcaddx { flex: none; padding: 24px 24px 24px 24px; width: 100%; } .framer-uiTgq .framer-5cx530 { padding: 48px 48px 48px 48px; } .framer-uiTgq .framer-1tpamzk { width: 100%; } .framer-uiTgq .framer-1rta19l { padding: 24px 24px 24px 24px; } .framer-uiTgq .framer-1gsgqao { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-uiTgq .framer-7ys8cc { flex-direction: column; gap: 0px; padding: 0px 0px 0px 0px; } .framer-uiTgq .framer-1v4vm93, .framer-uiTgq .framer-1vbwvjy { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-uiTgq .framer-1ok0fxx, .framer-uiTgq .framer-1uivhya, .framer-uiTgq .framer-7ys8cc { gap: 0px; } .framer-uiTgq .framer-1ok0fxx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-uiTgq .framer-1ok0fxx > :first-child, .framer-uiTgq .framer-7ys8cc > :first-child { margin-top: 0px; } .framer-uiTgq .framer-1ok0fxx > :last-child, .framer-uiTgq .framer-7ys8cc > :last-child { margin-bottom: 0px; } .framer-uiTgq .framer-1uivhya > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uiTgq .framer-1uivhya > :first-child { margin-left: 0px; } .framer-uiTgq .framer-1uivhya > :last-child { margin-right: 0px; } .framer-uiTgq .framer-7ys8cc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css, ...sharedStyle4.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerIntrinsicHeight 2064\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kRRjhh2_S\":{\"layout\":[\"fixed\",\"auto\"]},\"ittMAJllC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerDisplayContentsDiv false\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                */\nconst FramerfpnrqnSY4 = withCSS(Component, css, \"framer-uiTgq\");\nexport default FramerfpnrqnSY4;\nFramerfpnrqnSY4.displayName = \"Contact\";\nFramerfpnrqnSY4.defaultProps = {\n  height: 2064,\n  width: 1200\n};\naddFonts(FramerfpnrqnSY4, [{\n  family: \"Manrope\",\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\",\n  weight: \"400\"\n}, {\n  family: \"Clash Display\",\n  style: \"normal\",\n  url: \"https://framerusercontent.com/third-party-assets/fontshare/wf/2GQIT54GKQY3JRFTSHS4ARTRNRQISSAA/3CIP5EBHRRHE5FVQU3VFROPUERNDSTDF/JTSL5QESUXATU47LCPUNHZQBDDIWDOSW.woff2\",\n  weight: \"500\"\n}, ...NavbarFonts, ...GoogleMapsFonts, ...BaseFormFonts, ...PhosphorFonts, ...ElementsAccordionFonts, ...FooterFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts, ...sharedStyle4.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerfpnrqnSY4\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kRRjhh2_S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ittMAJllC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerImmutableVariables\": \"true\",\n        \"framerContractVersion\": \"1\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerIntrinsicWidth\": \"1200\",\n        \"framerDisplayContentsDiv\": \"false\",\n        \"framerIntrinsicHeight\": \"2064\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "gkCAIA,IAAMA,GAAmB,+DASV,SAARC,EAA4B,CACjC,YAAAC,EACA,KAAAC,EACA,MAAAC,EACA,GAAGC,CACL,EAAG,CACD,IAAMC,EAAeC,GAAUF,CAAK,EAC9B,CAACG,EAAWC,CAAU,EAAIC,EAAQ,IAAM,CAC5C,IAAIC,EACJ,GAAM,CAAC,CAAEC,EAAUC,CAAS,GAAKF,EAAMT,EAAY,MAAMF,EAAgB,KAAO,MAAQW,IAAQ,OAASA,EAAM,CAAC,KAAM,GAAI,EAAE,EAC5H,MAAO,CAACC,EAAUC,CAAS,CAC7B,EAAG,CAACX,CAAW,CAAC,EAChB,OAAoBY,EAAKC,EAAO,IAAK,CACnC,MAAO,CACL,GAAGX,EACH,GAAGY,EACH,SAAU,SACV,aAAAV,CACF,EACA,GAAGD,EACH,SAAuBS,EAAK,SAAU,CACpC,MAAO,CACL,OAAQ,OACR,MAAO,OACP,OAAQ,CACV,EACA,IAAK,kCAAkCN,KAAaC,OAAgBN,gBACtE,CAAC,CACH,CAAC,CACH,CAEAc,EAAoBhB,EAAY,CAC9B,YAAa,CACX,KAAMiB,EAAY,OAClB,MAAO,cACP,YAAa,qBACb,aAAc,qBACd,YAAa,kFACf,EACA,KAAM,CACJ,KAAMA,EAAY,OAClB,KAAM,EACN,IAAK,EACL,IAAK,GACL,MAAO,OACP,aAAc,EAChB,EACA,GAAGC,EACL,CAAC,EC5DDC,GAAU,0BAA0B,CAAC,2BAA2B,CAAC,EAC1D,IAAMC,GAAQ,CAAC,CACpB,OAAQ,gBACR,YAAa,CACX,sBAAuB,qCACvB,IAAK,wKACP,EACA,MAAO,SACP,IAAK,yKACL,OAAQ,KACV,CAAC,EACYC,GAAM,CAAC,6hBAA6hB,EACpiBC,GAAY,eCLzB,IAAMC,GAAgBC,EAASC,CAAQ,EACjCC,GAAkB,CACtB,UAAW,CACT,MAAO,EACT,CACF,EACMC,GAAa,CAAC,YAAa,WAAW,EACtCC,GAAoB,CACxB,UAAW,kBACX,UAAW,iBACb,EACA,SAASC,GAAqBC,KAAcC,EAAU,CACpD,IAAMC,EAAgB,CAAC,EACvB,OAAoDD,GAAS,QAAQE,GAAWA,GAAW,OAAO,OAAOD,EAAeF,EAAUG,CAAO,CAAC,CAAC,EACpID,CACT,CACA,IAAME,GAA0B,CAC9B,OAAQ,YACR,KAAM,WACR,EACMC,GAAc,CAClB,QAAS,CACP,QAAS,GACT,MAAO,EACP,KAAM,EACN,UAAW,IACX,KAAM,QACR,CACF,EACMC,GAAa,CAAC,CAClB,MAAAC,EACA,SAAAC,CACF,IAAM,CACJ,IAAMC,EAAeC,GAAWC,CAAmB,EAC7CC,EAAaL,GAA6CE,EAAO,WACjEI,EAAqBC,EAAQ,KAAO,CACxC,GAAGL,EACH,WAAAG,CACF,GAAI,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAChC,OAAoBG,EAAKJ,EAAoB,SAAU,CACrD,MAAOE,EACP,SAAUL,CACZ,CAAC,CACH,EACMQ,GAA+BC,EAAW,SAAU,CACxD,GAAAC,EACA,MAAAC,EACA,UAAAC,EACA,MAAAC,EACA,OAAAC,EACA,SAAAC,EACA,QAASC,EAAe,YACxB,SAAUC,EAAY,iBACtB,OAAQC,EAAY,wVACpB,GAAGC,CACL,EAAGC,GAAK,CAEN,IAAMzB,EADiBC,GAAwBoB,CAAY,GACzBA,EAC5B,CACJ,YAAAK,EACA,WAAAC,GACA,eAAAC,EACA,gBAAAC,EACA,WAAAC,EACA,WAAArB,EACA,SAAAX,CACF,EAAIiC,GAAgB,CAClB,WAAArC,GACA,eAAgB,YAChB,gBAAAD,GACA,YAAAS,GACA,QAAAF,EACA,kBAAAL,EACF,CAAC,EACKqC,EAAmBlC,EAAS,KAAK,GAAG,EAAI0B,EAAU,iBAClD,CACJ,sBAAAS,EACA,MAAAC,EACF,EAAIC,EAAyBT,CAAW,EAClCU,EAAeH,EAAsB,SAAUI,KAAS,CAC5DP,EAAW,WAAW,CACxB,CAAC,EACKQ,EAAeL,EAAsB,SAAUI,KAAS,CAC5DP,EAAW,WAAW,CACxB,CAAC,EACKS,EAAc,IACdb,IAAgB,YAGhBc,GAAwBC,EAAM,EACpC,OAAoB7B,EAAK8B,EAAa,CACpC,GAAItB,GAAsDoB,GAC1D,SAAuB5B,EAAK+B,EAAO,IAAK,CACtC,QAAS3C,EACT,QAASF,EACT,aAAc,IAAM+B,EAAgB,CAClC,UAAW,EACb,CAAC,EACD,WAAY,IAAMA,EAAgB,CAChC,UAAW,EACb,CAAC,EACD,WAAY,IAAMA,EAAgB,CAChC,UAAW,EACb,CAAC,EACD,MAAO,IAAMA,EAAgB,CAC3B,UAAW,EACb,CAAC,EACD,YAAa,IAAMA,EAAgB,CACjC,UAAW,EACb,CAAC,EACD,UAAWe,EAAG,eAA4B3B,GAAwBA,GAAWU,EAAU,EACvF,MAAO,CACL,QAAS,UACX,EACA,SAAuBf,EAAKT,GAAY,CACtC,MAAOM,EACP,SAAuBoC,EAAMF,EAAO,IAAK,CACvC,GAAGnB,EACH,UAAWoB,EAAG,gBAAiB3B,CAAS,EACxC,cAAe,GACf,mBAAoB,SACpB,iBAAkB,GAClB,iBAAkBe,EAClB,SAAU,YACV,MAAOI,EACP,IAAKX,GACL,MAAO,CACL,wBAAyB,MACzB,iBAAkB,yEAClB,sBAAuB,MACvB,uBAAwB,MACxB,iBAAkB,QAClB,qBAAsB,MACtB,GAAGT,CACL,EACA,GAAGpB,GAAqB,CACtB,kBAAmB,CACjB,mBAAoB,MACtB,EACA,UAAW,CACT,mBAAoB,OACpB,MAAO0C,CACT,CACF,EAAGZ,EAAaE,CAAc,EAC9B,SAAU,CAAciB,EAAMF,EAAO,IAAK,CACxC,UAAW,gBACX,iBAAkBX,EAClB,SAAU,YACV,SAAU,CAAcpB,EAAKkC,EAAU,CACrC,sBAAuB,GACvB,SAAuBlC,EAAWmC,EAAU,CAC1C,SAAuBnC,EAAK+B,EAAO,GAAI,CACrC,UAAW,+BACX,qBAAsB,YACtB,MAAO,CACL,sBAAuB,0BACzB,EACA,SAAU,gBACZ,CAAC,CACH,CAAC,EACD,UAAW,gBACX,iBAAkBX,EAClB,SAAU,YACV,MAAO,CACL,sBAAuB,qEACvB,2BAA4B,mBAC5B,gCAAiC,YACjC,6BAA8B,KAChC,EACA,KAAMV,EACN,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgBV,EAAK+B,EAAO,IAAK,CAChC,UAAW,0BACX,iBAAkBX,EAClB,SAAU,sBACV,MAAO,CACL,QAAS,GACT,OAAQ,CACV,EACA,SAAU,CACR,kBAAmB,CACjB,QAAS,CACX,EACA,UAAW,CACT,OAAQ,GACV,CACF,EACA,SAAuBpB,EAAKpB,EAAU,CACpC,MAAO,oGACP,OAAQ,OACR,WAAY,QACZ,cAAe,YACf,GAAI,YACJ,SAAU,YACV,SAAU,GACV,aAAc,GACd,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,OAAQ,OACR,MAAO,MACT,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAG+C,EAAY,GAAkB3B,EAAK+B,EAAO,IAAK,CACjD,UAAW,iBACX,iBAAkBX,EAClB,SAAU,YACV,MAAO,CACL,QAAS,CACX,EACA,SAAU,CACR,UAAW,CACT,QAAS,CACX,CACF,EACA,SAAuBpB,EAAKkC,EAAU,CACpC,sBAAuB,GACvB,SAAuBlC,EAAWmC,EAAU,CAC1C,SAAuBnC,EAAK+B,EAAO,EAAG,CACpC,UAAW,8BACX,qBAAsB,YACtB,MAAO,CACL,sBAAuB,yBACzB,EACA,SAAU,uVACZ,CAAC,CACH,CAAC,EACD,UAAW,gBACX,iBAAkBX,EAClB,SAAU,YACV,MAAO,CACL,qBAAsB,uEACtB,2BAA4B,mBAC5B,gCAAiC,YACjC,6BAA8B,KAChC,EACA,KAAMT,EACN,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,CACH,CAAC,CACH,CAAC,CACH,CAAC,EACKyB,GAAM,CAAC,sZAAuZ,kFAAmF,oDAAqD,+SAAgT,qRAAsR,oNAAqN,wGAAyG,2RAA4R,wLAAyL,qEAAsE,goBAAioB,qGAAsG,GAAeA,GAAK,GAAgBA,EAAG,EAOntFC,EAAkBC,EAAQrC,GAAWmC,GAAK,cAAc,EACvDG,EAAQF,EACfA,EAAgB,YAAc,qBAC9BA,EAAgB,aAAe,CAC7B,OAAQ,GACR,MAAO,GACT,EACAG,EAAoBH,EAAiB,CACnC,QAAS,CACP,QAAS,CAAC,YAAa,WAAW,EAClC,aAAc,CAAC,SAAU,MAAM,EAC/B,MAAO,UACP,KAAMI,EAAY,IACpB,EACA,UAAW,CACT,aAAc,iBACd,gBAAiB,GACjB,MAAO,WACP,KAAMA,EAAY,MACpB,EACA,UAAW,CACT,aAAc,wVACd,gBAAiB,GACjB,MAAO,SACP,KAAMA,EAAY,MACpB,CACF,CAAC,EACDC,EAASL,EAAiB,CAAC,GAAG3D,GAAe,GAAeiE,GAAO,GAAgBA,EAAK,CAAC,EChRzF,IAAMC,GAAcC,EAASC,CAAM,EAC7BC,GAAkBF,EAASG,CAAU,EACrCC,GAAgBJ,EAASK,EAAQ,EACjCC,GAAgBN,EAASO,CAAQ,EACjCC,GAAyBR,EAASS,CAAiB,EACnDC,GAAcV,EAASW,CAAM,EAEnC,IAAMC,GAAc,CAClB,UAAW,qBACX,UAAW,6CACX,UAAW,qBACb,EACMC,GAAY,IAAM,OAAO,SAAa,IACtCC,GAAoB,eACpBC,GAAoB,CACxB,UAAW,mBACX,UAAW,mBACX,UAAW,kBACb,EACIF,GAAU,GACZG,GAA6B,YAAaJ,GAAaG,EAAiB,EAE1E,IAAME,GAAc,CAClB,QAAS,CACP,SAAU,CACZ,CACF,EACMC,GAAU,CAAC,CACf,SAAAC,EACA,uBAAAC,EACA,QAAAC,EAAU,EACZ,IAAM,CACJ,GAAM,CAACC,EAASC,CAAU,EAAIC,GAAgB,CAC5C,uBAAAJ,CACF,CAAC,EACD,OAAOD,EAAS,CACd,KAAM,IAAMI,EAAW,EAAK,EAC5B,KAAM,IAAMA,EAAW,EAAI,EAC3B,OAAQ,IAAMA,EAAW,CAACD,CAAO,EACjC,QAASD,GAAWC,CACtB,CAAC,CACH,EACMG,GAAWA,GAAiB,EAC5BC,GAA0B,CAC9B,QAAS,YACT,MAAO,YACP,OAAQ,WACV,EACMC,GAAW,CAAC,CAChB,OAAAC,EACA,GAAAC,EACA,MAAAC,EACA,GAAGC,CACL,IAAM,CACJ,IAAIC,EAAwCC,EAC5C,MAAO,CACL,GAAGF,EACH,SAAUE,GAAQD,EAAyCN,GAAwBK,EAAM,OAAO,KAAO,MAAQC,IAA2C,OAASA,EAAyCD,EAAM,WAAa,MAAQE,IAAS,OAASA,EAAO,WAClQ,CACF,EACMC,GAA+BC,EAAW,SAAUJ,EAAOK,EAAK,CACpE,GAAM,CACJ,aAAAC,EACA,UAAAC,CACF,EAAIC,GAAc,EACZ,CACJ,MAAAC,EACA,UAAAC,EACA,SAAAC,EACA,QAAAC,EACA,GAAGC,CACL,EAAIjB,GAASI,CAAK,EACZc,GAAgB,IAAM,CAC1B,IAAMC,EAAYrB,GAAiB,OAAWY,CAAY,EAE1D,GADA,SAAS,MAAQS,EAAU,OAAS,GAChCA,EAAU,SAAU,CACtB,IAAIC,GACHA,EAA0B,SAAS,cAAc,uBAAuB,KAAO,MAAQA,IAA4B,QAAkBA,EAAwB,aAAa,UAAWD,EAAU,QAAQ,EAE1M,GAAIA,EAAU,cACZ,aAAM,KAAK,SAAS,KAAK,SAAS,EAAE,OAAOE,GAAKA,EAAE,WAAW,cAAc,CAAC,EAAE,IAAIA,GAAK,SAAS,KAAK,UAAU,OAAOA,CAAC,CAAC,EACxH,SAAS,KAAK,UAAU,IAAI,GAAGF,EAAU,4BAA4B,EAC9D,IAAM,CACX,SAAS,KAAK,UAAU,OAAO,GAAGA,EAAU,4BAA4B,CAC1E,CAEJ,EAAG,CAAC,OAAWT,CAAY,CAAC,EAC5B,GAAM,CAACY,EAAaC,EAAmB,EAAIC,GAA8BR,EAAS/B,GAAa,EAAK,EAC9FwC,GAAiB,OACjBC,EAAapC,GAAY,QACzB,CACJ,sBAAAqC,EACA,MAAAC,EACF,EAAIC,EAAyB,MAAS,EAChCC,EAAiBC,GAAWJ,EAAsB,SAAUK,IAAS,CACzED,EAAQ,OAAO,CACjB,CAAC,EACKE,EAAcF,GAAWJ,EAAsB,SAAUK,IAAS,CACtED,EAAQ,KAAK,CACf,CAAC,EACKG,EAAaC,EAAO,IAAI,EACxBjC,EAAKkC,GAAkB,WAAW,EAClCC,EAAaF,EAAO,IAAI,EACxBG,EAASC,GAAU,EACnBC,EAAwBC,EAAM,EAC9BC,GAAwB,CAAa5B,GAAwBA,GAAwBA,GAAwBA,GAAwBA,EAAS,EACpJ,OAAoB6B,EAAKC,GAA0B,SAAU,CAC3D,MAAO,CACL,iBAAkB,YAClB,kBAAAxD,EACF,EACA,SAAuByD,EAAMC,EAAa,CACxC,GAAI/B,GAAsDyB,EAC1D,SAAU,CAAcK,EAAME,EAAO,IAAK,CACxC,GAAG9B,EACH,UAAW+B,EAAG7D,GAAmB,GAAGuD,GAAuB,iBAAkB5B,CAAS,EACtF,IAAKL,GAAuCyB,EAC5C,MAAO,CACL,GAAGrB,CACL,EACA,SAAU,CAAc8B,EAAK,MAAO,CAClC,UAAW,iBACX,SAAuBA,EAAKM,EAAW,CACrC,UAAW,0BACX,SAAuBN,EAAKO,EAAmB,CAC7C,WAAY5B,EACZ,UAAW,CACT,UAAW,CACT,QAAS,WACX,EACA,UAAW,CACT,QAAS,WACX,CACF,EACA,SAAuBqB,EAAKQ,EAAQ,CAClC,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,MAAO,CACL,SAAU,OACV,MAAO,MACT,EACA,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,CACH,CAAC,EAAgBR,EAAK,MAAO,CAC3B,UAAW,gBACX,mBAAoB,MACpB,KAAM,MACN,SAAuBE,EAAM,MAAO,CAClC,UAAW,iBACX,mBAAoB,YACpB,GAAI3C,EACJ,KAAM,YACN,IAAKmC,EACL,SAAU,CAAcM,EAAK,MAAO,CAClC,UAAW,iBACX,SAAuBA,EAAKM,EAAW,CACrC,UAAW,2BACX,SAAuBN,EAAKS,EAAY,CACtC,aAAc,EACd,iBAAkB,EAClB,kBAAmB,EACnB,YAAa,qBACb,OAAQ,OACR,GAAI,YACJ,oBAAqB,GACrB,SAAU,YACV,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,cAAe,EACf,eAAgB,EAChB,MAAO,OACP,KAAM,EACR,CAAC,CACH,CAAC,CACH,CAAC,EAAgBP,EAAM,MAAO,CAC5B,UAAW,gBACX,SAAU,CAAcF,EAAKU,EAAU,CACrC,sBAAuB,GACvB,SAAuBV,EAAWW,EAAU,CAC1C,SAAuBX,EAAK,IAAK,CAC/B,UAAW,8BACX,qBAAsB,YACtB,SAAU,YACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgBA,EAAKU,EAAU,CAC9B,sBAAuB,GACvB,SAAuBV,EAAWW,EAAU,CAC1C,SAAuBX,EAAK,KAAM,CAChC,UAAW,8BACX,qBAAsB,YACtB,SAAU,YACZ,CAAC,CACH,CAAC,EACD,UAAW,gBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgBA,EAAKpD,GAAS,CAC7B,SAAUwC,GAAwBY,EAAKY,EAAW,CAChD,SAAuBV,EAAMI,EAAW,CACtC,UAAW,0BACX,SAAU,CAAcN,EAAKa,GAAU,CACrC,OAAQ,CACN,MAAO,SACP,aAAc,EAChB,EACA,YAAa,mBACb,OAAQ,OACR,GAAI,YACJ,OAAQ,CAAC,CACP,WAAY,IACZ,MAAO,YACP,IAAK,GACL,IAAK,GACL,KAAM,OACN,QAAS,CAAC,EACV,YAAa,iBACb,SAAU,GACV,KAAM,EACN,KAAM,OACN,MAAO,EACT,EAAG,CACD,WAAY,IACZ,MAAO,QACP,IAAK,GACL,IAAK,GACL,KAAM,QACN,QAAS,CAAC,EACV,YAAa,kBACb,SAAU,GACV,KAAM,EACN,KAAM,QACN,MAAO,EACT,EAAG,CACD,WAAY,IACZ,MAAO,UACP,IAAK,GACL,IAAK,GACL,KAAM,UACN,QAAS,CAAC,EACV,YAAa,eACb,SAAU,GACV,KAAM,EACN,KAAM,WACN,MAAO,EACT,CAAC,EACD,SAAU,YACV,KAAMC,GAAY,CAChB,UAAW,WACb,EAAGnB,CAAM,EACT,OAAQ,OACR,SAAUR,EAAeC,CAAO,EAChC,WAAY,UACZ,MAAO,CACL,MAAO,MACT,EACA,OAAQ,CACN,OAAQ,CACN,MAAO,aACP,aAAc,EACd,MAAO,qBACP,KAAM,6FACN,KAAM,CACJ,WAAY,2DACZ,SAAU,OACV,UAAW,SACX,WAAY,IACZ,cAAe,MACf,WAAY,OACd,EACA,QAAS,GACT,cAAe,GACf,YAAa,GACb,eAAgB,GAChB,aAAc,GACd,WAAY,EACd,EACA,KAAM,CACJ,UAAW,GACX,QAAS,IACT,KAAM,uBACN,OAAQ,EACV,EACA,MAAO,CACL,aAAc,CACZ,YAAa,iGACb,YAAa,CACf,EACA,aAAc,EACd,MAAO,eACP,KAAM,yBACN,YAAa,CACX,WAAY,mBACZ,eAAgB,EAChB,aAAc,CAChB,EACA,KAAM,CACJ,WAAY,+CACZ,SAAU,OACV,UAAW,SACX,WAAY,IACZ,cAAe,MACf,WAAY,OACd,EACA,QAAS,GACT,cAAe,GACf,YAAa,GACb,eAAgB,GAChB,aAAc,GACd,WAAY,GACZ,iBAAkB,8GACpB,EACA,MAAO,CACL,aAAc,EACd,MAAO,6FACP,KAAM,mBACN,KAAM,CACJ,WAAY,+CACZ,SAAU,OACV,UAAW,SACX,WAAY,IACZ,cAAe,MACf,WAAY,OACd,EACA,QAAS,EACT,cAAe,EACf,YAAa,EACb,eAAgB,GAChB,aAAc,EACd,WAAY,CACd,CACF,EACA,IAAK,mCACL,MAAO,MACT,CAAC,EAAgBY,EAAKe,GAAiB,CACrC,SAAU3B,EAAQ,SAAwBY,EAAKY,EAAW,CACxD,SAAgCI,GAA2Bd,EAAYS,EAAU,CAC/E,SAAU,CAAcX,EAAKI,EAAO,IAAK,CACvC,QAAS,CACP,QAAS,EACT,WAAY,CACV,MAAO,EACP,SAAU,EACV,KAAM,CAAC,GAAI,EAAG,IAAK,GAAG,EACtB,KAAM,OACR,CACF,EACA,UAAW,iBACX,KAAM,CACJ,QAAS,EACT,WAAY,CACV,MAAO,EACP,SAAU,EACV,KAAM,CAAC,IAAK,IAAK,GAAI,CAAC,EACtB,KAAM,OACR,CACF,EACA,QAAS,CACP,QAAS,CACX,EACA,MAAO,IAAMhB,EAAQ,KAAK,CAC5B,EAAG,WAAW,EAAgBc,EAAM,MAAO,CACzC,UAAW,gBACX,SAAU,CAAcF,EAAKU,EAAU,CACrC,sBAAuB,GACvB,SAAuBV,EAAWW,EAAU,CAC1C,SAAuBX,EAAK,KAAM,CAChC,UAAW,+BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,SAC3B,sBAAuB,uEACzB,EACA,SAAU,8BACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgBA,EAAKU,EAAU,CAC9B,sBAAuB,GACvB,SAAuBV,EAAWW,EAAU,CAC1C,SAAuBX,EAAK,IAAK,CAC/B,UAAW,8BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,SAC3B,sBAAuB,uEACzB,EACA,SAAU,qFACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgBE,EAAME,EAAO,IAAK,CACjC,UAAW,gBACX,MAAOd,EAAYF,CAAO,EAC1B,SAAU,CAAcY,EAAKU,EAAU,CACrC,sBAAuB,GACvB,SAAuBV,EAAWW,EAAU,CAC1C,SAAuBX,EAAK,IAAK,CAC/B,UAAW,8BACX,qBAAsB,YACtB,SAAU,OACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgBA,EAAKI,EAAO,IAAK,CAChC,UAAW,iBACX,MAAOd,EAAYF,CAAO,EAC1B,SAAuBY,EAAKM,EAAW,CACrC,UAAW,0BACX,SAAuBN,EAAKiB,EAAU,CACpC,MAAO,eACP,OAAQ,OACR,WAAY,QACZ,cAAe,IACf,GAAI,YACJ,SAAU,YACV,SAAU,GACV,aAAc,GACd,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,OAAQ,UACR,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CAAC,CACJ,CAAC,CAAC,CACJ,CAAC,EAAG,SAAS,cAAc,UAAU,CAAC,CACxC,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBf,EAAM,MAAO,CAC5B,UAAW,iBACX,SAAU,CAAcF,EAAKU,EAAU,CACrC,sBAAuB,GACvB,SAAuBV,EAAWW,EAAU,CAC1C,SAAuBX,EAAK,KAAM,CAChC,UAAW,8BACX,qBAAsB,YACtB,SAAU,4BACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgBE,EAAM,MAAO,CAC5B,UAAW,gBACX,mBAAoB,YACpB,KAAM,YACN,SAAU,CAAcA,EAAM,MAAO,CACnC,UAAW,iBACX,SAAU,CAAcF,EAAKM,EAAW,CACtC,UAAW,0BACX,SAAuBN,EAAKkB,EAAmB,CAC7C,OAAQ,wVACR,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,SAAU,+DACV,MAAO,CACL,MAAO,MACT,EACA,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,EAAgBlB,EAAKM,EAAW,CAC/B,UAAW,0BACX,SAAuBN,EAAKkB,EAAmB,CAC7C,OAAQ,+IACR,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,SAAU,2DACV,MAAO,CACL,MAAO,MACT,EACA,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,EAAgBlB,EAAKM,EAAW,CAC/B,UAAW,yBACX,SAAuBN,EAAKkB,EAAmB,CAC7C,OAAQ,gJACR,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,SAAU,qCACV,MAAO,CACL,MAAO,MACT,EACA,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,EAAgBlB,EAAKM,EAAW,CAC/B,UAAW,0BACX,SAAuBN,EAAKkB,EAAmB,CAC7C,OAAQ,+HACR,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,SAAU,iDACV,MAAO,CACL,MAAO,MACT,EACA,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBhB,EAAM,MAAO,CAC5B,UAAW,iBACX,SAAU,CAAcF,EAAKM,EAAW,CACtC,UAAW,2BACX,SAAuBN,EAAKkB,EAAmB,CAC7C,OAAQ;AAAA;AAAA,EACR,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,SAAU,uDACV,MAAO,CACL,MAAO,MACT,EACA,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,EAAgBlB,EAAKM,EAAW,CAC/B,UAAW,2BACX,SAAuBN,EAAKkB,EAAmB,CAC7C,OAAQ,wIACR,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,SAAU,+DACV,MAAO,CACL,MAAO,MACT,EACA,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,EAAgBlB,EAAKM,EAAW,CAC/B,UAAW,2BACX,SAAuBN,EAAKkB,EAAmB,CAC7C,OAAQ,wHACR,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,SAAU,qCACV,MAAO,CACL,MAAO,MACT,EACA,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,EAAgBlB,EAAKM,EAAW,CAC/B,UAAW,2BACX,SAAuBN,EAAKkB,EAAmB,CAC7C,OAAQ,6IACR,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,SAAU,+CACV,MAAO,CACL,MAAO,MACT,EACA,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CAAC,CACJ,CAAC,CAAC,CACJ,CAAC,EAAgBlB,EAAKM,EAAW,CAC/B,UAAW,2BACX,SAAuBN,EAAKO,EAAmB,CAC7C,WAAY5B,EACZ,UAAW,CACT,UAAW,CACT,QAAS,WACX,EACA,UAAW,CACT,QAAS,WACX,CACF,EACA,SAAuBqB,EAAKmB,EAAQ,CAClC,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,MAAO,CACL,MAAO,MACT,EACA,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBnB,EAAK,MAAO,CAC3B,UAAWxD,GACX,GAAI,SACN,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,CACH,CAAC,EACK4E,GAAM,CAAC,gcAAic,kFAAmF,IAAIjE,GAAS,8IAA+I,gFAAiF,mWAAoW,2RAA4R,wIAAyI,4RAA6R,2RAA4R,gHAAiH,4KAA6K,qSAAsS,2TAA4T,odAAqd,uIAAwI,mTAAoT,mRAAoR,oRAAqR,+dAAge,ujBAAwjB,mKAAoK,4RAA6R,qTAAsT,sTAAuT,y/EAA0/E,6FAA8F,oHAAoHA,GAAS,gtDAAitD,4FAA4FA,GAAS,2kEAA4kE,GAAeiE,GAAK,GAAgBA,GAAK,GAAgBA,GAAK,GAAgBA,GAAK,GAAgBA,EAAG,EASvoaC,EAAkBC,EAAQ1D,GAAWwD,GAAK,cAAc,EACvDG,GAAQF,EACfA,EAAgB,YAAc,UAC9BA,EAAgB,aAAe,CAC7B,OAAQ,KACR,MAAO,IACT,EACAG,EAASH,EAAiB,CAAC,CACzB,OAAQ,UACR,MAAO,SACP,IAAK,6FACL,OAAQ,KACV,EAAG,CACD,OAAQ,gBACR,MAAO,SACP,IAAK,yKACL,OAAQ,KACV,EAAG,GAAGI,GAAa,GAAGC,GAAiB,GAAGC,GAAe,GAAGC,GAAe,GAAGC,GAAwB,GAAGC,GAAa,GAAeC,GAAO,GAAgBA,GAAO,GAAgBA,GAAO,GAAgBA,GAAO,GAAgBA,EAAK,CAAC,EAChO,IAAMC,GAAqB,CAChC,QAAW,CACT,MAAS,CACP,KAAQ,SACR,YAAe,CACb,sBAAyB,GAC3B,CACF,EACA,QAAW,CACT,KAAQ,iBACR,KAAQ,kBACR,MAAS,CAAC,EACV,YAAe,CACb,oCAAuC,4JACvC,yBAA4B,OAC5B,sBAAyB,IACzB,uBAA0B,GAC1B,qBAAwB,OACxB,yBAA4B,QAC5B,sBAAyB,MAC3B,CACF,EACA,mBAAsB,CACpB,KAAQ,UACV,CACF,CACF",
  "names": ["coordinatesRegex", "GoogleMaps", "coordinates", "zoom", "style", "props", "borderRadius", "useRadius", "latitude1", "longitude1", "se", "ref", "latitude", "longitude", "p", "motion", "containerStyles", "addPropertyControls", "ControlType", "borderRadiusControl", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "AWSjGYVqE", "ycUUKKf_G", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1e19sra", "args", "onTap1qhwpwh", "isDisplayed", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "RichText", "x", "css", "FramerrRvGzMVqi", "withCSS", "rRvGzMVqi_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "NavbarFonts", "getFonts", "D8Cm6M7_m_default", "GoogleMapsFonts", "GoogleMaps", "BaseFormFonts", "BaseForm_default", "PhosphorFonts", "Icon", "ElementsAccordionFonts", "rRvGzMVqi_default", "FooterFonts", "I8vBvKH4D_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "removeHiddenBreakpointLayers", "transitions", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSubmit42m929", "overlay", "args", "onTapzn6atv", "ref1", "pe", "useRouteElementId", "ref2", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "Container", "PropertyOverrides", "D8Cm6M7_m_default", "GoogleMaps", "RichText", "x", "l", "BaseForm_default", "resolveLink", "AnimatePresence", "Ga", "Icon", "rRvGzMVqi_default", "I8vBvKH4D_default", "css", "FramerfpnrqnSY4", "withCSS", "fpnrqnSY4_default", "addFonts", "NavbarFonts", "GoogleMapsFonts", "BaseFormFonts", "PhosphorFonts", "ElementsAccordionFonts", "FooterFonts", "fonts", "__FramerMetadata__"]
}
