{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.js", "ssg:https://framerusercontent.com/modules/jMrfAplhO8BYTzHKEggc/UY0bcRY5HXGVDd1krkEQ/d9P9LNviq.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/cuQH4dmpDnV8YK1mSgQX/KqRXqunFjE6ufhpc7ZRu/useFontControls.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js", "ssg:https://framerusercontent.com/modules/QEJi9QvfLT9ScNZ6eM96/sW3IorOhkTFIosqLy6Dp/rGNfyShtI.js", "ssg:https://framerusercontent.com/modules/1CTOD3ORM4Sz5i5JDceR/tQfkPZJmF9EikjlZYa5i/augiA20Il.js"],
  "sourcesContent": ["import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { addPropertyControls, ControlType, RenderTarget, Color } from \"framer\";\nimport { motion } from \"framer-motion\"; /**\n                                        * PATTERN\n                                        *\n                                        * @framerIntrinsicWidth 200\n                                        * @framerIntrinsicHeight 200\n                                        * @framerDisableUnlink\n                                        *\n                                        * @framerSupportedLayoutWidth fixed\n                                        * @framerSupportedLayoutHeight fixed\n                                        */\nexport default function Pattern(props) {\n  const {\n    patternType,\n    front,\n    back,\n    radius,\n    scale,\n    shouldAnimate,\n    direction,\n    diagonal,\n    duration\n  } = props;\n  const isCanvas = RenderTarget.current() === RenderTarget.canvas;\n  let pattern;\n  let position;\n  let size;\n  let repeat;\n  let blendMode;\n  let filter;\n  let addBackground;\n  let backgroundPosAnimation;\n  const frontHex = Color.toHexString(Color(front));\n  const backHex = Color.toHexString(Color(back));\n  const frontWithoutHex = frontHex.replace(\"#\", \"\");\n  const backWithoutHex = backHex.replace(\"#\", \"\");\n  const factor = direction === \"left\" || direction === \"top\" ? -1 : 1;\n  const xScale = direction === \"left\" || direction === \"right\" ? factor * scale : 0;\n  const yScale = direction === \"top\" || direction === \"bottom\" ? factor * scale : 0;\n  if (patternType === \"wave\") {\n    pattern = `radial-gradient(circle at center center, ${front}, ${back}), repeating-radial-gradient(circle at center center, ${front}, ${front}, ${scale}px, transparent ${scale * 2}px, transparent ${scale}px)`;\n    blendMode = \"multiply\";\n  }\n  if (patternType === \"zigzag\") {\n    pattern = `linear-gradient(135deg, ${front} 25%, transparent 25%), linear-gradient(225deg, ${front} 25%, transparent 25%), linear-gradient(45deg, ${front} 25%, transparent 25%), linear-gradient(315deg, ${front} 25%, ${back} 25%)`;\n    position = `${scale}px 0, ${scale}px 0, 0 0, 0 0`;\n    size = `${scale * 2}px ${scale * 2}px`;\n    repeat = `repeat`;\n  }\n  if (patternType === \"diagonal\") {\n    pattern = `repeating-linear-gradient(45deg, ${front}, ${front} ${scale / 2}px, ${back} ${scale / 2}px, ${back} ${scale * 2}px )`;\n  }\n  if (patternType === \"diagonal-two\") {\n    pattern = `repeating-linear-gradient( 135deg, ${front}, ${front} ${scale / 2}px, ${back} ${scale / 2}px, ${back} ${scale * 2}px )`;\n  }\n  if (patternType === \"blocks\") {\n    pattern = `linear-gradient(30deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(150deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(30deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(150deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(60deg, ${back} 25%, transparent 25.5%, transparent 75%, ${back} 75%, ${back}), linear-gradient(60deg, ${back} 25%, transparent 25.5%, transparent 75%, ${back} 75%, ${back})`;\n    size = `${scale * 8}px ${scale * 14}px`;\n    position = `0 0, 0 0, ${scale * 4}px ${scale * 7}px, ${scale * 4}px ${scale * 7}px, 0 0, ${scale * 4}px ${scale * 7}px`;\n  }\n  if (patternType === \"polka\") {\n    pattern = `radial-gradient(${front} 1px, transparent 1px), radial-gradient(${front} 1px, ${back} 1px)`;\n    size = `${scale * 2}px ${scale * 2}px`;\n    position = `0 0, ${scale}px ${scale}px`;\n  }\n  if (patternType === \"rhombus\") {\n    pattern = `linear-gradient(135deg, ${front} 25%, transparent 25%), linear-gradient(225deg, ${front} 25%, transparent 25%), linear-gradient(45deg, ${front} 25%, transparent 25%), linear-gradient(315deg, ${front} 25%, ${back} 25%)`;\n    position = `${scale}px 0, ${scale}px 0, 0 0, 0 0`;\n    size = `${scale}px ${scale}px`;\n    repeat = \"repeat\";\n  }\n  if (patternType === \"stars\") {\n    pattern = `radial-gradient(ellipse ${scale}px ${scale}px, ${front}, ${front} 25%, ${back} 25%)`;\n    size = `${scale / 2}px ${scale / 2}px`;\n    if (shouldAnimate) {\n      backgroundPosAnimation = `${xScale}px ${yScale}px`;\n    }\n  }\n  if (patternType === \"circles\") {\n    pattern = `radial-gradient(circle at 100% 50%, ${back} 20%, ${front} 21%, ${front} 34%, transparent 35%, transparent), radial-gradient(circle at 0% 50%, ${back} 20%, ${front} 21%, ${front} 34%, ${back} 35%, ${back})`;\n    size = `${scale * 2}px ${scale * 2}px`;\n  }\n  if (patternType === \"rectangles\") {\n    pattern = `repeating-linear-gradient(45deg, ${front} 25%, transparent 25%, transparent 75%, ${front} 75%, ${front}), repeating-linear-gradient(45deg, ${front} 25%, ${back} 25%, ${back} 75%, ${front} 75%, ${front})`;\n    position = `0 0, ${scale}px ${scale}px`;\n    size = `${scale * 2}px ${scale * 2}px`;\n  }\n  if (patternType === \"lines\") {\n    pattern = `linear-gradient(0deg, ${front} 50%, ${back} 50%)`;\n    size = `${scale}px ${scale}px`;\n  }\n  if (patternType === \"lines-vertical\") {\n    pattern = `linear-gradient(to right, ${front} 50%, ${back} 50%)`;\n    size = `${scale}px ${scale}px`;\n  }\n  if (patternType === \"paper\") {\n    pattern = `linear-gradient(${front} 2px, transparent 2px), linear-gradient(90deg, ${front} 2px, transparent 2px), linear-gradient(${front} 1px, transparent 1px), linear-gradient(90deg, ${front} 1px, ${back} 1px)`;\n    size = `${scale * 5}px ${scale * 5}px, ${scale * 5}px ${scale * 5}px, ${scale}px ${scale}px, ${scale}px ${scale}px`;\n    position = `-2px -2px, -2px -2px, -1px -1px, -1px -1px`;\n  }\n  if (patternType === \"crosses\") {\n    pattern = `url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' %3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23${frontWithoutHex}' %3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`;\n    size = `${scale * 4}px ${scale * 4}px`;\n    addBackground = back;\n  }\n  if (patternType === \"wave-lines\") {\n    pattern = `url(\"data:image/svg+xml,%3Csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23${frontWithoutHex}' fill-rule='evenodd'/%3E%3C/svg%3E\")`;\n    size = `${scale * 10}px ${scale * 2}px`;\n    addBackground = back;\n    if (shouldAnimate) {\n      backgroundPosAnimation = `${xScale * 10}px ${yScale * 2}px`;\n    }\n  }\n  if (patternType === \"clouds\") {\n    pattern = `url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='28'%3E%3Cpath fill='%23${frontWithoutHex}' d='M56 26v2h-7.75c2.3-1.27 4.94-2 7.75-2zm-26 2a2 2 0 1 0-4 0h-4.09A25.98 25.98 0 0 0 0 16v-2c.67 0 1.34.02 2 .07V14a2 2 0 0 0-2-2v-2a4 4 0 0 1 3.98 3.6 28.09 28.09 0 0 1 2.8-3.86A8 8 0 0 0 0 6V4a9.99 9.99 0 0 1 8.17 4.23c.94-.95 1.96-1.83 3.03-2.63A13.98 13.98 0 0 0 0 0h7.75c2 1.1 3.73 2.63 5.1 4.45 1.12-.72 2.3-1.37 3.53-1.93A20.1 20.1 0 0 0 14.28 0h2.7c.45.56.88 1.14 1.29 1.74 1.3-.48 2.63-.87 4-1.15-.11-.2-.23-.4-.36-.59H26v.07a28.4 28.4 0 0 1 4 0V0h4.09l-.37.59c1.38.28 2.72.67 4.01 1.15.4-.6.84-1.18 1.3-1.74h2.69a20.1 20.1 0 0 0-2.1 2.52c1.23.56 2.41 1.2 3.54 1.93A16.08 16.08 0 0 1 48.25 0H56c-4.58 0-8.65 2.2-11.2 5.6 1.07.8 2.09 1.68 3.03 2.63A9.99 9.99 0 0 1 56 4v2a8 8 0 0 0-6.77 3.74c1.03 1.2 1.97 2.5 2.79 3.86A4 4 0 0 1 56 10v2a2 2 0 0 0-2 2.07 28.4 28.4 0 0 1 2-.07v2c-9.2 0-17.3 4.78-21.91 12H30zM7.75 28H0v-2c2.81 0 5.46.73 7.75 2zM56 20v2c-5.6 0-10.65 2.3-14.28 6h-2.7c4.04-4.89 10.15-8 16.98-8zm-39.03 8h-2.69C10.65 24.3 5.6 22 0 22v-2c6.83 0 12.94 3.11 16.97 8zm15.01-.4a28.09 28.09 0 0 1 2.8-3.86 8 8 0 0 0-13.55 0c1.03 1.2 1.97 2.5 2.79 3.86a4 4 0 0 1 7.96 0zm14.29-11.86c1.3-.48 2.63-.87 4-1.15a25.99 25.99 0 0 0-44.55 0c1.38.28 2.72.67 4.01 1.15a21.98 21.98 0 0 1 36.54 0zm-5.43 2.71c1.13-.72 2.3-1.37 3.54-1.93a19.98 19.98 0 0 0-32.76 0c1.23.56 2.41 1.2 3.54 1.93a15.98 15.98 0 0 1 25.68 0zm-4.67 3.78c.94-.95 1.96-1.83 3.03-2.63a13.98 13.98 0 0 0-22.4 0c1.07.8 2.09 1.68 3.03 2.63a9.99 9.99 0 0 1 16.34 0z'%3E%3C/path%3E%3C/svg%3E\")`;\n    size = `${scale * 5.6}px ${scale * 2.8}px`;\n    addBackground = back;\n    if (shouldAnimate) {\n      backgroundPosAnimation = `${xScale * 5.6}px ${yScale * 2.8}px`;\n    }\n  }\n  if (patternType === \"stars-two\") {\n    pattern = `url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath fill='%23${frontWithoutHex}' d='m16 8.764 2.351 4.764 5.257.764L19.804 18l.898 5.236L16 20.764l-4.702 2.472.898-5.236-3.804-3.708 5.257-.764Z'%3E%3C/path%3E%3C/svg%3E\")`;\n    size = `${scale * 3.2}px ${scale * 3.2}px`;\n    addBackground = back;\n  }\n  if (patternType === \"wiggle\") {\n    pattern = `url(\"data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23${frontWithoutHex}' %3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`;\n    addBackground = back;\n    size = `${scale * 5.2}px ${scale * 2.6}px`;\n    if (shouldAnimate) {\n      if (diagonal) {\n        backgroundPosAnimation = `-${scale * 5.2}px -${scale * 5.2}px`;\n      } else {\n        backgroundPosAnimation = `${scale * 5.2}px ${scale * 5.2}px`;\n      }\n    }\n  }\n  if (patternType === \"groovy\") {\n    pattern = `url(\"data:image/svg+xml,%3Csvg width='24' height='40' viewBox='0 0 24 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40c5.523 0 10-4.477 10-10V0C4.477 0 0 4.477 0 10v30zm22 0c-5.523 0-10-4.477-10-10V0c5.523 0 10 4.477 10 10v30z' fill='%23${frontWithoutHex}' fill-rule='evenodd'/%3E%3C/svg%3E\")`;\n    addBackground = back;\n    size = `${scale * 2.4}px ${scale * 4}px`;\n    if (shouldAnimate) {\n      backgroundPosAnimation = `${xScale * 2.4}px ${yScale * 4}px`;\n    }\n  }\n  if (patternType === \"plus\") {\n    pattern = `url(\"data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23${frontWithoutHex}' %3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`;\n    addBackground = back;\n    size = `${scale * 6}px ${scale * 6}px`;\n  }\n  return /*#__PURE__*/_jsx(motion.div, {\n    style: {\n      width: \"100%\",\n      height: \"100%\",\n      backgroundColor: addBackground ? addBackground : \"transparent\",\n      backgroundImage: pattern,\n      backgroundPosition: position,\n      backgroundSize: size,\n      backgroundRepeat: repeat,\n      backgroundBlendMode: blendMode,\n      borderRadius: radius,\n      filter: filter\n    },\n    animate: shouldAnimate && {\n      backgroundPosition: backgroundPosAnimation\n    },\n    transition: {\n      type: \"tween\",\n      ease: \"linear\",\n      duration: duration,\n      repeat: Infinity,\n      repeatType: \"loop\"\n    }\n  });\n}\n;\nPattern.displayName = \"Pattern\"; /* Property Controls */\naddPropertyControls(Pattern, {\n  patternType: {\n    type: ControlType.Enum,\n    defaultValue: \"wave-lines\",\n    options: [\"wave-lines\", \"clouds\", \"wiggle\", \"groovy\", \"plus\", \"circles\", \"rectangles\", \"lines\", \"lines-vertical\", \"diagonal\", \"diagonal-two\", \"blocks\", \"wave\", \"zigzag\", \"polka\", \"rhombus\", \"stars\", \"stars-two\", \"paper\", \"crosses\"],\n    optionTitles: [\"Wave Lines\", \"Clouds\", \"Wiggle\", \"Groovy\", \"Plus\", \"Circles\", \"Rectangles\", \"Lines\", \"Lines Vertical\", \"Diagonal\", \"Diagonal 2\", \"Blocks\", \"Wave\", \"ZigZag\", \"Polka\", \"Rhombus\", \"Stars\", \"Stars 2\", \"Paper\", \"Crosses\"],\n    title: \"Type\"\n  },\n  front: {\n    type: ControlType.Color,\n    title: \"Front\",\n    defaultValue: \"#FFF\"\n  },\n  back: {\n    type: ControlType.Color,\n    title: \"Back\",\n    defaultValue: \"#2DD\"\n  },\n  scale: {\n    type: ControlType.Number,\n    min: 1,\n    max: 100,\n    step: 1,\n    defaultValue: 10\n  },\n  radius: {\n    type: ControlType.Number,\n    min: 0,\n    max: 100,\n    step: 1,\n    defaultValue: 0\n  },\n  shouldAnimate: {\n    type: ControlType.Boolean,\n    title: \"Animate\",\n    defaultValue: false,\n    hidden(props) {\n      return props.patternType !== \"wave-lines\" && props.patternType !== \"wiggle\" && props.patternType !== \"clouds\" && props.patternType !== \"stars\" && props.patternType !== \"groovy\";\n    }\n  },\n  direction: {\n    type: ControlType.Enum,\n    title: \"Direction\",\n    options: [\"left\", \"right\", \"top\", \"bottom\"],\n    optionIcons: [\"direction-left\", \"direction-right\", \"direction-up\", \"direction-down\"],\n    optionTitles: [\"Left\", \"Right\", \"Top\", \"Bottom\"],\n    defaultValue: \"left\",\n    displaySegmentedControl: true,\n    hidden(props) {\n      return props.patternType === \"wiggle\" || props.shouldAnimate === false;\n    }\n  },\n  diagonal: {\n    type: ControlType.Boolean,\n    title: \"Direction\",\n    defaultValue: true,\n    enabledTitle: \"TL\",\n    disabledTitle: \"BR\",\n    hidden(props) {\n      return props.patternType !== \"wiggle\";\n    }\n  },\n  duration: {\n    type: ControlType.Number,\n    min: 0,\n    max: 50,\n    step: .1,\n    defaultValue: 5,\n    hidden(props) {\n      return props.shouldAnimate === false;\n    }\n  }\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Pattern\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerDisableUnlink\": \"*\",\n        \"framerIntrinsicHeight\": \"200\",\n        \"framerContractVersion\": \"1\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerIntrinsicWidth\": \"200\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Pattern.map", "// Generated by Framer (22766ad-dev)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, Image, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nconst cycleOrder = [\"PE7Qwe2Oh\", \"KMhqu83EV\", \"oIliGtiNn\", \"X1Qo1qNAr\", \"rnA2R9Aov\", \"MQoC3B84E\", \"phB_W_0uv\", \"f_Na07FVg\", \"bgQpEjJby\", \"MspSY1V5i\", \"qeC0NH4ds\", \"Sh8MyUst3\", \"UKcDdlohQ\", \"O6xi_hr52\", \"lAgEIzbiv\", \"qmJEr0geo\", \"xj5Hk8Tve\", \"pUJ8V9Jiq\", \"LoDpd8qmS\", \"guzhZD7WD\"];\nconst variantClassNames = {\n  bgQpEjJby: \"framer-v-1f1jiqf\",\n  f_Na07FVg: \"framer-v-crg4ys\",\n  guzhZD7WD: \"framer-v-1u87sx2\",\n  KMhqu83EV: \"framer-v-1o90sj9\",\n  lAgEIzbiv: \"framer-v-1hnyl7n\",\n  LoDpd8qmS: \"framer-v-1y3ax6t\",\n  MQoC3B84E: \"framer-v-dvhg7n\",\n  MspSY1V5i: \"framer-v-1azs8x\",\n  O6xi_hr52: \"framer-v-1v2ki55\",\n  oIliGtiNn: \"framer-v-vxh3qt\",\n  PE7Qwe2Oh: \"framer-v-1d4efzn\",\n  phB_W_0uv: \"framer-v-1hruzq2\",\n  pUJ8V9Jiq: \"framer-v-fujjog\",\n  qeC0NH4ds: \"framer-v-1en85dl\",\n  qmJEr0geo: \"framer-v-1g19hwc\",\n  rnA2R9Aov: \"framer-v-13g2qre\",\n  Sh8MyUst3: \"framer-v-1f3e6ej\",\n  UKcDdlohQ: \"framer-v-t3e72u\",\n  X1Qo1qNAr: \"framer-v-elzcqx\",\n  xj5Hk8Tve: \"framer-v-1vtud9u\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst humanReadableVariantMap = {\n  \"Squiggle 1\": \"PE7Qwe2Oh\",\n  \"Squiggle 10\": \"MspSY1V5i\",\n  \"Squiggle 11\": \"qeC0NH4ds\",\n  \"Squiggle 12\": \"Sh8MyUst3\",\n  \"Squiggle 13\": \"UKcDdlohQ\",\n  \"Squiggle 14\": \"O6xi_hr52\",\n  \"Squiggle 15\": \"lAgEIzbiv\",\n  \"Squiggle 16\": \"qmJEr0geo\",\n  \"Squiggle 17\": \"xj5Hk8Tve\",\n  \"Squiggle 18\": \"pUJ8V9Jiq\",\n  \"Squiggle 19\": \"LoDpd8qmS\",\n  \"Squiggle 2\": \"KMhqu83EV\",\n  \"Squiggle 20\": \"guzhZD7WD\",\n  \"Squiggle 3\": \"oIliGtiNn\",\n  \"Squiggle 4\": \"X1Qo1qNAr\",\n  \"Squiggle 5\": \"rnA2R9Aov\",\n  \"Squiggle 6\": \"MQoC3B84E\",\n  \"Squiggle 7\": \"phB_W_0uv\",\n  \"Squiggle 8\": \"f_Na07FVg\",\n  \"Squiggle 9\": \"bgQpEjJby\"\n};\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    duration: .3,\n    ease: [.44, 0, .56, 1],\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"PE7Qwe2Oh\",\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"PE7Qwe2Oh\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;\n  const isDisplayed = () => {\n    if (baseVariant === \"guzhZD7WD\") return true;\n    return false;\n  };\n  const isDisplayed1 = () => {\n    if (baseVariant === \"LoDpd8qmS\") return true;\n    return false;\n  };\n  const isDisplayed2 = () => {\n    if (baseVariant === \"pUJ8V9Jiq\") return true;\n    return false;\n  };\n  const isDisplayed3 = () => {\n    if (baseVariant === \"xj5Hk8Tve\") return true;\n    return false;\n  };\n  const isDisplayed4 = () => {\n    if (baseVariant === \"qmJEr0geo\") return true;\n    return false;\n  };\n  const isDisplayed5 = () => {\n    if (baseVariant === \"lAgEIzbiv\") return true;\n    return false;\n  };\n  const isDisplayed6 = () => {\n    if (baseVariant === \"O6xi_hr52\") return true;\n    return false;\n  };\n  const isDisplayed7 = () => {\n    if (baseVariant === \"UKcDdlohQ\") return true;\n    return false;\n  };\n  const isDisplayed8 = () => {\n    if (baseVariant === \"Sh8MyUst3\") return true;\n    return false;\n  };\n  const isDisplayed9 = () => {\n    if (baseVariant === \"qeC0NH4ds\") return true;\n    return false;\n  };\n  const isDisplayed10 = () => {\n    if (baseVariant === \"MspSY1V5i\") return true;\n    return false;\n  };\n  const isDisplayed11 = () => {\n    if (baseVariant === \"bgQpEjJby\") return true;\n    return false;\n  };\n  const isDisplayed12 = () => {\n    if (baseVariant === \"f_Na07FVg\") return true;\n    return false;\n  };\n  const isDisplayed13 = () => {\n    if (baseVariant === \"phB_W_0uv\") return true;\n    return false;\n  };\n  const isDisplayed14 = () => {\n    if (baseVariant === \"MQoC3B84E\") return true;\n    return false;\n  };\n  const isDisplayed15 = () => {\n    if (baseVariant === \"rnA2R9Aov\") return true;\n    return false;\n  };\n  const isDisplayed16 = () => {\n    if (baseVariant === \"X1Qo1qNAr\") return true;\n    return false;\n  };\n  const isDisplayed17 = () => {\n    if (baseVariant === \"oIliGtiNn\") return true;\n    return false;\n  };\n  const isDisplayed18 = () => {\n    if (baseVariant === \"KMhqu83EV\") return true;\n    return false;\n  };\n  const isDisplayed19 = () => {\n    if ([\"KMhqu83EV\", \"oIliGtiNn\", \"X1Qo1qNAr\", \"rnA2R9Aov\", \"MQoC3B84E\", \"phB_W_0uv\", \"f_Na07FVg\", \"bgQpEjJby\", \"MspSY1V5i\", \"qeC0NH4ds\", \"Sh8MyUst3\", \"UKcDdlohQ\", \"O6xi_hr52\", \"lAgEIzbiv\", \"qmJEr0geo\", \"xj5Hk8Tve\", \"pUJ8V9Jiq\", \"LoDpd8qmS\", \"guzhZD7WD\"].includes(baseVariant)) return false;\n    return true;\n  };\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-xIUJb\", classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        ...restProps,\n        background: {\n          alt: \"\",\n          fit: \"fill\",\n          intrinsicHeight: 800,\n          intrinsicWidth: 800,\n          pixelHeight: 1600,\n          pixelWidth: 1600,\n          sizes: \"800px\",\n          src: new URL(\"https://framerusercontent.com/images/grKeC7LspLoStyfrcBYxRXFV8.png?scale-down-to=1024\").href,\n          srcSet: `${new URL(\"https://framerusercontent.com/images/grKeC7LspLoStyfrcBYxRXFV8.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/grKeC7LspLoStyfrcBYxRXFV8.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/grKeC7LspLoStyfrcBYxRXFV8.png\").href} 1600w`\n        },\n        className: cx(\"framer-1d4efzn\", className),\n        \"data-framer-name\": \"Squiggle 1\",\n        layoutDependency: layoutDependency,\n        layoutId: \"PE7Qwe2Oh\",\n        ref: ref,\n        style: {\n          ...style\n        },\n        transition: transition,\n        ...addPropertyOverrides({\n          bgQpEjJby: {\n            \"data-framer-name\": \"Squiggle 9\"\n          },\n          f_Na07FVg: {\n            \"data-framer-name\": \"Squiggle 8\"\n          },\n          guzhZD7WD: {\n            \"data-framer-name\": \"Squiggle 20\"\n          },\n          KMhqu83EV: {\n            \"data-framer-name\": \"Squiggle 2\"\n          },\n          lAgEIzbiv: {\n            \"data-framer-name\": \"Squiggle 15\"\n          },\n          LoDpd8qmS: {\n            \"data-framer-name\": \"Squiggle 19\"\n          },\n          MQoC3B84E: {\n            \"data-framer-name\": \"Squiggle 6\"\n          },\n          MspSY1V5i: {\n            \"data-framer-name\": \"Squiggle 10\"\n          },\n          O6xi_hr52: {\n            \"data-framer-name\": \"Squiggle 14\"\n          },\n          oIliGtiNn: {\n            \"data-framer-name\": \"Squiggle 3\"\n          },\n          phB_W_0uv: {\n            \"data-framer-name\": \"Squiggle 7\"\n          },\n          pUJ8V9Jiq: {\n            \"data-framer-name\": \"Squiggle 18\"\n          },\n          qeC0NH4ds: {\n            \"data-framer-name\": \"Squiggle 11\"\n          },\n          qmJEr0geo: {\n            \"data-framer-name\": \"Squiggle 16\"\n          },\n          rnA2R9Aov: {\n            \"data-framer-name\": \"Squiggle 5\"\n          },\n          Sh8MyUst3: {\n            \"data-framer-name\": \"Squiggle 12\"\n          },\n          UKcDdlohQ: {\n            \"data-framer-name\": \"Squiggle 13\"\n          },\n          X1Qo1qNAr: {\n            \"data-framer-name\": \"Squiggle 4\"\n          },\n          xj5Hk8Tve: {\n            \"data-framer-name\": \"Squiggle 17\"\n          }\n        }, baseVariant, gestureVariant),\n        children: [isDisplayed() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/QOzP1jJP3WnEJBT1umaRWakgSeU.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/QOzP1jJP3WnEJBT1umaRWakgSeU.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/QOzP1jJP3WnEJBT1umaRWakgSeU.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/QOzP1jJP3WnEJBT1umaRWakgSeU.png\").href} 1600w`\n          },\n          className: \"framer-komx6o\",\n          \"data-framer-name\": \"Squiggle 20\",\n          layoutDependency: layoutDependency,\n          layoutId: \"RD0nyhxUw\",\n          transition: transition,\n          ...addPropertyOverrides({\n            guzhZD7WD: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/QOzP1jJP3WnEJBT1umaRWakgSeU.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/QOzP1jJP3WnEJBT1umaRWakgSeU.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/QOzP1jJP3WnEJBT1umaRWakgSeU.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/QOzP1jJP3WnEJBT1umaRWakgSeU.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed1() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/i6nRWPolxLWyRTvebyasE43JpW4.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/i6nRWPolxLWyRTvebyasE43JpW4.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/i6nRWPolxLWyRTvebyasE43JpW4.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/i6nRWPolxLWyRTvebyasE43JpW4.png\").href} 1600w`\n          },\n          className: \"framer-1nzhcfz\",\n          \"data-framer-name\": \"Squiggle 19\",\n          layoutDependency: layoutDependency,\n          layoutId: \"FOKTH4EH_\",\n          transition: transition,\n          ...addPropertyOverrides({\n            LoDpd8qmS: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/i6nRWPolxLWyRTvebyasE43JpW4.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/i6nRWPolxLWyRTvebyasE43JpW4.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/i6nRWPolxLWyRTvebyasE43JpW4.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/i6nRWPolxLWyRTvebyasE43JpW4.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed2() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/pic0Invnuoy8YLI0bVXro1ajJCc.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/pic0Invnuoy8YLI0bVXro1ajJCc.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/pic0Invnuoy8YLI0bVXro1ajJCc.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/pic0Invnuoy8YLI0bVXro1ajJCc.png\").href} 1600w`\n          },\n          className: \"framer-s3r18z\",\n          \"data-framer-name\": \"Squiggle 18\",\n          layoutDependency: layoutDependency,\n          layoutId: \"Sn2VxcGIX\",\n          transition: transition,\n          ...addPropertyOverrides({\n            pUJ8V9Jiq: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/pic0Invnuoy8YLI0bVXro1ajJCc.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/pic0Invnuoy8YLI0bVXro1ajJCc.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/pic0Invnuoy8YLI0bVXro1ajJCc.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/pic0Invnuoy8YLI0bVXro1ajJCc.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed3() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/V8utg2J1g7RY8sVbjcGiP9QWu7s.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/V8utg2J1g7RY8sVbjcGiP9QWu7s.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/V8utg2J1g7RY8sVbjcGiP9QWu7s.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/V8utg2J1g7RY8sVbjcGiP9QWu7s.png\").href} 1600w`\n          },\n          className: \"framer-g48ek7\",\n          \"data-framer-name\": \"Squiggle 17\",\n          layoutDependency: layoutDependency,\n          layoutId: \"y7GwD_Hy6\",\n          transition: transition,\n          ...addPropertyOverrides({\n            xj5Hk8Tve: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/V8utg2J1g7RY8sVbjcGiP9QWu7s.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/V8utg2J1g7RY8sVbjcGiP9QWu7s.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/V8utg2J1g7RY8sVbjcGiP9QWu7s.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/V8utg2J1g7RY8sVbjcGiP9QWu7s.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed4() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/Pmmvryu8f044FKI424PTTRBEs.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/Pmmvryu8f044FKI424PTTRBEs.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/Pmmvryu8f044FKI424PTTRBEs.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/Pmmvryu8f044FKI424PTTRBEs.png\").href} 1600w`\n          },\n          className: \"framer-yvzk5c\",\n          \"data-framer-name\": \"Squiggle 16\",\n          layoutDependency: layoutDependency,\n          layoutId: \"CmFNMPnFG\",\n          transition: transition,\n          ...addPropertyOverrides({\n            qmJEr0geo: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/Pmmvryu8f044FKI424PTTRBEs.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/Pmmvryu8f044FKI424PTTRBEs.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/Pmmvryu8f044FKI424PTTRBEs.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/Pmmvryu8f044FKI424PTTRBEs.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed5() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/YIoiUJtQn68482kkuqjy8xtZncw.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/YIoiUJtQn68482kkuqjy8xtZncw.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/YIoiUJtQn68482kkuqjy8xtZncw.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/YIoiUJtQn68482kkuqjy8xtZncw.png\").href} 1600w`\n          },\n          className: \"framer-1ovx5kg\",\n          \"data-framer-name\": \"Squiggle 15\",\n          layoutDependency: layoutDependency,\n          layoutId: \"DceY4X3a4\",\n          transition: transition,\n          ...addPropertyOverrides({\n            lAgEIzbiv: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/YIoiUJtQn68482kkuqjy8xtZncw.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/YIoiUJtQn68482kkuqjy8xtZncw.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/YIoiUJtQn68482kkuqjy8xtZncw.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/YIoiUJtQn68482kkuqjy8xtZncw.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed6() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/NQ3aVuPLXCjow7h5htmw7lEKdVw.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/NQ3aVuPLXCjow7h5htmw7lEKdVw.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/NQ3aVuPLXCjow7h5htmw7lEKdVw.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/NQ3aVuPLXCjow7h5htmw7lEKdVw.png\").href} 1600w`\n          },\n          className: \"framer-l45ehh\",\n          \"data-framer-name\": \"Squiggle 14\",\n          layoutDependency: layoutDependency,\n          layoutId: \"FLiUKSOsr\",\n          transition: transition,\n          ...addPropertyOverrides({\n            O6xi_hr52: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/NQ3aVuPLXCjow7h5htmw7lEKdVw.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/NQ3aVuPLXCjow7h5htmw7lEKdVw.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/NQ3aVuPLXCjow7h5htmw7lEKdVw.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/NQ3aVuPLXCjow7h5htmw7lEKdVw.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed7() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/sjxCI8Drb9SSo5IPq1k8GBowiE.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/sjxCI8Drb9SSo5IPq1k8GBowiE.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/sjxCI8Drb9SSo5IPq1k8GBowiE.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/sjxCI8Drb9SSo5IPq1k8GBowiE.png\").href} 1600w`\n          },\n          className: \"framer-1upf1hx\",\n          \"data-framer-name\": \"Squiggle 13\",\n          layoutDependency: layoutDependency,\n          layoutId: \"C6ylTWUUn\",\n          transition: transition,\n          ...addPropertyOverrides({\n            UKcDdlohQ: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/sjxCI8Drb9SSo5IPq1k8GBowiE.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/sjxCI8Drb9SSo5IPq1k8GBowiE.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/sjxCI8Drb9SSo5IPq1k8GBowiE.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/sjxCI8Drb9SSo5IPq1k8GBowiE.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed8() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/idMMPwRoqQmtfvesQ0qKcVTjOxg.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/idMMPwRoqQmtfvesQ0qKcVTjOxg.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/idMMPwRoqQmtfvesQ0qKcVTjOxg.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/idMMPwRoqQmtfvesQ0qKcVTjOxg.png\").href} 1600w`\n          },\n          className: \"framer-z0jleg\",\n          \"data-framer-name\": \"Squiggle 12\",\n          layoutDependency: layoutDependency,\n          layoutId: \"j_QXTBo0f\",\n          transition: transition,\n          ...addPropertyOverrides({\n            Sh8MyUst3: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/idMMPwRoqQmtfvesQ0qKcVTjOxg.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/idMMPwRoqQmtfvesQ0qKcVTjOxg.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/idMMPwRoqQmtfvesQ0qKcVTjOxg.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/idMMPwRoqQmtfvesQ0qKcVTjOxg.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed9() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/Uv14jobTnXQHnllDLIX2asR4Zvw.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/Uv14jobTnXQHnllDLIX2asR4Zvw.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/Uv14jobTnXQHnllDLIX2asR4Zvw.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/Uv14jobTnXQHnllDLIX2asR4Zvw.png\").href} 1600w`\n          },\n          className: \"framer-hsvi5x\",\n          \"data-framer-name\": \"Squiggle 11\",\n          layoutDependency: layoutDependency,\n          layoutId: \"fuKQVrkcM\",\n          transition: transition,\n          ...addPropertyOverrides({\n            qeC0NH4ds: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/Uv14jobTnXQHnllDLIX2asR4Zvw.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/Uv14jobTnXQHnllDLIX2asR4Zvw.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/Uv14jobTnXQHnllDLIX2asR4Zvw.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/Uv14jobTnXQHnllDLIX2asR4Zvw.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed10() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/kfWSF57EyzLKk5aYkjtlnyggxKU.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/kfWSF57EyzLKk5aYkjtlnyggxKU.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/kfWSF57EyzLKk5aYkjtlnyggxKU.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/kfWSF57EyzLKk5aYkjtlnyggxKU.png\").href} 1600w`\n          },\n          className: \"framer-1wnu5xw\",\n          \"data-framer-name\": \"Squiggle 10\",\n          layoutDependency: layoutDependency,\n          layoutId: \"RUNccOev9\",\n          transition: transition,\n          ...addPropertyOverrides({\n            MspSY1V5i: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/kfWSF57EyzLKk5aYkjtlnyggxKU.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/kfWSF57EyzLKk5aYkjtlnyggxKU.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/kfWSF57EyzLKk5aYkjtlnyggxKU.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/kfWSF57EyzLKk5aYkjtlnyggxKU.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed11() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/GP5r2vjCiWFQvlq4qdUJcibyWlE.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/GP5r2vjCiWFQvlq4qdUJcibyWlE.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/GP5r2vjCiWFQvlq4qdUJcibyWlE.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/GP5r2vjCiWFQvlq4qdUJcibyWlE.png\").href} 1600w`\n          },\n          className: \"framer-tlaek\",\n          \"data-framer-name\": \"Squiggle 9\",\n          layoutDependency: layoutDependency,\n          layoutId: \"NGzZS1lME\",\n          transition: transition,\n          ...addPropertyOverrides({\n            bgQpEjJby: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/GP5r2vjCiWFQvlq4qdUJcibyWlE.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/GP5r2vjCiWFQvlq4qdUJcibyWlE.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/GP5r2vjCiWFQvlq4qdUJcibyWlE.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/GP5r2vjCiWFQvlq4qdUJcibyWlE.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed12() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/gLVL2QaC3h4gJOhk25C4EFGtqfY.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/gLVL2QaC3h4gJOhk25C4EFGtqfY.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/gLVL2QaC3h4gJOhk25C4EFGtqfY.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/gLVL2QaC3h4gJOhk25C4EFGtqfY.png\").href} 1600w`\n          },\n          className: \"framer-6x4gig\",\n          \"data-framer-name\": \"Squiggle 8\",\n          layoutDependency: layoutDependency,\n          layoutId: \"viFdxRZxC\",\n          transition: transition,\n          ...addPropertyOverrides({\n            f_Na07FVg: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/gLVL2QaC3h4gJOhk25C4EFGtqfY.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/gLVL2QaC3h4gJOhk25C4EFGtqfY.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/gLVL2QaC3h4gJOhk25C4EFGtqfY.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/gLVL2QaC3h4gJOhk25C4EFGtqfY.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed13() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/H6tDpdaTTXc3RJGu804TmGu1mw.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/H6tDpdaTTXc3RJGu804TmGu1mw.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/H6tDpdaTTXc3RJGu804TmGu1mw.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/H6tDpdaTTXc3RJGu804TmGu1mw.png\").href} 1600w`\n          },\n          className: \"framer-ls7n8d\",\n          \"data-framer-name\": \"Squiggle 7\",\n          layoutDependency: layoutDependency,\n          layoutId: \"x1Z24doNb\",\n          transition: transition,\n          ...addPropertyOverrides({\n            phB_W_0uv: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/H6tDpdaTTXc3RJGu804TmGu1mw.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/H6tDpdaTTXc3RJGu804TmGu1mw.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/H6tDpdaTTXc3RJGu804TmGu1mw.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/H6tDpdaTTXc3RJGu804TmGu1mw.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed14() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/ylLGqvCBRAfMaDpYCxPmbNFVtU.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/ylLGqvCBRAfMaDpYCxPmbNFVtU.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/ylLGqvCBRAfMaDpYCxPmbNFVtU.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/ylLGqvCBRAfMaDpYCxPmbNFVtU.png\").href} 1600w`\n          },\n          className: \"framer-1qgajqi\",\n          \"data-framer-name\": \"Squiggle 6\",\n          layoutDependency: layoutDependency,\n          layoutId: \"RCrYGAmE2\",\n          transition: transition,\n          ...addPropertyOverrides({\n            MQoC3B84E: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/ylLGqvCBRAfMaDpYCxPmbNFVtU.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/ylLGqvCBRAfMaDpYCxPmbNFVtU.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/ylLGqvCBRAfMaDpYCxPmbNFVtU.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/ylLGqvCBRAfMaDpYCxPmbNFVtU.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed15() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/tWxCf6tZvRCos616cKV5PxR8Lh4.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/tWxCf6tZvRCos616cKV5PxR8Lh4.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/tWxCf6tZvRCos616cKV5PxR8Lh4.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/tWxCf6tZvRCos616cKV5PxR8Lh4.png\").href} 1600w`\n          },\n          className: \"framer-1kk5m9g\",\n          \"data-framer-name\": \"Squiggle 5\",\n          layoutDependency: layoutDependency,\n          layoutId: \"wdxkhiyIc\",\n          transition: transition,\n          ...addPropertyOverrides({\n            rnA2R9Aov: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/tWxCf6tZvRCos616cKV5PxR8Lh4.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/tWxCf6tZvRCos616cKV5PxR8Lh4.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/tWxCf6tZvRCos616cKV5PxR8Lh4.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/tWxCf6tZvRCos616cKV5PxR8Lh4.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed16() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/pq2TeLawbkeJCarurNVOzawp1o.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/pq2TeLawbkeJCarurNVOzawp1o.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/pq2TeLawbkeJCarurNVOzawp1o.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/pq2TeLawbkeJCarurNVOzawp1o.png\").href} 1600w`\n          },\n          className: \"framer-dmnnb2\",\n          \"data-framer-name\": \"Squiggle 4\",\n          layoutDependency: layoutDependency,\n          layoutId: \"sorOqKXpj\",\n          transition: transition,\n          ...addPropertyOverrides({\n            X1Qo1qNAr: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/pq2TeLawbkeJCarurNVOzawp1o.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/pq2TeLawbkeJCarurNVOzawp1o.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/pq2TeLawbkeJCarurNVOzawp1o.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/pq2TeLawbkeJCarurNVOzawp1o.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed17() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/zNv0bqwZNem81Muxx9HbBsnXuYI.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/zNv0bqwZNem81Muxx9HbBsnXuYI.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/zNv0bqwZNem81Muxx9HbBsnXuYI.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/zNv0bqwZNem81Muxx9HbBsnXuYI.png\").href} 1600w`\n          },\n          className: \"framer-1xyq17j\",\n          \"data-framer-name\": \"Squiggle 3\",\n          layoutDependency: layoutDependency,\n          layoutId: \"nDuz5DQEs\",\n          transition: transition,\n          ...addPropertyOverrides({\n            oIliGtiNn: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/zNv0bqwZNem81Muxx9HbBsnXuYI.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/zNv0bqwZNem81Muxx9HbBsnXuYI.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/zNv0bqwZNem81Muxx9HbBsnXuYI.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/zNv0bqwZNem81Muxx9HbBsnXuYI.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed18() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            src: new URL(\"https://framerusercontent.com/images/YWpYPzxKzGJutnq45wZZAkq7eI.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/YWpYPzxKzGJutnq45wZZAkq7eI.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/YWpYPzxKzGJutnq45wZZAkq7eI.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/YWpYPzxKzGJutnq45wZZAkq7eI.png\").href} 1600w`\n          },\n          className: \"framer-hwussw\",\n          \"data-framer-name\": \"Squiggle 2\",\n          layoutDependency: layoutDependency,\n          layoutId: \"CYxVGExM6\",\n          transition: transition,\n          ...addPropertyOverrides({\n            KMhqu83EV: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1600,\n                intrinsicWidth: 1600,\n                pixelHeight: 1600,\n                pixelWidth: 1600,\n                sizes: \"800px\",\n                src: new URL(\"https://framerusercontent.com/images/YWpYPzxKzGJutnq45wZZAkq7eI.png\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/YWpYPzxKzGJutnq45wZZAkq7eI.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/YWpYPzxKzGJutnq45wZZAkq7eI.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/YWpYPzxKzGJutnq45wZZAkq7eI.png\").href} 1600w`\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), isDisplayed19() && /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 1600,\n            intrinsicWidth: 1600,\n            pixelHeight: 1600,\n            pixelWidth: 1600,\n            sizes: \"800px\",\n            src: new URL(\"https://framerusercontent.com/images/grKeC7LspLoStyfrcBYxRXFV8.png\").href,\n            srcSet: `${new URL(\"https://framerusercontent.com/images/grKeC7LspLoStyfrcBYxRXFV8.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/grKeC7LspLoStyfrcBYxRXFV8.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/grKeC7LspLoStyfrcBYxRXFV8.png\").href} 1600w`\n          },\n          className: \"framer-1iyhk8u\",\n          \"data-framer-name\": \"Squiggle 1\",\n          layoutDependency: layoutDependency,\n          layoutId: \"Udd7lNkmh\",\n          transition: transition\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-xIUJb [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-xIUJb .framer-1w5ofww { display: block; }\", \".framer-xIUJb .framer-1d4efzn { height: 800px; overflow: visible; position: relative; width: 800px; }\", \".framer-xIUJb .framer-komx6o, .framer-xIUJb .framer-1nzhcfz, .framer-xIUJb .framer-s3r18z, .framer-xIUJb .framer-g48ek7, .framer-xIUJb .framer-yvzk5c, .framer-xIUJb .framer-1ovx5kg, .framer-xIUJb .framer-l45ehh, .framer-xIUJb .framer-1upf1hx, .framer-xIUJb .framer-z0jleg, .framer-xIUJb .framer-hsvi5x, .framer-xIUJb .framer-1wnu5xw, .framer-xIUJb .framer-tlaek, .framer-xIUJb .framer-6x4gig, .framer-xIUJb .framer-ls7n8d, .framer-xIUJb .framer-1qgajqi, .framer-xIUJb .framer-1kk5m9g, .framer-xIUJb .framer-dmnnb2, .framer-xIUJb .framer-1xyq17j, .framer-xIUJb .framer-hwussw, .framer-xIUJb .framer-1iyhk8u { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\", \".framer-xIUJb.framer-v-1o90sj9 .framer-1d4efzn, .framer-xIUJb.framer-v-vxh3qt .framer-1d4efzn, .framer-xIUJb.framer-v-elzcqx .framer-1d4efzn, .framer-xIUJb.framer-v-13g2qre .framer-1d4efzn, .framer-xIUJb.framer-v-dvhg7n .framer-1d4efzn, .framer-xIUJb.framer-v-1hruzq2 .framer-1d4efzn, .framer-xIUJb.framer-v-crg4ys .framer-1d4efzn, .framer-xIUJb.framer-v-1f1jiqf .framer-1d4efzn, .framer-xIUJb.framer-v-1azs8x .framer-1d4efzn, .framer-xIUJb.framer-v-1en85dl .framer-1d4efzn, .framer-xIUJb.framer-v-1f3e6ej .framer-1d4efzn, .framer-xIUJb.framer-v-t3e72u .framer-1d4efzn, .framer-xIUJb.framer-v-1v2ki55 .framer-1d4efzn, .framer-xIUJb.framer-v-1hnyl7n .framer-1d4efzn, .framer-xIUJb.framer-v-1g19hwc .framer-1d4efzn, .framer-xIUJb.framer-v-1vtud9u .framer-1d4efzn, .framer-xIUJb.framer-v-fujjog .framer-1d4efzn, .framer-xIUJb.framer-v-1y3ax6t .framer-1d4efzn, .framer-xIUJb.framer-v-1u87sx2 .framer-1d4efzn { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 800px); }\"]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     * @framerIntrinsicHeight 800\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     * @framerIntrinsicWidth 800\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"KMhqu83EV\":{\"layout\":[\"fixed\",\"fixed\"]},\"oIliGtiNn\":{\"layout\":[\"fixed\",\"fixed\"]},\"X1Qo1qNAr\":{\"layout\":[\"fixed\",\"fixed\"]},\"rnA2R9Aov\":{\"layout\":[\"fixed\",\"fixed\"]},\"MQoC3B84E\":{\"layout\":[\"fixed\",\"fixed\"]},\"phB_W_0uv\":{\"layout\":[\"fixed\",\"fixed\"]},\"f_Na07FVg\":{\"layout\":[\"fixed\",\"fixed\"]},\"bgQpEjJby\":{\"layout\":[\"fixed\",\"fixed\"]},\"MspSY1V5i\":{\"layout\":[\"fixed\",\"fixed\"]},\"qeC0NH4ds\":{\"layout\":[\"fixed\",\"fixed\"]},\"Sh8MyUst3\":{\"layout\":[\"fixed\",\"fixed\"]},\"UKcDdlohQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"O6xi_hr52\":{\"layout\":[\"fixed\",\"fixed\"]},\"lAgEIzbiv\":{\"layout\":[\"fixed\",\"fixed\"]},\"qmJEr0geo\":{\"layout\":[\"fixed\",\"fixed\"]},\"xj5Hk8Tve\":{\"layout\":[\"fixed\",\"fixed\"]},\"pUJ8V9Jiq\":{\"layout\":[\"fixed\",\"fixed\"]},\"LoDpd8qmS\":{\"layout\":[\"fixed\",\"fixed\"]},\"guzhZD7WD\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     */\nconst Framerd9P9LNviq = withCSS(Component, css, \"framer-xIUJb\");\nexport default Framerd9P9LNviq;\nFramerd9P9LNviq.displayName = \"Squiggle\";\nFramerd9P9LNviq.defaultProps = {\n  height: 800,\n  width: 800\n};\naddPropertyControls(Framerd9P9LNviq, {\n  variant: {\n    options: [\"PE7Qwe2Oh\", \"KMhqu83EV\", \"oIliGtiNn\", \"X1Qo1qNAr\", \"rnA2R9Aov\", \"MQoC3B84E\", \"phB_W_0uv\", \"f_Na07FVg\", \"bgQpEjJby\", \"MspSY1V5i\", \"qeC0NH4ds\", \"Sh8MyUst3\", \"UKcDdlohQ\", \"O6xi_hr52\", \"lAgEIzbiv\", \"qmJEr0geo\", \"xj5Hk8Tve\", \"pUJ8V9Jiq\", \"LoDpd8qmS\", \"guzhZD7WD\"],\n    optionTitles: [\"Squiggle 1\", \"Squiggle 2\", \"Squiggle 3\", \"Squiggle 4\", \"Squiggle 5\", \"Squiggle 6\", \"Squiggle 7\", \"Squiggle 8\", \"Squiggle 9\", \"Squiggle 10\", \"Squiggle 11\", \"Squiggle 12\", \"Squiggle 13\", \"Squiggle 14\", \"Squiggle 15\", \"Squiggle 16\", \"Squiggle 17\", \"Squiggle 18\", \"Squiggle 19\", \"Squiggle 20\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  }\n});\naddFonts(Framerd9P9LNviq, []);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Framerd9P9LNviq\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"800\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KMhqu83EV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oIliGtiNn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"X1Qo1qNAr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rnA2R9Aov\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MQoC3B84E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"phB_W_0uv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"f_Na07FVg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bgQpEjJby\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MspSY1V5i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qeC0NH4ds\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Sh8MyUst3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UKcDdlohQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O6xi_hr52\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lAgEIzbiv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qmJEr0geo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xj5Hk8Tve\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pUJ8V9Jiq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LoDpd8qmS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"guzhZD7WD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\n        \"framerIntrinsicHeight\": \"800\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./d9P9LNviq.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n  position: \"relative\",\n  width: \"100%\",\n  height: \"100%\",\n  display: \"flex\",\n  justifyContent: \"center\",\n  alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n  ...containerStyles,\n  borderRadius: 6,\n  background: \"rgba(136, 85, 255, 0.3)\",\n  color: \"#85F\",\n  border: \"1px dashed #85F\",\n  flexDirection: \"column\"\n};\nexport const defaultEvents = {\n  onClick: {\n    type: ControlType.EventHandler\n  },\n  onMouseEnter: {\n    type: ControlType.EventHandler\n  },\n  onMouseLeave: {\n    type: ControlType.EventHandler\n  }\n};\nexport const fontSizeOptions = {\n  type: ControlType.Number,\n  title: \"Font Size\",\n  min: 2,\n  max: 200,\n  step: 1,\n  displayStepper: true\n};\nexport const fontControls = {\n  font: {\n    type: ControlType.Boolean,\n    title: \"Font\",\n    defaultValue: false,\n    disabledTitle: \"Default\",\n    enabledTitle: \"Custom\"\n  },\n  fontFamily: {\n    type: ControlType.String,\n    title: \"Family\",\n    placeholder: \"Inter\",\n    hidden: ({\n      font\n    }) => !font\n  },\n  fontWeight: {\n    type: ControlType.Enum,\n    title: \"Weight\",\n    options: [100, 200, 300, 400, 500, 600, 700, 800, 900],\n    optionTitles: [\"Thin\", \"Extra-light\", \"Light\", \"Regular\", \"Medium\", \"Semi-bold\", \"Bold\", \"Extra-bold\", \"Black\"],\n    hidden: ({\n      font\n    }) => !font\n  }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n  af: \"Afrikaans\",\n  sq: \"Albanian\",\n  an: \"Aragonese\",\n  ar: \"Arabic (Standard)\",\n  \"ar-dz\": \"Arabic (Algeria)\",\n  \"ar-bh\": \"Arabic (Bahrain)\",\n  \"ar-eg\": \"Arabic (Egypt)\",\n  \"ar-iq\": \"Arabic (Iraq)\",\n  \"ar-jo\": \"Arabic (Jordan)\",\n  \"ar-kw\": \"Arabic (Kuwait)\",\n  \"ar-lb\": \"Arabic (Lebanon)\",\n  \"ar-ly\": \"Arabic (Libya)\",\n  \"ar-ma\": \"Arabic (Morocco)\",\n  \"ar-om\": \"Arabic (Oman)\",\n  \"ar-qa\": \"Arabic (Qatar)\",\n  \"ar-sa\": \"Arabic (Saudi Arabia)\",\n  \"ar-sy\": \"Arabic (Syria)\",\n  \"ar-tn\": \"Arabic (Tunisia)\",\n  \"ar-ae\": \"Arabic (U.A.E.)\",\n  \"ar-ye\": \"Arabic (Yemen)\",\n  hy: \"Armenian\",\n  as: \"Assamese\",\n  ast: \"Asturian\",\n  az: \"Azerbaijani\",\n  eu: \"Basque\",\n  bg: \"Bulgarian\",\n  be: \"Belarusian\",\n  bn: \"Bengali\",\n  bs: \"Bosnian\",\n  br: \"Breton\",\n  my: \"Burmese\",\n  ca: \"Catalan\",\n  ch: \"Chamorro\",\n  ce: \"Chechen\",\n  zh: \"Chinese\",\n  \"zh-hk\": \"Chinese (Hong Kong)\",\n  \"zh-cn\": \"Chinese (PRC)\",\n  \"zh-sg\": \"Chinese (Singapore)\",\n  \"zh-tw\": \"Chinese (Taiwan)\",\n  cv: \"Chuvash\",\n  co: \"Corsican\",\n  cr: \"Cree\",\n  hr: \"Croatian\",\n  cs: \"Czech\",\n  da: \"Danish\",\n  nl: \"Dutch (Standard)\",\n  \"nl-be\": \"Dutch (Belgian)\",\n  en: \"English\",\n  \"en-au\": \"English (Australia)\",\n  \"en-bz\": \"English (Belize)\",\n  \"en-ca\": \"English (Canada)\",\n  \"en-ie\": \"English (Ireland)\",\n  \"en-jm\": \"English (Jamaica)\",\n  \"en-nz\": \"English (New Zealand)\",\n  \"en-ph\": \"English (Philippines)\",\n  \"en-za\": \"English (South Africa)\",\n  \"en-tt\": \"English (Trinidad & Tobago)\",\n  \"en-gb\": \"English (United Kingdom)\",\n  \"en-us\": \"English (United States)\",\n  \"en-zw\": \"English (Zimbabwe)\",\n  eo: \"Esperanto\",\n  et: \"Estonian\",\n  fo: \"Faeroese\",\n  fa: \"Farsi\",\n  fj: \"Fijian\",\n  fi: \"Finnish\",\n  fr: \"French (Standard)\",\n  \"fr-be\": \"French (Belgium)\",\n  \"fr-ca\": \"French (Canada)\",\n  \"fr-fr\": \"French (France)\",\n  \"fr-lu\": \"French (Luxembourg)\",\n  \"fr-mc\": \"French (Monaco)\",\n  \"fr-ch\": \"French (Switzerland)\",\n  fy: \"Frisian\",\n  fur: \"Friulian\",\n  gd: \"Gaelic (Scots)\",\n  \"gd-ie\": \"Gaelic (Irish)\",\n  gl: \"Galacian\",\n  ka: \"Georgian\",\n  de: \"German (Standard)\",\n  \"de-at\": \"German (Austria)\",\n  \"de-de\": \"German (Germany)\",\n  \"de-li\": \"German (Liechtenstein)\",\n  \"de-lu\": \"German (Luxembourg)\",\n  \"de-ch\": \"German (Switzerland)\",\n  el: \"Greek\",\n  gu: \"Gujurati\",\n  ht: \"Haitian\",\n  he: \"Hebrew\",\n  hi: \"Hindi\",\n  hu: \"Hungarian\",\n  is: \"Icelandic\",\n  id: \"Indonesian\",\n  iu: \"Inuktitut\",\n  ga: \"Irish\",\n  it: \"Italian (Standard)\",\n  \"it-ch\": \"Italian (Switzerland)\",\n  ja: \"Japanese\",\n  kn: \"Kannada\",\n  ks: \"Kashmiri\",\n  kk: \"Kazakh\",\n  km: \"Khmer\",\n  ky: \"Kirghiz\",\n  tlh: \"Klingon\",\n  ko: \"Korean\",\n  \"ko-kp\": \"Korean (North Korea)\",\n  \"ko-kr\": \"Korean (South Korea)\",\n  la: \"Latin\",\n  lv: \"Latvian\",\n  lt: \"Lithuanian\",\n  lb: \"Luxembourgish\",\n  mk: \"FYRO Macedonian\",\n  ms: \"Malay\",\n  ml: \"Malayalam\",\n  mt: \"Maltese\",\n  mi: \"Maori\",\n  mr: \"Marathi\",\n  mo: \"Moldavian\",\n  nv: \"Navajo\",\n  ng: \"Ndonga\",\n  ne: \"Nepali\",\n  no: \"Norwegian\",\n  nb: \"Norwegian (Bokmal)\",\n  nn: \"Norwegian (Nynorsk)\",\n  oc: \"Occitan\",\n  or: \"Oriya\",\n  om: \"Oromo\",\n  \"fa-ir\": \"Persian/Iran\",\n  pl: \"Polish\",\n  pt: \"Portuguese\",\n  \"pt-br\": \"Portuguese (Brazil)\",\n  pa: \"Punjabi\",\n  \"pa-in\": \"Punjabi (India)\",\n  \"pa-pk\": \"Punjabi (Pakistan)\",\n  qu: \"Quechua\",\n  rm: \"Rhaeto-Romanic\",\n  ro: \"Romanian\",\n  \"ro-mo\": \"Romanian (Moldavia)\",\n  ru: \"Russian\",\n  \"ru-mo\": \"Russian (Moldavia)\",\n  sz: \"Sami (Lappish)\",\n  sg: \"Sango\",\n  sa: \"Sanskrit\",\n  sc: \"Sardinian\",\n  sd: \"Sindhi\",\n  si: \"Singhalese\",\n  sr: \"Serbian\",\n  sk: \"Slovak\",\n  sl: \"Slovenian\",\n  so: \"Somani\",\n  sb: \"Sorbian\",\n  es: \"Spanish\",\n  \"es-ar\": \"Spanish (Argentina)\",\n  \"es-bo\": \"Spanish (Bolivia)\",\n  \"es-cl\": \"Spanish (Chile)\",\n  \"es-co\": \"Spanish (Colombia)\",\n  \"es-cr\": \"Spanish (Costa Rica)\",\n  \"es-do\": \"Spanish (Dominican Republic)\",\n  \"es-ec\": \"Spanish (Ecuador)\",\n  \"es-sv\": \"Spanish (El Salvador)\",\n  \"es-gt\": \"Spanish (Guatemala)\",\n  \"es-hn\": \"Spanish (Honduras)\",\n  \"es-mx\": \"Spanish (Mexico)\",\n  \"es-ni\": \"Spanish (Nicaragua)\",\n  \"es-pa\": \"Spanish (Panama)\",\n  \"es-py\": \"Spanish (Paraguay)\",\n  \"es-pe\": \"Spanish (Peru)\",\n  \"es-pr\": \"Spanish (Puerto Rico)\",\n  \"es-es\": \"Spanish (Spain)\",\n  \"es-uy\": \"Spanish (Uruguay)\",\n  \"es-ve\": \"Spanish (Venezuela)\",\n  sx: \"Sutu\",\n  sw: \"Swahili\",\n  sv: \"Swedish\",\n  \"sv-fi\": \"Swedish (Finland)\",\n  \"sv-sv\": \"Swedish (Sweden)\",\n  ta: \"Tamil\",\n  tt: \"Tatar\",\n  te: \"Teluga\",\n  th: \"Thai\",\n  tig: \"Tigre\",\n  ts: \"Tsonga\",\n  tn: \"Tswana\",\n  tr: \"Turkish\",\n  tk: \"Turkmen\",\n  uk: \"Ukrainian\",\n  hsb: \"Upper Sorbian\",\n  ur: \"Urdu\",\n  ve: \"Venda\",\n  vi: \"Vietnamese\",\n  vo: \"Volapuk\",\n  wa: \"Walloon\",\n  cy: \"Welsh\",\n  xh: \"Xhosa\",\n  ji: \"Yiddish\",\n  zu: \"Zulu\"\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"fontSizeOptions\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"fontControls\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"localeOptions\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"fontStack\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"emptyStateStyle\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"containerStyles\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"defaultEvents\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    }\n  }\n};\n//# sourceMappingURL=./constants.map", "// @ts-ignore\nimport { fontStore } from \"framer\";\nimport { useEffect } from \"react\";\nimport { fontStack } from \"https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js\";\nconst fontWeights = {\n  100: \"Thin\",\n  200: \"Extra-light\",\n  300: \"Light\",\n  400: \"Regular\",\n  500: \"Medium\",\n  600: \"Semi-bold\",\n  700: \"Bold\",\n  800: \"Extra-bold\",\n  900: \"Black\"\n};\nexport function useFontControls(props) {\n  const {\n    fontFamily = \"Inter\",\n    fontSize = 16,\n    fontWeight = 400,\n    font = false\n  } = props;\n  const fontWeightName = fontWeights[fontWeight];\n  const customFontStack = `\"${fontFamily} ${fontWeightName}\", \"${fontFamily}\", ${fontStack}`;\n  const fontFamilyStyle = fontFamily ? {\n    fontSize,\n    fontWeight,\n    fontFamily: customFontStack\n  } : {\n    fontSize,\n    fontWeight\n  };\n  const fetchCustomFonts = async () => {\n    await fontStore.loadWebFontsFromSelectors([`CUSTOM;${fontFamily}`, `CUSTOM;${fontFamily} ${fontWeightName}`, `GF;${fontFamily}-${fontWeightName.toLowerCase()}`]).catch(e => console.error(e));\n  };\n  useEffect(() => {\n    if (font) fetchCustomFonts();\n  }, [font, fontFamily, fontWeight]);\n  return fontFamilyStyle;\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"useFontControls\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    }\n  }\n};\n//# sourceMappingURL=./useFontControls.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n  const {\n    borderRadius,\n    isMixedBorderRadius,\n    topLeftRadius,\n    topRightRadius,\n    bottomRightRadius,\n    bottomLeftRadius\n  } = props;\n  const radiusValue = useMemo(() => isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`, [borderRadius, isMixedBorderRadius, topLeftRadius, topRightRadius, bottomRightRadius, bottomLeftRadius]);\n  return radiusValue;\n}\nexport const borderRadiusControl = {\n  borderRadius: {\n    title: \"Radius\",\n    type: ControlType.FusedNumber,\n    toggleKey: \"isMixedBorderRadius\",\n    toggleTitles: [\"Radius\", \"Radius per corner\"],\n    valueKeys: [\"topLeftRadius\", \"topRightRadius\", \"bottomRightRadius\", \"bottomLeftRadius\"],\n    valueLabels: [\"TL\", \"TR\", \"BR\", \"BL\"],\n    min: 0\n  }\n};\nexport function usePadding(props) {\n  const {\n    padding,\n    paddingPerSide,\n    paddingTop,\n    paddingRight,\n    paddingBottom,\n    paddingLeft\n  } = props;\n  const paddingValue = useMemo(() => paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding, [padding, paddingPerSide, paddingTop, paddingRight, paddingBottom, paddingLeft]);\n  return paddingValue;\n}\nexport const paddingControl = {\n  padding: {\n    type: ControlType.FusedNumber,\n    toggleKey: \"paddingPerSide\",\n    toggleTitles: [\"Padding\", \"Padding per side\"],\n    valueKeys: [\"paddingTop\", \"paddingRight\", \"paddingBottom\", \"paddingLeft\"],\n    valueLabels: [\"T\", \"R\", \"B\", \"L\"],\n    min: 0,\n    title: \"Padding\"\n  }\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"borderRadiusControl\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"useRadius\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"RadiusProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"PaddingProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"usePadding\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"paddingControl\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    }\n  }\n};\n//# sourceMappingURL=./propUtils.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 (bdd6aa1)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, Link, RichText, useActiveVariantCallback, useLocaleInfo, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nconst cycleOrder = [\"IMOGPEpLp\", \"TD9zcZ1wF\", \"aUIEy1pJj\", \"mmenztBAM\"];\nconst variantClassNames = {\n  aUIEy1pJj: \"framer-v-13fbahj\",\n  IMOGPEpLp: \"framer-v-ot488g\",\n  mmenztBAM: \"framer-v-n5d2c7\",\n  TD9zcZ1wF: \"framer-v-kwil2t\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst humanReadableVariantMap = {\n  \"Phone Open\": \"mmenztBAM\",\n  Desktop: \"IMOGPEpLp\",\n  Phone: \"aUIEy1pJj\",\n  Tablet: \"TD9zcZ1wF\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _variant, ref;\n  return {\n    ...props,\n    variant: (ref = (_variant = humanReadableVariantMap[props.variant]) !== null && _variant !== void 0 ? _variant : props.variant) !== null && ref !== void 0 ? ref : \"IMOGPEpLp\"\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"IMOGPEpLp\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const {\n    activeVariantCallback,\n    delay\n  } = useActiveVariantCallback(baseVariant);\n  const onTap1mpyeb4 = activeVariantCallback(async (...args) => {\n    setVariant(\"mmenztBAM\");\n  });\n  const onTap1ln67n2 = activeVariantCallback(async (...args) => {\n    setVariant(\"aUIEy1pJj\");\n  });\n  const isDisplayed = () => {\n    if ([\"aUIEy1pJj\", \"mmenztBAM\"].includes(baseVariant)) return true;\n    return false;\n  };\n  const isDisplayed1 = () => {\n    if (baseVariant === \"aUIEy1pJj\") return false;\n    return true;\n  };\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-PYJgr\", classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-ot488g\", className),\n          \"data-framer-name\": \"Desktop\",\n          layoutDependency: layoutDependency,\n          layoutId: \"IMOGPEpLp\",\n          ref: ref,\n          style: {\n            backgroundColor: \"rgb(17, 17, 17)\",\n            ...style\n          },\n          ...addPropertyOverrides({\n            aUIEy1pJj: {\n              \"data-framer-name\": \"Phone\"\n            },\n            mmenztBAM: {\n              \"data-framer-name\": \"Phone Open\"\n            },\n            TD9zcZ1wF: {\n              \"data-framer-name\": \"Tablet\"\n            }\n          }, baseVariant, gestureVariant),\n          children: [/*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-vhcgzj\",\n            \"data-framer-name\": \"Title and Icon\",\n            layoutDependency: layoutDependency,\n            layoutId: \"SSDPFFSIz\",\n            children: [/*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(motion.h2, {\n                  style: {\n                    \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                    \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                    \"--framer-font-weight\": \"700\",\n                    \"--framer-letter-spacing\": \"1px\",\n                    \"--framer-line-height\": \"2em\",\n                    \"--framer-text-alignment\": \"center\",\n                    \"--framer-text-color\": \"var(--extracted-1of0zx5)\"\n                  },\n                  children: \"AI. BRANDMAKER\"\n                })\n              }),\n              className: \"framer-1al0z9x\",\n              fonts: [\"GF;Inter-700\"],\n              layoutDependency: layoutDependency,\n              layoutId: \"mD0_OL9Ey\",\n              style: {\n                \"--extracted-1of0zx5\": \"rgb(255, 255, 255)\",\n                \"--framer-paragraph-spacing\": \"0px\"\n              },\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            }), isDisplayed() && /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-11720xt\",\n              \"data-framer-name\": \"Icon\",\n              layoutDependency: layoutDependency,\n              layoutId: \"gvqaovq_r\",\n              ...addPropertyOverrides({\n                aUIEy1pJj: {\n                  \"data-highlight\": true,\n                  onTap: onTap1mpyeb4\n                },\n                mmenztBAM: {\n                  \"data-highlight\": true,\n                  onTap: onTap1ln67n2\n                }\n              }, baseVariant, gestureVariant),\n              children: [/*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-omqs4f\",\n                \"data-framer-name\": \"Bottom\",\n                layoutDependency: layoutDependency,\n                layoutId: \"QEPetFE5x\",\n                style: {\n                  backgroundColor: \"rgb(153, 153, 153)\",\n                  borderBottomLeftRadius: 10,\n                  borderBottomRightRadius: 10,\n                  borderTopLeftRadius: 10,\n                  borderTopRightRadius: 10,\n                  rotate: 0\n                },\n                variants: {\n                  mmenztBAM: {\n                    rotate: -45\n                  }\n                }\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-4casfi\",\n                \"data-framer-name\": \"Mid\",\n                layoutDependency: layoutDependency,\n                layoutId: \"TR0_JLFnA\",\n                style: {\n                  backgroundColor: \"rgb(153, 153, 153)\",\n                  borderBottomLeftRadius: 10,\n                  borderBottomRightRadius: 10,\n                  borderTopLeftRadius: 10,\n                  borderTopRightRadius: 10\n                }\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-23je8o\",\n                \"data-framer-name\": \"Top\",\n                layoutDependency: layoutDependency,\n                layoutId: \"ictu0ZkYQ\",\n                style: {\n                  backgroundColor: \"rgb(153, 153, 153)\",\n                  borderBottomLeftRadius: 10,\n                  borderBottomRightRadius: 10,\n                  borderTopLeftRadius: 10,\n                  borderTopRightRadius: 10,\n                  rotate: 0\n                },\n                variants: {\n                  mmenztBAM: {\n                    rotate: 45\n                  }\n                }\n              })]\n            })]\n          }), isDisplayed1() && /*#__PURE__*/_jsx(Link, {\n            href: \"aibrandmaker@gmail.com\",\n            openInNewTab: true,\n            children: /*#__PURE__*/_jsx(motion.a, {\n              className: \"framer-1oo31p0 framer-hakwkh\",\n              \"data-framer-name\": \"Button\",\n              \"data-reset\": \"button\",\n              layoutDependency: layoutDependency,\n              layoutId: \"jxKBNKK9j\",\n              style: {\n                backgroundColor: \"rgb(255, 255, 255)\",\n                borderBottomLeftRadius: 8,\n                borderBottomRightRadius: 8,\n                borderTopLeftRadius: 8,\n                borderTopRightRadius: 8\n              },\n              children: /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.p, {\n                    style: {\n                      \"--font-selector\": \"R0Y7SW50ZXItODAw\",\n                      \"--framer-font-size\": \"14px\",\n                      \"--framer-font-weight\": \"800\",\n                      \"--framer-letter-spacing\": \"0px\",\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"var(--extracted-r6o4lv)\"\n                    },\n                    children: \"CONTACT\"\n                  })\n                }),\n                className: \"framer-ysjmd6\",\n                fonts: [\"GF;Inter-800\"],\n                layoutDependency: layoutDependency,\n                layoutId: \"GPtB_xzsM\",\n                style: {\n                  \"--extracted-r6o4lv\": \"rgb(34, 34, 34)\",\n                  \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                  \"--framer-link-text-decoration\": \"underline\",\n                  \"--framer-paragraph-spacing\": \"0px\"\n                },\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })\n            })\n          })]\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-PYJgr [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-PYJgr .framer-hakwkh { display: block; }\", \".framer-PYJgr .framer-ot488g { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 80px; justify-content: center; padding: 24px 24px 24px 24px; position: relative; width: 1200px; }\", \".framer-PYJgr .framer-vhcgzj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 32px; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-PYJgr .framer-1al0z9x { flex: none; height: 32px; overflow: hidden; position: relative; white-space: pre; width: auto; }\", \".framer-PYJgr .framer-11720xt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; }\", \".framer-PYJgr .framer-omqs4f { bottom: 7px; flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; width: 24px; will-change: transform; }\", \".framer-PYJgr .framer-4casfi { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 24px; will-change: transform; }\", \".framer-PYJgr .framer-23je8o { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: 7px; width: 24px; will-change: transform; }\", \".framer-PYJgr .framer-1oo31p0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 15px 15px 15px; position: relative; text-decoration: none; width: min-content; }\", \".framer-PYJgr .framer-ysjmd6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PYJgr .framer-ot488g, .framer-PYJgr .framer-1oo31p0 { gap: 0px; } .framer-PYJgr .framer-ot488g > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-PYJgr .framer-ot488g > :first-child, .framer-PYJgr .framer-1oo31p0 > :first-child { margin-left: 0px; } .framer-PYJgr .framer-ot488g > :last-child, .framer-PYJgr .framer-1oo31p0 > :last-child { margin-right: 0px; } .framer-PYJgr .framer-1oo31p0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\", \".framer-PYJgr.framer-v-kwil2t .framer-ot488g { width: 810px; }\", \".framer-PYJgr.framer-v-13fbahj .framer-ot488g { width: 390px; }\", \".framer-PYJgr.framer-v-13fbahj .framer-11720xt, .framer-PYJgr.framer-v-n5d2c7 .framer-11720xt { cursor: pointer; }\", \".framer-PYJgr.framer-v-n5d2c7 .framer-ot488g { flex-direction: column; height: min-content; padding: 24px 24px 60px 24px; width: 390px; }\", \".framer-PYJgr.framer-v-n5d2c7 .framer-vhcgzj { flex: none; width: 100%; }\", \".framer-PYJgr.framer-v-n5d2c7 .framer-omqs4f { bottom: unset; top: calc(50.00000000000002% - 2px / 2); }\", \".framer-PYJgr.framer-v-n5d2c7 .framer-4casfi { left: calc(50.00000000000002% - 2px / 2); width: 2px; }\", \".framer-PYJgr.framer-v-n5d2c7 .framer-23je8o { top: calc(50.00000000000002% - 2px / 2); }\", \".framer-PYJgr.framer-v-n5d2c7 .framer-1oo31p0 { width: 100%; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PYJgr.framer-v-n5d2c7 .framer-ot488g { gap: 0px; } .framer-PYJgr.framer-v-n5d2c7 .framer-ot488g > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-PYJgr.framer-v-n5d2c7 .framer-ot488g > :first-child { margin-top: 0px; } .framer-PYJgr.framer-v-n5d2c7 .framer-ot488g > :last-child { margin-bottom: 0px; } }\"]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerIntrinsicHeight 80\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"TD9zcZ1wF\":{\"layout\":[\"fixed\",\"fixed\"]},\"aUIEy1pJj\":{\"layout\":[\"fixed\",\"fixed\"]},\"mmenztBAM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          */\nconst FramerrGNfyShtI = withCSS(Component, css, \"framer-PYJgr\");\nexport default FramerrGNfyShtI;\nFramerrGNfyShtI.displayName = \"Navbar Dark\";\nFramerrGNfyShtI.defaultProps = {\n  height: 80,\n  width: 1200\n};\naddPropertyControls(FramerrGNfyShtI, {\n  variant: {\n    options: [\"IMOGPEpLp\", \"TD9zcZ1wF\", \"aUIEy1pJj\", \"mmenztBAM\"],\n    optionTitles: [\"Desktop\", \"Tablet\", \"Phone\", \"Phone Open\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  }\n});\naddFonts(FramerrGNfyShtI, [{\n  family: \"Inter\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:canvasComponent/rGNfyShtI:default\",\n    url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\",\n  weight: \"700\"\n}, {\n  family: \"Inter\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:canvasComponent/rGNfyShtI:default\",\n    url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf\",\n  weight: \"800\"\n}]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerrGNfyShtI\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TD9zcZ1wF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aUIEy1pJj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mmenztBAM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerIntrinsicWidth\": \"1200\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"80\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./rGNfyShtI.map", "// Generated by Framer (bdd6aa1)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, Link, PropertyOverrides, removeHiddenBreakpointLayers, RichText, SVG, useHydratedBreakpointVariants, useLocaleInfo, useRouteElementId, withCSS, withFX } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport Pattern from \"https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.js\";\nimport Squiggle from \"https://framerusercontent.com/modules/jMrfAplhO8BYTzHKEggc/UY0bcRY5HXGVDd1krkEQ/d9P9LNviq.js\";\nimport FormSpark from \"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js\";\nimport NavbarDark from \"https://framerusercontent.com/modules/QEJi9QvfLT9ScNZ6eM96/sW3IorOhkTFIosqLy6Dp/rGNfyShtI.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/lvQsWwAfpFEEVQqAlmTU/xVW008TLjZmEmtdTfsAn/augiA20Il.js\";\nconst NavbarDarkFonts = getFonts(NavbarDark);\nconst SquiggleFonts = getFonts(Squiggle);\nconst PatternFonts = getFonts(Pattern);\nconst FormSparkFonts = getFonts(FormSpark);\nconst ContainerWithFX = withFX(Container);\nconst cycleOrder = [\"WQLkyLRf1\", \"jglopcJM3\", \"VsAJ7oLy_\"];\nconst breakpoints = {\n  jglopcJM3: \"(min-width: 810px) and (max-width: 1199px)\",\n  VsAJ7oLy_: \"(max-width: 809px)\",\n  WQLkyLRf1: \"(min-width: 1200px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  jglopcJM3: \"framer-v-1ys575w\",\n  VsAJ7oLy_: \"framer-v-1yb134t\",\n  WQLkyLRf1: \"framer-v-72rtr7\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"WQLkyLRf1\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transformTemplate = (_, t) => `${t} rotate(360deg)`;\nconst animation = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 0\n};\nconst transition1 = {\n  damping: 30,\n  delay: 0,\n  mass: 1,\n  stiffness: 400,\n  type: \"spring\"\n};\nconst animation1 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst transformTemplate1 = (_, t) => `perspective(1200px) ${t}`;\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  Desktop: \"WQLkyLRf1\",\n  Phone: \"VsAJ7oLy_\",\n  Tablet: \"jglopcJM3\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _variant, ref;\n  return {\n    ...props,\n    variant: (ref = (_variant = humanReadableVariantMap[props.variant]) !== null && _variant !== void 0 ? _variant : props.variant) !== null && ref !== void 0 ? ref : \"WQLkyLRf1\"\n  };\n};\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider();\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 id = useRouteElementId(\"e6jcF7UHX\");\n  const ref1 = React.useRef(null);\n  const id1 = useRouteElementId(\"n4iyvdjAF\");\n  const ref2 = React.useRef(null);\n  const id2 = useRouteElementId(\"lNnmsVyuX\");\n  const ref3 = React.useRef(null);\n  const id3 = useRouteElementId(\"AWAM0rEa9\");\n  const ref4 = React.useRef(null);\n  const id4 = useRouteElementId(\"YnZqy3pMv\");\n  const ref5 = React.useRef(null);\n  const id5 = useRouteElementId(\"dAYzgmYAo\");\n  const ref6 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"WQLkyLRf1\",\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-PYrqR\"),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-72rtr7\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(Container, {\n            className: \"framer-n1fdpg-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                jglopcJM3: {\n                  variant: \"TD9zcZ1wF\"\n                },\n                VsAJ7oLy_: {\n                  variant: \"aUIEy1pJj\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(NavbarDark, {\n                height: \"100%\",\n                id: \"B4pUwaOpp\",\n                layoutId: \"B4pUwaOpp\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"IMOGPEpLp\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-g8ddot\",\n            \"data-framer-name\": \"Hero\",\n            name: \"Hero\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-ktoaq9\",\n              children: [/*#__PURE__*/_jsx(Container, {\n                className: \"framer-1gkkuoe-container\",\n                id: id,\n                ref: ref1,\n                children: /*#__PURE__*/_jsx(Squiggle, {\n                  height: \"100%\",\n                  id: \"e6jcF7UHX\",\n                  layoutId: \"e6jcF7UHX\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"phB_W_0uv\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  VsAJ7oLy_: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h1\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7U3RhYXRsaWNoZXMtcmVndWxhcg==\",\n                          \"--framer-font-family\": '\"Staatliches\", sans-serif',\n                          \"--framer-font-size\": \"32px\",\n                          \"--framer-line-height\": \"1.1em\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                        },\n                        children: \"Introducing AI Brand Maker: The Future of Brand Creation Unleashed\"\n                      })\n                    })\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h1\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7U3RhYXRsaWNoZXMtcmVndWxhcg==\",\n                        \"--framer-font-family\": '\"Staatliches\", sans-serif',\n                        \"--framer-font-size\": \"60px\",\n                        \"--framer-line-height\": \"1.1em\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                      },\n                      children: \"Introducing AI Brand Maker: The Future of Brand Creation Unleashed\"\n                    })\n                  }),\n                  className: \"framer-1to687s\",\n                  fonts: [\"GF;Staatliches-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-14r8u6v\",\n                children: /*#__PURE__*/_jsx(Link, {\n                  href: \"https://www.linkedin.com/company/ai-brand-maker\",\n                  openInNewTab: true,\n                  children: /*#__PURE__*/_jsx(motion.a, {\n                    className: \"framer-1rjqecl framer-lux5qc\",\n                    \"data-reset\": \"button\",\n                    id: id1,\n                    ref: ref2,\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"20px\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"GET STARTED\"\n                        })\n                      }),\n                      className: \"framer-w4avmb\",\n                      fonts: [\"GF;Golos Text-regular\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  })\n                })\n              })]\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-133h1ov\",\n            \"data-framer-name\": \"Text\",\n            name: \"Text\",\n            children: [/*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-13t5h9d\",\n              \"data-framer-name\": \"Content\",\n              name: \"Content\",\n              children: [/*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"h2\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7U3RhYXRsaWNoZXMtcmVndWxhcg==\",\n                      \"--framer-font-family\": '\"Staatliches\", sans-serif',\n                      \"--framer-font-size\": \"48px\",\n                      \"--framer-text-alignment\": \"left\",\n                      \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                    },\n                    children: \"The Revolution in Branding\"\n                  })\n                }),\n                className: \"framer-1evnk53\",\n                fonts: [\"GF;Staatliches-regular\"],\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-iishai\",\n                \"data-framer-name\": \"Paragraphs\",\n                name: \"Paragraphs\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h3\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                        \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                      },\n                      children: \"In today\u2019s cutthroat market, a powerful, tangible brand is crucial for survival. AI Brand Maker enters the arena wielding advanced AI to maneuver businesses of all sizes into crafting and nurturing brands that resonate.\"\n                    })\n                  }),\n                  className: \"framer-12au1rz\",\n                  fonts: [\"GF;Golos Text-regular\"],\n                  id: id2,\n                  ref: ref3,\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h3\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                        \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                      },\n                      children: \"Our AI wizard analyzes your enterprise, offerings, sector, and rivals to generate custom-made brand strategies. Everything from brand identity, tone, messaging, to visual aesthetics, we've got everything covered.\"\n                    })\n                  }),\n                  className: \"framer-1h8wta7\",\n                  fonts: [\"GF;Golos Text-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h3\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                        \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                      },\n                      children: \"Experience unmatched branding that soars beyond human-led approaches. Our AI scrutinizes data and patterns, conjuring groundbreaking brand strategies that deliver results.\"\n                    })\n                  }),\n                  className: \"framer-1ci50my\",\n                  fonts: [\"GF;Golos Text-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              })]\n            }), /*#__PURE__*/_jsx(Container, {\n              className: \"framer-1s8bvwt-container\",\n              id: id3,\n              ref: ref4,\n              children: /*#__PURE__*/_jsx(Pattern, {\n                back: \"rgb(199, 31, 55)\",\n                diagonal: true,\n                direction: \"left\",\n                duration: 5,\n                front: \"rgb(110, 20, 35)\",\n                height: \"100%\",\n                id: \"AWAM0rEa9\",\n                layoutId: \"AWAM0rEa9\",\n                patternType: \"polka\",\n                radius: 100,\n                scale: 39,\n                shouldAnimate: false,\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                width: \"100%\"\n              })\n            })]\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-1hw1otq\",\n            \"data-framer-name\": \"Section\",\n            name: \"Section\",\n            children: [/*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-h87fw7\",\n              \"data-framer-name\": \"Wrapper\",\n              name: \"Wrapper\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1gpvm8n\",\n                \"data-framer-name\": \"Left\",\n                name: \"Left\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    VsAJ7oLy_: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7U3RhYXRsaWNoZXMtcmVndWxhcg==\",\n                            \"--framer-font-family\": '\"Staatliches\", sans-serif',\n                            \"--framer-font-size\": \"32px\",\n                            \"--framer-letter-spacing\": \"0px\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"AI-Powered Solutions: Turn Brand Chaos into Creative Genius\"\n                        })\n                      }),\n                      viewBox: \"0 0 436 38\"\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h3\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7U3RhYXRsaWNoZXMtcmVndWxhcg==\",\n                          \"--framer-font-family\": '\"Staatliches\", sans-serif',\n                          \"--framer-font-size\": \"32px\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                        },\n                        children: \"AI-Powered Solutions: Turn Brand Chaos into Creative Genius\"\n                      })\n                    }),\n                    className: \"framer-mumcdr\",\n                    fonts: [\"GF;Staatliches-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    VsAJ7oLy_: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                            \"--framer-letter-spacing\": \"0px\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"From naming, logo creation, packaging, and copywriting, our AI garners a cohesive, compelling brand identity. Brand creation isn\u2019t just swift and efficient, it\u2019s now insightful and strategic.\"\n                        })\n                      })\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h3\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                        },\n                        children: \"From naming, logo creation, packaging, and copywriting, our AI garners a cohesive, compelling brand identity. Brand creation isn\u2019t just swift and efficient, it\u2019s now insightful and strategic.\"\n                      })\n                    }),\n                    className: \"framer-1ydpz6z\",\n                    fonts: [\"GF;Golos Text-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })]\n              }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  VsAJ7oLy_: {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 2712,\n                      intrinsicWidth: 4076,\n                      loading: \"lazy\",\n                      pixelHeight: 2712,\n                      pixelWidth: 4076,\n                      sizes: \"1000px\",\n                      src: new URL(\"https://framerusercontent.com/images/c4uX0ndaBz2oKcoXKLuooq3gueM.jpg\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/c4uX0ndaBz2oKcoXKLuooq3gueM.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/c4uX0ndaBz2oKcoXKLuooq3gueM.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/c4uX0ndaBz2oKcoXKLuooq3gueM.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/c4uX0ndaBz2oKcoXKLuooq3gueM.jpg\").href} 4076w`\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 2712,\n                    intrinsicWidth: 4076,\n                    loading: \"lazy\",\n                    pixelHeight: 2712,\n                    pixelWidth: 4076,\n                    sizes: \"470px\",\n                    src: new URL(\"https://framerusercontent.com/images/c4uX0ndaBz2oKcoXKLuooq3gueM.jpg\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/c4uX0ndaBz2oKcoXKLuooq3gueM.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/c4uX0ndaBz2oKcoXKLuooq3gueM.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/c4uX0ndaBz2oKcoXKLuooq3gueM.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/c4uX0ndaBz2oKcoXKLuooq3gueM.jpg\").href} 4076w`\n                  },\n                  className: \"framer-31yrhc\",\n                  \"data-framer-name\": \"Image\",\n                  name: \"Image\"\n                })\n              })]\n            }), /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1pipo3f\",\n              \"data-framer-name\": \"Wrapper\",\n              name: \"Wrapper\",\n              children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  VsAJ7oLy_: {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 0,\n                      intrinsicWidth: 0,\n                      loading: \"lazy\",\n                      pixelHeight: 0,\n                      pixelWidth: 0,\n                      sizes: \"1000px\",\n                      src: new URL(\"https://framerusercontent.com/images/PkFVeK9hN7hkFL3tqVdw5c0t8.jpg?scale-down-to=512\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/PkFVeK9hN7hkFL3tqVdw5c0t8.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/PkFVeK9hN7hkFL3tqVdw5c0t8.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/PkFVeK9hN7hkFL3tqVdw5c0t8.jpg\").href} 1200w`\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 0,\n                    intrinsicWidth: 0,\n                    loading: \"lazy\",\n                    pixelHeight: 0,\n                    pixelWidth: 0,\n                    sizes: \"470px\",\n                    src: new URL(\"https://framerusercontent.com/images/PkFVeK9hN7hkFL3tqVdw5c0t8.jpg?scale-down-to=512\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/PkFVeK9hN7hkFL3tqVdw5c0t8.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/PkFVeK9hN7hkFL3tqVdw5c0t8.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/PkFVeK9hN7hkFL3tqVdw5c0t8.jpg\").href} 1200w`\n                  },\n                  className: \"framer-1x9zzg1\",\n                  \"data-framer-name\": \"Image\",\n                  name: \"Image\"\n                })\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-14n0a8z\",\n                \"data-framer-name\": \"Left\",\n                name: \"Left\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h3\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7U3RhYXRsaWNoZXMtcmVndWxhcg==\",\n                        \"--framer-font-family\": '\"Staatliches\", sans-serif',\n                        \"--framer-font-size\": \"32px\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                      },\n                      children: \"Stand Out, Engage, and Triumph with Cutting-Edge Branding\"\n                    })\n                  }),\n                  className: \"framer-pkuwhn\",\n                  fonts: [\"GF;Staatliches-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    VsAJ7oLy_: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                            \"--framer-letter-spacing\": \"0px\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"Consumers face endless options; connecting with a brand is vital. Don\u2019t squander resources on futile branding agencies. Join AI Brand Maker to forge your brand of tomorrow.\"\n                        })\n                      })\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h3\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                        },\n                        children: \"Consumers face endless options; connecting with a brand is vital. Don\u2019t squander resources on futile branding agencies. Join AI Brand Maker to forge your brand of tomorrow.\"\n                      })\n                    }),\n                    className: \"framer-x7rh57\",\n                    fonts: [\"GF;Golos Text-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })]\n              })]\n            })]\n          }), /*#__PURE__*/_jsx(motion.section, {\n            className: \"framer-9ebqfv\",\n            \"data-framer-name\": \"Pricing\",\n            name: \"Pricing\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1xu65sw\",\n              \"data-framer-name\": \"Container\",\n              name: \"Container\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1iol5zo\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                        \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"14px\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(100, 18, 32)\"\n                      },\n                      children: \"AI Enthusiast\"\n                    })\n                  }),\n                  className: \"framer-1or2jho\",\n                  fonts: [\"GF;Golos Text-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-1iz9cb8\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      jglopcJM3: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7U3RhYXRsaWNoZXMtcmVndWxhcg==\",\n                              \"--framer-font-family\": '\"Staatliches\", sans-serif',\n                              \"--framer-font-size\": \"32px\",\n                              \"--framer-line-height\": \"1em\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(133, 24, 42)\"\n                            },\n                            children: \"$49.99/mo\"\n                          })\n                        })\n                      },\n                      VsAJ7oLy_: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7U3RhYXRsaWNoZXMtcmVndWxhcg==\",\n                              \"--framer-font-family\": '\"Staatliches\", sans-serif',\n                              \"--framer-font-size\": \"32px\",\n                              \"--framer-letter-spacing\": \"0px\",\n                              \"--framer-line-height\": \"1em\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(133, 24, 42)\"\n                            },\n                            children: \"$49.99/mo\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7U3RhYXRsaWNoZXMtcmVndWxhcg==\",\n                            \"--framer-font-family\": '\"Staatliches\", sans-serif',\n                            \"--framer-font-size\": \"40px\",\n                            \"--framer-line-height\": \"1em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(133, 24, 42)\"\n                          },\n                          children: \"$49.99/mo\"\n                        })\n                      }),\n                      className: \"framer-11yyn0w\",\n                      fonts: [\"GF;Staatliches-regular\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1v1f9z7\",\n                  children: [/*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-1j14gjt\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-tjt0lv\",\n                      \"data-framer-name\": \"Check\",\n                      layout: \"position\",\n                      name: \"Check\",\n                      opacity: 1,\n                      svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 14.531 5.031 L 6.531 13.031 C 6.39 13.172 6.199 13.251 5.999 13.251 C 5.8 13.251 5.609 13.172 5.468 13.031 L 1.968 9.531 C 1.675 9.237 1.675 8.762 1.968 8.468 C 2.262 8.175 2.737 8.175 3.031 8.468 L 6 11.437 L 13.469 3.969 C 13.763 3.676 14.238 3.676 14.532 3.969 C 14.825 4.263 14.825 4.738 14.532 5.032 Z\" fill=\"#641220\"></path></svg>',\n                      svgContentId: 1800800220,\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(100, 18, 32)\"\n                          },\n                          children: \"Brand Analysis\"\n                        })\n                      }),\n                      className: \"framer-tssq79\",\n                      fonts: [\"GF;Golos Text-regular\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-u1nwge\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-1u6terp\",\n                      \"data-framer-name\": \"Check\",\n                      layout: \"position\",\n                      name: \"Check\",\n                      opacity: 1,\n                      svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 14.531 5.031 L 6.531 13.031 C 6.39 13.172 6.199 13.251 5.999 13.251 C 5.8 13.251 5.609 13.172 5.468 13.031 L 1.968 9.531 C 1.675 9.237 1.675 8.762 1.968 8.468 C 2.262 8.175 2.737 8.175 3.031 8.468 L 6 11.437 L 13.469 3.969 C 13.763 3.676 14.238 3.676 14.532 3.969 C 14.825 4.263 14.825 4.738 14.532 5.032 Z\" fill=\"#641220\"></path></svg>',\n                      svgContentId: 1800800220,\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(100, 18, 32)\"\n                          },\n                          children: \"Logo Design\"\n                        })\n                      }),\n                      className: \"framer-1x5n2z5\",\n                      fonts: [\"GF;Golos Text-regular\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-1nog7uc\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-1qow5aw\",\n                      \"data-framer-name\": \"Check\",\n                      layout: \"position\",\n                      name: \"Check\",\n                      opacity: 1,\n                      svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 14.531 5.031 L 6.531 13.031 C 6.39 13.172 6.199 13.251 5.999 13.251 C 5.8 13.251 5.609 13.172 5.468 13.031 L 1.968 9.531 C 1.675 9.237 1.675 8.762 1.968 8.468 C 2.262 8.175 2.737 8.175 3.031 8.468 L 6 11.437 L 13.469 3.969 C 13.763 3.676 14.238 3.676 14.532 3.969 C 14.825 4.263 14.825 4.738 14.532 5.032 Z\" fill=\"#641220\"></path></svg>',\n                      svgContentId: 1800800220,\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(100, 18, 32)\"\n                          },\n                          children: \"Websit Development\"\n                        })\n                      }),\n                      className: \"framer-1lgj92g\",\n                      fonts: [\"GF;Golos Text-regular\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-ehzizr\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-vvs3ug\",\n                      \"data-framer-name\": \"Check\",\n                      layout: \"position\",\n                      name: \"Check\",\n                      opacity: 1,\n                      svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 14.531 5.031 L 6.531 13.031 C 6.39 13.172 6.199 13.251 5.999 13.251 C 5.8 13.251 5.609 13.172 5.468 13.031 L 1.968 9.531 C 1.675 9.237 1.675 8.762 1.968 8.468 C 2.262 8.175 2.737 8.175 3.031 8.468 L 6 11.437 L 13.469 3.969 C 13.763 3.676 14.238 3.676 14.532 3.969 C 14.825 4.263 14.825 4.738 14.532 5.032 Z\" fill=\"#641220\"></path></svg>',\n                      svgContentId: 1800800220,\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(100, 18, 32)\"\n                          },\n                          children: \"Copywriting\"\n                        })\n                      }),\n                      className: \"framer-1rbsv4c\",\n                      fonts: [\"GF;Golos Text-regular\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  })]\n                }), /*#__PURE__*/_jsx(motion.button, {\n                  className: \"framer-c9an60\",\n                  \"data-framer-name\": \"Button\",\n                  \"data-reset\": \"button\",\n                  name: \"Button\",\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"14px\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                        },\n                        children: \"Join Now\"\n                      })\n                    }),\n                    className: \"framer-ftu4ny\",\n                    fonts: [\"GF;Golos Text-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-rp7bl0\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                        \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"14px\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(100, 18, 32)\"\n                      },\n                      children: \"AI Visionary\"\n                    })\n                  }),\n                  className: \"framer-17hh8xi\",\n                  fonts: [\"GF;Golos Text-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-tcargo\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      jglopcJM3: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7U3RhYXRsaWNoZXMtcmVndWxhcg==\",\n                              \"--framer-font-family\": '\"Staatliches\", sans-serif',\n                              \"--framer-font-size\": \"32px\",\n                              \"--framer-line-height\": \"1em\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(133, 24, 42)\"\n                            },\n                            children: \"$99.99/mo\"\n                          })\n                        })\n                      },\n                      VsAJ7oLy_: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7U3RhYXRsaWNoZXMtcmVndWxhcg==\",\n                              \"--framer-font-family\": '\"Staatliches\", sans-serif',\n                              \"--framer-font-size\": \"32px\",\n                              \"--framer-letter-spacing\": \"0px\",\n                              \"--framer-line-height\": \"1em\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(133, 24, 42)\"\n                            },\n                            children: \"$99.99/mo\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7U3RhYXRsaWNoZXMtcmVndWxhcg==\",\n                            \"--framer-font-family\": '\"Staatliches\", sans-serif',\n                            \"--framer-font-size\": \"40px\",\n                            \"--framer-line-height\": \"1em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(133, 24, 42)\"\n                          },\n                          children: \"$99.99/mo\"\n                        })\n                      }),\n                      className: \"framer-16l88h4\",\n                      fonts: [\"GF;Staatliches-regular\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-minx4s\",\n                  children: [/*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-11b5mg\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-3bg5io\",\n                      \"data-framer-name\": \"Check\",\n                      layout: \"position\",\n                      name: \"Check\",\n                      opacity: 1,\n                      svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 14.531 5.031 L 6.531 13.031 C 6.39 13.172 6.199 13.251 5.999 13.251 C 5.8 13.251 5.609 13.172 5.468 13.031 L 1.968 9.531 C 1.675 9.237 1.675 8.762 1.968 8.468 C 2.262 8.175 2.737 8.175 3.031 8.468 L 6 11.437 L 13.469 3.969 C 13.763 3.676 14.238 3.676 14.532 3.969 C 14.825 4.263 14.825 4.738 14.532 5.032 Z\" fill=\"#641220\"></path></svg>',\n                      svgContentId: 1800800220,\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(100, 18, 32)\"\n                          },\n                          children: \"Advanced Analysis\"\n                        })\n                      }),\n                      className: \"framer-t8mx1f\",\n                      fonts: [\"GF;Golos Text-regular\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-yhizpl\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-1rgsx25\",\n                      \"data-framer-name\": \"Check\",\n                      layout: \"position\",\n                      name: \"Check\",\n                      opacity: 1,\n                      svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 14.531 5.031 L 6.531 13.031 C 6.39 13.172 6.199 13.251 5.999 13.251 C 5.8 13.251 5.609 13.172 5.468 13.031 L 1.968 9.531 C 1.675 9.237 1.675 8.762 1.968 8.468 C 2.262 8.175 2.737 8.175 3.031 8.468 L 6 11.437 L 13.469 3.969 C 13.763 3.676 14.238 3.676 14.532 3.969 C 14.825 4.263 14.825 4.738 14.532 5.032 Z\" fill=\"#641220\"></path></svg>',\n                      svgContentId: 1800800220,\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(100, 18, 32)\"\n                          },\n                          children: \"Premium Logos\"\n                        })\n                      }),\n                      className: \"framer-14si28x\",\n                      fonts: [\"GF;Golos Text-regular\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-vj4min\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-4gbbrx\",\n                      \"data-framer-name\": \"Check\",\n                      layout: \"position\",\n                      name: \"Check\",\n                      opacity: 1,\n                      svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 14.531 5.031 L 6.531 13.031 C 6.39 13.172 6.199 13.251 5.999 13.251 C 5.8 13.251 5.609 13.172 5.468 13.031 L 1.968 9.531 C 1.675 9.237 1.675 8.762 1.968 8.468 C 2.262 8.175 2.737 8.175 3.031 8.468 L 6 11.437 L 13.469 3.969 C 13.763 3.676 14.238 3.676 14.532 3.969 C 14.825 4.263 14.825 4.738 14.532 5.032 Z\" fill=\"#641220\"></path></svg>',\n                      svgContentId: 1800800220,\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(100, 18, 32)\"\n                          },\n                          children: \"Custom WebsiteDesign\"\n                        })\n                      }),\n                      className: \"framer-1sq6yux\",\n                      fonts: [\"GF;Golos Text-regular\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-1muizh3\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-fbs295\",\n                      \"data-framer-name\": \"Check\",\n                      layout: \"position\",\n                      name: \"Check\",\n                      opacity: 1,\n                      svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 14.531 5.031 L 6.531 13.031 C 6.39 13.172 6.199 13.251 5.999 13.251 C 5.8 13.251 5.609 13.172 5.468 13.031 L 1.968 9.531 C 1.675 9.237 1.675 8.762 1.968 8.468 C 2.262 8.175 2.737 8.175 3.031 8.468 L 6 11.437 L 13.469 3.969 C 13.763 3.676 14.238 3.676 14.532 3.969 C 14.825 4.263 14.825 4.738 14.532 5.032 Z\" fill=\"#641220\"></path></svg>',\n                      svgContentId: 1800800220,\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(100, 18, 32)\"\n                          },\n                          children: \"Expert Copywriting\"\n                        })\n                      }),\n                      className: \"framer-2ch1gv\",\n                      fonts: [\"GF;Golos Text-regular\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  })]\n                }), /*#__PURE__*/_jsx(motion.button, {\n                  className: \"framer-1xowtoj\",\n                  \"data-framer-name\": \"Button\",\n                  \"data-reset\": \"button\",\n                  name: \"Button\",\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"14px\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                        },\n                        children: \"Upgrade Now\"\n                      })\n                    }),\n                    className: \"framer-a7n04d\",\n                    fonts: [\"GF;Golos Text-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-wfpr43\",\n            \"data-framer-name\": \"Testimonials\",\n            name: \"Testimonials\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1nc19m8\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1niv6of\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                transformTemplate: transformTemplate,\n                children: [/*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 100,\n                    intrinsicWidth: 100,\n                    loading: \"lazy\",\n                    pixelHeight: 100,\n                    pixelWidth: 100,\n                    src: new URL(\"https://framerusercontent.com/images/57w8MdpIyX4l6AQYb7hLOUopy4.webp\").href\n                  },\n                  className: \"framer-mzmq83\",\n                  \"data-framer-name\": \"Image\",\n                  name: \"Image\"\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-18w3sf4\",\n                  \"data-framer-name\": \"Copy\",\n                  name: \"Copy\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      jglopcJM3: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                              \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                              \"--framer-line-height\": \"1.5em\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                            },\n                            children: \"AI Brand Maker catapulted our business into stardom!\"\n                          })\n                        })\n                      },\n                      VsAJ7oLy_: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                              \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                              \"--framer-line-height\": \"1.5em\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                            },\n                            children: \"AI Brand Maker catapulted our business into stardom!\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"20px\",\n                            \"--framer-letter-spacing\": \"-0.025em\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"AI Brand Maker catapulted our business into stardom!\"\n                        })\n                      }),\n                      className: \"framer-1pypqmr\",\n                      fonts: [\"GF;Golos Text-regular\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"14px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                        },\n                        children: \"jordan\"\n                      })\n                    }),\n                    className: \"framer-qpcukv\",\n                    fonts: [\"GF;Golos Text-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1tzv55n\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    VsAJ7oLy_: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 0,\n                        intrinsicWidth: 0,\n                        loading: \"lazy\",\n                        pixelHeight: 0,\n                        pixelWidth: 0,\n                        sizes: \"60px\",\n                        src: new URL(\"https://framerusercontent.com/images/AsH6Ju49a4D9586br57cczPXI.jpg?scale-down-to=512\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/AsH6Ju49a4D9586br57cczPXI.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/AsH6Ju49a4D9586br57cczPXI.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/AsH6Ju49a4D9586br57cczPXI.jpg\").href} 1200w`\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 0,\n                      intrinsicWidth: 0,\n                      loading: \"lazy\",\n                      pixelHeight: 0,\n                      pixelWidth: 0,\n                      sizes: \"50px\",\n                      src: new URL(\"https://framerusercontent.com/images/AsH6Ju49a4D9586br57cczPXI.jpg?scale-down-to=512\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/AsH6Ju49a4D9586br57cczPXI.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/AsH6Ju49a4D9586br57cczPXI.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/AsH6Ju49a4D9586br57cczPXI.jpg\").href} 1200w`\n                    },\n                    className: \"framer-1mxmmd1\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1fgkmgs\",\n                  \"data-framer-name\": \"Copy\",\n                  name: \"Copy\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      jglopcJM3: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                              \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                              \"--framer-line-height\": \"1.5em\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                            },\n                            children: \"The future of brand creation has arrived!\"\n                          })\n                        })\n                      },\n                      VsAJ7oLy_: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                              \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                              \"--framer-line-height\": \"1.5em\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                            },\n                            children: \"The future of brand creation has arrived!\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"20px\",\n                            \"--framer-letter-spacing\": \"-0.025em\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"The future of brand creation has arrived!\"\n                        })\n                      }),\n                      className: \"framer-hwirem\",\n                      fonts: [\"GF;Golos Text-regular\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"14px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                        },\n                        children: \"figota\"\n                      })\n                    }),\n                    className: \"framer-1njckn9\",\n                    fonts: [\"GF;Golos Text-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-xml29c\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    VsAJ7oLy_: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 0,\n                        intrinsicWidth: 0,\n                        loading: \"lazy\",\n                        pixelHeight: 0,\n                        pixelWidth: 0,\n                        sizes: \"60px\",\n                        src: new URL(\"https://framerusercontent.com/images/emh4SRQMTfqMZAD56ccbtLoXVg.jpg?scale-down-to=512\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/emh4SRQMTfqMZAD56ccbtLoXVg.jpg?scale-down-to=512\").href} 409w, ${new URL(\"https://framerusercontent.com/images/emh4SRQMTfqMZAD56ccbtLoXVg.jpg?scale-down-to=1024\").href} 819w, ${new URL(\"https://framerusercontent.com/images/emh4SRQMTfqMZAD56ccbtLoXVg.jpg\").href} 1200w`\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 0,\n                      intrinsicWidth: 0,\n                      loading: \"lazy\",\n                      pixelHeight: 0,\n                      pixelWidth: 0,\n                      sizes: \"50px\",\n                      src: new URL(\"https://framerusercontent.com/images/emh4SRQMTfqMZAD56ccbtLoXVg.jpg?scale-down-to=512\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/emh4SRQMTfqMZAD56ccbtLoXVg.jpg?scale-down-to=512\").href} 409w, ${new URL(\"https://framerusercontent.com/images/emh4SRQMTfqMZAD56ccbtLoXVg.jpg?scale-down-to=1024\").href} 819w, ${new URL(\"https://framerusercontent.com/images/emh4SRQMTfqMZAD56ccbtLoXVg.jpg\").href} 1200w`\n                    },\n                    className: \"framer-1tm7upi\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-l420yj\",\n                  \"data-framer-name\": \"Copy\",\n                  name: \"Copy\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      jglopcJM3: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                              \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                              \"--framer-line-height\": \"1.5em\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                            },\n                            children: \"Elevating our brand with AI Brand Maker was a game changer\"\n                          })\n                        })\n                      },\n                      VsAJ7oLy_: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                              \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                              \"--framer-line-height\": \"1.5em\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                            },\n                            children: \"Elevating our brand with AI Brand Maker was a game changer\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"20px\",\n                            \"--framer-letter-spacing\": \"-0.025em\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"Elevating our brand with AI Brand Maker was a game changer\"\n                        })\n                      }),\n                      className: \"framer-17b867m\",\n                      fonts: [\"GF;Golos Text-regular\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"14px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                        },\n                        children: \"michelleira\"\n                      })\n                    }),\n                    className: \"framer-1aklnnd\",\n                    fonts: [\"GF;Golos Text-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-xeh02l\",\n            \"data-framer-name\": \"FAQ\",\n            name: \"FAQ\",\n            children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                VsAJ7oLy_: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7U3RhYXRsaWNoZXMtcmVndWxhcg==\",\n                        \"--framer-font-family\": '\"Staatliches\", sans-serif',\n                        \"--framer-font-size\": \"32px\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                      },\n                      children: \"Frequent Inquiries\"\n                    })\n                  })\n                }\n              },\n              children: /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"h2\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7U3RhYXRsaWNoZXMtcmVndWxhcg==\",\n                      \"--framer-font-family\": '\"Staatliches\", sans-serif',\n                      \"--framer-font-size\": \"48px\",\n                      \"--framer-text-alignment\": \"left\",\n                      \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                    },\n                    children: \"Frequent Inquiries\"\n                  })\n                }),\n                className: \"framer-5r9zjt\",\n                fonts: [\"GF;Staatliches-regular\"],\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })\n            }), /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-17ioy95\",\n              \"data-framer-name\": \"Questions Row\",\n              name: \"Questions Row\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-7qnlyl\",\n                \"data-framer-name\": \"Q&A\",\n                name: \"Q&A\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                        \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                      },\n                      children: \"Why is AI Brand Maker different?\"\n                    })\n                  }),\n                  className: \"framer-1dhq2bt\",\n                  fonts: [\"GF;Golos Text-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\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                        \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                      },\n                      children: \"Our AI-driven approach allows you to create one-of-a-kind branding strategies that are not only efficient but also insightful and strategic, setting you apart in the market.\"\n                    })\n                  }),\n                  className: \"framer-1crng5b\",\n                  fonts: [\"GF;Golos Text-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1utnjfs\",\n                \"data-framer-name\": \"Q&A\",\n                name: \"Q&A\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                        \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                      },\n                      children: \"What industries do you serve?\"\n                    })\n                  }),\n                  className: \"framer-1rqdgqr\",\n                  fonts: [\"GF;Golos Text-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\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                        \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                      },\n                      children: \"AI Brand Maker serves a broad range of industries, including tech, retail, healthcare, and more. Our AI algorithms can adapt to any industry.\"\n                    })\n                  }),\n                  className: \"framer-7r5uda\",\n                  fonts: [\"GF;Golos Text-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              })]\n            })]\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-ccgbfm\",\n            \"data-framer-name\": \"Contact\",\n            id: id4,\n            name: \"Contact\",\n            ref: ref5,\n            children: [/*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(\"h2\", {\n                  style: {\n                    \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                    \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                    \"--framer-font-size\": \"50px\",\n                    \"--framer-font-weight\": \"700\",\n                    \"--framer-letter-spacing\": \"-2.1px\",\n                    \"--framer-text-alignment\": \"left\",\n                    \"--framer-text-color\": \"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"\n                  },\n                  children: \"Join us\"\n                })\n              }),\n              className: \"framer-1k4gwi8\",\n              fonts: [\"GF;Inter-700\"],\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-jij9z4\",\n              \"data-framer-name\": \"Column\",\n              name: \"Column\",\n              children: /*#__PURE__*/_jsx(ContainerWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: false,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-wmqjjl-container\",\n                id: id5,\n                ref: ref6,\n                transformTemplate: transformTemplate1,\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    jglopcJM3: {\n                      font: true,\n                      formId: \"mwjGf03D\"\n                    },\n                    VsAJ7oLy_: {\n                      font: true,\n                      formId: \"mwjGf03D\"\n                    }\n                  },\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(224, 30, 55)\",\n                      fontWeight: 600,\n                      label: \"Send\"\n                    },\n                    email: {\n                      placeholder: \"Email\",\n                      value: \"\"\n                    },\n                    font: false,\n                    fontFamily: \"\",\n                    fontSize: 16,\n                    fontWeight: 500,\n                    formId: \"\",\n                    gap: 15,\n                    height: \"100%\",\n                    id: \"dAYzgmYAo\",\n                    inputs: {\n                      color: \"rgb(0, 0, 0)\",\n                      error: \"rgb(238, 68, 68)\",\n                      fill: \"rgb(242, 242, 242)\",\n                      placeholderColor: \"rgba(0, 0, 0, 0.5)\"\n                    },\n                    isMixedBorderRadius: false,\n                    layout: \"horizontal\",\n                    layoutId: \"dAYzgmYAo\",\n                    message: {\n                      placeholder: \"Message\",\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            })]\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1ujjqfz\",\n            \"data-framer-name\": \"Footer\",\n            name: \"Footer\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-14z9fb5\",\n              \"data-framer-name\": \"Copyright\",\n              name: \"Copyright\",\n              children: [/*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-1wmbps3\",\n                \"data-framer-name\": \"Spacer\",\n                name: \"Spacer\"\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                      \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                      \"--framer-line-height\": \"1.5em\",\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                    },\n                    children: \"\\xa9 AI Brand Maker 2023. All rights reserved.\"\n                  })\n                }),\n                className: \"framer-14pcb6k\",\n                fonts: [\"GF;Golos Text-regular\"],\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7R29sb3MgVGV4dC1yZWd1bGFy\",\n                      \"--framer-font-family\": '\"Golos Text\", \"Golos Text Placeholder\", sans-serif',\n                      \"--framer-line-height\": \"1.5em\",\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                    },\n                    children: \"Generated on August 20, 2023\"\n                  })\n                }),\n                className: \"framer-1ww3k5s\",\n                fonts: [\"GF;Golos Text-regular\"],\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })]\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-PYrqR [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: #000000; }`, \".framer-PYrqR .framer-lux5qc { display: block; }\", \".framer-PYrqR .framer-72rtr7 { align-content: center; align-items: center; background-color: #000000; 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-PYrqR .framer-n1fdpg-container { flex: none; height: auto; position: relative; width: 100%; }\", \".framer-PYrqR .framer-g8ddot { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 800px; justify-content: center; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-ktoaq9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-PYrqR .framer-1gkkuoe-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 200px; }\", \".framer-PYrqR .framer-1to687s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-PYrqR .framer-14r8u6v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-1rjqecl { align-content: center; align-items: center; background-color: #bd1f36; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 20px 10px 20px; position: relative; text-decoration: none; width: min-content; will-change: transform; }\", \".framer-PYrqR .framer-w4avmb { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25), 10px 2px 4px rgb(255, 0, 0); white-space: pre; width: auto; }\", \".framer-PYrqR .framer-133h1ov { align-content: center; align-items: center; background-color: #c71f37; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-13t5h9d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\", \".framer-PYrqR .framer-1evnk53 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 480px; word-break: break-word; word-wrap: break-word; z-index: 1; }\", \".framer-PYrqR .framer-iishai { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: 500px; justify-content: center; max-width: 600px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-12au1rz, .framer-PYrqR .framer-1h8wta7, .framer-PYrqR .framer-1ci50my { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-PYrqR .framer-1s8bvwt-container { bottom: 0px; flex: none; left: 0px; opacity: 0.6; position: absolute; right: 0px; top: 0px; z-index: 0; }\", \".framer-PYrqR .framer-1hw1otq { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-h87fw7, .framer-PYrqR .framer-1pipo3f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\", \".framer-PYrqR .framer-1gpvm8n, .framer-PYrqR .framer-14n0a8z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-PYrqR .framer-mumcdr, .framer-PYrqR .framer-pkuwhn, .framer-PYrqR .framer-1dhq2bt, .framer-PYrqR .framer-1rqdgqr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-PYrqR .framer-1ydpz6z, .framer-PYrqR .framer-x7rh57 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 400px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-PYrqR .framer-31yrhc { -webkit-filter: grayscale(1); aspect-ratio: 0.98 / 1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; filter: grayscale(1); flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 479px); overflow: hidden; position: relative; width: 1px; will-change: transform; }\", \".framer-PYrqR .framer-1x9zzg1 { -webkit-filter: grayscale(1); aspect-ratio: 0.98 / 1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; filter: grayscale(1); flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 480px); mix-blend-mode: luminosity; overflow: hidden; position: relative; width: 1px; will-change: transform; }\", \".framer-PYrqR .framer-9ebqfv { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-1xu65sw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-1iol5zo, .framer-PYrqR .framer-rp7bl0 { align-content: flex-start; align-items: flex-start; background-color: #f2f2f2; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0px 10px 20px -20px rgba(0, 0, 0, 0.25); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 1px; will-change: transform; }\", \".framer-PYrqR .framer-1or2jho, .framer-PYrqR .framer-ftu4ny, .framer-PYrqR .framer-17hh8xi, .framer-PYrqR .framer-a7n04d { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-PYrqR .framer-1iz9cb8, .framer-PYrqR .framer-tcargo { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-PYrqR .framer-11yyn0w, .framer-PYrqR .framer-16l88h4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: 48px; position: relative; white-space: pre; width: auto; }\", \".framer-PYrqR .framer-1v1f9z7, .framer-PYrqR .framer-minx4s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-1j14gjt, .framer-PYrqR .framer-u1nwge, .framer-PYrqR .framer-1nog7uc, .framer-PYrqR .framer-ehzizr, .framer-PYrqR .framer-11b5mg, .framer-PYrqR .framer-yhizpl, .framer-PYrqR .framer-vj4min, .framer-PYrqR .framer-1muizh3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-tjt0lv, .framer-PYrqR .framer-1u6terp, .framer-PYrqR .framer-1qow5aw, .framer-PYrqR .framer-vvs3ug, .framer-PYrqR .framer-3bg5io, .framer-PYrqR .framer-1rgsx25, .framer-PYrqR .framer-4gbbrx, .framer-PYrqR .framer-fbs295 { flex: none; height: 16px; position: relative; width: 16px; }\", \".framer-PYrqR .framer-tssq79, .framer-PYrqR .framer-1x5n2z5, .framer-PYrqR .framer-1lgj92g, .framer-PYrqR .framer-1rbsv4c, .framer-PYrqR .framer-t8mx1f, .framer-PYrqR .framer-14si28x, .framer-PYrqR .framer-1sq6yux, .framer-PYrqR .framer-2ch1gv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --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-PYrqR .framer-c9an60, .framer-PYrqR .framer-1xowtoj { align-content: center; align-items: center; background-color: #e01e37; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 15px 15px 15px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-wfpr43 { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-1nc19m8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-1niv6of { align-content: flex-start; align-items: flex-start; background-color: #0d0d0d; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: inset 0px 0.421531111242075px 1.264593333726225px -1px rgba(255, 0, 0, 0.59), inset 0px 1.60197331227042px 4.80591993681126px -2px rgba(255, 0, 0, 0.55423), inset 0px 7px 21px -3px rgba(255, 0, 0, 0.4); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 400px; justify-content: flex-start; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; transform: rotate(360deg); width: 1px; will-change: transform; }\", \".framer-PYrqR .framer-mzmq83, .framer-PYrqR .framer-1mxmmd1, .framer-PYrqR .framer-1tm7upi { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: transform; }\", \".framer-PYrqR .framer-18w3sf4, .framer-PYrqR .framer-1fgkmgs, .framer-PYrqR .framer-l420yj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-1pypqmr, .framer-PYrqR .framer-hwirem, .framer-PYrqR .framer-17b867m { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: 1px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-PYrqR .framer-qpcukv, .framer-PYrqR .framer-1njckn9, .framer-PYrqR .framer-1aklnnd { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\", \".framer-PYrqR .framer-1tzv55n { align-content: flex-start; align-items: flex-start; background-color: #0d0d0d; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: inset 0px 0.3010936508871964px 0.9032809526615893px -0.75px rgba(255, 0, 0, 0.46), inset 0px 1.1442666516217286px 3.4327999548651857px -1.5px rgba(255, 0, 0, 0.47289), inset 0px 5px 15px -2.25px rgba(255, 0, 0, 0.55); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 400px; justify-content: flex-start; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 1px; will-change: transform; }\", \".framer-PYrqR .framer-xml29c { align-content: flex-start; align-items: flex-start; background-color: #0d0d0d; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: inset 0px 0.6021873017743928px 1.8065619053231785px -1.0833333333333333px rgba(255, 0, 0, 0.63), inset 0px 2.288533303243457px 6.8655999097303715px -2.1666666666666665px hsla(0, 100%, 50%, 0.58134), inset 0px 10px 30px -3.25px hsla(0, 100%, 50%, 0.35); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 400px; justify-content: flex-start; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 1px; will-change: transform; }\", \".framer-PYrqR .framer-xeh02l { align-content: center; align-items: center; background-color: #da1e37; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-5r9zjt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 1000px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-PYrqR .framer-17ioy95 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-7qnlyl, .framer-PYrqR .framer-1utnjfs { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-PYrqR .framer-1crng5b, .framer-PYrqR .framer-7r5uda { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 400px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-PYrqR .framer-ccgbfm { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-1k4gwi8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\", \".framer-PYrqR .framer-jij9z4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 540px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-wmqjjl-container { flex: 1 0 0px; height: 290px; position: relative; transform: perspective(1200px); width: 1px; }\", \".framer-PYrqR .framer-1ujjqfz { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-14z9fb5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-PYrqR .framer-1wmbps3 { flex: none; height: 30px; overflow: hidden; position: relative; width: 100%; }\", \".framer-PYrqR .framer-14pcb6k { --framer-link-hover-text-color: rgba(153, 153, 153, 0.6); --framer-link-text-decoration: none; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-PYrqR .framer-1ww3k5s { --framer-link-hover-text-color: rgba(153, 153, 153, 0.6); --framer-link-text-decoration: none; --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.5; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PYrqR .framer-72rtr7, .framer-PYrqR .framer-g8ddot, .framer-PYrqR .framer-ktoaq9, .framer-PYrqR .framer-14r8u6v, .framer-PYrqR .framer-1rjqecl, .framer-PYrqR .framer-133h1ov, .framer-PYrqR .framer-13t5h9d, .framer-PYrqR .framer-iishai, .framer-PYrqR .framer-1hw1otq, .framer-PYrqR .framer-h87fw7, .framer-PYrqR .framer-1gpvm8n, .framer-PYrqR .framer-1pipo3f, .framer-PYrqR .framer-14n0a8z, .framer-PYrqR .framer-9ebqfv, .framer-PYrqR .framer-1xu65sw, .framer-PYrqR .framer-1iol5zo, .framer-PYrqR .framer-1iz9cb8, .framer-PYrqR .framer-1v1f9z7, .framer-PYrqR .framer-1j14gjt, .framer-PYrqR .framer-u1nwge, .framer-PYrqR .framer-1nog7uc, .framer-PYrqR .framer-ehzizr, .framer-PYrqR .framer-c9an60, .framer-PYrqR .framer-rp7bl0, .framer-PYrqR .framer-tcargo, .framer-PYrqR .framer-minx4s, .framer-PYrqR .framer-11b5mg, .framer-PYrqR .framer-yhizpl, .framer-PYrqR .framer-vj4min, .framer-PYrqR .framer-1muizh3, .framer-PYrqR .framer-1xowtoj, .framer-PYrqR .framer-wfpr43, .framer-PYrqR .framer-1nc19m8, .framer-PYrqR .framer-1niv6of, .framer-PYrqR .framer-18w3sf4, .framer-PYrqR .framer-1tzv55n, .framer-PYrqR .framer-1fgkmgs, .framer-PYrqR .framer-xml29c, .framer-PYrqR .framer-l420yj, .framer-PYrqR .framer-xeh02l, .framer-PYrqR .framer-17ioy95, .framer-PYrqR .framer-7qnlyl, .framer-PYrqR .framer-1utnjfs, .framer-PYrqR .framer-ccgbfm, .framer-PYrqR .framer-jij9z4, .framer-PYrqR .framer-1ujjqfz, .framer-PYrqR .framer-14z9fb5 { gap: 0px; } .framer-PYrqR .framer-72rtr7 > *, .framer-PYrqR .framer-133h1ov > *, .framer-PYrqR .framer-wfpr43 > *, .framer-PYrqR .framer-14z9fb5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PYrqR .framer-72rtr7 > :first-child, .framer-PYrqR .framer-ktoaq9 > :first-child, .framer-PYrqR .framer-133h1ov > :first-child, .framer-PYrqR .framer-13t5h9d > :first-child, .framer-PYrqR .framer-iishai > :first-child, .framer-PYrqR .framer-1hw1otq > :first-child, .framer-PYrqR .framer-1gpvm8n > :first-child, .framer-PYrqR .framer-14n0a8z > :first-child, .framer-PYrqR .framer-9ebqfv > :first-child, .framer-PYrqR .framer-1iol5zo > :first-child, .framer-PYrqR .framer-1v1f9z7 > :first-child, .framer-PYrqR .framer-rp7bl0 > :first-child, .framer-PYrqR .framer-minx4s > :first-child, .framer-PYrqR .framer-wfpr43 > :first-child, .framer-PYrqR .framer-1niv6of > :first-child, .framer-PYrqR .framer-18w3sf4 > :first-child, .framer-PYrqR .framer-1tzv55n > :first-child, .framer-PYrqR .framer-1fgkmgs > :first-child, .framer-PYrqR .framer-xml29c > :first-child, .framer-PYrqR .framer-l420yj > :first-child, .framer-PYrqR .framer-xeh02l > :first-child, .framer-PYrqR .framer-7qnlyl > :first-child, .framer-PYrqR .framer-1utnjfs > :first-child, .framer-PYrqR .framer-ccgbfm > :first-child, .framer-PYrqR .framer-1ujjqfz > :first-child, .framer-PYrqR .framer-14z9fb5 > :first-child { margin-top: 0px; } .framer-PYrqR .framer-72rtr7 > :last-child, .framer-PYrqR .framer-ktoaq9 > :last-child, .framer-PYrqR .framer-133h1ov > :last-child, .framer-PYrqR .framer-13t5h9d > :last-child, .framer-PYrqR .framer-iishai > :last-child, .framer-PYrqR .framer-1hw1otq > :last-child, .framer-PYrqR .framer-1gpvm8n > :last-child, .framer-PYrqR .framer-14n0a8z > :last-child, .framer-PYrqR .framer-9ebqfv > :last-child, .framer-PYrqR .framer-1iol5zo > :last-child, .framer-PYrqR .framer-1v1f9z7 > :last-child, .framer-PYrqR .framer-rp7bl0 > :last-child, .framer-PYrqR .framer-minx4s > :last-child, .framer-PYrqR .framer-wfpr43 > :last-child, .framer-PYrqR .framer-1niv6of > :last-child, .framer-PYrqR .framer-18w3sf4 > :last-child, .framer-PYrqR .framer-1tzv55n > :last-child, .framer-PYrqR .framer-1fgkmgs > :last-child, .framer-PYrqR .framer-xml29c > :last-child, .framer-PYrqR .framer-l420yj > :last-child, .framer-PYrqR .framer-xeh02l > :last-child, .framer-PYrqR .framer-7qnlyl > :last-child, .framer-PYrqR .framer-1utnjfs > :last-child, .framer-PYrqR .framer-ccgbfm > :last-child, .framer-PYrqR .framer-1ujjqfz > :last-child, .framer-PYrqR .framer-14z9fb5 > :last-child { margin-bottom: 0px; } .framer-PYrqR .framer-g8ddot > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-PYrqR .framer-g8ddot > :first-child, .framer-PYrqR .framer-14r8u6v > :first-child, .framer-PYrqR .framer-1rjqecl > :first-child, .framer-PYrqR .framer-h87fw7 > :first-child, .framer-PYrqR .framer-1pipo3f > :first-child, .framer-PYrqR .framer-1xu65sw > :first-child, .framer-PYrqR .framer-1iz9cb8 > :first-child, .framer-PYrqR .framer-1j14gjt > :first-child, .framer-PYrqR .framer-u1nwge > :first-child, .framer-PYrqR .framer-1nog7uc > :first-child, .framer-PYrqR .framer-ehzizr > :first-child, .framer-PYrqR .framer-c9an60 > :first-child, .framer-PYrqR .framer-tcargo > :first-child, .framer-PYrqR .framer-11b5mg > :first-child, .framer-PYrqR .framer-yhizpl > :first-child, .framer-PYrqR .framer-vj4min > :first-child, .framer-PYrqR .framer-1muizh3 > :first-child, .framer-PYrqR .framer-1xowtoj > :first-child, .framer-PYrqR .framer-1nc19m8 > :first-child, .framer-PYrqR .framer-17ioy95 > :first-child, .framer-PYrqR .framer-jij9z4 > :first-child { margin-left: 0px; } .framer-PYrqR .framer-g8ddot > :last-child, .framer-PYrqR .framer-14r8u6v > :last-child, .framer-PYrqR .framer-1rjqecl > :last-child, .framer-PYrqR .framer-h87fw7 > :last-child, .framer-PYrqR .framer-1pipo3f > :last-child, .framer-PYrqR .framer-1xu65sw > :last-child, .framer-PYrqR .framer-1iz9cb8 > :last-child, .framer-PYrqR .framer-1j14gjt > :last-child, .framer-PYrqR .framer-u1nwge > :last-child, .framer-PYrqR .framer-1nog7uc > :last-child, .framer-PYrqR .framer-ehzizr > :last-child, .framer-PYrqR .framer-c9an60 > :last-child, .framer-PYrqR .framer-tcargo > :last-child, .framer-PYrqR .framer-11b5mg > :last-child, .framer-PYrqR .framer-yhizpl > :last-child, .framer-PYrqR .framer-vj4min > :last-child, .framer-PYrqR .framer-1muizh3 > :last-child, .framer-PYrqR .framer-1xowtoj > :last-child, .framer-PYrqR .framer-1nc19m8 > :last-child, .framer-PYrqR .framer-17ioy95 > :last-child, .framer-PYrqR .framer-jij9z4 > :last-child { margin-right: 0px; } .framer-PYrqR .framer-ktoaq9 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-PYrqR .framer-14r8u6v > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-PYrqR .framer-1rjqecl > *, .framer-PYrqR .framer-1j14gjt > *, .framer-PYrqR .framer-u1nwge > *, .framer-PYrqR .framer-1nog7uc > *, .framer-PYrqR .framer-ehzizr > *, .framer-PYrqR .framer-c9an60 > *, .framer-PYrqR .framer-11b5mg > *, .framer-PYrqR .framer-yhizpl > *, .framer-PYrqR .framer-vj4min > *, .framer-PYrqR .framer-1muizh3 > *, .framer-PYrqR .framer-1xowtoj > *, .framer-PYrqR .framer-jij9z4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PYrqR .framer-13t5h9d > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-PYrqR .framer-iishai > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-PYrqR .framer-1hw1otq > *, .framer-PYrqR .framer-9ebqfv > *, .framer-PYrqR .framer-xeh02l > *, .framer-PYrqR .framer-ccgbfm > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-PYrqR .framer-h87fw7 > *, .framer-PYrqR .framer-1pipo3f > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-PYrqR .framer-1gpvm8n > *, .framer-PYrqR .framer-14n0a8z > *, .framer-PYrqR .framer-1iol5zo > *, .framer-PYrqR .framer-rp7bl0 > *, .framer-PYrqR .framer-18w3sf4 > *, .framer-PYrqR .framer-1fgkmgs > *, .framer-PYrqR .framer-l420yj > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PYrqR .framer-1xu65sw > *, .framer-PYrqR .framer-1nc19m8 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-PYrqR .framer-1iz9cb8 > *, .framer-PYrqR .framer-tcargo > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-PYrqR .framer-1v1f9z7 > *, .framer-PYrqR .framer-minx4s > *, .framer-PYrqR .framer-7qnlyl > *, .framer-PYrqR .framer-1utnjfs > *, .framer-PYrqR .framer-1ujjqfz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PYrqR .framer-1niv6of > *, .framer-PYrqR .framer-1tzv55n > *, .framer-PYrqR .framer-xml29c > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-PYrqR .framer-17ioy95 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } }\", \"@media (min-width: 1200px) { .framer-PYrqR .hidden-72rtr7 { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1199px) { .framer-PYrqR .hidden-1ys575w { display: none !important; } .${metadata.bodyClassName} { background: #000000; } .framer-PYrqR .framer-72rtr7 { width: 810px; } .framer-PYrqR .framer-g8ddot { height: min-content; padding: 80px 40px 80px 40px; } .framer-PYrqR .framer-133h1ov { padding: 80px 40px 80px 40px; } .framer-PYrqR .framer-1hw1otq { gap: 40px; padding: 50px 50px 50px 50px; } .framer-PYrqR .framer-31yrhc { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; height: var(--framer-aspect-ratio-supported, 331px); } .framer-PYrqR .framer-1x9zzg1 { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; height: var(--framer-aspect-ratio-supported, 332px); } .framer-PYrqR .framer-9ebqfv, .framer-PYrqR .framer-xeh02l, .framer-PYrqR .framer-1ujjqfz { padding: 50px 50px 50px 50px; } .framer-PYrqR .framer-1xu65sw { flex-direction: column; } .framer-PYrqR .framer-1iol5zo, .framer-PYrqR .framer-rp7bl0 { flex: none; width: 100%; } .framer-PYrqR .framer-wfpr43 { align-content: flex-start; align-items: flex-start; padding: 50px 50px 50px 50px; } .framer-PYrqR .framer-17ioy95 { gap: 60px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PYrqR .framer-1hw1otq, .framer-PYrqR .framer-1xu65sw, .framer-PYrqR .framer-17ioy95 { gap: 0px; } .framer-PYrqR .framer-1hw1otq > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-PYrqR .framer-1hw1otq > :first-child, .framer-PYrqR .framer-1xu65sw > :first-child { margin-top: 0px; } .framer-PYrqR .framer-1hw1otq > :last-child, .framer-PYrqR .framer-1xu65sw > :last-child { margin-bottom: 0px; } .framer-PYrqR .framer-1xu65sw > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PYrqR .framer-17ioy95 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-PYrqR .framer-17ioy95 > :first-child { margin-left: 0px; } .framer-PYrqR .framer-17ioy95 > :last-child { margin-right: 0px; } }}`, `@media (max-width: 809px) { .framer-PYrqR .hidden-1yb134t { display: none !important; } .${metadata.bodyClassName} { background: #000000; } .framer-PYrqR .framer-72rtr7 { width: 390px; } .framer-PYrqR .framer-g8ddot { height: min-content; padding: 60px 20px 60px 20px; } .framer-PYrqR .framer-1gkkuoe-container { height: var(--framer-aspect-ratio-supported, 150px); width: 150px; } .framer-PYrqR .framer-133h1ov, .framer-PYrqR .framer-1hw1otq { padding: 60px 20px 60px 20px; } .framer-PYrqR .framer-h87fw7, .framer-PYrqR .framer-1pipo3f, .framer-PYrqR .framer-17ioy95 { flex-direction: column; gap: 40px; } .framer-PYrqR .framer-1gpvm8n { flex: none; order: 1; width: 100%; } .framer-PYrqR .framer-mumcdr { white-space: pre; } .framer-PYrqR .framer-31yrhc { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 357px); order: 0; width: 100%; } .framer-PYrqR .framer-1x9zzg1 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 357px); width: 100%; } .framer-PYrqR .framer-14n0a8z, .framer-PYrqR .framer-1iol5zo, .framer-PYrqR .framer-rp7bl0, .framer-PYrqR .framer-7qnlyl, .framer-PYrqR .framer-1utnjfs { flex: none; width: 100%; } .framer-PYrqR .framer-9ebqfv, .framer-PYrqR .framer-wfpr43 { padding: 20px 20px 20px 20px; } .framer-PYrqR .framer-1xu65sw { flex-direction: column; } .framer-PYrqR .framer-1v1f9z7, .framer-PYrqR .framer-minx4s { padding: 10px 0px 20px 0px; } .framer-PYrqR .framer-1nc19m8 { flex-direction: column; gap: 10px; } .framer-PYrqR .framer-1niv6of, .framer-PYrqR .framer-1tzv55n, .framer-PYrqR .framer-xml29c { flex: none; gap: 20px; height: 300px; width: 100%; } .framer-PYrqR .framer-mzmq83, .framer-PYrqR .framer-1mxmmd1, .framer-PYrqR .framer-1tm7upi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 60px); justify-content: center; padding: 0px 0px 0px 0px; width: 60px; } .framer-PYrqR .framer-xeh02l { align-content: flex-start; align-items: flex-start; gap: 40px; padding: 20px 20px 20px 20px; } .framer-PYrqR .framer-1ujjqfz { padding: 40px 20px 40px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PYrqR .framer-h87fw7, .framer-PYrqR .framer-1pipo3f, .framer-PYrqR .framer-1xu65sw, .framer-PYrqR .framer-1nc19m8, .framer-PYrqR .framer-1niv6of, .framer-PYrqR .framer-mzmq83, .framer-PYrqR .framer-1tzv55n, .framer-PYrqR .framer-1mxmmd1, .framer-PYrqR .framer-xml29c, .framer-PYrqR .framer-1tm7upi, .framer-PYrqR .framer-xeh02l, .framer-PYrqR .framer-17ioy95 { gap: 0px; } .framer-PYrqR .framer-h87fw7 > *, .framer-PYrqR .framer-1pipo3f > *, .framer-PYrqR .framer-xeh02l > *, .framer-PYrqR .framer-17ioy95 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-PYrqR .framer-h87fw7 > :first-child, .framer-PYrqR .framer-1pipo3f > :first-child, .framer-PYrqR .framer-1xu65sw > :first-child, .framer-PYrqR .framer-1nc19m8 > :first-child, .framer-PYrqR .framer-1niv6of > :first-child, .framer-PYrqR .framer-mzmq83 > :first-child, .framer-PYrqR .framer-1tzv55n > :first-child, .framer-PYrqR .framer-1mxmmd1 > :first-child, .framer-PYrqR .framer-xml29c > :first-child, .framer-PYrqR .framer-1tm7upi > :first-child, .framer-PYrqR .framer-xeh02l > :first-child, .framer-PYrqR .framer-17ioy95 > :first-child { margin-top: 0px; } .framer-PYrqR .framer-h87fw7 > :last-child, .framer-PYrqR .framer-1pipo3f > :last-child, .framer-PYrqR .framer-1xu65sw > :last-child, .framer-PYrqR .framer-1nc19m8 > :last-child, .framer-PYrqR .framer-1niv6of > :last-child, .framer-PYrqR .framer-mzmq83 > :last-child, .framer-PYrqR .framer-1tzv55n > :last-child, .framer-PYrqR .framer-1mxmmd1 > :last-child, .framer-PYrqR .framer-xml29c > :last-child, .framer-PYrqR .framer-1tm7upi > :last-child, .framer-PYrqR .framer-xeh02l > :last-child, .framer-PYrqR .framer-17ioy95 > :last-child { margin-bottom: 0px; } .framer-PYrqR .framer-1xu65sw > *, .framer-PYrqR .framer-1niv6of > *, .framer-PYrqR .framer-1tzv55n > *, .framer-PYrqR .framer-xml29c > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PYrqR .framer-1nc19m8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PYrqR .framer-mzmq83 > *, .framer-PYrqR .framer-1mxmmd1 > *, .framer-PYrqR .framer-1tm7upi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerIntrinsicHeight 5425\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jglopcJM3\":{\"layout\":[\"fixed\",\"auto\"]},\"VsAJ7oLy_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       */\nconst FrameraugiA20Il = withCSS(Component, css, \"framer-PYrqR\");\nexport default FrameraugiA20Il;\nFrameraugiA20Il.displayName = \"Home\";\nFrameraugiA20Il.defaultProps = {\n  height: 5425,\n  width: 1200\n};\naddFonts(FrameraugiA20Il, [{\n  family: \"Staatliches\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/staatliches/v11/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/staatliches/v11/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf\",\n  weight: \"400\"\n}, {\n  family: \"Golos Text\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVRRQ5cEr8zXcyx.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVRRQ5cEr8zXcyx.ttf\",\n  weight: \"400\"\n}, {\n  family: \"Inter\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\",\n  weight: \"700\"\n}, ...NavbarDarkFonts, ...SquiggleFonts, ...PatternFonts, ...FormSparkFonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FrameraugiA20Il\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jglopcJM3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VsAJ7oLy_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerIntrinsicHeight\": \"5425\",\n        \"framerIntrinsicWidth\": \"1200\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["Pattern", "props", "patternType", "front", "back", "radius", "scale", "shouldAnimate", "direction", "diagonal", "duration", "isCanvas", "RenderTarget", "pattern", "position", "size", "repeat", "blendMode", "filter", "addBackground", "backgroundPosAnimation", "frontHex", "Color", "backHex", "frontWithoutHex", "backWithoutHex", "factor", "xScale", "yScale", "p", "motion", "addPropertyControls", "ControlType", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "isDisplayed18", "isDisplayed19", "defaultLayoutId", "p", "LayoutGroup", "motion", "cx", "u", "Image2", "css", "Framerd9P9LNviq", "withCSS", "d9P9LNviq_default", "addPropertyControls", "ControlType", "addFonts", "fontStack", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "fontWeights", "useFontControls", "props", "fontFamily", "fontSize", "fontWeight", "font", "fontWeightName", "customFontStack", "fontStack", "fontFamilyStyle", "fetchCustomFonts", "fontStore", "e", "ue", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "usePadding", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControl", "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", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1mpyeb4", "args", "onTap1ln67n2", "isDisplayed", "isDisplayed1", "defaultLayoutId", "LayoutGroup", "motion", "cx", "u", "RichText", "x", "Link", "css", "FramerrGNfyShtI", "withCSS", "rGNfyShtI_default", "addPropertyControls", "ControlType", "addFonts", "NavbarDarkFonts", "getFonts", "rGNfyShtI_default", "SquiggleFonts", "d9P9LNviq_default", "PatternFonts", "Pattern", "FormSparkFonts", "FormSpark_default", "ContainerWithFX", "withFX", "Container", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "transitions", "transformTemplate", "_", "t", "animation", "transition1", "animation1", "transformTemplate1", "metadata", "augiA20Il_default", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "useRouteElementId", "ref1", "pe", "id1", "ref2", "id2", "ref3", "id3", "ref4", "id4", "ref5", "id5", "ref6", "defaultLayoutId", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Container", "PropertyOverrides", "rGNfyShtI_default", "d9P9LNviq_default", "x", "RichText", "Link", "Pattern", "Image2", "SVG", "ContainerWithFX", "FormSpark_default", "css", "FrameraugiA20Il", "withCSS", "addFonts", "NavbarDarkFonts", "SquiggleFonts", "PatternFonts", "FormSparkFonts", "__FramerMetadata__"]
}
