{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/ABDrHkl9S9mwon3DNZFP/Pppu0nzUvVYhyLRAAJhQ/eo3E8L8ly.js"],
  "sourcesContent": ["import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { useEffect, useRef, useState } from \"react\";\nimport { addPropertyControls, ControlType } from \"framer\";\nimport { useIsOnCanvas, emptyStateStyle, containerStyles } from \"https://framer.com/m/framer/default-utils.js\"; /**\n                                                                                                                * @framerIntrinsicWidth 600\n                                                                                                                * @framerIntrinsicHeight 400\n                                                                                                                *\n                                                                                                                * @framerSupportedLayoutWidth fixed\n                                                                                                                * @framerSupportedLayoutHeight fixed\n                                                                                                                *\n                                                                                                                * @framerDisableUnlink\n                                                                                                                */\nexport default function Embed({\n  type,\n  url,\n  html\n}) {\n  if (type === \"url\" && url) {\n    return /*#__PURE__*/_jsx(EmbedURL, {\n      url: url\n    });\n  }\n  if (type === \"html\" && html) {\n    return /*#__PURE__*/_jsx(EmbedHTML, {\n      html: html\n    });\n  }\n  return /*#__PURE__*/_jsx(Instructions, {});\n}\n;\naddPropertyControls(Embed, {\n  type: {\n    type: ControlType.Enum,\n    defaultValue: \"url\",\n    displaySegmentedControl: true,\n    options: [\"url\", \"html\"],\n    optionTitles: [\"URL\", \"HTML\"]\n  },\n  url: {\n    title: \"URL\",\n    type: ControlType.String,\n    description: \"Some websites don\u2019t support embedding.\",\n    hidden(props) {\n      return props.type !== \"url\";\n    }\n  },\n  html: {\n    title: \"HTML\",\n    displayTextArea: true,\n    type: ControlType.String,\n    hidden(props) {\n      return props.type !== \"html\";\n    }\n  }\n});\nfunction Instructions() {\n  return /*#__PURE__*/_jsx(\"div\", {\n    style: {\n      ...emptyStateStyle,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsx(\"div\", {\n      style: centerTextStyle,\n      children: \"To embed a website or widget, add it to the properties\\xa0panel.\"\n    })\n  });\n}\nfunction EmbedURL({\n  url\n}) {\n  // Add https:// if the URL does not have a protocol.\n  if (!/[a-z]+:\\/\\//.test(url)) {\n    url = \"https://\" + url;\n  }\n  const onCanvas = useIsOnCanvas(); // We need to check if the url is blocked inside an iframe by the X-Frame-Options\n  // or Content-Security-Policy headers on the backend.\n  const [state, setState] = useState(onCanvas ? undefined : false);\n  useEffect(() => {\n    // We only want to check on the canvas.\n    // On the website we want to avoid the additional delay.\n    if (!onCanvas) return; // TODO: We could also use AbortController here.\n    let isLastEffect = true;\n    setState(undefined);\n    async function load() {\n      const response = await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\" + encodeURIComponent(url));\n      if (response.status == 200) {\n        const {\n          isBlocked\n        } = await response.json();\n        if (isLastEffect) {\n          setState(isBlocked);\n        }\n      } else {\n        const message = await response.text();\n        console.error(message);\n        const error = new Error(\"This site can\u2019t be reached.\");\n        setState(error);\n      }\n    }\n    load().catch(error => {\n      console.error(error);\n      setState(error);\n    });\n    return () => {\n      isLastEffect = false;\n    };\n  }, [url]);\n  if (!url.startsWith(\"https://\")) {\n    return /*#__PURE__*/_jsx(ErrorMessage, {\n      message: \"Unsupported protocol.\"\n    });\n  }\n  if (state === undefined) {\n    return /*#__PURE__*/_jsx(LoadingIndicator, {});\n  }\n  if (state instanceof Error) {\n    return /*#__PURE__*/_jsx(ErrorMessage, {\n      message: state.message\n    });\n  }\n  if (state === true) {\n    const message = `Can't embed ${url} due to its content security policy.`;\n    return /*#__PURE__*/_jsx(ErrorMessage, {\n      message: message\n    });\n  }\n  return /*#__PURE__*/_jsx(\"iframe\", {\n    src: url,\n    style: iframeStyle,\n    loading: \"lazy\",\n    // @ts-ignore\n    fetchPriority: onCanvas ? \"low\" : \"auto\",\n    referrerPolicy: \"no-referrer\",\n    sandbox: getSandbox(onCanvas)\n  });\n}\nconst iframeStyle = {\n  width: \"100%\",\n  height: \"100%\",\n  border: \"none\"\n};\nfunction getSandbox(onCanvas) {\n  const result = [\"allow-same-origin\", \"allow-scripts\"];\n  if (!onCanvas) {\n    result.push(\"allow-downloads\", \"allow-forms\", \"allow-modals\", \"allow-orientation-lock\", \"allow-pointer-lock\", \"allow-popups\", \"allow-popups-to-escape-sandbox\", \"allow-presentation\", \"allow-storage-access-by-user-activation\", \"allow-top-navigation-by-user-activation\");\n  }\n  return result.join(\" \");\n}\nfunction EmbedHTML({\n  html\n}) {\n  const ref = useRef(); // If the HTML contains a script tag we can't use\n  // dangerouslySetInnerHTML because it doesn't execute\n  // scripts on the client. Otherwise, we can benefit\n  // from SSG by using dangerouslySetInnerHTML.\n  const hasScript = html.includes(\"</script>\");\n  useEffect(() => {\n    if (!hasScript) return;\n    const div = ref.current;\n    div.innerHTML = html;\n    executeScripts(div);\n    return () => {\n      div.innerHTML = \"\";\n    };\n  }, [html, hasScript]);\n  return /*#__PURE__*/_jsx(\"div\", {\n    ref: ref,\n    style: htmlStyle,\n    dangerouslySetInnerHTML: !hasScript ? {\n      __html: html\n    } : undefined\n  });\n}\nconst htmlStyle = {\n  width: \"100%\",\n  height: \"100%\",\n  display: \"flex\",\n  flexDirection: \"column\",\n  justifyContent: \"center\",\n  alignItems: \"center\"\n}; // This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node) {\n  if (node instanceof Element && node.tagName === \"SCRIPT\") {\n    const script = document.createElement(\"script\");\n    script.text = node.innerHTML;\n    for (const {\n      name,\n      value\n    } of node.attributes) {\n      script.setAttribute(name, value);\n    }\n    node.parentElement.replaceChild(script, node);\n  } else {\n    for (const child of node.childNodes) {\n      executeScripts(child);\n    }\n  }\n} // Generic components\nfunction LoadingIndicator() {\n  return /*#__PURE__*/_jsx(\"div\", {\n    className: \"framerInternalUI-componentPlaceholder\",\n    style: {\n      ...containerStyles,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsx(\"div\", {\n      style: centerTextStyle,\n      children: \"Loading\u2026\"\n    })\n  });\n}\nfunction ErrorMessage({\n  message\n}) {\n  return /*#__PURE__*/_jsx(\"div\", {\n    className: \"framerInternalUI-errorPlaceholder\",\n    style: {\n      ...containerStyles,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsxs(\"div\", {\n      style: centerTextStyle,\n      children: [\"Error: \", message]\n    })\n  });\n}\nconst centerTextStyle = {\n  textAlign: \"center\",\n  minWidth: 140\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Embed\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerDisableUnlink\": \"\",\n        \"framerIntrinsicWidth\": \"600\",\n        \"framerIntrinsicHeight\": \"400\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (2bdc57c)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, optimizeAppear, optimizeAppearTransformTemplate, PropertyOverrides, removeHiddenBreakpointLayers, RichText, useActiveVariantCallback, useHydratedBreakpointVariants, useOverlayState, withCSS } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport Embed from \"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";\nimport SocialIcon from \"https://framerusercontent.com/modules/sWxRRM8Lk2F7sKNCk3FR/ZL2yhAAILW51hYU9ei5N/E6jsPNobc.js\";\nimport Topbar from \"https://framerusercontent.com/modules/nGAqVxgmXhCU6k5Hno29/1MnveK6G2Z54kdqFITvR/lWUcIJP0H.js\";\nimport Footer from \"https://framerusercontent.com/modules/w0PPuqRO0BT1FO3g1TlW/jecvPcPXmw3kSwb6hkpl/M82dauGNX.js\";\nimport CTA from \"https://framerusercontent.com/modules/5sJUp7RWhC24iT0yyAKi/K6HxcvvD1l9wex8Ygfk1/OlTWqYMo3.js\";\nimport * as sharedStyle4 from \"https://framerusercontent.com/modules/b14OtTNMS7FBYP9A01mN/ph4NE8ZuFdw6dC0LKJnt/i59KN99_1.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/o2JlWCkhQ8rTApkMYqd3/gWdjRNP8GYziQs54LUk9/pzgAh97sX.js\";\nimport * as sharedStyle3 from \"https://framerusercontent.com/modules/7mwE2x2H0kR3CJEyKER2/hQxhdmAxheJ5UmMwtdft/xZndidUCt.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/hQTDudESbRAuFlN4RCMh/LHYykQsB3dkEQYyItiP5/YAP816Y5n.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/9oZU1tb0De5jLNxs6Yzo/UpevVQ5imxD6EODhM2xS/YckFIlg3V.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/1UuMMaNQIlh2yaDTvsDJ/cJGfzqsoYohreNR2ozX5/eo3E8L8ly.js\";\nconst TopbarFonts = getFonts(Topbar);\nconst EmbedFonts = getFonts(Embed);\nconst CTAFonts = getFonts(CTA);\nconst SocialIconFonts = getFonts(SocialIcon);\nconst FooterFonts = getFonts(Footer);\nconst cycleOrder = [\"trXeFO8Io\", \"XpXm4pvgq\", \"GZEXVV8U3\"];\nconst breakpoints = {\n  GZEXVV8U3: \"(max-width: 809px)\",\n  trXeFO8Io: \"(min-width: 1200px)\",\n  XpXm4pvgq: \"(min-width: 810px) and (max-width: 1199px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  GZEXVV8U3: \"framer-v-4zopfl\",\n  trXeFO8Io: \"framer-v-1t6ftch\",\n  XpXm4pvgq: \"framer-v-rznucm\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"trXeFO8Io\", breakpoints, variantClassNames);\n}\nconst humanReadableVariantMap = {\n  Desktop: \"trXeFO8Io\",\n  Phone: \"GZEXVV8U3\",\n  Tablet: \"XpXm4pvgq\"\n};\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nfunction Overlay({\n  children\n}) {\n  const [visible, setVisible] = useOverlayState();\n  return children({\n    hide: () => setVisible(false),\n    show: () => setVisible(true),\n    toggle: () => setVisible(!visible),\n    visible\n  });\n}\nconst transformTemplate = (_, t) => `translateX(-50%) ${t}`;\nconst transition1 = {\n  damping: 80,\n  delay: .1,\n  mass: 1,\n  stiffness: 400,\n  type: \"spring\"\n};\nconst animation = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 100\n};\nconst transformTemplate1 = (_, t) => `perspective(1200px) ${t}`;\nconst animation1 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst animation2 = {\n  opacity: .001,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 100\n};\nconst transition2 = {\n  damping: 80,\n  delay: .2,\n  mass: 1,\n  stiffness: 400,\n  type: \"spring\"\n};\nconst animation3 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 100\n};\nconst animation4 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 0\n};\nconst metadata = metadataProvider();\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"trXeFO8Io\",\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider();\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var ref;\n      (ref = document.querySelector('meta[name=\"viewport\"]')) === null || ref === void 0 ? void 0 : ref.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(metadata1.bodyClassName);\n    }\n  }, []);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const {\n    activeVariantCallback,\n    delay\n  } = useActiveVariantCallback(undefined);\n  const tap42m929 = overlay => activeVariantCallback(async (...args) => {\n    overlay.toggle();\n  });\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"trXeFO8Io\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsx(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        className: cx(\"framer-QljYv\", sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className, sharedStyle4.className),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-1t6ftch\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(Container, {\n            className: \"framer-1xii9ow-container\",\n            layoutScroll: true,\n            transformTemplate: transformTemplate,\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                GZEXVV8U3: {\n                  variant: \"ZQwaB4_p3\"\n                },\n                XpXm4pvgq: {\n                  variant: \"ZQwaB4_p3\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(Topbar, {\n                height: \"100%\",\n                id: \"TrfAH4__q\",\n                layoutId: \"TrfAH4__q\",\n                style: {\n                  width: \"100%\"\n                },\n                title: \"Swift Marketer\",\n                variant: \"jRXICbciv\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-jn8imj\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-646wh\",\n              children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  GZEXVV8U3: {\n                    \"data-framer-appear-id\": \"hy950d\",\n                    animate: optimizeAppear(\"animate\", \"hy950d\", animation1, \"4zopfl\"),\n                    initial: optimizeAppear(\"initial\", \"hy950d\", animation2, \"4zopfl\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"hy950d\", transformTemplate1)\n                  },\n                  XpXm4pvgq: {\n                    \"data-framer-appear-id\": \"13iawdb\",\n                    animate: optimizeAppear(\"animate\", \"13iawdb\", animation1, \"rznucm\"),\n                    initial: optimizeAppear(\"initial\", \"13iawdb\", animation2, \"rznucm\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"13iawdb\", transformTemplate1)\n                  }\n                },\n                children: /*#__PURE__*/_jsx(motion.div, {\n                  animate: optimizeAppear(\"animate\", \"15bj94d\", animation1, \"1t6ftch\"),\n                  className: \"framer-15bj94d\",\n                  \"data-framer-appear-id\": \"15bj94d\",\n                  exit: animation,\n                  initial: optimizeAppear(\"initial\", \"15bj94d\", animation2, \"1t6ftch\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"15bj94d\", transformTemplate1),\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      GZEXVV8U3: {\n                        \"data-framer-appear-id\": \"fnzb76\",\n                        animate: optimizeAppear(\"animate\", \"fnzb76\", animation1, \"4zopfl\"),\n                        initial: optimizeAppear(\"initial\", \"fnzb76\", animation2, \"4zopfl\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"fnzb76\", transformTemplate1)\n                      },\n                      XpXm4pvgq: {\n                        \"data-framer-appear-id\": \"ra0jn5\",\n                        animate: optimizeAppear(\"animate\", \"ra0jn5\", animation1, \"rznucm\"),\n                        initial: optimizeAppear(\"initial\", \"ra0jn5\", animation2, \"rznucm\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"ra0jn5\", transformTemplate1)\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(motion.div, {\n                      animate: optimizeAppear(\"animate\", \"ofrb8g\", animation1, \"1t6ftch\"),\n                      className: \"framer-ofrb8g\",\n                      \"data-framer-appear-id\": \"ofrb8g\",\n                      exit: animation,\n                      initial: optimizeAppear(\"initial\", \"ofrb8g\", animation2, \"1t6ftch\"),\n                      transformTemplate: optimizeAppearTransformTemplate(\"ofrb8g\", transformTemplate1),\n                      children: /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            className: \"framer-styles-preset-3nqyhf\",\n                            \"data-styles-preset\": \"YAP816Y5n\",\n                            style: {\n                              \"--framer-text-color\": \"var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(178, 32, 41))\"\n                            },\n                            children: \"Contact Us\"\n                          })\n                        }),\n                        className: \"framer-1jouys3\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })\n                    })\n                  })\n                })\n              }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  GZEXVV8U3: {\n                    \"data-framer-appear-id\": \"1gtszyl\",\n                    animate: optimizeAppear(\"animate\", \"1gtszyl\", animation4, \"4zopfl\"),\n                    initial: optimizeAppear(\"initial\", \"1gtszyl\", animation2, \"4zopfl\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"1gtszyl\", transformTemplate1)\n                  },\n                  XpXm4pvgq: {\n                    \"data-framer-appear-id\": \"amzkgn\",\n                    animate: optimizeAppear(\"animate\", \"amzkgn\", animation4, \"rznucm\"),\n                    initial: optimizeAppear(\"initial\", \"amzkgn\", animation2, \"rznucm\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"amzkgn\", transformTemplate1)\n                  }\n                },\n                children: /*#__PURE__*/_jsxs(motion.div, {\n                  animate: optimizeAppear(\"animate\", \"vzc2ft\", animation4, \"1t6ftch\"),\n                  className: \"framer-vzc2ft\",\n                  \"data-framer-appear-id\": \"vzc2ft\",\n                  exit: animation3,\n                  initial: optimizeAppear(\"initial\", \"vzc2ft\", animation2, \"1t6ftch\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"vzc2ft\", transformTemplate1),\n                  children: [/*#__PURE__*/_jsx(Container, {\n                    className: \"framer-10r8hce-container\",\n                    children: /*#__PURE__*/_jsx(Embed, {\n                      height: \"100%\",\n                      html: '<div class=\"hb-p-63f522d00e485d000842e474-3\"></div><img height=\"1\" width=\"1\" style=\"display:none\" src=\"https://www.honeybook.com/p.png?pid=63f522d00e485d000842e474\">\\n<script>\\n  (function(h,b,s,n,i,p,e,t) {\\n    h._HB_ = h._HB_ || {};h._HB_.pid = i;;;;\\n    t=b.createElement(s);t.type=\"text/javascript\";t.async=!0;t.src=n;\\n    e=b.getElementsByTagName(s)[0];e.parentNode.insertBefore(t,e);\\n})(window,document,\"script\",\"https://widget.honeybook.com/assets_users_production/websiteplacements/placement-controller.min.js\",\"63f522d00e485d000842e474\");\\n</script>',\n                      id: \"RB19uEgyH\",\n                      layoutId: \"RB19uEgyH\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      type: \"html\",\n                      url: \"\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-kheelw\",\n                    children: [/*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-19ajc0g\",\n                      children: [/*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            className: \"framer-styles-preset-12lj5ox\",\n                            \"data-styles-preset\": \"YckFIlg3V\",\n                            children: \"Get in touch\"\n                          })\n                        }),\n                        className: \"framer-2if219\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      }), /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-21ogod\",\n                            \"data-styles-preset\": \"xZndidUCt\",\n                            children: \"Ready to get started or would like more information on Video Advertising? We\u2019re always here to help. Contact us if you have any questions.\"\n                          })\n                        }),\n                        className: \"framer-lmw36t\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })]\n                    }), /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-12mqylm\",\n                      children: [/*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            className: \"framer-styles-preset-12lj5ox\",\n                            \"data-styles-preset\": \"YckFIlg3V\",\n                            children: \"Service Areas by Counties\"\n                          })\n                        }),\n                        className: \"framer-1ham5dw\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      }), /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsxs(React.Fragment, {\n                          children: [/*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-qemwmo\",\n                            \"data-styles-preset\": \"i59KN99_1\",\n                            children: \"Miami-Dade County\"\n                          }), /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-qemwmo\",\n                            \"data-styles-preset\": \"i59KN99_1\",\n                            children: \"Broward County\"\n                          }), /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-qemwmo\",\n                            \"data-styles-preset\": \"i59KN99_1\",\n                            children: \"Palm Beach County\"\n                          }), /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-qemwmo\",\n                            \"data-styles-preset\": \"i59KN99_1\",\n                            children: \"Lee County \"\n                          })]\n                        }),\n                        className: \"framer-1sn49re\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })]\n                    }), /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-tru32c\",\n                      children: [/*#__PURE__*/_jsx(Container, {\n                        className: \"framer-ik7rq4-container\",\n                        children: /*#__PURE__*/_jsx(CTA, {\n                          color: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(178, 32, 41)) /* {\"name\":\"Red\"} */',\n                          height: \"100%\",\n                          id: \"E0imtm4Ky\",\n                          layoutId: \"E0imtm4Ky\",\n                          link: \"mailto:support@framer.com\",\n                          title: \"Ruben@SwiftMarketers.com\",\n                          variant: \"DT5wJl0k7\",\n                          width: \"100%\"\n                        })\n                      }), /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-1xitygb-container\",\n                        children: /*#__PURE__*/_jsx(CTA, {\n                          color: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(178, 32, 41)) /* {\"name\":\"Red\"} */',\n                          height: \"100%\",\n                          id: \"NcwSkwHgV\",\n                          layoutId: \"NcwSkwHgV\",\n                          link: \"tel:3059293659\",\n                          title: \"Phone: (305)929-3659\",\n                          variant: \"DT5wJl0k7\",\n                          width: \"100%\"\n                        })\n                      })]\n                    }), /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-y83656\",\n                      children: [/*#__PURE__*/_jsx(Container, {\n                        className: \"framer-18j66yt-container\",\n                        children: /*#__PURE__*/_jsx(SocialIcon, {\n                          background: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(178, 32, 41)) /* {\"name\":\"Red\"} */',\n                          height: \"100%\",\n                          icon: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n                          id: \"iXRmZceWl\",\n                          layoutId: \"iXRmZceWl\",\n                          link: \"https://www.facebook.com/SwiftMarketers\",\n                          variant: \"YtyKZu0FI\",\n                          width: \"100%\"\n                        })\n                      }), /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-1a8w66i-container\",\n                        children: /*#__PURE__*/_jsx(SocialIcon, {\n                          background: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(178, 32, 41)) /* {\"name\":\"Red\"} */',\n                          height: \"100%\",\n                          icon: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n                          id: \"HKXBx54JK\",\n                          layoutId: \"HKXBx54JK\",\n                          link: \"https://www.instagram.com/swift_marketers/\",\n                          variant: \"DCXZDI5VY\",\n                          width: \"100%\"\n                        })\n                      }), /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-6pq3ig-container\",\n                        children: /*#__PURE__*/_jsx(SocialIcon, {\n                          background: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(178, 32, 41)) /* {\"name\":\"Red\"} */',\n                          height: \"100%\",\n                          icon: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n                          id: \"hXfs1t7kX\",\n                          layoutId: \"hXfs1t7kX\",\n                          link: \"https://g.page/r/CYjxZNc78aIJEBQ\",\n                          variant: \"PaAGulxup\",\n                          width: \"100%\"\n                        })\n                      }), /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-wwrdfl-container\",\n                        children: /*#__PURE__*/_jsx(SocialIcon, {\n                          background: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(178, 32, 41)) /* {\"name\":\"Red\"} */',\n                          height: \"100%\",\n                          icon: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n                          id: \"T0GwJxR8i\",\n                          layoutId: \"T0GwJxR8i\",\n                          link: \"https://www.youtube.com/channel/UCPqyXJp8Mhe5ULV6se9bohw\",\n                          variant: \"mUYFfTqzq\",\n                          width: \"100%\"\n                        })\n                      })]\n                    })]\n                  })]\n                })\n              })]\n            })\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-52seu6-container\",\n            children: /*#__PURE__*/_jsx(Footer, {\n              height: \"100%\",\n              id: \"OiwimKYe6\",\n              layoutId: \"OiwimKYe6\",\n              style: {\n                width: \"100%\"\n              },\n              variant: \"C84emq_vd\",\n              width: \"100%\"\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-QljYv [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName} { background: white; }`, \".framer-QljYv .framer-14j2fdp { display: block; }\", \".framer-QljYv .framer-1t6ftch { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-QljYv .framer-1xii9ow-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\", \".framer-QljYv .framer-jn8imj { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\", \".framer-QljYv .framer-646wh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 50px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-QljYv .framer-15bj94d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 450px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-QljYv .framer-ofrb8g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: min-content; }\", \".framer-QljYv .framer-kj34ld, .framer-QljYv .framer-2if219, .framer-QljYv .framer-1ham5dw { --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-QljYv .framer-1jouys3 { --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: 450px; word-break: break-word; word-wrap: break-word; }\", \".framer-QljYv .framer-vzc2ft { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-QljYv .framer-10r8hce-container { flex: 1 0 0px; height: 900px; position: relative; width: 1px; }\", \".framer-QljYv .framer-kheelw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-QljYv .framer-19ajc0g, .framer-QljYv .framer-12mqylm, .framer-QljYv .framer-tru32c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-QljYv .framer-lmw36t, .framer-QljYv .framer-1sn49re { --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-QljYv .framer-6ktjbw-container, .framer-QljYv .framer-ik7rq4-container, .framer-QljYv .framer-1xitygb-container, .framer-QljYv .framer-18j66yt-container, .framer-QljYv .framer-1a8w66i-container, .framer-QljYv .framer-6pq3ig-container, .framer-QljYv .framer-wwrdfl-container { flex: none; height: auto; position: relative; width: auto; }\", \".framer-QljYv .framer-y83656 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-QljYv .framer-52seu6-container { flex: none; height: auto; position: relative; width: 100%; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QljYv .framer-1t6ftch, .framer-QljYv .framer-jn8imj, .framer-QljYv .framer-646wh, .framer-QljYv .framer-15bj94d, .framer-QljYv .framer-ofrb8g, .framer-QljYv .framer-vzc2ft, .framer-QljYv .framer-kheelw, .framer-QljYv .framer-19ajc0g, .framer-QljYv .framer-12mqylm, .framer-QljYv .framer-tru32c, .framer-QljYv .framer-y83656 { gap: 0px; } .framer-QljYv .framer-1t6ftch > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-QljYv .framer-1t6ftch > :first-child, .framer-QljYv .framer-646wh > :first-child, .framer-QljYv .framer-15bj94d > :first-child, .framer-QljYv .framer-ofrb8g > :first-child, .framer-QljYv .framer-kheelw > :first-child, .framer-QljYv .framer-19ajc0g > :first-child, .framer-QljYv .framer-12mqylm > :first-child, .framer-QljYv .framer-tru32c > :first-child { margin-top: 0px; } .framer-QljYv .framer-1t6ftch > :last-child, .framer-QljYv .framer-646wh > :last-child, .framer-QljYv .framer-15bj94d > :last-child, .framer-QljYv .framer-ofrb8g > :last-child, .framer-QljYv .framer-kheelw > :last-child, .framer-QljYv .framer-19ajc0g > :last-child, .framer-QljYv .framer-12mqylm > :last-child, .framer-QljYv .framer-tru32c > :last-child { margin-bottom: 0px; } .framer-QljYv .framer-jn8imj > * { margin: 0px; margin-left: calc(140px / 2); margin-right: calc(140px / 2); } .framer-QljYv .framer-jn8imj > :first-child, .framer-QljYv .framer-vzc2ft > :first-child, .framer-QljYv .framer-y83656 > :first-child { margin-left: 0px; } .framer-QljYv .framer-jn8imj > :last-child, .framer-QljYv .framer-vzc2ft > :last-child, .framer-QljYv .framer-y83656 > :last-child { margin-right: 0px; } .framer-QljYv .framer-646wh > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-QljYv .framer-15bj94d > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-QljYv .framer-ofrb8g > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-QljYv .framer-vzc2ft > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-QljYv .framer-kheelw > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-QljYv .framer-19ajc0g > *, .framer-QljYv .framer-12mqylm > *, .framer-QljYv .framer-tru32c > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QljYv .framer-y83656 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\", \"@media (min-width: 1200px) { .framer-QljYv .hidden-1t6ftch { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1199px) { .framer-QljYv .hidden-rznucm { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-QljYv .framer-1t6ftch { width: 810px; } .framer-QljYv .framer-jn8imj { flex-direction: column; gap: 50px; padding: 80px 50px 100px 50px; } .framer-QljYv .framer-646wh { flex: none; width: 100%; } .framer-QljYv .framer-vzc2ft { flex-direction: column; } .framer-QljYv .framer-10r8hce-container { flex: none; order: 0; width: 100%; } .framer-QljYv .framer-kheelw { flex: none; order: 1; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QljYv .framer-jn8imj, .framer-QljYv .framer-vzc2ft { gap: 0px; } .framer-QljYv .framer-jn8imj > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-QljYv .framer-jn8imj > :first-child, .framer-QljYv .framer-vzc2ft > :first-child { margin-top: 0px; } .framer-QljYv .framer-jn8imj > :last-child, .framer-QljYv .framer-vzc2ft > :last-child { margin-bottom: 0px; } .framer-QljYv .framer-vzc2ft > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`, `@media (max-width: 809px) { .framer-QljYv .hidden-4zopfl { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-QljYv .framer-1t6ftch { width: 390px; } .framer-QljYv .framer-jn8imj { flex-direction: column; gap: 50px; padding: 150px 20px 50px 20px; } .framer-QljYv .framer-646wh { flex: none; padding: 0px 0px 0px 0px; width: 100%; } .framer-QljYv .framer-15bj94d { align-content: center; align-items: center; } .framer-QljYv .framer-ofrb8g, .framer-QljYv .framer-1jouys3 { width: 100%; } .framer-QljYv .framer-vzc2ft { flex-direction: column; } .framer-QljYv .framer-10r8hce-container { flex: none; order: 0; width: 100%; } .framer-QljYv .framer-kheelw { flex: none; order: 1; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QljYv .framer-jn8imj, .framer-QljYv .framer-vzc2ft { gap: 0px; } .framer-QljYv .framer-jn8imj > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-QljYv .framer-jn8imj > :first-child, .framer-QljYv .framer-vzc2ft > :first-child { margin-top: 0px; } .framer-QljYv .framer-jn8imj > :last-child, .framer-QljYv .framer-vzc2ft > :last-child { margin-bottom: 0px; } .framer-QljYv .framer-vzc2ft > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css, ...sharedStyle4.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerIntrinsicHeight 1729\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XpXm4pvgq\":{\"layout\":[\"fixed\",\"auto\"]},\"GZEXVV8U3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             */\nconst Framereo3E8L8ly = withCSS(Component, css, \"framer-QljYv\");\nexport default Framereo3E8L8ly;\nFramereo3E8L8ly.displayName = \"Contact\";\nFramereo3E8L8ly.defaultProps = {\n  height: 1729,\n  width: 1200\n};\naddFonts(Framereo3E8L8ly, [...TopbarFonts, ...EmbedFonts, ...CTAFonts, ...SocialIconFonts, ...FooterFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts, ...sharedStyle4.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Framereo3E8L8ly\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"1729\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XpXm4pvgq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GZEXVV8U3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerIntrinsicWidth\": \"1200\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "TopbarFonts", "getFonts", "lWUcIJP0H_default", "EmbedFonts", "Embed", "CTAFonts", "OlTWqYMo3_default", "SocialIconFonts", "E6jsPNobc_default", "FooterFonts", "M82dauGNX_default", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "transition1", "animation", "transformTemplate1", "animation1", "animation2", "transition2", "animation3", "animation4", "metadata", "eo3E8L8ly_default", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "humanReadableVariantMap", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "transition", "transitions", "activeVariantCallback", "delay", "useActiveVariantCallback", "tap42m929", "overlay", "args", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "variantClassNames", "LayoutGroup", "u", "motion", "cx", "Container", "PropertyOverrides", "lWUcIJP0H_default", "optimizeAppear", "optimizeAppearTransformTemplate", "RichText", "x", "Embed", "OlTWqYMo3_default", "E6jsPNobc_default", "M82dauGNX_default", "css", "Framereo3E8L8ly", "withCSS", "addFonts", "TopbarFonts", "EmbedFonts", "CTAFonts", "SocialIconFonts", "FooterFonts", "fonts", "__FramerMetadata__"]
}
