{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/pVNq3gPwiiJPmLV2YSlc/Embed.js", "ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js", "ssg:https://framerusercontent.com/modules/qCcl6Hohu4CstAIDxiWA/3IUrjoEb66wsg31vrbBX/UNwh6Udqh.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                                                                                                                */\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        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerIntrinsicWidth\": \"600\",\n        \"framerIntrinsicHeight\": \"400\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Embed.map", "import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addPropertyControls, ControlType, RenderTarget, withCSS } from \"framer\";\nimport { motion } from \"framer-motion\";\nimport { containerStyles, usePadding, useRadius, paddingControl, borderRadiusControl, fontControls, useFontControls } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nimport { useCallback, useMemo, useState } from \"react\";\nconst emailRegex = /^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;\nconst validateEmail = email => {\n  return emailRegex.test(String(email).toLowerCase());\n}; /**\n   * FORMSPARK\n   *\n   * @framerIntrinsicWidth 550\n   * @framerIntrinsicHeight 290\n   *\n   * @framerSupportedLayoutWidth fixed\n   * @framerSupportedLayoutHeight fixed\n   */\nconst FormSpark = withCSS(function FormSpark({\n  formId,\n  withName,\n  nameField: name,\n  withEmail,\n  email,\n  withMessage,\n  message,\n  layout,\n  inputs,\n  button,\n  style,\n  gap,\n  onSubmit,\n  ...props\n}) {\n  const [nameValue, setName] = useState(name === null || name === void 0 ? void 0 : name.value);\n  const [emailValue, setEmail] = useState(email === null || email === void 0 ? void 0 : email.value);\n  const [messageValue, setMessage] = useState(message === null || message === void 0 ? void 0 : message.value);\n  const [isNameError, setNameError] = useState(false);\n  const [isEmailError, setEmailError] = useState(false);\n  const [isMessageError, setMessageError] = useState(false);\n  const [isLoading, setLoading] = useState(false);\n  const [isSuccess, setSuccess] = useState(false);\n  const isCanvas = useMemo(() => {\n    return RenderTarget.current() === RenderTarget.canvas;\n  }, []);\n  const gridTemplateRows = useMemo(() => {\n    const rows = [];\n    if (withName || withMessage) {\n      rows.push(\"max-content\");\n    }\n    if (withMessage) {\n      rows.push(\"1fr\");\n    }\n    return [...rows, \"max-content\"].join(\" \");\n  }, [withName, withEmail, withMessage]);\n  const gridTemplateColumns = useMemo(() => {\n    const cols = [];\n    if ((withName && !withEmail || withEmail && !withName) && !withMessage && layout === \"horizontal\") {\n      return \"1fr max-content\";\n    }\n    return \"1fr\";\n  }, [withName, withEmail, withMessage, layout]);\n  const {\n    fontFamily,\n    fontSize,\n    fontWeight\n  } = useFontControls(props);\n  const borderRadius = useRadius(props);\n  const paddingValue = usePadding(props);\n  const validateForm = useCallback(() => {\n    let error = false;\n    setNameError(false);\n    setEmailError(false);\n    setMessageError(false);\n    if (withName && !nameValue) {\n      setNameError(true);\n      error = true;\n    }\n    if (withEmail && (!emailValue || !validateEmail(emailValue))) {\n      setEmailError(true);\n      error = true;\n    }\n    if (withMessage && !messageValue) {\n      setMessageError(true);\n      error = true;\n    }\n    return error;\n  }, [validateEmail, withName, withEmail, withMessage, nameValue, emailValue, messageValue]);\n  const handleSubmit = useCallback(event => {\n    setLoading(true);\n    event.preventDefault();\n    if (validateForm()) {\n      setLoading(false);\n    } else {\n      const data = new FormData(event.target);\n      const entries = Object.fromEntries(data.entries());\n      fetch(`https://submit-form.com/${formId}`, {\n        method: \"POST\",\n        headers: {\n          \"Content-Type\": \"application/json\",\n          Accept: \"application/json\"\n        },\n        body: JSON.stringify(entries)\n      }).then(() => {\n        setSuccess(true);\n        onSubmit();\n      }).catch(() => setLoading(false));\n    }\n  }, [formId, onSubmit, validateForm]);\n  const handleNameChange = useCallback(event => {\n    setNameError(false);\n    setName(event.target.value);\n  }, []);\n  const handleEmailChange = useCallback(event => {\n    setEmailError(false);\n    setEmail(event.target.value);\n  }, []);\n  const handleMessageChange = useCallback(event => {\n    setMessageError(false);\n    setMessage(event.target.value);\n  }, []);\n  return /*#__PURE__*/_jsx(motion.div, {\n    style: {\n      ...style,\n      ...containerStyles,\n      flexDirection: \"column\",\n      \"--framer-formspark-placeholder-color\": inputs.placeholderColor\n    },\n    children: isSuccess ? /*#__PURE__*/_jsx(motion.div, {\n      style: {\n        height: \"60px\",\n        width: \"60px\",\n        background: button.fill,\n        color: button.color,\n        borderRadius: \"50%\",\n        display: \"flex\",\n        justifyContent: \"center\",\n        alignItems: \"center\"\n      },\n      initial: {\n        scale: 0\n      },\n      animate: {\n        scale: 1\n      },\n      transition: {\n        duration: 0.3\n      },\n      children: /*#__PURE__*/_jsx(\"svg\", {\n        xmlns: \"http://www.w3.org/2000/svg\",\n        width: \"28\",\n        height: \"28\",\n        children: /*#__PURE__*/_jsx(\"path\", {\n          d: \"M 2 14 L 10 22 L 26 6\",\n          fill: \"transparent\",\n          strokeWidth: \"4\",\n          stroke: \"currentColor\",\n          strokeLinecap: \"round\"\n        })\n      })\n    }) : /*#__PURE__*/_jsxs(\"form\", {\n      style: {\n        display: \"grid\",\n        gridTemplateRows,\n        gridTemplateColumns,\n        gap,\n        width: \"100%\",\n        height: \"100%\"\n      },\n      onSubmit: handleSubmit,\n      method: \"POST\",\n      children: [(withName || withEmail) && /*#__PURE__*/_jsxs(\"div\", {\n        style: {\n          width: \"100%\",\n          display: \"grid\",\n          gridAutoFlow: layout === \"horizontal\" ? \"column\" : \"row\",\n          gap\n        },\n        children: [withName && /*#__PURE__*/_jsx(\"input\", {\n          className: \"framer-formspark-input\",\n          type: \"text\",\n          name: \"name\",\n          placeholder: name.placeholder,\n          value: isCanvas ? name.value : nameValue,\n          onChange: handleNameChange,\n          style: {\n            ...defaultStyle,\n            padding: paddingValue,\n            borderRadius,\n            fontFamily,\n            fontWeight,\n            fontSize,\n            background: inputs.fill,\n            color: inputs.color,\n            boxShadow: `inset 0 0 0 1px ${isNameError ? inputs.error : \"transparent\"}`\n          }\n        }), withEmail && /*#__PURE__*/_jsx(\"input\", {\n          className: \"framer-formspark-input\",\n          type: \"email\",\n          name: \"email\",\n          placeholder: email.placeholder,\n          value: isCanvas ? email.value : emailValue,\n          onChange: handleEmailChange,\n          style: {\n            ...defaultStyle,\n            padding: paddingValue,\n            borderRadius,\n            fontFamily,\n            fontWeight,\n            fontSize,\n            background: inputs.fill,\n            color: inputs.color,\n            boxShadow: `inset 0 0 0 1px ${isEmailError ? inputs.error : \"transparent\"}`\n          }\n        })]\n      }), withMessage && /*#__PURE__*/_jsx(\"textarea\", {\n        className: \"framer-formspark-input\",\n        placeholder: message.placeholder,\n        name: \"message\",\n        value: isCanvas ? message.value : messageValue,\n        onChange: handleMessageChange,\n        style: {\n          ...defaultStyle,\n          minHeight: 0,\n          padding: paddingValue,\n          resize: \"vertical\",\n          borderRadius,\n          background: inputs.fill,\n          fontFamily,\n          fontWeight,\n          fontSize,\n          color: inputs.color,\n          boxShadow: `inset 0 0 0 1px ${isMessageError ? inputs.error : \"transparent\"}`\n        }\n      }), /*#__PURE__*/_jsxs(\"div\", {\n        children: [/*#__PURE__*/_jsx(motion.input, {\n          type: \"submit\",\n          value: button.label,\n          style: {\n            ...defaultStyle,\n            borderRadius,\n            padding: paddingValue,\n            fontFamily,\n            fontWeight: button.fontWeight,\n            fontSize,\n            background: button.fill,\n            cursor: \"pointer\",\n            color: button.color,\n            zIndex: 1\n          },\n          transition: {\n            type: \"ease\",\n            duration: 0.3\n          },\n          whileHover: {\n            opacity: 0.8\n          }\n        }), isLoading && /*#__PURE__*/_jsx(\"div\", {\n          style: {\n            borderRadius,\n            position: \"absolute\",\n            display: \"flex\",\n            justifyContent: \"center\",\n            alignItems: \"center\",\n            width: \"100%\",\n            height: \"100%\",\n            left: 0,\n            top: 0,\n            zIndex: 2,\n            color: button.color,\n            background: button.fill\n          },\n          children: /*#__PURE__*/_jsx(motion.div, {\n            style: {\n              height: 16,\n              width: 16\n            },\n            initial: {\n              rotate: 0\n            },\n            animate: {\n              rotate: 360\n            },\n            transition: {\n              duration: 2,\n              repeat: Infinity\n            },\n            children: /*#__PURE__*/_jsxs(\"svg\", {\n              xmlns: \"http://www.w3.org/2000/svg\",\n              width: \"16\",\n              height: \"16\",\n              children: [/*#__PURE__*/_jsx(\"path\", {\n                d: \"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",\n                fill: \"currentColor\",\n                opacity: \"0.2\"\n              }), /*#__PURE__*/_jsx(\"path\", {\n                d: \"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",\n                fill: \"currentColor\"\n              })]\n            })\n          })\n        })]\n      })]\n    })\n  });\n}, [\".framer-formspark-input::placeholder { color: var(--framer-formspark-placeholder-color) !important; }\"]);\nFormSpark.defaultProps = {\n  fontSize: 16,\n  fontFamily: \"Inter\",\n  fontWeight: 400,\n  padding: 15,\n  paddingTop: 15,\n  paddingBottom: 15,\n  paddingLeft: 15,\n  paddingRight: 15,\n  borderRadius: 8,\n  topLeftRadius: 8,\n  topRightRadius: 8,\n  bottomRightRadius: 8,\n  bottomLeftRadius: 8,\n  gap: 15,\n  nameField: {\n    value: undefined,\n    placeholder: \"Name\"\n  },\n  email: {\n    value: undefined,\n    placeholder: \"Email\"\n  },\n  message: {\n    value: undefined,\n    placeholder: \"Message\"\n  },\n  inputs: {\n    fill: \"#EBEBEB\",\n    color: \"#000\",\n    placeholderColor: \"rgba(0, 0, 0, 0.5)\",\n    error: \"#EE4444\"\n  },\n  layout: {\n    fill: \"#EBEBEB\",\n    color: \"#000\",\n    placeholderColor: \"rgba(0, 0, 0, 0.5)\",\n    error: \"#EE4444\"\n  },\n  button: {\n    label: \"Sign Up\",\n    fontWeight: 600,\n    fill: \"#000\",\n    color: \"#FFF\"\n  }\n};\naddPropertyControls(FormSpark, {\n  formId: {\n    title: \"ID\",\n    placeholder: \"7PbPpGN3\",\n    type: ControlType.String,\n    description: \"Create a [FormSpark](https://formspark.io/) account, add a new form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/formspark/)\"\n  },\n  withName: {\n    title: \"Name\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Show\",\n    disabledTitle: \"Hide\",\n    defaultValue: true\n  },\n  nameField: {\n    title: \" \",\n    type: ControlType.Object,\n    controls: {\n      placeholder: {\n        title: \"Placeholder\",\n        type: ControlType.String,\n        defaultValue: \"Name\"\n      },\n      value: {\n        title: \"Value\",\n        type: ControlType.String,\n        defaultValue: \"\"\n      }\n    },\n    hidden: props => !props.withName\n  },\n  withEmail: {\n    title: \"Email\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Show\",\n    disabledTitle: \"Hide\",\n    defaultValue: true\n  },\n  email: {\n    title: \" \",\n    type: ControlType.Object,\n    controls: {\n      placeholder: {\n        title: \"Placeholder\",\n        type: ControlType.String,\n        defaultValue: \"Email\"\n      },\n      value: {\n        title: \"Value\",\n        type: ControlType.String\n      }\n    },\n    hidden: props => !props.withEmail\n  },\n  withMessage: {\n    title: \"Message\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Show\",\n    disabledTitle: \"Hide\",\n    defaultValue: true\n  },\n  message: {\n    title: \" \",\n    type: ControlType.Object,\n    controls: {\n      placeholder: {\n        title: \"Placeholder\",\n        type: ControlType.String,\n        defaultValue: \"Message\"\n      },\n      value: {\n        title: \"Value\",\n        type: ControlType.String\n      }\n    },\n    hidden: props => !props.withMessage\n  },\n  layout: {\n    title: \"Layout\",\n    type: ControlType.Enum,\n    options: [\"horizontal\", \"vertical\"],\n    displaySegmentedControl: true,\n    defaultValue: \"horizontal\"\n  },\n  inputs: {\n    title: \"Inputs\",\n    type: ControlType.Object,\n    controls: {\n      fill: {\n        title: \"Fill\",\n        type: ControlType.Color,\n        defaultValue: \"#EBEBEB\"\n      },\n      color: {\n        title: \"Text\",\n        type: ControlType.Color,\n        defaultValue: \"#000\"\n      },\n      placeholderColor: {\n        title: \"Placeholder\",\n        type: ControlType.Color,\n        defaultValue: \"rgba(0, 0, 0, 0.5)\"\n      },\n      error: {\n        title: \"Error\",\n        type: ControlType.Color,\n        defaultValue: \"#EE4444\"\n      }\n    }\n  },\n  button: {\n    title: \"Button\",\n    type: ControlType.Object,\n    controls: {\n      label: {\n        title: \"Label\",\n        type: ControlType.String,\n        defaultValue: \"Sign Up\"\n      },\n      fontWeight: {\n        ...fontControls.fontWeight,\n        defaultValue: 600\n      },\n      fill: {\n        title: \"Fill\",\n        type: ControlType.Color,\n        defaultValue: \"#000\"\n      },\n      color: {\n        title: \"Text\",\n        type: ControlType.Color,\n        defaultValue: \"#FFF\"\n      }\n    }\n  },\n  ...fontControls,\n  fontSize: {\n    title: \"Font Size\",\n    type: ControlType.Number,\n    displayStepper: true,\n    defaultValue: 16\n  },\n  ...paddingControl,\n  ...borderRadiusControl,\n  gap: {\n    title: \"Gap\",\n    type: ControlType.Number,\n    displayStepper: true,\n    min: 0\n  },\n  onSubmit: {\n    type: ControlType.EventHandler\n  }\n});\nconst defaultStyle = {\n  WebkitAppearance: \"none\",\n  display: \"inline-block\",\n  width: \"100%\",\n  lineHeight: \"1.4em\",\n  outline: \"none\",\n  border: \"none\"\n};\nexport default FormSpark;\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FormSpark\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"290\",\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerIntrinsicWidth\": \"550\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./FormSpark.map", "// Generated by Framer (0892575)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, Link, optimizeAppear, optimizeAppearTransformTemplate, PropertyOverrides, removeHiddenBreakpointLayers, RichText, useHydratedBreakpointVariants, useRouteElementId, withCSS, withVariantAppearEffect } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport Embed from \"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/pVNq3gPwiiJPmLV2YSlc/Embed.js\";\nimport FormSpark from \"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js\";\nimport FooterDark from \"https://framerusercontent.com/modules/gmTYkRsKLgqLxD6pj1tI/LK0uQ700V3DgAO4iWqCj/GWXB_VTKo.js\";\nimport DButtonCopy from \"https://framerusercontent.com/modules/8kqa2CWPOz9HdmBbO8cX/8TFzYoT5dWJ8elgee9pQ/JDB6G4U5s.js\";\nimport TopbarCopy2 from \"https://framerusercontent.com/modules/vE493ydw3asxzHWNAVJk/8UAwX49y3UYRCnhN1ZJX/ntYym_urJ.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/7UDs1JqLu8G45Cq1ruNL/ewfD3oxzCjVI7vxDslH2/Oz_TReT9W.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/R9HHL7gLds9QvjCU1O9Z/322X6acCGJI0zdRUKI92/UNwh6Udqh.js\";\nconst FooterDarkFonts = getFonts(FooterDark);\nconst TopbarCopy2Fonts = getFonts(TopbarCopy2);\nconst EmbedFonts = getFonts(Embed);\nconst TopbarCopy2WithVariantAppearEffect = withVariantAppearEffect(TopbarCopy2);\nconst DButtonCopyFonts = getFonts(DButtonCopy);\nconst FormSparkFonts = getFonts(FormSpark);\nconst cycleOrder = [\"Uqm5V6HQo\", \"mQ5YMyXWl\", \"EKjuctT8t\"];\nconst breakpoints = {\n  EKjuctT8t: \"(min-width: 810px) and (max-width: 1199px)\",\n  mQ5YMyXWl: \"(max-width: 809px)\",\n  Uqm5V6HQo: \"(min-width: 1200px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  EKjuctT8t: \"framer-v-c273pj\",\n  mQ5YMyXWl: \"framer-v-ft73mq\",\n  Uqm5V6HQo: \"framer-v-15mqyz3\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"Uqm5V6HQo\", breakpoints, variantClassNames);\n}\nconst humanReadableVariantMap = {\n  Desktop: \"Uqm5V6HQo\",\n  Phone: \"mQ5YMyXWl\",\n  Tablet: \"EKjuctT8t\"\n};\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transition1 = {\n  damping: 30,\n  delay: 0,\n  mass: 1,\n  stiffness: 200,\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: -80\n};\nconst transformTemplate = (_, t) => `perspective(1200px) ${t}`;\nconst animation1 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst animation2 = {\n  opacity: .001,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: -80\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 = \"Uqm5V6HQo\",\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 isDisplayed = () => {\n    if (baseVariant === \"mQ5YMyXWl\") return !isBrowser();\n    return true;\n  };\n  const isDisplayed1 = () => {\n    if (baseVariant === \"mQ5YMyXWl\") return true;\n    return !isBrowser();\n  };\n  const id1 = useRouteElementId(\"ZRsLYzf4m\");\n  const ref1 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"Uqm5V6HQo\",\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-2mIGj\", sharedStyle.className),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-15mqyz3\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(Container, {\n            className: \"framer-m7si5d-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                EKjuctT8t: {\n                  variant: \"n_uGQc5FT\"\n                },\n                mQ5YMyXWl: {\n                  variant: \"Z9vQDxc6l\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(FooterDark, {\n                height: \"100%\",\n                id: \"Vz_YQu3tv\",\n                layoutId: \"Vz_YQu3tv\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"fZntN9745\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-puu7kp\",\n            \"data-framer-name\": \"Testimonials 2\",\n            name: \"Testimonials 2\",\n            children: [isDisplayed() && /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-7r56co hidden-ft73mq\",\n              children: [/*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"h2\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7RG9taW5lLXJlZ3VsYXI=\",\n                      \"--framer-font-family\": '\"Domine\", \"Domine Placeholder\", serif',\n                      \"--framer-font-size\": \"49px\",\n                      \"--framer-letter-spacing\": \"-2.1px\",\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"\n                    },\n                    children: \"Generative AI Courses\"\n                  })\n                }),\n                className: \"framer-16x4jsy\",\n                fonts: [\"GF;Domine-regular\"],\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"h2\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                      \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                      \"--framer-font-size\": \"24px\",\n                      \"--framer-letter-spacing\": \"-0.7px\",\n                      \"--framer-line-height\": \"1.5em\",\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"\n                    },\n                    children: \"Our courses are curated and handpicked from top experts in the field. Each course offers engaging videos, prompts, and the chance to interact with the course convener.\"\n                  })\n                }),\n                className: \"framer-37eenc\",\n                fonts: [\"GF;Work Sans-regular\"],\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })]\n            }), isDisplayed1() && /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                mQ5YMyXWl: {\n                  \"data-framer-appear-id\": \"1m0lolt\",\n                  animate: optimizeAppear(\"animate\", \"1m0lolt\", animation1, \"ft73mq\"),\n                  initial: optimizeAppear(\"initial\", \"1m0lolt\", animation2, \"ft73mq\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1m0lolt\", transformTemplate)\n                }\n              },\n              children: /*#__PURE__*/_jsx(Container, {\n                animate: optimizeAppear(\"animate\", \"jajlm\", animation1, \"15mqyz3\"),\n                className: \"framer-jajlm-container hidden-15mqyz3 hidden-c273pj\",\n                \"data-framer-appear-id\": \"jajlm\",\n                exit: animation,\n                initial: optimizeAppear(\"initial\", \"jajlm\", animation2, \"15mqyz3\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"jajlm\", transformTemplate),\n                children: /*#__PURE__*/_jsx(TopbarCopy2, {\n                  background: \"rgb(236, 231, 227)\",\n                  green: \"rgb(247, 255, 143)\",\n                  height: \"100%\",\n                  id: \"dpGfRxwHk\",\n                  layoutId: \"dpGfRxwHk\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"DPfLMnBXh\",\n                  width: \"100%\"\n                })\n              })\n            }), isDisplayed1() && /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-whbpbw hidden-15mqyz3 hidden-c273pj\",\n              children: [/*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-tvpxzh\",\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"24px\",\n                        \"--framer-letter-spacing\": \"-0.7px\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(136, 136, 136)\"\n                      },\n                      children: \"Our courses are curated and handpicked from top experts in the field. Each course offers engaging videos, prompts, and the chance to interact with the course convener.\"\n                    })\n                  }),\n                  className: \"framer-tvdrhu\",\n                  fonts: [\"GF;Work Sans-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-1103dnd\",\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7RG9taW5lLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Domine\", \"Domine Placeholder\", serif',\n                        \"--framer-font-size\": \"40px\",\n                        \"--framer-letter-spacing\": \"-2.1px\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"\n                      },\n                      children: \"Generative AI Courses\"\n                    })\n                  }),\n                  className: \"framer-1365k3t\",\n                  fonts: [\"GF;Domine-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              })]\n            })]\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-1qse4ev-container\",\n            children: /*#__PURE__*/_jsx(Embed, {\n              height: \"100%\",\n              html: '<a href=\"https://www.producthunt.com/products/promptstacks/reviews?utm_source=badge-product_rating&utm_medium=badge&utm_souce=badge-promptstacks\" target=\"_blank\"><img src=\"https://api.producthunt.com/widgets/embed-image/v1/product_rating.svg?product_id=517902&theme=neutral\" alt=\"Promptstacks - &#0032;Your&#0032;ChatGPT&#0032;Prompt&#0032;Engineering&#0032;Community&#0046; | Product Hunt\" style=\"width: 240px; height: 150px;\" width=\"242\" height=\"108\" /></a>',\n              id: \"AFY3pWkSZ\",\n              layoutId: \"AFY3pWkSZ\",\n              style: {\n                height: \"100%\",\n                width: \"100%\"\n              },\n              type: \"html\",\n              url: '<a href=\"https://www.producthunt.com/products/promptstacks/reviews?utm_source=badge-product_rating&utm_medium=badge&utm_souce=badge-promptstacks\" target=\"_blank\"><img src=\"https://api.producthunt.com/widgets/embed-image/v1/product_rating.svg?product_id=517902&theme=neutral\" alt=\"Promptstacks - &#0032;Your&#0032;ChatGPT&#0032;Prompt&#0032;Engineering&#0032;Community&#0046; | Product Hunt\" style=\"width: 242px; height: 108px;\" width=\"242\" height=\"108\" /></a>',\n              width: \"100%\"\n            })\n          }), isDisplayed() && /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              EKjuctT8t: {\n                \"data-framer-appear-id\": \"1mk465b\",\n                animate: optimizeAppear(\"animate\", \"1mk465b\", animation1, \"c273pj\"),\n                initial: optimizeAppear(\"initial\", \"1mk465b\", animation2, \"c273pj\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"1mk465b\", transformTemplate)\n              }\n            },\n            children: /*#__PURE__*/_jsx(Container, {\n              animate: optimizeAppear(\"animate\", \"524yhk\", animation1, \"15mqyz3\"),\n              className: \"framer-524yhk-container hidden-ft73mq\",\n              \"data-framer-appear-id\": \"524yhk\",\n              exit: animation,\n              initial: optimizeAppear(\"initial\", \"524yhk\", animation2, \"15mqyz3\"),\n              layoutScroll: true,\n              transformTemplate: optimizeAppearTransformTemplate(\"524yhk\", transformTemplate),\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  EKjuctT8t: {\n                    variant: \"Qhpq0tpCU\"\n                  }\n                },\n                children: /*#__PURE__*/_jsx(TopbarCopy2WithVariantAppearEffect, {\n                  __framer__animateOnce: false,\n                  __framer__threshold: 0,\n                  __framer__variantAppearEffectEnabled: true,\n                  background: \"rgb(236, 231, 227)\",\n                  green: \"rgb(247, 255, 143)\",\n                  height: \"100%\",\n                  id: \"vXVhywsEY\",\n                  layoutId: \"vXVhywsEY\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"Jar2y4LQ5\",\n                  width: \"100%\"\n                })\n              })\n            })\n          }), isDisplayed1() && /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-1vivsne hidden-15mqyz3 hidden-c273pj\",\n            children: [/*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-emw5x6\"\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-1qags4l\"\n            })]\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-1jc2uxm\",\n            children: [/*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-1q5ji7t\",\n              \"data-framer-name\": \"Testimonials\",\n              id: id1,\n              name: \"Testimonials\",\n              ref: ref1,\n              children: /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1r1gbn7\",\n                children: [/*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-olpg5v\",\n                  \"data-border\": true,\n                  \"data-framer-name\": \"Card\",\n                  name: \"Card\",\n                  children: [/*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-10vdg60\",\n                    children: /*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-g7jygy\",\n                      children: /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsxs(\"h3\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7V29yayBTYW5zLTYwMA==\",\n                              \"--framer-font-family\": '\"Work Sans\", sans-serif',\n                              \"--framer-font-size\": \"13px\",\n                              \"--framer-font-weight\": \"600\",\n                              \"--framer-letter-spacing\": \"-0.5px\",\n                              \"--framer-line-height\": \"1.4em\",\n                              \"--framer-text-alignment\": \"left\"\n                            },\n                            children: [/*#__PURE__*/_jsx(\"span\", {\n                              style: {\n                                \"--framer-font-size\": \"29px\"\n                              },\n                              children: \"ChatGPT Accelerator Course (4.5/5)\"\n                            }), /*#__PURE__*/_jsx(\"span\", {\n                              style: {\n                                \"--framer-font-size\": \"18px\",\n                                \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                              },\n                              children: /*#__PURE__*/_jsx(\"strong\", {\n                                children: /*#__PURE__*/_jsx(\"br\", {})\n                              })\n                            })]\n                          })\n                        }),\n                        className: \"framer-1iam89k\",\n                        fonts: [\"GF;Work Sans-600\"],\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-99aj8j\",\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsxs(React.Fragment, {\n                        children: [/*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                            \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"18px\",\n                            \"--framer-line-height\": \"1.4em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Participants will gain a comprehensive understanding of ChatGPT's strengths, weaknesses, and limitations. An excellent opportunity for professionals seeking to enhance skills with cutting-edge AI. \"\n                        }), /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                            \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"18px\",\n                            \"--framer-line-height\": \"1.4em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: /*#__PURE__*/_jsx(\"br\", {\n                            className: \"trailing-break\"\n                          })\n                        }), /*#__PURE__*/_jsxs(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                            \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"18px\",\n                            \"--framer-line-height\": \"1.4em\",\n                            \"--framer-text-alignment\": \"center\"\n                          },\n                          children: [/*#__PURE__*/_jsx(\"br\", {}), \"Convened by\", /*#__PURE__*/_jsx(\"strong\", {\n                            children: \" \"\n                          }), /*#__PURE__*/_jsx(\"span\", {\n                            style: {\n                              \"--framer-font-size\": \"19px\"\n                            },\n                            children: /*#__PURE__*/_jsx(\"strong\", {\n                              children: \"Sean Melis \"\n                            })\n                          }), /*#__PURE__*/_jsx(\"span\", {\n                            style: {\n                              \"--framer-font-size\": \"19px\"\n                            },\n                            children: /*#__PURE__*/_jsx(\"strong\", {\n                              children: /*#__PURE__*/_jsx(\"br\", {})\n                            })\n                          }), /*#__PURE__*/_jsx(\"span\", {\n                            style: {\n                              \"--framer-font-size\": \"19px\"\n                            },\n                            children: /*#__PURE__*/_jsx(\"em\", {\n                              children: \"Ex-Deloitte AI Consultant\"\n                            })\n                          })]\n                        }), /*#__PURE__*/_jsxs(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V29yayBTYW5zLTYwMA==\",\n                            \"--framer-font-family\": '\"Work Sans\", sans-serif',\n                            \"--framer-font-size\": \"21px\",\n                            \"--framer-font-weight\": \"600\",\n                            \"--framer-letter-spacing\": \"-0.5px\",\n                            \"--framer-line-height\": \"1.4em\",\n                            \"--framer-text-alignment\": \"center\"\n                          },\n                          children: [/*#__PURE__*/_jsx(\"br\", {}), \"$24.95 \"]\n                        }), /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                            \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"18px\",\n                            \"--framer-line-height\": \"1.4em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: /*#__PURE__*/_jsx(\"br\", {\n                            className: \"trailing-break\"\n                          })\n                        })]\n                      }),\n                      className: \"framer-1jl49p2\",\n                      fonts: [\"GF;Work Sans-regular\", \"GF;Work Sans-600\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(Link, {\n                    href: \"https://www.promptstackscommunity.com/c/chatgpt-101/\",\n                    children: /*#__PURE__*/_jsx(Image, {\n                      as: \"a\",\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 1080,\n                        intrinsicWidth: 1920,\n                        loading: \"lazy\",\n                        pixelHeight: 1080,\n                        pixelWidth: 1920,\n                        sizes: \"227px\",\n                        src: new URL(\"https://framerusercontent.com/images/i7sxZ7bY9sEgLPk3EMkctazY.png\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/i7sxZ7bY9sEgLPk3EMkctazY.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/i7sxZ7bY9sEgLPk3EMkctazY.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/i7sxZ7bY9sEgLPk3EMkctazY.png\").href} 1920w`\n                      },\n                      className: \"framer-1mj1m1j framer-1n3965s\",\n                      \"data-border\": true\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1v50oth-container\",\n                    children: /*#__PURE__*/_jsx(DButtonCopy, {\n                      height: \"100%\",\n                      id: \"J3zLRbjPP\",\n                      layoutId: \"J3zLRbjPP\",\n                      link: \"https://www.promptstackscommunity.com/c/chatgpt-101/\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      title: \"Get Started\",\n                      variant: \"Qy1r3aT_o\",\n                      width: \"100%\"\n                    })\n                  })]\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-rrbzkg\",\n                  \"data-border\": true,\n                  \"data-framer-name\": \"Card\",\n                  name: \"Card\",\n                  children: [/*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-q2mii\",\n                    children: /*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-1fe4h1u\",\n                      children: /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsxs(\"h3\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7V29yayBTYW5zLTYwMA==\",\n                              \"--framer-font-family\": '\"Work Sans\", sans-serif',\n                              \"--framer-font-size\": \"18px\",\n                              \"--framer-font-weight\": \"600\",\n                              \"--framer-letter-spacing\": \"-0.5px\",\n                              \"--framer-line-height\": \"1.4em\",\n                              \"--framer-text-alignment\": \"left\"\n                            },\n                            children: [/*#__PURE__*/_jsx(\"span\", {\n                              style: {\n                                \"--framer-font-size\": \"29px\"\n                              },\n                              children: \"MidJourney Mastery\"\n                            }), /*#__PURE__*/_jsx(\"span\", {\n                              style: {\n                                \"--framer-font-size\": \"29px\"\n                              },\n                              children: /*#__PURE__*/_jsx(\"br\", {})\n                            }), /*#__PURE__*/_jsx(\"span\", {\n                              style: {\n                                \"--framer-font-size\": \"29px\"\n                              },\n                              children: \"Course (4.5/5)\"\n                            })]\n                          })\n                        }),\n                        className: \"framer-1r3r5ie\",\n                        fonts: [\"GF;Work Sans-600\"],\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-5zle28\",\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsxs(React.Fragment, {\n                        children: [/*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                            \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"18px\",\n                            \"--framer-line-height\": \"1.4em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Learn to master Midjourney and generate impressive AI Art useful across a variety of industry use-cases. 3h 10m total length\"\n                        }), /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                            \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"18px\",\n                            \"--framer-line-height\": \"1.4em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: /*#__PURE__*/_jsx(\"br\", {\n                            className: \"trailing-break\"\n                          })\n                        }), /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                            \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"18px\",\n                            \"--framer-line-height\": \"1.4em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"\u2022 Introduction\"\n                        }), /*#__PURE__*/_jsxs(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                            \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"18px\",\n                            \"--framer-line-height\": \"1.4em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: [\"\u2022 Midjourney Fundamentals\", /*#__PURE__*/_jsx(\"br\", {}), \"\u2022 Midjourney Advanced\"]\n                        }), /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                            \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"18px\",\n                            \"--framer-line-height\": \"1.4em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: /*#__PURE__*/_jsx(\"br\", {\n                            className: \"trailing-break\"\n                          })\n                        }), /*#__PURE__*/_jsxs(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                            \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"18px\",\n                            \"--framer-line-height\": \"1.4em\",\n                            \"--framer-text-alignment\": \"center\"\n                          },\n                          children: [\"Convened by\", /*#__PURE__*/_jsx(\"strong\", {\n                            children: \" \"\n                          }), /*#__PURE__*/_jsx(\"span\", {\n                            style: {\n                              \"--framer-font-size\": \"19px\"\n                            },\n                            children: /*#__PURE__*/_jsx(\"strong\", {\n                              children: \"Samson Vowles\"\n                            })\n                          }), /*#__PURE__*/_jsx(\"span\", {\n                            style: {\n                              \"--framer-font-size\": \"19px\"\n                            },\n                            children: /*#__PURE__*/_jsx(\"strong\", {\n                              children: /*#__PURE__*/_jsx(\"br\", {})\n                            })\n                          }), /*#__PURE__*/_jsx(\"span\", {\n                            style: {\n                              \"--framer-font-size\": \"19px\"\n                            },\n                            children: /*#__PURE__*/_jsx(\"em\", {\n                              children: \"Artist & Graphic Designer\"\n                            })\n                          }), /*#__PURE__*/_jsxs(\"span\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7V29yayBTYW5zLTYwMA==\",\n                              \"--framer-font-family\": '\"Work Sans\", sans-serif',\n                              \"--framer-font-size\": \"21px\",\n                              \"--framer-font-weight\": \"600\",\n                              \"--framer-letter-spacing\": \"-0.5px\"\n                            },\n                            children: [/*#__PURE__*/_jsx(\"br\", {}), /*#__PURE__*/_jsx(\"br\", {})]\n                          }), /*#__PURE__*/_jsx(\"span\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7V29yayBTYW5zLTYwMA==\",\n                              \"--framer-font-family\": '\"Work Sans\", sans-serif',\n                              \"--framer-font-size\": \"21px\",\n                              \"--framer-font-weight\": \"600\",\n                              \"--framer-letter-spacing\": \"-0.5px\"\n                            },\n                            children: \"$22.80\"\n                          }), /*#__PURE__*/_jsx(\"span\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7V29yayBTYW5zLTYwMA==\",\n                              \"--framer-font-family\": '\"Work Sans\", sans-serif',\n                              \"--framer-font-size\": \"21px\",\n                              \"--framer-font-weight\": \"600\",\n                              \"--framer-letter-spacing\": \"-0.5px\"\n                            },\n                            children: /*#__PURE__*/_jsx(\"br\", {})\n                          })]\n                        })]\n                      }),\n                      className: \"framer-15v5b31\",\n                      fonts: [\"GF;Work Sans-regular\", \"GF;Work Sans-600\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(Link, {\n                    href: \"https://www.promptstackscommunity.com/c/chatgpt-101/\",\n                    children: /*#__PURE__*/_jsx(Image, {\n                      as: \"a\",\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 188,\n                        intrinsicWidth: 390,\n                        loading: \"lazy\",\n                        pixelHeight: 188,\n                        pixelWidth: 390,\n                        src: new URL(\"https://framerusercontent.com/images/yhyO8NDHSBvyL6Qs0ngKnnrT4.png\").href\n                      },\n                      className: \"framer-lcpxvn framer-1n3965s\",\n                      children: /*#__PURE__*/_jsx(Link, {\n                        href: \"https://promptstacks1.teachable.com/p/midjourney-mastery-create-visually-stunning-ai-art\",\n                        openInNewTab: true,\n                        children: /*#__PURE__*/_jsx(Image, {\n                          as: \"a\",\n                          background: {\n                            alt: \"\",\n                            fit: \"fill\",\n                            intrinsicHeight: 1080,\n                            intrinsicWidth: 1920,\n                            loading: \"lazy\",\n                            pixelHeight: 1080,\n                            pixelWidth: 1920,\n                            sizes: \"227px\",\n                            src: new URL(\"https://framerusercontent.com/images/gZRn5nSkDnsIvObloVKTmMGAWs.png\").href,\n                            srcSet: `${new URL(\"https://framerusercontent.com/images/gZRn5nSkDnsIvObloVKTmMGAWs.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/gZRn5nSkDnsIvObloVKTmMGAWs.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/gZRn5nSkDnsIvObloVKTmMGAWs.png\").href} 1920w`\n                          },\n                          className: \"framer-1idi4n2 framer-1n3965s\",\n                          \"data-border\": true\n                        })\n                      })\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1cx4v5b-container\",\n                    children: /*#__PURE__*/_jsx(DButtonCopy, {\n                      height: \"100%\",\n                      id: \"OBBCl2Ey7\",\n                      layoutId: \"OBBCl2Ey7\",\n                      link: \"https://promptstacks1.teachable.com/p/midjourney-mastery-create-visually-stunning-ai-art\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      title: \"Get Started\",\n                      variant: \"Qy1r3aT_o\",\n                      width: \"100%\"\n                    })\n                  })]\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-182z65n\",\n                  \"data-border\": true,\n                  \"data-framer-name\": \"Card\",\n                  name: \"Card\",\n                  children: [/*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-xalzat\",\n                    children: /*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-pxwrcy\",\n                      children: /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7V29yayBTYW5zLTYwMA==\",\n                              \"--framer-font-family\": '\"Work Sans\", sans-serif',\n                              \"--framer-font-size\": \"29px\",\n                              \"--framer-font-weight\": \"600\",\n                              \"--framer-letter-spacing\": \"-0.5px\",\n                              \"--framer-line-height\": \"1.4em\",\n                              \"--framer-text-alignment\": \"left\"\n                            },\n                            children: \"ChatGPT For SEO (4.7/5)\"\n                          })\n                        }),\n                        className: \"framer-4kkky5\",\n                        fonts: [\"GF;Work Sans-600\"],\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-1ixssbo\",\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsxs(React.Fragment, {\n                        children: [/*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                            \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"18px\",\n                            \"--framer-line-height\": \"1.4em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Understand the fundamentals of Search Engine Optimization (SEO) and the role of AI. Analyze the data gathered from ChatGPT and develop insights for SEO optimization.\"\n                        }), /*#__PURE__*/_jsxs(\"ul\", {\n                          className: \"framer-styles-preset-1el76a0\",\n                          \"data-styles-preset\": \"Oz_TReT9W\",\n                          children: [/*#__PURE__*/_jsx(\"li\", {\n                            children: /*#__PURE__*/_jsx(\"div\", {\n                              children: \"Identify important keywords \"\n                            })\n                          }), /*#__PURE__*/_jsx(\"li\", {\n                            children: /*#__PURE__*/_jsx(\"div\", {\n                              children: \"Create topical maps and topical authority.\"\n                            })\n                          })]\n                        }), /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                            \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"18px\",\n                            \"--framer-line-height\": \"1.4em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: /*#__PURE__*/_jsx(\"br\", {\n                            className: \"trailing-break\"\n                          })\n                        }), /*#__PURE__*/_jsxs(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                            \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"18px\",\n                            \"--framer-line-height\": \"1.4em\",\n                            \"--framer-text-alignment\": \"center\"\n                          },\n                          children: [\"Convened by\", /*#__PURE__*/_jsx(\"strong\", {\n                            children: \" \"\n                          }), /*#__PURE__*/_jsx(\"span\", {\n                            style: {\n                              \"--framer-font-size\": \"19px\"\n                            },\n                            children: /*#__PURE__*/_jsx(\"strong\", {\n                              children: \"Lidan Benolol\"\n                            })\n                          }), /*#__PURE__*/_jsx(\"span\", {\n                            style: {\n                              \"--framer-font-size\": \"19px\"\n                            },\n                            children: /*#__PURE__*/_jsx(\"strong\", {\n                              children: /*#__PURE__*/_jsx(\"br\", {})\n                            })\n                          }), /*#__PURE__*/_jsx(\"span\", {\n                            style: {\n                              \"--framer-font-size\": \"19px\"\n                            },\n                            children: /*#__PURE__*/_jsx(\"em\", {\n                              children: \"SEO Agency Owner\"\n                            })\n                          }), /*#__PURE__*/_jsxs(\"span\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7V29yayBTYW5zLTYwMA==\",\n                              \"--framer-font-family\": '\"Work Sans\", sans-serif',\n                              \"--framer-font-size\": \"21px\",\n                              \"--framer-font-weight\": \"600\",\n                              \"--framer-letter-spacing\": \"-0.5px\"\n                            },\n                            children: [/*#__PURE__*/_jsx(\"br\", {}), /*#__PURE__*/_jsx(\"br\", {})]\n                          }), /*#__PURE__*/_jsx(\"span\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7V29yayBTYW5zLTYwMA==\",\n                              \"--framer-font-family\": '\"Work Sans\", sans-serif',\n                              \"--framer-font-size\": \"21px\",\n                              \"--framer-font-weight\": \"600\",\n                              \"--framer-letter-spacing\": \"-0.5px\"\n                            },\n                            children: \"$22.00\"\n                          }), /*#__PURE__*/_jsx(\"span\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7V29yayBTYW5zLTYwMA==\",\n                              \"--framer-font-family\": '\"Work Sans\", sans-serif',\n                              \"--framer-font-size\": \"21px\",\n                              \"--framer-font-weight\": \"600\",\n                              \"--framer-letter-spacing\": \"-0.5px\"\n                            },\n                            children: /*#__PURE__*/_jsx(\"br\", {})\n                          })]\n                        })]\n                      }),\n                      className: \"framer-186473r\",\n                      fonts: [\"GF;Work Sans-regular\", \"GF;Work Sans-600\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(Link, {\n                    href: \"https://www.promptstackscommunity.com/c/chatgpt-101/\",\n                    children: /*#__PURE__*/_jsx(Image, {\n                      as: \"a\",\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 188,\n                        intrinsicWidth: 390,\n                        loading: \"lazy\",\n                        pixelHeight: 188,\n                        pixelWidth: 390,\n                        src: new URL(\"https://framerusercontent.com/images/yhyO8NDHSBvyL6Qs0ngKnnrT4.png\").href\n                      },\n                      className: \"framer-15tqvxn framer-1n3965s\",\n                      children: /*#__PURE__*/_jsx(Link, {\n                        href: \"https://www.udemy.com/course/chatgpt-for-seo-harnessing-the-potential-of-ai-for-seo-2023/?referralCode=9C2E1C0BB311E30ABE89\",\n                        openInNewTab: true,\n                        children: /*#__PURE__*/_jsx(Image, {\n                          as: \"a\",\n                          background: {\n                            alt: \"\",\n                            fit: \"fill\",\n                            intrinsicHeight: 630,\n                            intrinsicWidth: 1200,\n                            loading: \"lazy\",\n                            pixelHeight: 630,\n                            pixelWidth: 1200,\n                            sizes: \"227px\",\n                            src: new URL(\"https://framerusercontent.com/images/SyazJVb8NmO36vKbPUBeRy5OPs.png\").href,\n                            srcSet: `${new URL(\"https://framerusercontent.com/images/SyazJVb8NmO36vKbPUBeRy5OPs.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/SyazJVb8NmO36vKbPUBeRy5OPs.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/SyazJVb8NmO36vKbPUBeRy5OPs.png\").href} 1200w`\n                          },\n                          className: \"framer-1rb9r9 framer-1n3965s\",\n                          \"data-border\": true\n                        })\n                      })\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-463h51-container\",\n                    children: /*#__PURE__*/_jsx(DButtonCopy, {\n                      height: \"100%\",\n                      id: \"IwWw97HhA\",\n                      layoutId: \"IwWw97HhA\",\n                      link: \"https://www.udemy.com/course/chatgpt-for-seo-harnessing-the-potential-of-ai-for-seo-2023/?referralCode=9C2E1C0BB311E30ABE89\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      title: \"Get Started\",\n                      variant: \"Qy1r3aT_o\",\n                      width: \"100%\"\n                    })\n                  })]\n                })]\n              })\n            }), /*#__PURE__*/_jsx(Container, {\n              className: \"framer-1mlylzx-container\",\n              children: /*#__PURE__*/_jsx(FormSpark, {\n                borderRadius: 8,\n                bottomLeftRadius: 8,\n                bottomRightRadius: 8,\n                button: {\n                  color: \"rgb(255, 255, 255)\",\n                  fill: \"rgb(100, 149, 209)\",\n                  fontWeight: 600,\n                  label: \"Submit\"\n                },\n                email: {\n                  placeholder: \"Email\",\n                  value: \"\"\n                },\n                font: false,\n                fontFamily: \"Inter\",\n                fontSize: 16,\n                fontWeight: 400,\n                formId: \"10dQzJs8\",\n                gap: 15,\n                height: \"100%\",\n                id: \"NUIT2tbpc\",\n                inputs: {\n                  color: \"rgb(0, 0, 0)\",\n                  error: \"rgb(238, 68, 68)\",\n                  fill: \"rgb(255, 255, 255)\",\n                  placeholderColor: \"rgba(0, 0, 0, 0.5)\"\n                },\n                isMixedBorderRadius: false,\n                layout: \"horizontal\",\n                layoutId: \"NUIT2tbpc\",\n                message: {\n                  placeholder: \"Want to ask us a question before you sign up for a course?\",\n                  value: \"\"\n                },\n                nameField: {\n                  placeholder: \"Name\",\n                  value: \"\"\n                },\n                padding: 15,\n                paddingBottom: 15,\n                paddingLeft: 15,\n                paddingPerSide: false,\n                paddingRight: 15,\n                paddingTop: 15,\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                topLeftRadius: 8,\n                topRightRadius: 8,\n                width: \"100%\",\n                withEmail: true,\n                withMessage: true,\n                withName: true\n              })\n            })]\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-2mIGj [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: #ECE7E3; }`, \".framer-2mIGj .framer-1n3965s { display: block; }\", \".framer-2mIGj .framer-15mqyz3 { align-content: center; align-items: center; background-color: #ece7e3; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-2mIGj .framer-m7si5d-container { flex: none; height: auto; left: 0px; position: absolute; top: 2414px; width: 100%; z-index: 1; }\", \".framer-2mIGj .framer-puu7kp { align-content: center; align-items: center; background-color: #ece7e3; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 378px; justify-content: center; overflow: hidden; padding: 100px 40px 20px 40px; position: relative; width: 100%; }\", \".framer-2mIGj .framer-7r56co { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 931px; }\", \".framer-2mIGj .framer-16x4jsy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: 15%; overflow: visible; position: relative; white-space: pre-wrap; width: 483px; word-break: break-word; word-wrap: break-word; }\", \".framer-2mIGj .framer-37eenc { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 68%; overflow: visible; position: relative; white-space: pre-wrap; width: 68%; word-break: break-word; word-wrap: break-word; }\", \".framer-2mIGj .framer-jajlm-container { flex: none; height: 80px; left: -3px; position: absolute; top: 0px; transform: perspective(1200px); width: 100%; z-index: 10; }\", \".framer-2mIGj .framer-whbpbw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 306px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 380px; }\", \".framer-2mIGj .framer-tvpxzh { align-content: center; align-items: center; background-color: rgba(187, 221, 255, 0); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-2mIGj .framer-tvdrhu, .framer-2mIGj .framer-1365k3t { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\", \".framer-2mIGj .framer-1103dnd { align-content: center; align-items: center; background-color: rgba(204, 238, 255, 0); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-2mIGj .framer-1qse4ev-container { aspect-ratio: 3.1349693251533743 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 153px); position: relative; width: 377px; }\", \".framer-2mIGj .framer-524yhk-container { flex: none; height: 80px; left: 0px; position: fixed; right: 0px; top: 0px; transform: perspective(1200px); z-index: 10; }\", \".framer-2mIGj .framer-1vivsne { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 227px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-2mIGj .framer-emw5x6 { background-color: #bbddff; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\", \".framer-2mIGj .framer-1qags4l { background-color: #cceeff; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\", \".framer-2mIGj .framer-1jc2uxm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 2110px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1064px; }\", \".framer-2mIGj .framer-1q5ji7t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: 1594px; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; scroll-margin-top: 80px; width: 1200px; }\", \".framer-2mIGj .framer-1r1gbn7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\", \".framer-2mIGj .framer-olpg5v, .framer-2mIGj .framer-rrbzkg { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 741px; justify-content: flex-start; padding: 30px 30px 30px 30px; position: relative; width: 358px; }\", \".framer-2mIGj .framer-10vdg60, .framer-2mIGj .framer-q2mii, .framer-2mIGj .framer-xalzat { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 110px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 99%; }\", \".framer-2mIGj .framer-g7jygy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 82px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 296px; z-index: 1; }\", \".framer-2mIGj .framer-1iam89k, .framer-2mIGj .framer-1r3r5ie, .framer-2mIGj .framer-4kkky5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: 55%; overflow: visible; position: relative; white-space: pre-wrap; width: 99%; word-break: break-word; word-wrap: break-word; }\", \".framer-2mIGj .framer-99aj8j, .framer-2mIGj .framer-5zle28 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 377px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 283px; }\", \".framer-2mIGj .framer-1jl49p2, .framer-2mIGj .framer-15v5b31, .framer-2mIGj .framer-186473r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: 110%; overflow: visible; position: relative; white-space: pre-wrap; width: 97%; word-break: break-word; word-wrap: break-word; }\", \".framer-2mIGj .framer-1mj1m1j { --border-bottom-width: 3px; --border-color: #6495d1; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; flex: none; height: 112px; position: relative; text-decoration: none; width: 227px; }\", \".framer-2mIGj .framer-1v50oth-container, .framer-2mIGj .framer-1cx4v5b-container, .framer-2mIGj .framer-463h51-container { flex: none; height: 108px; position: relative; width: 151px; }\", \".framer-2mIGj .framer-1fe4h1u, .framer-2mIGj .framer-pxwrcy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 88px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 296px; z-index: 1; }\", \".framer-2mIGj .framer-lcpxvn, .framer-2mIGj .framer-15tqvxn { border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; flex: none; height: 112px; position: relative; text-decoration: none; width: 227px; }\", \".framer-2mIGj .framer-1idi4n2, .framer-2mIGj .framer-1rb9r9 { --border-bottom-width: 3px; --border-color: #6495d1; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; flex: none; height: 112px; left: 0px; position: absolute; text-decoration: none; top: 0px; width: 227px; }\", \".framer-2mIGj .framer-182z65n { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 798px; justify-content: flex-start; padding: 30px 30px 30px 30px; position: relative; width: 358px; }\", \".framer-2mIGj .framer-1ixssbo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 413px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 283px; }\", \".framer-2mIGj .framer-1mlylzx-container { flex: none; height: 247px; position: relative; width: 550px; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2mIGj .framer-15mqyz3, .framer-2mIGj .framer-puu7kp, .framer-2mIGj .framer-7r56co, .framer-2mIGj .framer-whbpbw, .framer-2mIGj .framer-tvpxzh, .framer-2mIGj .framer-1103dnd, .framer-2mIGj .framer-1vivsne, .framer-2mIGj .framer-1jc2uxm, .framer-2mIGj .framer-1q5ji7t, .framer-2mIGj .framer-1r1gbn7, .framer-2mIGj .framer-olpg5v, .framer-2mIGj .framer-10vdg60, .framer-2mIGj .framer-g7jygy, .framer-2mIGj .framer-99aj8j, .framer-2mIGj .framer-rrbzkg, .framer-2mIGj .framer-q2mii, .framer-2mIGj .framer-1fe4h1u, .framer-2mIGj .framer-5zle28, .framer-2mIGj .framer-182z65n, .framer-2mIGj .framer-xalzat, .framer-2mIGj .framer-pxwrcy, .framer-2mIGj .framer-1ixssbo { gap: 0px; } .framer-2mIGj .framer-15mqyz3 > *, .framer-2mIGj .framer-olpg5v > *, .framer-2mIGj .framer-99aj8j > *, .framer-2mIGj .framer-rrbzkg > *, .framer-2mIGj .framer-5zle28 > *, .framer-2mIGj .framer-182z65n > *, .framer-2mIGj .framer-1ixssbo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2mIGj .framer-15mqyz3 > :first-child, .framer-2mIGj .framer-puu7kp > :first-child, .framer-2mIGj .framer-7r56co > :first-child, .framer-2mIGj .framer-whbpbw > :first-child, .framer-2mIGj .framer-1vivsne > :first-child, .framer-2mIGj .framer-1jc2uxm > :first-child, .framer-2mIGj .framer-1q5ji7t > :first-child, .framer-2mIGj .framer-olpg5v > :first-child, .framer-2mIGj .framer-99aj8j > :first-child, .framer-2mIGj .framer-rrbzkg > :first-child, .framer-2mIGj .framer-5zle28 > :first-child, .framer-2mIGj .framer-182z65n > :first-child, .framer-2mIGj .framer-1ixssbo > :first-child { margin-top: 0px; } .framer-2mIGj .framer-15mqyz3 > :last-child, .framer-2mIGj .framer-puu7kp > :last-child, .framer-2mIGj .framer-7r56co > :last-child, .framer-2mIGj .framer-whbpbw > :last-child, .framer-2mIGj .framer-1vivsne > :last-child, .framer-2mIGj .framer-1jc2uxm > :last-child, .framer-2mIGj .framer-1q5ji7t > :last-child, .framer-2mIGj .framer-olpg5v > :last-child, .framer-2mIGj .framer-99aj8j > :last-child, .framer-2mIGj .framer-rrbzkg > :last-child, .framer-2mIGj .framer-5zle28 > :last-child, .framer-2mIGj .framer-182z65n > :last-child, .framer-2mIGj .framer-1ixssbo > :last-child { margin-bottom: 0px; } .framer-2mIGj .framer-puu7kp > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-2mIGj .framer-7r56co > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-2mIGj .framer-whbpbw > *, .framer-2mIGj .framer-1vivsne > *, .framer-2mIGj .framer-1jc2uxm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2mIGj .framer-tvpxzh > *, .framer-2mIGj .framer-1103dnd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2mIGj .framer-tvpxzh > :first-child, .framer-2mIGj .framer-1103dnd > :first-child, .framer-2mIGj .framer-1r1gbn7 > :first-child, .framer-2mIGj .framer-10vdg60 > :first-child, .framer-2mIGj .framer-g7jygy > :first-child, .framer-2mIGj .framer-q2mii > :first-child, .framer-2mIGj .framer-1fe4h1u > :first-child, .framer-2mIGj .framer-xalzat > :first-child, .framer-2mIGj .framer-pxwrcy > :first-child { margin-left: 0px; } .framer-2mIGj .framer-tvpxzh > :last-child, .framer-2mIGj .framer-1103dnd > :last-child, .framer-2mIGj .framer-1r1gbn7 > :last-child, .framer-2mIGj .framer-10vdg60 > :last-child, .framer-2mIGj .framer-g7jygy > :last-child, .framer-2mIGj .framer-q2mii > :last-child, .framer-2mIGj .framer-1fe4h1u > :last-child, .framer-2mIGj .framer-xalzat > :last-child, .framer-2mIGj .framer-pxwrcy > :last-child { margin-right: 0px; } .framer-2mIGj .framer-1q5ji7t > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } .framer-2mIGj .framer-1r1gbn7 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-2mIGj .framer-10vdg60 > *, .framer-2mIGj .framer-q2mii > *, .framer-2mIGj .framer-xalzat > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-2mIGj .framer-g7jygy > *, .framer-2mIGj .framer-1fe4h1u > *, .framer-2mIGj .framer-pxwrcy > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\", \"@media (min-width: 1200px) { .framer-2mIGj .hidden-15mqyz3 { display: none !important; } }\", `@media (max-width: 809px) { .framer-2mIGj .hidden-ft73mq { display: none !important; } .${metadata.bodyClassName} { background: #ECE7E3; } .framer-2mIGj .framer-15mqyz3 { height: 3904px; width: 402px; } .framer-2mIGj .framer-m7si5d-container { order: 5; top: 3458px; } .framer-2mIGj .framer-puu7kp { height: 414px; order: 0; width: 99%; } .framer-2mIGj .framer-jajlm-container, .framer-2mIGj .framer-1103dnd { order: 0; } .framer-2mIGj .framer-whbpbw { order: 2; } .framer-2mIGj .framer-tvpxzh, .framer-2mIGj .framer-1qse4ev-container { order: 1; } .framer-2mIGj .framer-1vivsne { order: 4; } .framer-2mIGj .framer-1jc2uxm { height: 3326px; order: 3; width: 398px; } .framer-2mIGj .framer-1q5ji7t { height: 2578px; order: 0; } .framer-2mIGj .framer-1r1gbn7 { width: 386px; } .framer-2mIGj .framer-olpg5v { height: 819px; } .framer-2mIGj .framer-182z65n { height: 786px; } .framer-2mIGj .framer-1mlylzx-container { height: 233px; order: 1; width: 369px; }}`, `@media (min-width: 810px) and (max-width: 1199px) { .framer-2mIGj .hidden-c273pj { display: none !important; } .${metadata.bodyClassName} { background: #ECE7E3; } .framer-2mIGj .framer-15mqyz3 { width: 810px; } .framer-2mIGj .framer-7r56co { gap: 28px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2mIGj .framer-7r56co { gap: 0px; } .framer-2mIGj .framer-7r56co > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-2mIGj .framer-7r56co > :first-child { margin-top: 0px; } .framer-2mIGj .framer-7r56co > :last-child { margin-bottom: 0px; } }}`, ...sharedStyle.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerIntrinsicHeight 2640.5\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mQ5YMyXWl\":{\"layout\":[\"fixed\",\"fixed\"]},\"EKjuctT8t\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         */\nconst FramerUNwh6Udqh = withCSS(Component, css, \"framer-2mIGj\");\nexport default FramerUNwh6Udqh;\nFramerUNwh6Udqh.displayName = \"Courses\";\nFramerUNwh6Udqh.defaultProps = {\n  height: 2640.5,\n  width: 1200\n};\naddFonts(FramerUNwh6Udqh, [{\n  family: \"Domine\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/UNwh6Udqh:default\",\n    url: \"https://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI10VErGuW8Q.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI10VErGuW8Q.ttf\",\n  weight: \"400\"\n}, {\n  family: \"Work Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/UNwh6Udqh:default\",\n    url: \"https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf\",\n  weight: \"400\"\n}, {\n  family: \"Work Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/UNwh6Udqh:default\",\n    url: \"https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf\",\n  weight: \"600\"\n}, ...FooterDarkFonts, ...TopbarCopy2Fonts, ...EmbedFonts, ...DButtonCopyFonts, ...FormSparkFonts, ...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerUNwh6Udqh\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mQ5YMyXWl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EKjuctT8t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerIntrinsicHeight\": \"2640.5\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"1200\"\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", "emailRegex", "validateEmail", "email", "FormSpark", "withCSS", "formId", "withName", "name", "withEmail", "withMessage", "message", "layout", "inputs", "button", "style", "gap", "onSubmit", "props", "nameValue", "setName", "ye", "emailValue", "setEmail", "messageValue", "setMessage", "isNameError", "setNameError", "isEmailError", "setEmailError", "isMessageError", "setMessageError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "gridTemplateRows", "rows", "gridTemplateColumns", "cols", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "error", "handleSubmit", "event", "data", "entries", "handleNameChange", "handleEmailChange", "handleMessageChange", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "FormSpark_default", "FooterDarkFonts", "getFonts", "GWXB_VTKo_default", "TopbarCopy2Fonts", "ntYym_urJ_default", "EmbedFonts", "Embed", "TopbarCopy2WithVariantAppearEffect", "withVariantAppearEffect", "DButtonCopyFonts", "JDB6G4U5s_default", "FormSparkFonts", "FormSpark_default", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "humanReadableVariantMap", "transitions", "transition1", "animation", "transformTemplate", "_", "t", "animation1", "animation2", "metadata", "UNwh6Udqh_default", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "isDisplayed", "isDisplayed1", "id1", "useRouteElementId", "ref1", "pe", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Container", "PropertyOverrides", "GWXB_VTKo_default", "RichText", "x", "optimizeAppear", "optimizeAppearTransformTemplate", "ntYym_urJ_default", "Embed", "TopbarCopy2WithVariantAppearEffect", "Link", "Image2", "JDB6G4U5s_default", "FormSpark_default", "css", "FramerUNwh6Udqh", "withCSS", "addFonts", "FooterDarkFonts", "TopbarCopy2Fonts", "EmbedFonts", "DButtonCopyFonts", "FormSparkFonts", "fonts", "__FramerMetadata__"]
}
