{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.js", "ssg:https://ga.jspm.io/npm:@emotion/hash@0.9.0/dist/emotion-hash.esm.js", "ssg:https://framerusercontent.com/modules/jtKAvrxm8EnQFXUS5j2i/iaXLJBT0c7TxL3H8JnYX/ShapesBig.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/wVkd7bBxWxuoio8dti7Z/Cz77einVAHoqrRIDjHMT/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", "function murmur2(r){var t=0;var a,e=0,c=r.length;for(;c>=4;++e,c-=4){a=255&r.charCodeAt(e)|(255&r.charCodeAt(++e))<<8|(255&r.charCodeAt(++e))<<16|(255&r.charCodeAt(++e))<<24;a=1540483477*(65535&a)+(59797*(a>>>16)<<16);a^=a>>>24;t=1540483477*(65535&a)+(59797*(a>>>16)<<16)^1540483477*(65535&t)+(59797*(t>>>16)<<16)}switch(c){case 3:t^=(255&r.charCodeAt(e+2))<<16;case 2:t^=(255&r.charCodeAt(e+1))<<8;case 1:t^=255&r.charCodeAt(e);t=1540483477*(65535&t)+(59797*(t>>>16)<<16)}t^=t>>>13;t=1540483477*(65535&t)+(59797*(t>>>16)<<16);return((t^t>>>15)>>>0).toString(36)}export{murmur2 as default};\n\n//# sourceMappingURL=emotion-hash.esm.js.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { addPropertyControls, ControlType } from \"framer\";\nimport hash from \"@emotion/hash\";\nimport { useMemo } from \"react\"; /**\n                                 * Shapes by Monika\n                                 * Componentized by Benjamin\n                                 * Curated by Jorn\n                                 * shapes.framer.website\n                                 *\n                                 * @framerDisableUnlink\n                                 *\n                                 * @framerSupportedLayoutWidth fixed\n                                 * @framerSupportedLayoutHeight fixed\n                                 */\nexport default function ShapesBig(props) {\n  const {\n    image,\n    paths,\n    hasColor,\n    color,\n    startColor,\n    endColor,\n    angle,\n    id: nodeId\n  } = props; // Unique IDs\n  const path = shapesBig[paths].path;\n  const id = useMemo(() => path ? `curve-${nodeId}-${hash(path)}` : undefined, [nodeId, path]); // These shapes are drawn at 200 x 200\n  // We need to offset the path points for objectBoundingBox\n  const scale = 1 / 200;\n  return /*#__PURE__*/_jsx(\"div\", {\n    style: {\n      width: \"100%\",\n      height: \"100%\",\n      clipPath: `url(#${id})`,\n      background: hasColor ? color : `linear-gradient(${angle}deg, ${startColor}, ${endColor})`\n    },\n    children: /*#__PURE__*/_jsx(\"svg\", {\n      children: /*#__PURE__*/_jsx(\"clipPath\", {\n        id: id,\n        clipPathUnits: \"objectBoundingBox\",\n        transform: `scale(${scale})`,\n        children: /*#__PURE__*/_jsx(\"path\", {\n          d: path\n        })\n      })\n    })\n  });\n}\n;\nconst shapesBig = [{\n  title: \"Shape 1\",\n  path: \"M44 0H0v150c0 27.614 22.386 50 50 50h44V50C94 22.386 71.614 0 44 0Zm112 0c-27.614 0-50 22.386-50 50v150h44c27.614 0 50-22.386 50-50V0h-44Z\"\n}, {\n  title: \"Shape 2\",\n  path: \"M100.106 0L115 54.1591L158.884 19.0983L139.1 71.6687L195.211 69.0983L148.306 100L195.211 130.902L139.1 128.331L158.884 180.902L115 145.841L100.106 200L85.211 145.841L41.3271 180.902L61.111 128.331L5 130.902L51.9057 100L5 69.0983L61.111 71.6687L41.3271 19.0983L85.211 54.1591L100.106 0Z\"\n}, {\n  title: \"Shape 3\",\n  path: \"M89.9318 6.12863C94.1569 -2.04288 105.843 -2.04288 110.068 6.12863L136.973 58.1644C138.051 60.2496 139.75 61.9486 141.836 63.0268L193.871 89.9318C202.043 94.1569 202.043 105.843 193.871 110.068L141.836 136.973C139.75 138.051 138.051 139.75 136.973 141.836L110.068 193.871C105.843 202.043 94.1569 202.043 89.9318 193.871L63.0268 141.836C61.9486 139.75 60.2496 138.051 58.1644 136.973L6.12863 110.068C-2.04288 105.843 -2.04288 94.1569 6.12863 89.9318L58.1644 63.0268C60.2496 61.9486 61.9486 60.2496 63.0268 58.1644L89.9318 6.12863Z\"\n}, {\n  title: \"Shape 4\",\n  path: \"M93.6797 5.15479C97.359 2.15401 102.641 2.15401 106.32 5.15479L114.253 11.625C116.75 13.6608 120.074 14.3696 123.183 13.5291L133.039 10.8652C137.616 9.62811 142.432 11.775 144.572 16.0058L149.229 25.2154C150.679 28.0814 153.416 30.0768 156.588 30.5793L166.717 32.184C171.384 32.9234 174.897 36.829 175.139 41.5483L175.672 51.9384C175.836 55.133 177.519 58.0565 180.199 59.8033L188.865 65.452C192.811 68.0247 194.427 73.0033 192.743 77.4035L189.015 87.1465C187.874 90.1271 188.225 93.4731 189.958 96.1526L195.618 104.899C198.175 108.852 197.629 114.053 194.306 117.389L186.976 124.748C184.722 127.011 183.684 130.214 184.184 133.369L185.815 143.668C186.552 148.327 183.933 152.868 179.531 154.564L169.921 158.264C166.93 159.416 164.672 161.931 163.849 165.029L161.188 175.047C159.973 179.623 155.716 182.719 150.989 182.466L140.78 181.92C137.567 181.748 134.468 183.132 132.452 185.639L126.014 193.647C123.04 197.346 117.876 198.445 113.653 196.277L104.567 191.612C101.7 190.141 98.2999 190.141 95.4331 191.612L86.3465 196.277C82.1243 198.445 76.9601 197.346 73.9862 193.647L67.548 185.639C65.5321 183.132 62.433 181.748 59.2203 181.92L49.0111 182.466C44.284 182.719 40.0271 179.623 38.8119 175.047L36.1507 165.029C35.3279 161.931 33.0702 159.416 30.0792 158.264L20.4691 154.564C16.0666 152.868 13.4477 148.327 14.1855 143.668L15.8162 133.369C16.3157 130.214 15.2781 127.011 13.024 124.748L5.69367 117.389C2.37113 114.053 1.82509 108.852 4.38248 104.899L10.0415 96.1526C11.7752 93.4731 12.1257 90.1271 10.9851 87.1465L7.25661 77.4035C5.57275 73.0033 7.18856 68.0247 11.1354 65.452L19.8014 59.8033C22.4812 58.0565 24.1636 55.133 24.3275 51.9384L24.8607 41.5483C25.1029 36.829 28.6155 32.9234 33.2828 32.184L43.4118 30.5793C46.5838 30.0768 49.3214 28.0814 50.7708 25.2154L55.4283 16.0058C57.5679 11.775 62.3844 9.62811 66.9613 10.8652L76.8169 13.5291C79.9264 14.3696 83.2504 13.6608 85.7465 11.625L93.6797 5.15479Z\"\n}, {\n  title: \"Shape 5\",\n  path: \"M97.8118 1.84638C98.2359 -0.615472 101.764 -0.615455 102.188 1.8464L106.863 28.9805C107.236 31.1438 110.179 31.5163 111.077 29.5138L122.339 4.39701C123.361 2.11817 126.778 2.99725 126.578 5.48745L124.371 32.9338C124.195 35.1221 126.953 36.2162 128.32 34.5003L145.463 12.9789C147.018 11.0263 150.11 12.7293 149.298 15.0913L140.348 41.1255C139.634 43.2011 142.034 44.9481 143.784 43.6267L165.73 27.053C167.721 25.5493 170.293 27.9691 168.92 30.0546L153.789 53.0407C152.583 54.8733 154.474 57.1634 156.497 56.3195L181.867 45.7349C184.169 44.7746 186.06 47.7592 184.212 49.4371L163.851 67.9308C162.228 69.4053 163.491 72.0946 165.66 71.7812L192.86 67.8507C195.328 67.4941 196.419 70.8561 194.213 72.021L169.901 84.8603C167.963 85.8839 168.519 88.8034 170.697 89.0403L198.019 92.0109C200.498 92.2805 200.719 95.8084 198.294 96.3871L171.559 102.765C169.427 103.274 169.241 106.24 171.292 107.012L197.018 116.697C199.352 117.576 198.691 121.048 196.198 121.005L168.72 120.521C166.529 120.482 165.613 123.309 167.408 124.568L189.922 140.359C191.964 141.792 190.462 144.99 188.058 144.326L161.564 137.011C159.451 136.428 157.862 138.937 159.288 140.604L177.175 161.509C178.798 163.406 176.549 166.129 174.385 164.887L150.539 151.2C148.637 150.109 146.475 152.144 147.443 154.113L159.579 178.818C160.68 181.06 157.826 183.137 156.039 181.396L136.338 162.197C134.768 160.666 132.168 162.098 132.617 164.247L138.24 191.199C138.75 193.645 135.469 194.946 134.171 192.814L119.855 169.309C118.713 167.435 115.84 168.174 115.741 170.367L114.497 197.875C114.385 200.37 110.884 200.813 110.156 198.424L102.124 172.091C101.483 169.992 98.5168 169.992 97.8764 172.091L89.8444 198.424C89.1156 200.813 85.6154 200.37 85.5025 197.875L84.259 170.367C84.1599 168.174 81.2866 167.435 80.1453 169.309L65.8294 192.814C64.5305 194.946 61.2502 193.645 61.7604 191.199L67.3835 164.247C67.8318 162.098 65.2323 160.666 63.6617 162.197L43.9615 181.396C42.1741 183.137 39.3198 181.06 40.421 178.818L52.5574 154.113C53.525 152.144 51.3625 150.109 49.4613 151.2L25.6147 164.887C23.4511 166.129 21.2022 163.406 22.8251 161.509L40.7123 140.604C42.1384 138.937 40.5489 136.428 38.4365 137.011L11.9418 144.326C9.53794 144.99 8.03576 141.792 10.0784 140.359L32.5924 124.568C34.3874 123.309 33.4707 120.482 31.28 120.521L3.80194 121.005C1.30888 121.048 0.647761 117.576 2.98188 116.697L28.708 107.012C30.7591 106.24 30.5728 103.274 28.4413 102.765L1.7065 96.3871C-0.719137 95.8084 -0.497588 92.2805 1.98131 92.0109L29.3032 89.0403C31.4815 88.8034 32.0373 85.8839 30.099 84.8603L5.78724 72.021C3.58145 70.856 4.67171 67.4941 7.13963 67.8507L34.3405 71.7812C36.5091 72.0946 37.7722 69.4053 36.1488 67.9308L15.7877 49.4371C13.9404 47.7592 15.8308 44.7746 18.1327 45.7349L43.5034 56.3195C45.5262 57.1634 47.417 54.8733 46.2107 53.0407L31.0796 30.0546C29.7067 27.9691 32.2786 25.5493 34.2698 27.053L56.2162 43.6267C57.966 44.9481 60.3658 43.2011 59.6523 41.1255L50.7019 15.0913C49.8899 12.7293 52.9816 11.0263 54.537 12.9789L71.6801 34.5003C73.0469 36.2162 75.805 35.122 75.6291 32.9338L73.4219 5.48743C73.2216 2.99724 76.6389 2.11816 77.6608 4.39699L88.9235 29.5138C89.8214 31.5163 92.7645 31.1438 93.1372 28.9805L97.8118 1.84638Z\"\n}, {\n  title: \"Shape 6\",\n  path: \"M71.5579 16.3347C84.3365 -5.4449 115.825 -5.44489 128.603 16.3347L129.067 17.1257C134.963 27.1733 145.709 33.378 157.358 33.4596L158.276 33.466C183.527 33.6428 199.271 60.9123 186.798 82.8687L186.345 83.6661C180.591 93.7953 180.591 106.205 186.345 116.334L186.798 117.131C199.271 139.088 183.527 166.357 158.276 166.534L157.358 166.54C145.709 166.622 134.963 172.827 129.067 182.874L128.603 183.665C115.825 205.445 84.3365 205.445 71.5579 183.665L71.0938 182.874C65.1986 172.827 54.4517 166.622 42.8027 166.54L41.8856 166.534C16.6346 166.357 0.890585 139.088 13.3629 117.131L13.8159 116.334C19.5698 106.205 19.5698 93.7953 13.8159 83.6661L13.3629 82.8687C0.890585 60.9123 16.6346 33.6428 41.8856 33.466L42.8027 33.4596C54.4518 33.378 65.1986 27.1733 71.0938 17.1257L71.5579 16.3347Z\"\n}, {\n  title: \"Shape 7\",\n  path: \"M50 0H0V100C0 155.228 44.7715 200 100 200C155.228 200 200 155.228 200 100V0H150C122.386 0 100 22.3858 100 50C100 22.3858 77.6142 0 50 0Z\"\n}, {\n  title: \"Shape 8\",\n  path: \"M100.254 200C97.0998 200 94.4337 197.716 93.6699 194.656C91.2352 184.903 86.5744 174.531 79.6875 163.542C71.5278 150.347 59.8958 138.108 44.7917 126.823C31.6549 116.894 18.5181 110.123 5.38138 106.511C2.27005 105.656 0 102.897 0 99.6702C0 96.5066 2.18273 93.7795 5.22473 92.9109C18.1045 89.2335 30.5122 83.2631 42.4479 75C56.1632 65.4514 67.6215 53.993 76.8229 40.625C84.9629 28.7165 90.5507 16.9388 93.5863 5.29207C94.3815 2.24095 97.0676 0 100.221 0C103.409 0 106.114 2.29058 106.89 5.3833C108.642 12.3654 111.38 19.512 115.104 26.8229C119.792 35.8507 125.781 44.5312 133.073 52.8646C140.538 61.0243 148.872 68.4028 158.073 75C170.097 83.5231 182.32 89.5111 194.744 92.964C197.792 93.8109 200 96.5244 200 99.6874C200 102.898 197.725 105.634 194.629 106.483C186.754 108.642 178.648 112.124 170.313 116.927C160.243 122.83 150.868 129.861 142.187 138.021C133.507 146.007 126.389 154.427 120.833 163.281C113.933 174.293 109.267 184.745 106.837 194.639C106.083 197.708 103.413 200 100.254 200Z\"\n}, {\n  title: \"Shape 9\",\n  path: \"M120 0H80V51.7157L43.4315 15.1472L15.1472 43.4314L51.7158 80H0V120H51.7157L15.1472 156.568L43.4315 184.853L80 148.284V200H120V148.284L156.569 184.853L184.853 156.569L148.284 120H200V80H148.284L184.853 43.4314L156.569 15.1471L120 51.7157V0Z\"\n}, {\n  title: \"Shape 10\",\n  path: \"M0 0H100C155.228 0 200 44.7715 200 100V200H100C44.7715 200 0 155.228 0 100V0Z\"\n}, {\n  title: \"Shape 11\",\n  path: \"M128.603 16.3347C115.825 -5.44489 84.3365 -5.4449 71.5579 16.3347L71.0938 17.1257C65.1986 27.1733 54.4518 33.378 42.8027 33.4596L41.8856 33.466C16.6346 33.6428 0.890585 60.9123 13.3629 82.8687L13.8159 83.6661C19.5698 93.7953 19.5698 106.205 13.8159 116.334L13.3629 117.131C0.890586 139.088 16.6346 166.357 41.8856 166.534L42.8027 166.54C54.4517 166.622 65.1986 172.827 71.0938 182.874L71.5579 183.665C84.3365 205.445 115.825 205.445 128.603 183.665L129.067 182.874C134.963 172.827 145.709 166.622 157.358 166.54L158.276 166.534C183.527 166.357 199.271 139.088 186.798 117.131L186.345 116.334C180.591 106.205 180.591 93.7953 186.345 83.6661L186.798 82.8687C199.271 60.9123 183.527 33.6428 158.276 33.466L157.358 33.4596C145.709 33.378 134.963 27.1733 129.067 17.1257L128.603 16.3347ZM100.081 149.604C127.476 149.604 149.685 127.396 149.685 100C149.685 72.6042 127.476 50.3955 100.081 50.3955C72.6848 50.3955 50.4761 72.6042 50.4761 100C50.4761 127.396 72.6848 149.604 100.081 149.604Z\"\n}, {\n  title: \"Shape 12\",\n  path: \"M101.604 0.859655C100.827 -0.435397 98.9501 -0.435396 98.1734 0.859656L79.3113 32.3082C78.7978 33.1643 77.7318 33.5106 76.8132 33.1199L43.0684 18.7644C41.6788 18.1732 40.1604 19.2764 40.2932 20.7806L43.5184 57.3099C43.6062 58.3043 42.9474 59.2111 41.9745 59.4349L6.23647 67.6557C4.76478 67.9943 4.18481 69.7792 5.17645 70.9182L29.2571 98.5752C29.9126 99.3281 29.9126 100.449 29.2571 101.202L5.17645 128.859C4.18481 129.998 4.76478 131.783 6.23648 132.121L41.9745 140.342C42.9474 140.566 43.6062 141.473 43.5184 142.467L40.2932 178.996C40.1604 180.501 41.6788 181.604 43.0684 181.013L76.8132 166.657C77.7318 166.266 78.7978 166.613 79.3113 167.469L98.1734 198.917C98.9501 200.213 100.827 200.212 101.604 198.917L120.466 167.469C120.979 166.613 122.045 166.266 122.964 166.657L156.709 181.013C158.098 181.604 159.617 180.501 159.484 178.996L156.259 142.467C156.171 141.473 156.83 140.566 157.803 140.342L193.541 132.121C195.012 131.783 195.592 129.998 194.601 128.859L170.52 101.202C169.865 100.449 169.865 99.3281 170.52 98.5752L194.601 70.9182C195.592 69.7792 195.012 67.9943 193.541 67.6557L157.803 59.4349C156.83 59.2111 156.171 58.3043 156.259 57.3099L159.484 20.7806C159.617 19.2764 158.098 18.1732 156.709 18.7644L122.964 33.1199C122.045 33.5106 120.979 33.1643 120.466 32.3082L101.604 0.859655ZM100 150C127.614 150 150 127.614 150 100C150 72.3857 127.614 50 100 50C72.3858 50 50 72.3857 50 100C50 127.614 72.3858 150 100 150Z\"\n}, {\n  title: \"Shape 13\",\n  path: \"M100 173.738C24.3644 236.944 -36.9438 175.636 26.2621 100C-36.9438 24.3644 24.3644 -36.9438 100 26.2621C175.621 -36.9438 236.944 24.3644 173.738 100C236.944 175.578 175.621 236.944 100 173.738Z\"\n}, {\n  title: \"Shape 14\",\n  path: \"M100 200C155.228 200 200 155.228 200 100C200 44.7715 155.228 0 100 0C44.7715 0 0 44.7715 0 100C0 155.228 44.7715 200 100 200ZM100 143.75C124.162 143.75 143.75 124.162 143.75 100C143.75 75.8375 124.162 56.25 100 56.25C75.8375 56.25 56.25 75.8375 56.25 100C56.25 124.162 75.8375 143.75 100 143.75Z\"\n}, {\n  title: \"Shape 15\",\n  path: \"M50 100C77.6142 100 100 77.6142 100 50C100 77.6142 122.386 100 150 100C122.386 100 100 122.386 100 150C100 122.386 77.6142 100 50 100ZM50 100C22.3858 100 0 122.386 0 150C0 177.614 22.3858 200 50 200C77.6142 200 100 177.614 100 150C100 177.614 122.386 200 150 200C177.614 200 200 177.614 200 150C200 122.386 177.614 100 150 100C177.614 100 200 77.6142 200 50C200 22.3858 177.614 0 150 0C122.386 0 100 22.3858 100 50C100 22.3858 77.6142 0 50 0C22.3858 0 0 22.3858 0 50C0 77.6142 22.3858 100 50 100Z\"\n}, {\n  title: \"Shape 16\",\n  path: \"M29.2893 29.2893C19.2658 39.3128 15.6458 53.315 18.4294 66.2123C7.34132 73.3638 0 85.8246 0 100C-1.74156e-06 114.175 7.34132 126.636 18.4294 133.788C15.6458 146.685 19.2658 160.687 29.2893 170.711C39.3129 180.734 53.315 184.354 66.2123 181.571C73.3639 192.659 85.8246 200 100 200C114.175 200 126.636 192.659 133.788 181.571C146.685 184.354 160.687 180.734 170.711 170.711C180.734 160.687 184.354 146.685 181.571 133.788C192.659 126.636 200 114.175 200 100C200 85.8246 192.659 73.3638 181.571 66.2123C184.354 53.315 180.734 39.3129 170.711 29.2893C160.687 19.2658 146.685 15.6458 133.788 18.4294C126.636 7.34133 114.175 0 100 0C85.8246 0 73.3638 7.34131 66.2123 18.4293C53.315 15.6458 39.3129 19.2658 29.2893 29.2893Z\"\n}, {\n  title: \"Shape 17\",\n  path: \"M99.9759 100C44.7585 99.987 -2.80187e-06 55.2204 -7.62939e-06 1.74846e-05L200 0C200 55.2204 155.242 99.987 100.024 100C155.242 100.013 200 144.78 200 200H1.11288e-06C1.11288e-06 144.78 44.7585 100.013 99.9759 100Z\"\n}, {\n  title: \"Shape 18\",\n  path: \"M170 129.496C170 168.434 138.66 200 100 200C61.3401 200 30 168.434 30 129.496C30 92.6391 65.8392 48.2064 95.1126 6.95421C97.5122 3.57266 102.538 3.53875 104.974 6.89421C135.351 48.7369 170 92.5911 170 129.496Z\"\n}, {\n  title: \"Shape 19\",\n  path: \"M200 100.671L100 0L0 100.671H98.6668L0 200H200L101.333 100.671H200Z\"\n}, {\n  title: \"Shape 20\",\n  path: \"M50 0H0V100H50C22.3858 100 0 122.386 0 150V200H100V150C100 177.614 122.386 200 150 200H200V100H150C177.614 100 200 77.6142 200 50V0H100V50C100 22.3858 77.6142 0 50 0ZM100 100H50C77.6142 100 100 122.386 100 150V100ZM100 100V50C100 77.6142 122.386 100 150 100H100Z\"\n}, {\n  title: \"Shape 21\",\n  path: \"M117.333 100L200 183H5.45799e-05L82.6668 100L2.28882e-05 17L200 17L117.333 100Z\"\n}];\nShapesBig.defaultProps = {\n  paths: 1\n};\naddPropertyControls(ShapesBig, {\n  paths: {\n    title: \"Shape\",\n    type: ControlType.Enum,\n    options: shapesBig.map((_, i) => i),\n    optionTitles: shapesBig.map(shape => shape.title)\n  },\n  hasColor: {\n    title: \"Fill\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Color\",\n    disabledTitle: \"Gradient\"\n  },\n  color: {\n    title: \"Color\",\n    type: ControlType.Color,\n    defaultValue: \"#09F\",\n    hidden: props => !props.hasColor\n  },\n  startColor: {\n    title: \"Start\",\n    type: ControlType.Color,\n    defaultValue: \"#09F\",\n    hidden: props => props.hasColor\n  },\n  endColor: {\n    title: \"End\",\n    type: ControlType.Color,\n    defaultValue: \"#96F\",\n    hidden: props => props.hasColor\n  },\n  angle: {\n    title: \"Angle\",\n    type: ControlType.Number,\n    defaultValue: 0,\n    min: -360,\n    max: 360,\n    unit: \"\\xb0\",\n    displayStepper: true,\n    step: 15,\n    hidden: props => props.hasColor\n  }\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"ShapesBig\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerDisableUnlink\": \"*\",\n        \"framerContractVersion\": \"1\",\n        \"framerSupportedLayoutWidth\": \"fixed\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./ShapesBig.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 (7aa0232)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, optimizeAppear, optimizeAppearTransformTemplate, PropertyOverrides, removeHiddenBreakpointLayers, RichText, SVG, useHydratedBreakpointVariants, useLocaleInfo, useRouteElementId, withCSS } 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 ShapesBig from \"https://framerusercontent.com/modules/jtKAvrxm8EnQFXUS5j2i/iaXLJBT0c7TxL3H8JnYX/ShapesBig.js\";\nimport FormSpark from \"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/nCFuLfN2IGck31GEdjL0/1NDQri8cqnR5NVl5TuFM/augiA20Il.js\";\nconst ShapesBigFonts = getFonts(ShapesBig);\nconst PatternFonts = getFonts(Pattern);\nconst FormSparkFonts = getFonts(FormSpark);\nconst cycleOrder = [\"WQLkyLRf1\", \"RCanajTM3\", \"Fi5AKsU8B\"];\nconst breakpoints = {\n  Fi5AKsU8B: \"(max-width: 809px)\",\n  RCanajTM3: \"(min-width: 810px) and (max-width: 1199px)\",\n  WQLkyLRf1: \"(min-width: 1200px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  Fi5AKsU8B: \"framer-v-9ejszs\",\n  RCanajTM3: \"framer-v-1lvpbs9\",\n  WQLkyLRf1: \"framer-v-72rtr7\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"WQLkyLRf1\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transition1 = {\n  damping: 31,\n  delay: .75,\n  mass: 1,\n  stiffness: 97,\n  type: \"spring\"\n};\nconst animation = {\n  opacity: .9,\n  rotate: 0,\n  rotateX: -180,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst transformTemplate = (_, t) => `perspective(1200px) translateX(-50%) ${t}`;\nconst animation1 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst animation2 = {\n  opacity: .9,\n  rotate: 0,\n  rotateX: -180,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 0\n};\nconst transformTemplate1 = (_, t) => `perspective(1200px) translateY(-50%) ${t}`;\nconst transition2 = {\n  damping: 30,\n  delay: 0,\n  mass: 1,\n  stiffness: 400,\n  type: \"spring\"\n};\nconst animation3 = {\n  opacity: 0,\n  rotate: 0,\n  scale: .5,\n  transition: transition2,\n  x: 0,\n  y: 0\n};\nconst animation4 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 0\n};\nconst animation5 = {\n  opacity: .001,\n  rotate: 0,\n  scale: .5,\n  x: 0,\n  y: 0\n};\nconst transformTemplate2 = (_, t) => `perspective(1200px) ${t}`;\nconst transition3 = {\n  damping: 30,\n  delay: 0,\n  mass: 1,\n  stiffness: 174,\n  type: \"spring\"\n};\nconst animation6 = {\n  opacity: .1,\n  rotate: 0,\n  scale: 1,\n  transition: transition3,\n  x: -150,\n  y: 0\n};\nconst animation7 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition3,\n  x: 0,\n  y: 0\n};\nconst animation8 = {\n  opacity: .1,\n  rotate: 0,\n  scale: 1,\n  x: -150,\n  y: 0\n};\nconst transformTemplate3 = (_, t) => `translateX(-50%) ${t}`;\nconst transformTemplate4 = (_, t) => `translate(-50%, -50%) ${t}`;\nconst transformTemplate5 = (_, t) => `translateY(-50%) ${t}`;\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  Desktop: \"WQLkyLRf1\",\n  Phone: \"Fi5AKsU8B\",\n  Tablet: \"RCanajTM3\"\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(\"O0NXPiF7R\");\n  const ref1 = 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-c35lx\"),\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__*/_jsxs(motion.div, {\n            className: \"framer-17cpdoz\",\n            \"data-framer-name\": \"Hero\",\n            name: \"Hero\",\n            children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                Fi5AKsU8B: {\n                  \"data-framer-appear-id\": \"13rbg5\",\n                  animate: optimizeAppear(\"animate\", \"13rbg5\", animation1, \"9ejszs\"),\n                  initial: optimizeAppear(\"initial\", \"13rbg5\", animation2, \"9ejszs\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"13rbg5\", transformTemplate1)\n                },\n                RCanajTM3: {\n                  \"data-framer-appear-id\": \"f0dsjy\",\n                  animate: optimizeAppear(\"animate\", \"f0dsjy\", animation1, \"1lvpbs9\"),\n                  initial: optimizeAppear(\"initial\", \"f0dsjy\", animation2, \"1lvpbs9\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"f0dsjy\", transformTemplate)\n                }\n              },\n              children: /*#__PURE__*/_jsx(Container, {\n                animate: optimizeAppear(\"animate\", \"q0wzn\", animation1, \"72rtr7\"),\n                className: \"framer-q0wzn-container\",\n                \"data-framer-appear-id\": \"q0wzn\",\n                exit: animation,\n                initial: optimizeAppear(\"initial\", \"q0wzn\", animation2, \"72rtr7\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"q0wzn\", transformTemplate),\n                children: /*#__PURE__*/_jsx(ShapesBig, {\n                  angle: 135,\n                  color: \"rgb(0, 153, 255)\",\n                  endColor: \"rgb(217, 217, 217)\",\n                  hasColor: false,\n                  height: \"100%\",\n                  id: \"sL5pCLkoC\",\n                  layoutId: \"sL5pCLkoC\",\n                  paths: 9,\n                  startColor: \"rgb(242, 242, 242)\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  width: \"100%\"\n                })\n              })\n            }), /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                Fi5AKsU8B: {\n                  \"data-framer-appear-id\": \"1wi15ew\",\n                  animate: optimizeAppear(\"animate\", \"1wi15ew\", animation4, \"9ejszs\"),\n                  initial: optimizeAppear(\"initial\", \"1wi15ew\", animation5, \"9ejszs\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1wi15ew\", transformTemplate)\n                },\n                RCanajTM3: {\n                  \"data-framer-appear-id\": \"1jj84c6\",\n                  animate: optimizeAppear(\"animate\", \"1jj84c6\", animation4, \"1lvpbs9\"),\n                  initial: optimizeAppear(\"initial\", \"1jj84c6\", animation5, \"1lvpbs9\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1jj84c6\", transformTemplate2)\n                }\n              },\n              children: /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                animate: optimizeAppear(\"animate\", \"x2elkl\", animation4, \"72rtr7\"),\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"h1\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                      \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                      \"--framer-font-size\": \"224.73061179666348px\",\n                      \"--framer-font-weight\": \"800\",\n                      \"--framer-line-height\": \"1.1em\",\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"rgb(58, 46, 57)\",\n                      \"--framer-text-transform\": \"uppercase\"\n                    },\n                    children: \"Agency\"\n                  })\n                }),\n                className: \"framer-x2elkl\",\n                \"data-framer-appear-id\": \"x2elkl\",\n                exit: animation3,\n                fonts: [\"GF;Wix Madefor Display-800\"],\n                initial: optimizeAppear(\"initial\", \"x2elkl\", animation5, \"72rtr7\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"x2elkl\", transformTemplate),\n                verticalAlignment: \"top\",\n                viewBox: \"0 0 1000 247\",\n                withExternalLayout: true\n              })\n            }), /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                Fi5AKsU8B: {\n                  \"data-framer-appear-id\": \"1qf4z7q\",\n                  animate: optimizeAppear(\"animate\", \"1qf4z7q\", animation7, \"9ejszs\"),\n                  initial: optimizeAppear(\"initial\", \"1qf4z7q\", animation8, \"9ejszs\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1qf4z7q\", transformTemplate),\n                  viewBox: \"0 0 1000 358\"\n                },\n                RCanajTM3: {\n                  \"data-framer-appear-id\": \"f1flov\",\n                  animate: optimizeAppear(\"animate\", \"f1flov\", animation7, \"1lvpbs9\"),\n                  initial: optimizeAppear(\"initial\", \"f1flov\", animation8, \"1lvpbs9\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"f1flov\", transformTemplate),\n                  viewBox: \"0 0 1000 358\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                animate: optimizeAppear(\"animate\", \"vtmf90\", animation7, \"72rtr7\"),\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"h1\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                      \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                      \"--framer-font-size\": \"325.0743550834598px\",\n                      \"--framer-font-weight\": \"800\",\n                      \"--framer-line-height\": \"1.1em\",\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"rgb(58, 46, 57)\",\n                      \"--framer-text-transform\": \"uppercase\"\n                    },\n                    children: \"Oros\"\n                  })\n                }),\n                className: \"framer-vtmf90\",\n                \"data-framer-appear-id\": \"vtmf90\",\n                exit: animation6,\n                fonts: [\"GF;Wix Madefor Display-800\"],\n                initial: optimizeAppear(\"initial\", \"vtmf90\", animation8, \"72rtr7\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"vtmf90\", transformTemplate),\n                verticalAlignment: \"top\",\n                viewBox: \"0 0 1000 357\",\n                withExternalLayout: true\n              })\n            })]\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1xtd2ck\",\n            \"data-framer-name\": \"Text\",\n            name: \"Text\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-doccch\",\n              \"data-framer-name\": \"Content\",\n              name: \"Content\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1s0xyje\",\n                children: [/*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1nczz36-container\",\n                  children: /*#__PURE__*/_jsx(ShapesBig, {\n                    angle: 315,\n                    color: \"rgb(0, 153, 255)\",\n                    endColor: \"rgb(204, 56, 245)\",\n                    hasColor: false,\n                    height: \"100%\",\n                    id: \"NyjNEssYl\",\n                    layoutId: \"NyjNEssYl\",\n                    paths: 20,\n                    startColor: \"rgb(54, 62, 211)\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-ztp700-container\",\n                  children: /*#__PURE__*/_jsx(ShapesBig, {\n                    angle: 315,\n                    color: \"rgb(0, 153, 255)\",\n                    endColor: \"rgb(204, 56, 245)\",\n                    hasColor: false,\n                    height: \"100%\",\n                    id: \"rPOhOnQOs\",\n                    layoutId: \"rPOhOnQOs\",\n                    paths: 15,\n                    startColor: \"rgb(54, 62, 211)\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-mhk1ni-container\",\n                  children: /*#__PURE__*/_jsx(ShapesBig, {\n                    angle: 315,\n                    color: \"rgb(0, 153, 255)\",\n                    endColor: \"rgb(204, 56, 245)\",\n                    hasColor: false,\n                    height: \"100%\",\n                    id: \"BT71IrYtt\",\n                    layoutId: \"BT71IrYtt\",\n                    paths: 13,\n                    startColor: \"rgb(54, 62, 211)\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1r5fuwi-container\",\n                  children: /*#__PURE__*/_jsx(ShapesBig, {\n                    angle: 315,\n                    color: \"rgb(0, 153, 255)\",\n                    endColor: \"rgb(204, 56, 245)\",\n                    hasColor: false,\n                    height: \"100%\",\n                    id: \"qyjbnNJZf\",\n                    layoutId: \"qyjbnNJZf\",\n                    paths: 20,\n                    startColor: \"rgb(54, 62, 211)\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    width: \"100%\"\n                  })\n                })]\n              }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  Fi5AKsU8B: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                          \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                          \"--framer-font-size\": \"32px\",\n                          \"--framer-font-weight\": \"800\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(237, 177, 131)\"\n                        },\n                        children: \"Crafting Stunning Experiences\"\n                      })\n                    })\n                  },\n                  RCanajTM3: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                          \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                          \"--framer-font-size\": \"40px\",\n                          \"--framer-font-weight\": \"800\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(237, 177, 131)\"\n                        },\n                        children: \"Crafting Stunning Experiences\"\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\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                        \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                        \"--framer-font-size\": \"48px\",\n                        \"--framer-font-weight\": \"800\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(237, 177, 131)\"\n                      },\n                      children: \"Crafting Stunning Experiences\"\n                    })\n                  }),\n                  className: \"framer-1otu6bv\",\n                  fonts: [\"GF;Wix Madefor Display-800\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-v6gho9\",\n                \"data-framer-name\": \"Text\",\n                name: \"Text\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h3\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7RE0gU2Fucy03MDA=\",\n                        \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-font-weight\": \"700\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(244, 216, 205)\"\n                      },\n                      children: \"Oros Agency is a Netherlands-based webstudio with a heart rooted in Ukraine. Our dedicated team of professionals crafts stunning, tailor-made web solutions to suit your unique needs.\"\n                    })\n                  }),\n                  className: \"framer-c2s6bi\",\n                  fonts: [\"GF;DM Sans-700\"],\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\": \"R0Y7RE0gU2Fucy03MDA=\",\n                        \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-font-weight\": \"700\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(244, 216, 205)\"\n                      },\n                      children: \"From web page development to marketing campaigns, our creative approach will captivate your audience, ensuring your online presence shines brighter than the rest.\"\n                    })\n                  }),\n                  className: \"framer-1a8nrc1\",\n                  fonts: [\"GF;DM Sans-700\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-q0kmds\",\n            \"data-framer-name\": \"Section\",\n            name: \"Section\",\n            children: [/*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1ojz7l4\",\n              \"data-framer-name\": \"Wrapper\",\n              name: \"Wrapper\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-f7h4o6\",\n                \"data-framer-name\": \"Left\",\n                name: \"Left\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    Fi5AKsU8B: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                            \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                            \"--framer-font-size\": \"48px\",\n                            \"--framer-font-weight\": \"800\",\n                            \"--framer-letter-spacing\": \"0px\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(237, 177, 131)\"\n                          },\n                          children: \"Framer - A New Age Tool for Web Mastery\"\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\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                          \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                          \"--framer-font-size\": \"48px\",\n                          \"--framer-font-weight\": \"800\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(237, 177, 131)\"\n                        },\n                        children: \"Framer - A New Age Tool for Web Mastery\"\n                      })\n                    }),\n                    className: \"framer-gjxm3u\",\n                    fonts: [\"GF;Wix Madefor Display-800\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    Fi5AKsU8B: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7RE0gU2Fucy03MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"20px\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-letter-spacing\": \"0px\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(244, 216, 205)\"\n                          },\n                          children: \"Leave the old school behind and embrace Framer, a modern web design tool that brings your vision to life. Create pixel-perfect layouts with unmatched precision and speed.\"\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\": \"R0Y7RE0gU2Fucy03MDA=\",\n                          \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"20px\",\n                          \"--framer-font-weight\": \"700\",\n                          \"--framer-letter-spacing\": \"-0.025em\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(244, 216, 205)\"\n                        },\n                        children: \"Leave the old school behind and embrace Framer, a modern web design tool that brings your vision to life. Create pixel-perfect layouts with unmatched precision and speed.\"\n                      })\n                    }),\n                    className: \"framer-sgpcav\",\n                    fonts: [\"GF;DM Sans-700\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })]\n              }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  Fi5AKsU8B: {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 7360,\n                      intrinsicWidth: 4912,\n                      loading: \"lazy\",\n                      pixelHeight: 7360,\n                      pixelWidth: 4912,\n                      sizes: \"1000px\",\n                      src: new URL(\"https://framerusercontent.com/images/jzVdgWyADSjRsgHuwnit1UvxE.jpg\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/jzVdgWyADSjRsgHuwnit1UvxE.jpg?scale-down-to=512\").href} 341w, ${new URL(\"https://framerusercontent.com/images/jzVdgWyADSjRsgHuwnit1UvxE.jpg?scale-down-to=1024\").href} 683w, ${new URL(\"https://framerusercontent.com/images/jzVdgWyADSjRsgHuwnit1UvxE.jpg?scale-down-to=2048\").href} 1366w, ${new URL(\"https://framerusercontent.com/images/jzVdgWyADSjRsgHuwnit1UvxE.jpg?scale-down-to=4096\").href} 2733w, ${new URL(\"https://framerusercontent.com/images/jzVdgWyADSjRsgHuwnit1UvxE.jpg\").href} 4912w`\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 7360,\n                    intrinsicWidth: 4912,\n                    loading: \"lazy\",\n                    pixelHeight: 7360,\n                    pixelWidth: 4912,\n                    sizes: \"470px\",\n                    src: new URL(\"https://framerusercontent.com/images/jzVdgWyADSjRsgHuwnit1UvxE.jpg\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/jzVdgWyADSjRsgHuwnit1UvxE.jpg?scale-down-to=512\").href} 341w, ${new URL(\"https://framerusercontent.com/images/jzVdgWyADSjRsgHuwnit1UvxE.jpg?scale-down-to=1024\").href} 683w, ${new URL(\"https://framerusercontent.com/images/jzVdgWyADSjRsgHuwnit1UvxE.jpg?scale-down-to=2048\").href} 1366w, ${new URL(\"https://framerusercontent.com/images/jzVdgWyADSjRsgHuwnit1UvxE.jpg?scale-down-to=4096\").href} 2733w, ${new URL(\"https://framerusercontent.com/images/jzVdgWyADSjRsgHuwnit1UvxE.jpg\").href} 4912w`\n                  },\n                  className: \"framer-uqn039\",\n                  \"data-framer-name\": \"Image\",\n                  name: \"Image\"\n                })\n              })]\n            }), /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-dxgbqc\",\n              \"data-framer-name\": \"Wrapper\",\n              name: \"Wrapper\",\n              children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  Fi5AKsU8B: {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1728,\n                      intrinsicWidth: 2426,\n                      loading: \"lazy\",\n                      pixelHeight: 1728,\n                      pixelWidth: 2426,\n                      sizes: \"1000px\",\n                      src: new URL(\"https://framerusercontent.com/images/jcWVCQpGiim9UTJ6UmiJ6ON6t0.jpg\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/jcWVCQpGiim9UTJ6UmiJ6ON6t0.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/jcWVCQpGiim9UTJ6UmiJ6ON6t0.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/jcWVCQpGiim9UTJ6UmiJ6ON6t0.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/jcWVCQpGiim9UTJ6UmiJ6ON6t0.jpg\").href} 2426w`\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 1728,\n                    intrinsicWidth: 2426,\n                    loading: \"lazy\",\n                    pixelHeight: 1728,\n                    pixelWidth: 2426,\n                    sizes: \"470px\",\n                    src: new URL(\"https://framerusercontent.com/images/jcWVCQpGiim9UTJ6UmiJ6ON6t0.jpg\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/jcWVCQpGiim9UTJ6UmiJ6ON6t0.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/jcWVCQpGiim9UTJ6UmiJ6ON6t0.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/jcWVCQpGiim9UTJ6UmiJ6ON6t0.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/jcWVCQpGiim9UTJ6UmiJ6ON6t0.jpg\").href} 2426w`\n                  },\n                  className: \"framer-13b52wh\",\n                  \"data-framer-name\": \"Image\",\n                  name: \"Image\"\n                })\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-199lbqy\",\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\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                        \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                        \"--framer-font-size\": \"48px\",\n                        \"--framer-font-weight\": \"800\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(237, 177, 131)\"\n                      },\n                      children: \"WordPress - Tried and True Foundation\"\n                    })\n                  }),\n                  className: \"framer-vq63ss\",\n                  fonts: [\"GF;Wix Madefor Display-800\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    Fi5AKsU8B: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7RE0gU2Fucy03MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"20px\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-letter-spacing\": \"0px\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(244, 216, 205)\"\n                          },\n                          children: \"When you need something rock-solid, WordPress has your back. Years of experience come together in this time-tested platform for perfecting your online presence.\"\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\": \"R0Y7RE0gU2Fucy03MDA=\",\n                          \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"20px\",\n                          \"--framer-font-weight\": \"700\",\n                          \"--framer-letter-spacing\": \"-0.025em\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(244, 216, 205)\"\n                        },\n                        children: \"When you need something rock-solid, WordPress has your back. Years of experience come together in this time-tested platform for perfecting your online presence.\"\n                      })\n                    }),\n                    className: \"framer-1p7w50w\",\n                    fonts: [\"GF;DM Sans-700\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })]\n              })]\n            })]\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1fpzmgq\",\n            \"data-framer-name\": \"Metrics\",\n            name: \"Metrics\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1m5sbt9\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1gvow\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    Fi5AKsU8B: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                            \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                            \"--framer-font-size\": \"50px\",\n                            \"--framer-font-weight\": \"800\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(30, 85, 92)\"\n                          },\n                          children: \"100+\"\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\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                          \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                          \"--framer-font-size\": \"80px\",\n                          \"--framer-font-weight\": \"800\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(30, 85, 92)\"\n                        },\n                        children: \"100+\"\n                      })\n                    }),\n                    className: \"framer-1etk73u\",\n                    fonts: [\"GF;Wix Madefor Display-800\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h3\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7RE0gU2Fucy03MDA=\",\n                        \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-font-weight\": \"700\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(30, 85, 92)\"\n                      },\n                      children: \"Successful Projects\"\n                    })\n                  }),\n                  className: \"framer-dlcxlt\",\n                  fonts: [\"GF;DM Sans-700\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-xdm1ys\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1j404zu-container\",\n                  children: /*#__PURE__*/_jsx(ShapesBig, {\n                    angle: 135,\n                    color: \"rgb(0, 153, 255)\",\n                    endColor: \"rgb(58, 46, 57)\",\n                    hasColor: false,\n                    height: \"100%\",\n                    id: \"sg3v3qYea\",\n                    layoutId: \"sg3v3qYea\",\n                    paths: 20,\n                    startColor: \"rgb(0, 0, 0)\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    width: \"100%\"\n                  })\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-e74uzy\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-181arp0-container\",\n                  children: /*#__PURE__*/_jsx(ShapesBig, {\n                    angle: 315,\n                    color: \"rgb(0, 153, 255)\",\n                    endColor: \"rgb(58, 46, 57)\",\n                    hasColor: false,\n                    height: \"100%\",\n                    id: \"blf7cQvpO\",\n                    layoutId: \"blf7cQvpO\",\n                    paths: 17,\n                    startColor: \"rgb(0, 0, 0)\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    width: \"100%\"\n                  })\n                })\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-lywx49\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    Fi5AKsU8B: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                            \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                            \"--framer-font-size\": \"50px\",\n                            \"--framer-font-weight\": \"800\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(30, 85, 92)\"\n                          },\n                          children: \"7\"\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\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                          \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                          \"--framer-font-size\": \"80px\",\n                          \"--framer-font-weight\": \"800\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(30, 85, 92)\"\n                        },\n                        children: \"7\"\n                      })\n                    }),\n                    className: \"framer-sun0bc\",\n                    fonts: [\"GF;Wix Madefor Display-800\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7RE0gU2Fucy03MDA=\",\n                        \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-font-weight\": \"700\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(30, 85, 92)\"\n                      },\n                      children: \"Years in Business\"\n                    })\n                  }),\n                  className: \"framer-n2z993\",\n                  fonts: [\"GF;DM Sans-700\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-ie0y1k\",\n            \"data-framer-name\": \"Projects\",\n            name: \"Projects\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-9dk9kb\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-dpmsa4\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: [/*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-vvbe2d\",\n                  \"data-framer-name\": \"Image\",\n                  name: \"Image\",\n                  children: /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-5pkbka-container\",\n                    children: /*#__PURE__*/_jsx(ShapesBig, {\n                      angle: 135,\n                      color: \"rgb(0, 153, 255)\",\n                      endColor: \"rgb(30, 85, 92)\",\n                      hasColor: false,\n                      height: \"100%\",\n                      id: \"JuXU9rSfM\",\n                      layoutId: \"JuXU9rSfM\",\n                      paths: 2,\n                      startColor: \"rgb(58, 46, 57)\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-r5ux6t\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      Fi5AKsU8B: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                              \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                              \"--framer-font-weight\": \"800\",\n                              \"--framer-line-height\": \"1.5em\",\n                              \"--framer-text-alignment\": \"left\"\n                            },\n                            children: \"Web Design\"\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\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                            \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                            \"--framer-font-size\": \"32px\",\n                            \"--framer-font-weight\": \"800\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Web Design\"\n                        })\n                      }),\n                      className: \"framer-1w70mkb\",\n                      fonts: [\"GF;Wix Madefor Display-800\"],\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\": \"R0Y7RE0gU2Fucy01MDA=\",\n                          \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                          \"--framer-font-size\": \"14px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"Creating Eye-catching Interfaces\"\n                      })\n                    }),\n                    className: \"framer-1bty8m2\",\n                    fonts: [\"GF;DM Sans-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1mq67sn\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: [/*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-qluizp\",\n                  \"data-framer-name\": \"Image\",\n                  name: \"Image\",\n                  children: /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1sm6x7j-container\",\n                    children: /*#__PURE__*/_jsx(ShapesBig, {\n                      angle: 315,\n                      color: \"rgb(0, 153, 255)\",\n                      endColor: \"rgb(30, 85, 92)\",\n                      hasColor: false,\n                      height: \"100%\",\n                      id: \"cEaqd6uyC\",\n                      layoutId: \"cEaqd6uyC\",\n                      paths: 18,\n                      startColor: \"rgb(58, 46, 57)\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1qzd96o\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      Fi5AKsU8B: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                              \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                              \"--framer-font-weight\": \"800\",\n                              \"--framer-line-height\": \"1.5em\",\n                              \"--framer-text-alignment\": \"left\"\n                            },\n                            children: \"Marketing\"\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\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                            \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                            \"--framer-font-size\": \"32px\",\n                            \"--framer-font-weight\": \"800\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Marketing\"\n                        })\n                      }),\n                      className: \"framer-hc3jd4\",\n                      fonts: [\"GF;Wix Madefor Display-800\"],\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\": \"R0Y7RE0gU2Fucy01MDA=\",\n                          \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                          \"--framer-font-size\": \"14px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"Driving Targeted Traffic\"\n                      })\n                    }),\n                    className: \"framer-13hn4c0\",\n                    fonts: [\"GF;DM Sans-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-7h4mxf\",\n            \"data-framer-name\": \"Divider\",\n            name: \"Divider\",\n            children: [/*#__PURE__*/_jsx(Container, {\n              className: \"framer-c6e5ut-container\",\n              children: /*#__PURE__*/_jsx(Pattern, {\n                back: \"rgb(237, 177, 131)\",\n                diagonal: true,\n                direction: \"left\",\n                duration: 5,\n                front: \"rgb(255, 255, 255)\",\n                height: \"100%\",\n                id: \"UUwCs2MyA\",\n                layoutId: \"UUwCs2MyA\",\n                patternType: \"polka\",\n                radius: 0,\n                scale: 30,\n                shouldAnimate: false,\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                width: \"100%\"\n              })\n            }), /*#__PURE__*/_jsx(Container, {\n              className: \"framer-1idsdii-container\",\n              transformTemplate: transformTemplate3,\n              children: /*#__PURE__*/_jsx(ShapesBig, {\n                angle: 135,\n                color: \"rgb(0, 153, 255)\",\n                endColor: \"rgb(58, 46, 57)\",\n                hasColor: false,\n                height: \"100%\",\n                id: \"YtbKSsBCS\",\n                layoutId: \"YtbKSsBCS\",\n                paths: 14,\n                startColor: \"rgb(0, 0, 0)\",\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                width: \"100%\"\n              })\n            }), /*#__PURE__*/_jsx(Container, {\n              className: \"framer-1fgjbo5-container\",\n              transformTemplate: transformTemplate4,\n              children: /*#__PURE__*/_jsx(ShapesBig, {\n                angle: 315,\n                color: \"rgb(0, 153, 255)\",\n                endColor: \"rgb(227, 135, 64)\",\n                hasColor: false,\n                height: \"100%\",\n                id: \"A6_fGeb9u\",\n                layoutId: \"A6_fGeb9u\",\n                paths: 17,\n                startColor: \"rgb(234, 163, 109)\",\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                width: \"100%\"\n              })\n            })]\n          }), /*#__PURE__*/_jsxs(motion.section, {\n            className: \"framer-15ykwf6\",\n            \"data-framer-name\": \"Pricing\",\n            name: \"Pricing\",\n            children: [/*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-43lvj1\",\n              \"data-framer-name\": \"Container\",\n              name: \"Container\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-zzhgyr\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: [/*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1u26f8v-container\",\n                  children: /*#__PURE__*/_jsx(ShapesBig, {\n                    angle: 135,\n                    color: \"rgb(0, 153, 255)\",\n                    endColor: \"rgb(30, 85, 92)\",\n                    hasColor: false,\n                    height: \"100%\",\n                    id: \"vus8ANjfA\",\n                    layoutId: \"vus8ANjfA\",\n                    paths: 13,\n                    startColor: \"rgb(58, 46, 57)\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7RE0gU2Fucy01MDA=\",\n                        \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                        \"--framer-font-size\": \"14px\",\n                        \"--framer-font-weight\": \"500\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"Starter\"\n                    })\n                  }),\n                  className: \"framer-4v3996\",\n                  fonts: [\"GF;DM Sans-500\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    Fi5AKsU8B: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                            \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                            \"--framer-font-size\": \"32px\",\n                            \"--framer-font-weight\": \"800\",\n                            \"--framer-line-height\": \"1em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"\u20AC300 / once\"\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\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                          \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                          \"--framer-font-size\": \"40px\",\n                          \"--framer-font-weight\": \"800\",\n                          \"--framer-line-height\": \"1em\",\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"\u20AC300 / once\"\n                      })\n                    }),\n                    className: \"framer-15c8yyz\",\n                    fonts: [\"GF;Wix Madefor Display-800\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-p3qfoq\",\n                  children: [/*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-wbjr6q\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-11p0tvi\",\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=\"#000000\"></path></svg>',\n                      svgContentId: 382789123,\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\": \"R0Y7RE0gU2Fucy01MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"1 website till 5 pages\"\n                        })\n                      }),\n                      className: \"framer-5tlrxn\",\n                      fonts: [\"GF;DM Sans-500\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-lxe01c\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-1c4nvf7\",\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=\"#000000\"></path></svg>',\n                      svgContentId: 382789123,\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\": \"R0Y7RE0gU2Fucy01MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Basic SEO\"\n                        })\n                      }),\n                      className: \"framer-1dbkz0j\",\n                      fonts: [\"GF;DM Sans-500\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-c18tcr\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-1mxkr0d\",\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=\"#000000\"></path></svg>',\n                      svgContentId: 382789123,\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\": \"R0Y7RE0gU2Fucy01MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"1 year contract support\"\n                        })\n                      }),\n                      className: \"framer-1yixr20\",\n                      fonts: [\"GF;DM Sans-500\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-fjhhw\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-1mk0t7a\",\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=\"#000000\"></path></svg>',\n                      svgContentId: 382789123,\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\": \"R0Y7RE0gU2Fucy01MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Support starting from 20 euro per month\"\n                        })\n                      }),\n                      className: \"framer-1y0le2a\",\n                      fonts: [\"GF;DM Sans-500\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  })]\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-z2a9xg\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: [/*#__PURE__*/_jsx(Container, {\n                  className: \"framer-sampzj-container\",\n                  children: /*#__PURE__*/_jsx(ShapesBig, {\n                    angle: 135,\n                    color: \"rgb(0, 153, 255)\",\n                    endColor: \"rgb(30, 85, 92)\",\n                    hasColor: false,\n                    height: \"100%\",\n                    id: \"Uw_61Efek\",\n                    layoutId: \"Uw_61Efek\",\n                    paths: 8,\n                    startColor: \"rgb(58, 46, 57)\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7RE0gU2Fucy01MDA=\",\n                        \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                        \"--framer-font-size\": \"14px\",\n                        \"--framer-font-weight\": \"500\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"Professional\"\n                    })\n                  }),\n                  className: \"framer-1k8anpj\",\n                  fonts: [\"GF;DM Sans-500\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    Fi5AKsU8B: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                            \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                            \"--framer-font-size\": \"32px\",\n                            \"--framer-font-weight\": \"800\",\n                            \"--framer-line-height\": \"1em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"\u20AC80 / month\"\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\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                          \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                          \"--framer-font-size\": \"40px\",\n                          \"--framer-font-weight\": \"800\",\n                          \"--framer-line-height\": \"1em\",\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"\u20AC80 / month\"\n                      })\n                    }),\n                    className: \"framer-dxg3rr\",\n                    fonts: [\"GF;Wix Madefor Display-800\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1q5i6z5\",\n                  children: [/*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-mdud2h\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-984m1b\",\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=\"#000000\"></path></svg>',\n                      svgContentId: 382789123,\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\": \"R0Y7RE0gU2Fucy01MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"2-3 langing pages / or 10 pages website corporative type\"\n                        })\n                      }),\n                      className: \"framer-195aojp\",\n                      fonts: [\"GF;DM Sans-500\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-1adz08g\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-rzqdsf\",\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=\"#000000\"></path></svg>',\n                      svgContentId: 382789123,\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\": \"R0Y7RE0gU2Fucy01MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Advanced SEO\"\n                        })\n                      }),\n                      className: \"framer-lst8z0\",\n                      fonts: [\"GF;DM Sans-500\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-1cnrhuu\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-1ox5nkv\",\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=\"#000000\"></path></svg>',\n                      svgContentId: 382789123,\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\": \"R0Y7RE0gU2Fucy01MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Small marketing package inc.\"\n                        })\n                      }),\n                      className: \"framer-rqf1qe\",\n                      fonts: [\"GF;DM Sans-500\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-z1wq5\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-s06vtg\",\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=\"#000000\"></path></svg>',\n                      svgContentId: 382789123,\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\": \"R0Y7RE0gU2Fucy01MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Fast support\"\n                        })\n                      }),\n                      className: \"framer-93av1d\",\n                      fonts: [\"GF;DM Sans-500\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  })]\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-47hqha\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: [/*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1w02lvc-container\",\n                  children: /*#__PURE__*/_jsx(ShapesBig, {\n                    angle: 135,\n                    color: \"rgb(0, 153, 255)\",\n                    endColor: \"rgb(30, 85, 92)\",\n                    hasColor: false,\n                    height: \"100%\",\n                    id: \"VPdKKig5d\",\n                    layoutId: \"VPdKKig5d\",\n                    paths: 14,\n                    startColor: \"rgb(58, 46, 57)\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7RE0gU2Fucy01MDA=\",\n                        \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                        \"--framer-font-size\": \"14px\",\n                        \"--framer-font-weight\": \"500\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"Enterprise\"\n                    })\n                  }),\n                  className: \"framer-mj404d\",\n                  fonts: [\"GF;DM Sans-500\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    Fi5AKsU8B: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                            \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                            \"--framer-font-size\": \"32px\",\n                            \"--framer-font-weight\": \"800\",\n                            \"--framer-line-height\": \"1em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"\u20AC200 / month\"\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\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                          \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                          \"--framer-font-size\": \"40px\",\n                          \"--framer-font-weight\": \"800\",\n                          \"--framer-line-height\": \"1em\",\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"\u20AC200 / month\"\n                      })\n                    }),\n                    className: \"framer-1iquxjt\",\n                    fonts: [\"GF;Wix Madefor Display-800\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1cp6ys2\",\n                  children: [/*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-1u8ipm\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-1wsx99d\",\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=\"#000000\"></path></svg>',\n                      svgContentId: 382789123,\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\": \"R0Y7RE0gU2Fucy01MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Custom Designs\"\n                        })\n                      }),\n                      className: \"framer-hc3obz\",\n                      fonts: [\"GF;DM Sans-500\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-g4rcdr\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-v9u7ti\",\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=\"#000000\"></path></svg>',\n                      svgContentId: 382789123,\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\": \"R0Y7RE0gU2Fucy01MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Expert SEO\"\n                        })\n                      }),\n                      className: \"framer-1uhpwis\",\n                      fonts: [\"GF;DM Sans-500\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-6c1oks\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-v2w08w\",\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=\"#000000\"></path></svg>',\n                      svgContentId: 382789123,\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\": \"R0Y7RE0gU2Fucy01MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Full marketing\"\n                        })\n                      }),\n                      className: \"framer-1iivv1n\",\n                      fonts: [\"GF;DM Sans-500\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-ejmms7\",\n                    \"data-framer-name\": \"Row\",\n                    name: \"Row\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-1diiqzn\",\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=\"#000000\"></path></svg>',\n                      svgContentId: 382789123,\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\": \"R0Y7RE0gU2Fucy01MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                            \"--framer-font-size\": \"14px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"1.5em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Priority Support\"\n                        })\n                      }),\n                      className: \"framer-1sihjlt\",\n                      fonts: [\"GF;DM Sans-500\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  })]\n                })]\n              })]\n            }), /*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsxs(React.Fragment, {\n                children: [/*#__PURE__*/_jsx(\"p\", {\n                  style: {\n                    \"--framer-font-size\": \"40px\"\n                  },\n                  children: /*#__PURE__*/_jsx(\"br\", {\n                    className: \"trailing-break\"\n                  })\n                }), /*#__PURE__*/_jsx(\"p\", {\n                  style: {\n                    \"--framer-font-size\": \"40px\"\n                  },\n                  children: \"All price are individual for every client. \"\n                }), /*#__PURE__*/_jsx(\"p\", {\n                  style: {\n                    \"--framer-font-size\": \"40px\"\n                  },\n                  children: \"Please discuss with us.\"\n                })]\n              }),\n              className: \"framer-gah3lt\",\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            })]\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-vpko7y\",\n            \"data-framer-name\": \"Templates\",\n            name: \"Templates\",\n            children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                Fi5AKsU8B: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS1yZWd1bGFy\",\n                        \"--framer-font-family\": '\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"73.11977715877438px\"\n                      },\n                      children: \"Our works\"\n                    })\n                  }),\n                  viewBox: \"0 0 350 88\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS1yZWd1bGFy\",\n                      \"--framer-font-family\": '\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\n                      \"--framer-font-size\": \"150px\"\n                    },\n                    children: \"Our works\"\n                  })\n                }),\n                className: \"framer-bpav74\",\n                fonts: [\"GF;Wix Madefor Display-regular\"],\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })\n            }), /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1ya946x\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-s7by3g\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    Fi5AKsU8B: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 1834,\n                        intrinsicWidth: 910,\n                        loading: \"lazy\",\n                        pixelHeight: 1834,\n                        pixelWidth: 910,\n                        sizes: \"min(100vw - 40px, 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/ooHPojSmRRrzot48vlARypC02RQ.jpeg\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/ooHPojSmRRrzot48vlARypC02RQ.jpeg?scale-down-to=512\").href} 254w, ${new URL(\"https://framerusercontent.com/images/ooHPojSmRRrzot48vlARypC02RQ.jpeg?scale-down-to=1024\").href} 508w, ${new URL(\"https://framerusercontent.com/images/ooHPojSmRRrzot48vlARypC02RQ.jpeg\").href} 910w`\n                      }\n                    },\n                    RCanajTM3: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 1834,\n                        intrinsicWidth: 910,\n                        loading: \"lazy\",\n                        pixelHeight: 1834,\n                        pixelWidth: 910,\n                        sizes: \"max((min(100vw - 80px, 1000px) - 60px) / 2, 0px)\",\n                        src: new URL(\"https://framerusercontent.com/images/ooHPojSmRRrzot48vlARypC02RQ.jpeg\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/ooHPojSmRRrzot48vlARypC02RQ.jpeg?scale-down-to=512\").href} 254w, ${new URL(\"https://framerusercontent.com/images/ooHPojSmRRrzot48vlARypC02RQ.jpeg?scale-down-to=1024\").href} 508w, ${new URL(\"https://framerusercontent.com/images/ooHPojSmRRrzot48vlARypC02RQ.jpeg\").href} 910w`\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fit\",\n                      intrinsicHeight: 1834,\n                      intrinsicWidth: 910,\n                      loading: \"lazy\",\n                      pixelHeight: 1834,\n                      pixelWidth: 910,\n                      sizes: \"max((min(100vw - 200px, 1000px) - 60px) / 2, 0px)\",\n                      src: new URL(\"https://framerusercontent.com/images/ooHPojSmRRrzot48vlARypC02RQ.jpeg\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/ooHPojSmRRrzot48vlARypC02RQ.jpeg?scale-down-to=512\").href} 254w, ${new URL(\"https://framerusercontent.com/images/ooHPojSmRRrzot48vlARypC02RQ.jpeg?scale-down-to=1024\").href} 508w, ${new URL(\"https://framerusercontent.com/images/ooHPojSmRRrzot48vlARypC02RQ.jpeg\").href} 910w`\n                    },\n                    className: \"framer-sp6fw7\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-btj2j5\",\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\": \"R0Y7SW50ZXItNjAw\",\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-font-weight\": \"600\",\n                          \"--framer-letter-spacing\": \"-0.7px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"\n                        },\n                        children: \"Website for Dental Clinic in Netherlands\"\n                      })\n                    }),\n                    className: \"framer-ed1rf3\",\n                    fonts: [\"GF;Inter-600\"],\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\": \"R0Y7SW50ZXItNTAw\",\n                          \"--framer-font-size\": \"20px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.4em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"\n                        },\n                        children: \"We make completly new website for dental clinic, for new location.\"\n                      })\n                    }),\n                    className: \"framer-jifqyn\",\n                    fonts: [\"GF;Inter-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1ko71c4\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    Fi5AKsU8B: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 1344,\n                        intrinsicWidth: 2400,\n                        loading: \"lazy\",\n                        pixelHeight: 1344,\n                        pixelWidth: 2400,\n                        sizes: \"min(100vw - 40px, 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/Vz3Hnqc3VOqQh5tSSmJZ0C9P0.jpeg\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/Vz3Hnqc3VOqQh5tSSmJZ0C9P0.jpeg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/Vz3Hnqc3VOqQh5tSSmJZ0C9P0.jpeg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/Vz3Hnqc3VOqQh5tSSmJZ0C9P0.jpeg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/Vz3Hnqc3VOqQh5tSSmJZ0C9P0.jpeg\").href} 2400w`\n                      }\n                    },\n                    RCanajTM3: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 1344,\n                        intrinsicWidth: 2400,\n                        loading: \"lazy\",\n                        pixelHeight: 1344,\n                        pixelWidth: 2400,\n                        sizes: \"max((min(100vw - 80px, 1000px) - 60px) / 2, 0px)\",\n                        src: new URL(\"https://framerusercontent.com/images/Vz3Hnqc3VOqQh5tSSmJZ0C9P0.jpeg\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/Vz3Hnqc3VOqQh5tSSmJZ0C9P0.jpeg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/Vz3Hnqc3VOqQh5tSSmJZ0C9P0.jpeg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/Vz3Hnqc3VOqQh5tSSmJZ0C9P0.jpeg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/Vz3Hnqc3VOqQh5tSSmJZ0C9P0.jpeg\").href} 2400w`\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1344,\n                      intrinsicWidth: 2400,\n                      loading: \"lazy\",\n                      pixelHeight: 1344,\n                      pixelWidth: 2400,\n                      sizes: \"max((min(100vw - 200px, 1000px) - 60px) / 2, 0px)\",\n                      src: new URL(\"https://framerusercontent.com/images/Vz3Hnqc3VOqQh5tSSmJZ0C9P0.jpeg\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/Vz3Hnqc3VOqQh5tSSmJZ0C9P0.jpeg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/Vz3Hnqc3VOqQh5tSSmJZ0C9P0.jpeg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/Vz3Hnqc3VOqQh5tSSmJZ0C9P0.jpeg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/Vz3Hnqc3VOqQh5tSSmJZ0C9P0.jpeg\").href} 2400w`\n                    },\n                    className: \"framer-y6izf9\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1ka8zde\",\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\": \"R0Y7SW50ZXItNjAw\",\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-font-weight\": \"600\",\n                          \"--framer-letter-spacing\": \"-0.7px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"\n                        },\n                        children: \"Leela Games in Netherlands\"\n                      })\n                    }),\n                    className: \"framer-pg5aab\",\n                    fonts: [\"GF;Inter-600\"],\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\": \"R0Y7SW50ZXItNTAw\",\n                          \"--framer-font-size\": \"20px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.4em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"\n                        },\n                        children: \"Website for Leela Game Project. We realize simple design and possibilty to book a ticket to game and pay it.\"\n                      })\n                    }),\n                    className: \"framer-1vk11dz\",\n                    fonts: [\"GF;Inter-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })]\n              })]\n            })]\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-v6wa8l\",\n            \"data-framer-name\": \"Divider\",\n            name: \"Divider\",\n            children: [/*#__PURE__*/_jsx(Container, {\n              className: \"framer-1trud2q-container\",\n              children: /*#__PURE__*/_jsx(Pattern, {\n                back: \"rgb(237, 177, 131)\",\n                diagonal: true,\n                direction: \"left\",\n                duration: 5,\n                front: \"rgb(30, 85, 92)\",\n                height: \"100%\",\n                id: \"RBz9uLqFZ\",\n                layoutId: \"RBz9uLqFZ\",\n                patternType: \"polka\",\n                radius: 0,\n                scale: 30,\n                shouldAnimate: false,\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                width: \"100%\"\n              })\n            }), /*#__PURE__*/_jsx(Container, {\n              className: \"framer-1nwygmc-container\",\n              transformTemplate: transformTemplate5,\n              children: /*#__PURE__*/_jsx(ShapesBig, {\n                angle: 135,\n                color: \"rgb(0, 153, 255)\",\n                endColor: \"rgb(58, 46, 57)\",\n                hasColor: false,\n                height: \"100%\",\n                id: \"hMNtC1cx3\",\n                layoutId: \"hMNtC1cx3\",\n                paths: 13,\n                startColor: \"rgb(0, 0, 0)\",\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                width: \"100%\"\n              })\n            }), /*#__PURE__*/_jsx(Container, {\n              className: \"framer-18d4eov-container\",\n              transformTemplate: transformTemplate4,\n              children: /*#__PURE__*/_jsx(ShapesBig, {\n                angle: 315,\n                color: \"rgb(0, 153, 255)\",\n                endColor: \"rgb(227, 135, 64)\",\n                hasColor: false,\n                height: \"100%\",\n                id: \"wOW45_Itr\",\n                layoutId: \"wOW45_Itr\",\n                paths: 12,\n                startColor: \"rgb(234, 163, 109)\",\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                width: \"100%\"\n              })\n            })]\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-1tajqzm\",\n            \"data-framer-name\": \"Call to Action\",\n            name: \"Call to Action\",\n            children: [/*#__PURE__*/_jsx(Container, {\n              className: \"framer-ppnwco-container\",\n              children: /*#__PURE__*/_jsx(ShapesBig, {\n                angle: 315,\n                color: \"rgb(0, 153, 255)\",\n                endColor: \"rgb(30, 85, 92)\",\n                hasColor: false,\n                height: \"100%\",\n                id: \"PsUPn38Zh\",\n                layoutId: \"PsUPn38Zh\",\n                paths: 10,\n                startColor: \"rgb(58, 46, 57)\",\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                width: \"100%\"\n              })\n            }), /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                Fi5AKsU8B: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                        \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                        \"--framer-font-size\": \"32px\",\n                        \"--framer-font-weight\": \"800\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(58, 46, 57)\"\n                      },\n                      children: \"Ready?\"\n                    })\n                  })\n                },\n                RCanajTM3: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                        \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                        \"--framer-font-size\": \"32px\",\n                        \"--framer-font-weight\": \"800\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(58, 46, 57)\"\n                      },\n                      children: \"Ready?\"\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\": \"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS04MDA=\",\n                      \"--framer-font-family\": '\"Wix Madefor Display\", sans-serif',\n                      \"--framer-font-size\": \"48px\",\n                      \"--framer-font-weight\": \"800\",\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"rgb(58, 46, 57)\"\n                    },\n                    children: \"Ready?\"\n                  })\n                }),\n                className: \"framer-e94kp8\",\n                fonts: [\"GF;Wix Madefor Display-800\"],\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\": \"R0Y7RE0gU2Fucy01MDA=\",\n                    \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                    \"--framer-font-weight\": \"500\",\n                    \"--framer-line-height\": \"1.5em\",\n                    \"--framer-text-alignment\": \"center\",\n                    \"--framer-text-color\": \"rgb(58, 46, 57)\"\n                  },\n                  children: \"Let's transform your digital landscape with cutting-edge web solutions and captivating marketing strategies. Get in touch and let us work our magic!\"\n                })\n              }),\n              className: \"framer-hs489d\",\n              fonts: [\"GF;DM Sans-500\"],\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-16l10u7\"\n            })]\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-1f58j5b\",\n            \"data-framer-name\": \"Contact\",\n            name: \"Contact\",\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: \"Contact\"\n                })\n              }),\n              className: \"framer-153da4q\",\n              fonts: [\"GF;Inter-700\"],\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-1rvjwlk\",\n              \"data-framer-name\": \"Column\",\n              name: \"Column\",\n              children: /*#__PURE__*/_jsx(Container, {\n                className: \"framer-7axz7q-container\",\n                id: id,\n                ref: ref1,\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(34, 34, 34)\",\n                    fontWeight: 600,\n                    label: \"Send\"\n                  },\n                  email: {\n                    placeholder: \"Email\",\n                    value: \"\"\n                  },\n                  font: true,\n                  fontFamily: \"Inter\",\n                  fontSize: 16,\n                  fontWeight: 500,\n                  formId: \"Q6NVH71i\",\n                  gap: 15,\n                  height: \"100%\",\n                  id: \"O0NXPiF7R\",\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: \"O0NXPiF7R\",\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(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-c35lx [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: #EDB183; }`, \".framer-c35lx .framer-lux5qc { display: block; }\", \".framer-c35lx .framer-72rtr7 { align-content: center; align-items: center; background-color: #edb183; 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-c35lx .framer-17cpdoz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-end; min-height: 800px; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-c35lx .framer-q0wzn-container { aspect-ratio: 1 / 1; bottom: 50px; flex: none; left: 50%; position: absolute; top: 50px; transform: perspective(1200px) translateX(-50%); width: var(--framer-aspect-ratio-supported, 700px); }\", \".framer-c35lx .framer-x2elkl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 57%; position: absolute; top: 464px; transform: perspective(1200px) translateX(-50%); white-space: pre; width: 729px; z-index: 1; }\", \".framer-c35lx .framer-vtmf90 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 47%; position: absolute; top: 120px; transform: perspective(1200px) translateX(-50%); white-space: pre; width: 1000px; z-index: 1; }\", \".framer-c35lx .framer-1xtd2ck { 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-c35lx .framer-doccch { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-c35lx .framer-1s0xyje { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-c35lx .framer-1nczz36-container, .framer-c35lx .framer-ztp700-container, .framer-c35lx .framer-mhk1ni-container, .framer-c35lx .framer-1r5fuwi-container { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 220px); position: relative; width: 1px; }\", \".framer-c35lx .framer-1otu6bv, .framer-c35lx .framer-gjxm3u, .framer-c35lx .framer-vq63ss { --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-c35lx .framer-v6gho9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-c35lx .framer-c2s6bi, .framer-c35lx .framer-1a8nrc1 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\", \".framer-c35lx .framer-q0kmds { align-content: center; align-items: center; background-color: #007ea7; 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-c35lx .framer-1ojz7l4, .framer-c35lx .framer-dxgbqc { 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-c35lx .framer-f7h4o6, .framer-c35lx .framer-199lbqy { 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-c35lx .framer-sgpcav, .framer-c35lx .framer-1p7w50w, .framer-c35lx .framer-dlcxlt, .framer-c35lx .framer-n2z993 { --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-c35lx .framer-uqn039, .framer-c35lx .framer-13b52wh { -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: var(--framer-will-change-override, transform); }\", \".framer-c35lx .framer-1fpzmgq { align-content: center; align-items: center; background-color: #ffffff; 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-c35lx .framer-1m5sbt9 { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(40px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-c35lx .framer-1gvow, .framer-c35lx .framer-lywx49 { align-content: center; align-items: center; align-self: center; background-color: #f2f2f2; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 2; height: 320px; justify-content: center; justify-self: center; overflow: hidden; padding: 60px 60px 60px 60px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\", \".framer-c35lx .framer-1etk73u, .framer-c35lx .framer-sun0bc, .framer-c35lx .framer-ed1rf3, .framer-c35lx .framer-pg5aab, .framer-c35lx .framer-153da4q { --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-c35lx .framer-xdm1ys, .framer-c35lx .framer-e74uzy { align-content: center; align-items: center; align-self: center; background-color: #f2f2f2; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 320px; justify-content: center; justify-self: center; overflow: hidden; padding: 60px 60px 60px 60px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\", \".framer-c35lx .framer-1j404zu-container, .framer-c35lx .framer-181arp0-container { flex: none; height: 150px; position: relative; width: 150px; }\", \".framer-c35lx .framer-ie0y1k { align-content: center; align-items: center; background-color: #edb183; 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-c35lx .framer-9dk9kb { 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-c35lx .framer-dpmsa4, .framer-c35lx .framer-1mq67sn { align-content: center; align-items: center; background-color: #eaa36d; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; min-height: 340px; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\", \".framer-c35lx .framer-vvbe2d { align-content: flex-start; align-items: flex-start; 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: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\", \".framer-c35lx .framer-5pkbka-container, .framer-c35lx .framer-1sm6x7j-container { flex: none; height: 100px; position: relative; width: 100px; }\", \".framer-c35lx .framer-r5ux6t, .framer-c35lx .framer-1qzd96o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-c35lx .framer-1w70mkb, .framer-c35lx .framer-1bty8m2, .framer-c35lx .framer-hc3jd4, .framer-c35lx .framer-13hn4c0 { --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-c35lx .framer-qluizp { align-content: flex-start; align-items: flex-start; 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: column; flex-wrap: nowrap; gap: 0px; height: 100px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\", \".framer-c35lx .framer-7h4mxf, .framer-c35lx .framer-v6wa8l { align-content: center; align-items: center; background-color: #edb183; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 800px; justify-content: center; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\", \".framer-c35lx .framer-c6e5ut-container, .framer-c35lx .framer-1trud2q-container { bottom: 0px; flex: none; left: 0px; opacity: 0.5; position: absolute; right: 0px; top: 0px; z-index: 0; }\", \".framer-c35lx .framer-1idsdii-container { aspect-ratio: 1 / 1; bottom: 50px; flex: none; left: 50%; position: absolute; top: 50px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 700px); }\", \".framer-c35lx .framer-1fgjbo5-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100px; }\", \".framer-c35lx .framer-15ykwf6 { align-content: center; align-items: center; background-color: #edb183; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-c35lx .framer-43lvj1 { 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-c35lx .framer-zzhgyr, .framer-c35lx .framer-z2a9xg, .framer-c35lx .framer-47hqha { align-content: flex-start; align-items: flex-start; background-color: #eaa36d; 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: var(--framer-will-change-override, transform); }\", \".framer-c35lx .framer-1u26f8v-container, .framer-c35lx .framer-sampzj-container, .framer-c35lx .framer-1w02lvc-container { flex: none; height: 50px; position: relative; width: 50px; }\", \".framer-c35lx .framer-4v3996, .framer-c35lx .framer-1k8anpj, .framer-c35lx .framer-mj404d, .framer-c35lx .framer-gah3lt, .framer-c35lx .framer-bpav74 { --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-c35lx .framer-15c8yyz, .framer-c35lx .framer-dxg3rr, .framer-c35lx .framer-1iquxjt { --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-c35lx .framer-p3qfoq, .framer-c35lx .framer-1q5i6z5, .framer-c35lx .framer-1cp6ys2 { 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-c35lx .framer-wbjr6q, .framer-c35lx .framer-lxe01c, .framer-c35lx .framer-c18tcr, .framer-c35lx .framer-fjhhw, .framer-c35lx .framer-mdud2h, .framer-c35lx .framer-1adz08g, .framer-c35lx .framer-1cnrhuu, .framer-c35lx .framer-z1wq5, .framer-c35lx .framer-1u8ipm, .framer-c35lx .framer-g4rcdr, .framer-c35lx .framer-6c1oks, .framer-c35lx .framer-ejmms7 { 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-c35lx .framer-11p0tvi, .framer-c35lx .framer-1c4nvf7, .framer-c35lx .framer-1mxkr0d, .framer-c35lx .framer-1mk0t7a, .framer-c35lx .framer-984m1b, .framer-c35lx .framer-rzqdsf, .framer-c35lx .framer-1ox5nkv, .framer-c35lx .framer-s06vtg, .framer-c35lx .framer-1wsx99d, .framer-c35lx .framer-v9u7ti, .framer-c35lx .framer-v2w08w, .framer-c35lx .framer-1diiqzn { flex: none; height: 16px; position: relative; width: 16px; }\", \".framer-c35lx .framer-5tlrxn, .framer-c35lx .framer-1dbkz0j, .framer-c35lx .framer-1yixr20, .framer-c35lx .framer-1y0le2a, .framer-c35lx .framer-195aojp, .framer-c35lx .framer-lst8z0, .framer-c35lx .framer-rqf1qe, .framer-c35lx .framer-93av1d, .framer-c35lx .framer-hc3obz, .framer-c35lx .framer-1uhpwis, .framer-c35lx .framer-1iivv1n, .framer-c35lx .framer-1sihjlt { --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-c35lx .framer-vpko7y { 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 100px 100px 100px; position: relative; width: 100%; }\", \".framer-c35lx .framer-1ya946x { 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: 1000px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-c35lx .framer-s7by3g, .framer-c35lx .framer-1ko71c4 { 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; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-c35lx .framer-sp6fw7, .framer-c35lx .framer-y6izf9 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 250px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\", \".framer-c35lx .framer-btj2j5, .framer-c35lx .framer-1ka8zde { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-c35lx .framer-jifqyn, .framer-c35lx .framer-1vk11dz { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; }\", \".framer-c35lx .framer-1nwygmc-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 528px); left: 188px; position: absolute; top: 52%; transform: translateY(-50%); width: 528px; }\", \".framer-c35lx .framer-18d4eov-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); left: 47%; position: absolute; top: 38%; transform: translate(-50%, -50%); width: 100px; }\", \".framer-c35lx .framer-1tajqzm { align-content: center; align-items: center; background-color: #edb183; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-c35lx .framer-ppnwco-container { flex: none; height: 80px; position: relative; width: 80px; }\", \".framer-c35lx .framer-e94kp8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 800px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-c35lx .framer-hs489d { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 411px; word-break: break-word; word-wrap: break-word; }\", \".framer-c35lx .framer-16l10u7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 50px; min-width: 106px; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-c35lx .framer-1f58j5b { 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-c35lx .framer-1rvjwlk { 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-c35lx .framer-7axz7q-container { flex: 1 0 0px; height: 290px; position: relative; width: 1px; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-c35lx .framer-72rtr7, .framer-c35lx .framer-17cpdoz, .framer-c35lx .framer-1xtd2ck, .framer-c35lx .framer-doccch, .framer-c35lx .framer-1s0xyje, .framer-c35lx .framer-v6gho9, .framer-c35lx .framer-q0kmds, .framer-c35lx .framer-1ojz7l4, .framer-c35lx .framer-f7h4o6, .framer-c35lx .framer-dxgbqc, .framer-c35lx .framer-199lbqy, .framer-c35lx .framer-1fpzmgq, .framer-c35lx .framer-1gvow, .framer-c35lx .framer-xdm1ys, .framer-c35lx .framer-e74uzy, .framer-c35lx .framer-lywx49, .framer-c35lx .framer-ie0y1k, .framer-c35lx .framer-9dk9kb, .framer-c35lx .framer-dpmsa4, .framer-c35lx .framer-vvbe2d, .framer-c35lx .framer-r5ux6t, .framer-c35lx .framer-1mq67sn, .framer-c35lx .framer-qluizp, .framer-c35lx .framer-1qzd96o, .framer-c35lx .framer-7h4mxf, .framer-c35lx .framer-15ykwf6, .framer-c35lx .framer-43lvj1, .framer-c35lx .framer-zzhgyr, .framer-c35lx .framer-p3qfoq, .framer-c35lx .framer-wbjr6q, .framer-c35lx .framer-lxe01c, .framer-c35lx .framer-c18tcr, .framer-c35lx .framer-fjhhw, .framer-c35lx .framer-z2a9xg, .framer-c35lx .framer-1q5i6z5, .framer-c35lx .framer-mdud2h, .framer-c35lx .framer-1adz08g, .framer-c35lx .framer-1cnrhuu, .framer-c35lx .framer-z1wq5, .framer-c35lx .framer-47hqha, .framer-c35lx .framer-1cp6ys2, .framer-c35lx .framer-1u8ipm, .framer-c35lx .framer-g4rcdr, .framer-c35lx .framer-6c1oks, .framer-c35lx .framer-ejmms7, .framer-c35lx .framer-vpko7y, .framer-c35lx .framer-1ya946x, .framer-c35lx .framer-s7by3g, .framer-c35lx .framer-btj2j5, .framer-c35lx .framer-1ko71c4, .framer-c35lx .framer-1ka8zde, .framer-c35lx .framer-v6wa8l, .framer-c35lx .framer-1tajqzm, .framer-c35lx .framer-16l10u7, .framer-c35lx .framer-1f58j5b, .framer-c35lx .framer-1rvjwlk { gap: 0px; } .framer-c35lx .framer-72rtr7 > *, .framer-c35lx .framer-1xtd2ck > *, .framer-c35lx .framer-1fpzmgq > *, .framer-c35lx .framer-1gvow > *, .framer-c35lx .framer-lywx49 > *, .framer-c35lx .framer-ie0y1k > *, .framer-c35lx .framer-vvbe2d > *, .framer-c35lx .framer-r5ux6t > *, .framer-c35lx .framer-qluizp > *, .framer-c35lx .framer-1qzd96o > *, .framer-c35lx .framer-15ykwf6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-c35lx .framer-72rtr7 > :first-child, .framer-c35lx .framer-17cpdoz > :first-child, .framer-c35lx .framer-1xtd2ck > :first-child, .framer-c35lx .framer-doccch > :first-child, .framer-c35lx .framer-q0kmds > :first-child, .framer-c35lx .framer-f7h4o6 > :first-child, .framer-c35lx .framer-199lbqy > :first-child, .framer-c35lx .framer-1fpzmgq > :first-child, .framer-c35lx .framer-1gvow > :first-child, .framer-c35lx .framer-xdm1ys > :first-child, .framer-c35lx .framer-e74uzy > :first-child, .framer-c35lx .framer-lywx49 > :first-child, .framer-c35lx .framer-ie0y1k > :first-child, .framer-c35lx .framer-dpmsa4 > :first-child, .framer-c35lx .framer-vvbe2d > :first-child, .framer-c35lx .framer-r5ux6t > :first-child, .framer-c35lx .framer-1mq67sn > :first-child, .framer-c35lx .framer-qluizp > :first-child, .framer-c35lx .framer-1qzd96o > :first-child, .framer-c35lx .framer-15ykwf6 > :first-child, .framer-c35lx .framer-zzhgyr > :first-child, .framer-c35lx .framer-p3qfoq > :first-child, .framer-c35lx .framer-z2a9xg > :first-child, .framer-c35lx .framer-1q5i6z5 > :first-child, .framer-c35lx .framer-47hqha > :first-child, .framer-c35lx .framer-1cp6ys2 > :first-child, .framer-c35lx .framer-vpko7y > :first-child, .framer-c35lx .framer-s7by3g > :first-child, .framer-c35lx .framer-btj2j5 > :first-child, .framer-c35lx .framer-1ko71c4 > :first-child, .framer-c35lx .framer-1ka8zde > :first-child, .framer-c35lx .framer-1tajqzm > :first-child, .framer-c35lx .framer-1f58j5b > :first-child { margin-top: 0px; } .framer-c35lx .framer-72rtr7 > :last-child, .framer-c35lx .framer-17cpdoz > :last-child, .framer-c35lx .framer-1xtd2ck > :last-child, .framer-c35lx .framer-doccch > :last-child, .framer-c35lx .framer-q0kmds > :last-child, .framer-c35lx .framer-f7h4o6 > :last-child, .framer-c35lx .framer-199lbqy > :last-child, .framer-c35lx .framer-1fpzmgq > :last-child, .framer-c35lx .framer-1gvow > :last-child, .framer-c35lx .framer-xdm1ys > :last-child, .framer-c35lx .framer-e74uzy > :last-child, .framer-c35lx .framer-lywx49 > :last-child, .framer-c35lx .framer-ie0y1k > :last-child, .framer-c35lx .framer-dpmsa4 > :last-child, .framer-c35lx .framer-vvbe2d > :last-child, .framer-c35lx .framer-r5ux6t > :last-child, .framer-c35lx .framer-1mq67sn > :last-child, .framer-c35lx .framer-qluizp > :last-child, .framer-c35lx .framer-1qzd96o > :last-child, .framer-c35lx .framer-15ykwf6 > :last-child, .framer-c35lx .framer-zzhgyr > :last-child, .framer-c35lx .framer-p3qfoq > :last-child, .framer-c35lx .framer-z2a9xg > :last-child, .framer-c35lx .framer-1q5i6z5 > :last-child, .framer-c35lx .framer-47hqha > :last-child, .framer-c35lx .framer-1cp6ys2 > :last-child, .framer-c35lx .framer-vpko7y > :last-child, .framer-c35lx .framer-s7by3g > :last-child, .framer-c35lx .framer-btj2j5 > :last-child, .framer-c35lx .framer-1ko71c4 > :last-child, .framer-c35lx .framer-1ka8zde > :last-child, .framer-c35lx .framer-1tajqzm > :last-child, .framer-c35lx .framer-1f58j5b > :last-child { margin-bottom: 0px; } .framer-c35lx .framer-17cpdoz > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-c35lx .framer-doccch > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-c35lx .framer-1s0xyje > *, .framer-c35lx .framer-v6gho9 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-c35lx .framer-1s0xyje > :first-child, .framer-c35lx .framer-v6gho9 > :first-child, .framer-c35lx .framer-1ojz7l4 > :first-child, .framer-c35lx .framer-dxgbqc > :first-child, .framer-c35lx .framer-9dk9kb > :first-child, .framer-c35lx .framer-7h4mxf > :first-child, .framer-c35lx .framer-43lvj1 > :first-child, .framer-c35lx .framer-wbjr6q > :first-child, .framer-c35lx .framer-lxe01c > :first-child, .framer-c35lx .framer-c18tcr > :first-child, .framer-c35lx .framer-fjhhw > :first-child, .framer-c35lx .framer-mdud2h > :first-child, .framer-c35lx .framer-1adz08g > :first-child, .framer-c35lx .framer-1cnrhuu > :first-child, .framer-c35lx .framer-z1wq5 > :first-child, .framer-c35lx .framer-1u8ipm > :first-child, .framer-c35lx .framer-g4rcdr > :first-child, .framer-c35lx .framer-6c1oks > :first-child, .framer-c35lx .framer-ejmms7 > :first-child, .framer-c35lx .framer-1ya946x > :first-child, .framer-c35lx .framer-v6wa8l > :first-child, .framer-c35lx .framer-16l10u7 > :first-child, .framer-c35lx .framer-1rvjwlk > :first-child { margin-left: 0px; } .framer-c35lx .framer-1s0xyje > :last-child, .framer-c35lx .framer-v6gho9 > :last-child, .framer-c35lx .framer-1ojz7l4 > :last-child, .framer-c35lx .framer-dxgbqc > :last-child, .framer-c35lx .framer-9dk9kb > :last-child, .framer-c35lx .framer-7h4mxf > :last-child, .framer-c35lx .framer-43lvj1 > :last-child, .framer-c35lx .framer-wbjr6q > :last-child, .framer-c35lx .framer-lxe01c > :last-child, .framer-c35lx .framer-c18tcr > :last-child, .framer-c35lx .framer-fjhhw > :last-child, .framer-c35lx .framer-mdud2h > :last-child, .framer-c35lx .framer-1adz08g > :last-child, .framer-c35lx .framer-1cnrhuu > :last-child, .framer-c35lx .framer-z1wq5 > :last-child, .framer-c35lx .framer-1u8ipm > :last-child, .framer-c35lx .framer-g4rcdr > :last-child, .framer-c35lx .framer-6c1oks > :last-child, .framer-c35lx .framer-ejmms7 > :last-child, .framer-c35lx .framer-1ya946x > :last-child, .framer-c35lx .framer-v6wa8l > :last-child, .framer-c35lx .framer-16l10u7 > :last-child, .framer-c35lx .framer-1rvjwlk > :last-child { margin-right: 0px; } .framer-c35lx .framer-q0kmds > *, .framer-c35lx .framer-vpko7y > *, .framer-c35lx .framer-1f58j5b > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-c35lx .framer-1ojz7l4 > *, .framer-c35lx .framer-dxgbqc > *, .framer-c35lx .framer-1ya946x > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-c35lx .framer-f7h4o6 > *, .framer-c35lx .framer-199lbqy > *, .framer-c35lx .framer-xdm1ys > *, .framer-c35lx .framer-e74uzy > *, .framer-c35lx .framer-dpmsa4 > *, .framer-c35lx .framer-1mq67sn > *, .framer-c35lx .framer-zzhgyr > *, .framer-c35lx .framer-z2a9xg > *, .framer-c35lx .framer-47hqha > *, .framer-c35lx .framer-btj2j5 > *, .framer-c35lx .framer-1ka8zde > *, .framer-c35lx .framer-1tajqzm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-c35lx .framer-9dk9kb > *, .framer-c35lx .framer-43lvj1 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-c35lx .framer-7h4mxf > *, .framer-c35lx .framer-wbjr6q > *, .framer-c35lx .framer-lxe01c > *, .framer-c35lx .framer-c18tcr > *, .framer-c35lx .framer-fjhhw > *, .framer-c35lx .framer-mdud2h > *, .framer-c35lx .framer-1adz08g > *, .framer-c35lx .framer-1cnrhuu > *, .framer-c35lx .framer-z1wq5 > *, .framer-c35lx .framer-1u8ipm > *, .framer-c35lx .framer-g4rcdr > *, .framer-c35lx .framer-6c1oks > *, .framer-c35lx .framer-ejmms7 > *, .framer-c35lx .framer-v6wa8l > *, .framer-c35lx .framer-16l10u7 > *, .framer-c35lx .framer-1rvjwlk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-c35lx .framer-p3qfoq > *, .framer-c35lx .framer-1q5i6z5 > *, .framer-c35lx .framer-1cp6ys2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-c35lx .framer-s7by3g > *, .framer-c35lx .framer-1ko71c4 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\", \"@media (min-width: 1200px) { .framer-c35lx .hidden-72rtr7 { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1199px) { .framer-c35lx .hidden-1lvpbs9 { display: none !important; } .${metadata.bodyClassName} { background: #EDB183; } .framer-c35lx .framer-72rtr7 { width: 810px; } .framer-c35lx .framer-17cpdoz, .framer-c35lx .framer-15ykwf6 { padding: 50px 50px 50px 50px; } .framer-c35lx .framer-x2elkl { height: 180px; left: 193px; top: 349px; transform: perspective(1200px); width: 538px; } .framer-c35lx .framer-vtmf90 { left: 46%; top: 174px; width: 545px; } .framer-c35lx .framer-1xtd2ck { padding: 80px 40px 80px 40px; } .framer-c35lx .framer-1nczz36-container, .framer-c35lx .framer-ztp700-container, .framer-c35lx .framer-mhk1ni-container, .framer-c35lx .framer-1r5fuwi-container { height: var(--framer-aspect-ratio-supported, 153px); } .framer-c35lx .framer-q0kmds { gap: 40px; padding: 50px 50px 50px 50px; } .framer-c35lx .framer-uqn039, .framer-c35lx .framer-13b52wh { 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-c35lx .framer-1fpzmgq { align-content: flex-start; align-items: flex-start; padding: 80px 40px 80px 40px; } .framer-c35lx .framer-1m5sbt9 { grid-template-columns: repeat(2, minmax(40px, 1fr)); } .framer-c35lx .framer-1gvow, .framer-c35lx .framer-xdm1ys, .framer-c35lx .framer-e74uzy, .framer-c35lx .framer-lywx49 { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; } .framer-c35lx .framer-ie0y1k { align-content: flex-start; align-items: flex-start; padding: 50px 50px 50px 50px; } .framer-c35lx .framer-r5ux6t, .framer-c35lx .framer-1qzd96o { gap: 10px; } .framer-c35lx .framer-43lvj1 { flex-direction: column; } .framer-c35lx .framer-zzhgyr, .framer-c35lx .framer-z2a9xg, .framer-c35lx .framer-47hqha { flex: none; width: 100%; } .framer-c35lx .framer-vpko7y { padding: 40px 40px 40px 40px; } .framer-c35lx .framer-jifqyn, .framer-c35lx .framer-1vk11dz { width: 100%; } .framer-c35lx .framer-1tajqzm { padding: 100px 50px 100px 50px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-c35lx .framer-q0kmds, .framer-c35lx .framer-r5ux6t, .framer-c35lx .framer-1qzd96o, .framer-c35lx .framer-43lvj1 { gap: 0px; } .framer-c35lx .framer-q0kmds > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-c35lx .framer-q0kmds > :first-child, .framer-c35lx .framer-r5ux6t > :first-child, .framer-c35lx .framer-1qzd96o > :first-child, .framer-c35lx .framer-43lvj1 > :first-child { margin-top: 0px; } .framer-c35lx .framer-q0kmds > :last-child, .framer-c35lx .framer-r5ux6t > :last-child, .framer-c35lx .framer-1qzd96o > :last-child, .framer-c35lx .framer-43lvj1 > :last-child { margin-bottom: 0px; } .framer-c35lx .framer-r5ux6t > *, .framer-c35lx .framer-1qzd96o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-c35lx .framer-43lvj1 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`, `@media (max-width: 809px) { .framer-c35lx .hidden-9ejszs { display: none !important; } .${metadata.bodyClassName} { background: #EDB183; } .framer-c35lx .framer-72rtr7 { width: 390px; } .framer-c35lx .framer-17cpdoz { height: 600px; min-height: unset; padding: 20px 20px 20px 20px; } .framer-c35lx .framer-q0wzn-container { bottom: unset; height: var(--framer-aspect-ratio-supported, 500px); left: -55px; order: 0; right: -55px; top: 50%; transform: perspective(1200px) translateY(-50%); width: unset; } .framer-c35lx .framer-x2elkl { left: 50%; order: 2; top: 273px; width: 340px; } .framer-c35lx .framer-vtmf90 { left: 50%; order: 1; top: 142px; width: 316px; } .framer-c35lx .framer-1xtd2ck, .framer-c35lx .framer-q0kmds, .framer-c35lx .framer-1tajqzm { padding: 60px 20px 60px 20px; } .framer-c35lx .framer-doccch { align-content: center; align-items: center; } .framer-c35lx .framer-1nczz36-container { height: var(--framer-aspect-ratio-supported, 58px); order: 0; } .framer-c35lx .framer-ztp700-container { height: var(--framer-aspect-ratio-supported, 58px); order: 1; } .framer-c35lx .framer-mhk1ni-container { height: var(--framer-aspect-ratio-supported, 58px); order: 2; } .framer-c35lx .framer-1r5fuwi-container { height: var(--framer-aspect-ratio-supported, 58px); order: 3; } .framer-c35lx .framer-v6gho9 { flex-direction: column; justify-content: flex-start; } .framer-c35lx .framer-c2s6bi, .framer-c35lx .framer-1a8nrc1, .framer-c35lx .framer-199lbqy, .framer-c35lx .framer-dpmsa4, .framer-c35lx .framer-1mq67sn, .framer-c35lx .framer-zzhgyr, .framer-c35lx .framer-z2a9xg, .framer-c35lx .framer-47hqha, .framer-c35lx .framer-s7by3g, .framer-c35lx .framer-1ko71c4 { flex: none; width: 100%; } .framer-c35lx .framer-1ojz7l4, .framer-c35lx .framer-dxgbqc { flex-direction: column; gap: 40px; } .framer-c35lx .framer-f7h4o6 { flex: none; order: 1; width: 100%; } .framer-c35lx .framer-uqn039 { 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-c35lx .framer-13b52wh { 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-c35lx .framer-1fpzmgq, .framer-c35lx .framer-ie0y1k, .framer-c35lx .framer-15ykwf6, .framer-c35lx .framer-vpko7y { padding: 20px 20px 20px 20px; } .framer-c35lx .framer-1m5sbt9 { grid-template-columns: repeat(1, minmax(40px, 1fr)); } .framer-c35lx .framer-1gvow, .framer-c35lx .framer-lywx49 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; grid-column: auto / span 1; } .framer-c35lx .framer-xdm1ys, .framer-c35lx .framer-e74uzy { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; } .framer-c35lx .framer-9dk9kb { flex-direction: column; gap: 10px; } .framer-c35lx .framer-vvbe2d, .framer-c35lx .framer-qluizp { height: 200px; } .framer-c35lx .framer-7h4mxf, .framer-c35lx .framer-v6wa8l { height: 400px; padding: 20px 20px 20px 20px; } .framer-c35lx .framer-1idsdii-container { width: var(--framer-aspect-ratio-supported, 300px); } .framer-c35lx .framer-43lvj1, .framer-c35lx .framer-1ya946x { flex-direction: column; } .framer-c35lx .framer-p3qfoq, .framer-c35lx .framer-1q5i6z5, .framer-c35lx .framer-1cp6ys2 { padding: 10px 0px 20px 0px; } .framer-c35lx .framer-bpav74, .framer-c35lx .framer-jifqyn, .framer-c35lx .framer-1vk11dz { width: 100%; } .framer-c35lx .framer-16l10u7 { flex-direction: column; min-width: unset; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-c35lx .framer-v6gho9, .framer-c35lx .framer-1ojz7l4, .framer-c35lx .framer-dxgbqc, .framer-c35lx .framer-9dk9kb, .framer-c35lx .framer-43lvj1, .framer-c35lx .framer-1ya946x, .framer-c35lx .framer-16l10u7 { gap: 0px; } .framer-c35lx .framer-v6gho9 > *, .framer-c35lx .framer-1ojz7l4 > *, .framer-c35lx .framer-dxgbqc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-c35lx .framer-v6gho9 > :first-child, .framer-c35lx .framer-1ojz7l4 > :first-child, .framer-c35lx .framer-dxgbqc > :first-child, .framer-c35lx .framer-9dk9kb > :first-child, .framer-c35lx .framer-43lvj1 > :first-child, .framer-c35lx .framer-1ya946x > :first-child, .framer-c35lx .framer-16l10u7 > :first-child { margin-top: 0px; } .framer-c35lx .framer-v6gho9 > :last-child, .framer-c35lx .framer-1ojz7l4 > :last-child, .framer-c35lx .framer-dxgbqc > :last-child, .framer-c35lx .framer-9dk9kb > :last-child, .framer-c35lx .framer-43lvj1 > :last-child, .framer-c35lx .framer-1ya946x > :last-child, .framer-c35lx .framer-16l10u7 > :last-child { margin-bottom: 0px; } .framer-c35lx .framer-9dk9kb > *, .framer-c35lx .framer-16l10u7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-c35lx .framer-43lvj1 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-c35lx .framer-1ya946x > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerIntrinsicHeight 8464.5\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RCanajTM3\":{\"layout\":[\"fixed\",\"auto\"]},\"Fi5AKsU8B\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             */\nconst FrameraugiA20Il = withCSS(Component, css, \"framer-c35lx\");\nexport default FrameraugiA20Il;\nFrameraugiA20Il.displayName = \"Home\";\nFrameraugiA20Il.defaultProps = {\n  height: 8464.5,\n  width: 1200\n};\naddFonts(FrameraugiA20Il, [{\n  family: \"Wix Madefor Display\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYHhZVtkv_3HQKgh.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYHhZVtkv_3HQKgh.ttf\",\n  weight: \"800\"\n}, {\n  family: \"DM Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthTmf3ZGMZpg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthTmf3ZGMZpg.ttf\",\n  weight: \"700\"\n}, {\n  family: \"DM Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhTmf3ZGMZpg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhTmf3ZGMZpg.ttf\",\n  weight: \"500\"\n}, {\n  family: \"Wix Madefor Display\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFhYltkv_3HQKgh.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFhYltkv_3HQKgh.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_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\",\n  weight: \"600\"\n}, {\n  family: \"Inter\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\",\n  weight: \"500\"\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}, ...ShapesBigFonts, ...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\\\"]},\\\"RCanajTM3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Fi5AKsU8B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerIntrinsicHeight\": \"8464.5\",\n        \"framerIntrinsicWidth\": \"1200\",\n        \"framerResponsiveScreen\": \"\"\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", "murmur2", "r", "e", "ShapesBig", "props", "image", "paths", "hasColor", "color", "startColor", "endColor", "angle", "nodeId", "path", "shapesBig", "id", "se", "murmur2", "scale", "p", "addPropertyControls", "ControlType", "_", "i", "shape", "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", "ShapesBigFonts", "getFonts", "ShapesBig", "PatternFonts", "Pattern", "FormSparkFonts", "FormSpark_default", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "transitions", "transition1", "animation", "transformTemplate", "_", "animation1", "animation2", "transformTemplate1", "transition2", "animation3", "animation4", "animation5", "transformTemplate2", "transition3", "animation6", "animation7", "animation8", "transformTemplate3", "transformTemplate4", "transformTemplate5", "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", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "PropertyOverrides", "optimizeAppear", "optimizeAppearTransformTemplate", "Container", "ShapesBig", "RichText", "x", "Image2", "Pattern", "SVG", "FormSpark_default", "css", "FrameraugiA20Il", "withCSS", "addFonts", "ShapesBigFonts", "PatternFonts", "FormSparkFonts", "__FramerMetadata__"]
}
