{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/9N50PMbCaZNc8J76vXRL/zbPz4O3CnWxY2tjbhM7b/TextMask.js", "ssg:https://framerusercontent.com/modules/cJ6MkArfNFJm3vOS5QU6/KBZnRuc2WlESJ47VYmYb/A7laeerNj.js", "ssg:https://framerusercontent.com/modules/UNbM0RkN46FTPdB2SB4L/RXoiKQfal6i4xflubXHo/ZE2lmhvkD.js", "ssg:https://framerusercontent.com/modules/a9xLuMoI7UGtnGze9Etc/hU34waHferxVqJT4ltXr/augiA20Il.js"],
  "sourcesContent": ["import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { addPropertyControls, ControlType } from \"framer\"; /**\n                                                           * TEXTMASK\n                                                           * By Benjamin den Boer\n                                                           * @benjaminnathan\n                                                           *\n                                                           * @framerIntrinsicWidth 260\n                                                           * @framerIntrinsicHeight 200\n                                                           * @framerDisableUnlink\n                                                           *\n                                                           * @framerSupportedLayoutWidth any-prefer-fixed\n                                                           * @framerSupportedLayoutHeight any\n                                                           */\nexport default function TextMask(props) {\n  const {\n    textContent,\n    image,\n    bgSizeType,\n    bgSize,\n    bgPosX,\n    bgPosY,\n    font,\n    padding,\n    paddingPerSide,\n    paddingTop,\n    paddingRight,\n    paddingBottom,\n    paddingLeft\n  } = props;\n  const {\n    color,\n    fontSize,\n    fontFamily,\n    fontWeight,\n    fontStyle,\n    textAlign,\n    letterSpacing,\n    whiteSpace,\n    lineHeight,\n    lineHeightPixels,\n    lineHeightType\n  } = font;\n  const backgroundSizeValue = props.bgSizeType === \"cover\" || props.bgSizeType === \"contain\" ? bgSizeType : `${bgSize}%`;\n  const paddingValue = paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : `${padding}px`;\n  return /*#__PURE__*/_jsx(\"h1\", {\n    style: {\n      backgroundImage: image && `url(${image.src})`,\n      backgroundSize: backgroundSizeValue,\n      backgroundRepeat: \"no-repeat\",\n      backgroundPosition: `${bgPosX}% ${bgPosY}%`,\n      backgroundClip: image && \"text\",\n      WebkitBackgroundClip: image && \"text\",\n      WebkitTextFillColor: image && \"transparent\",\n      textFillColor: image && \"transparent\",\n      color,\n      fontSize,\n      fontFamily: `\"${fontFamily}\", sans-serif`,\n      fontStyle,\n      fontWeight,\n      textAlign,\n      letterSpacing,\n      whiteSpace,\n      lineHeight: lineHeightType ? lineHeight : `${lineHeightPixels}px`,\n      margin: 0,\n      padding: paddingValue\n    },\n    children: textContent\n  });\n}\n; /* Default Properties */\nTextMask.defaultProps = {\n  textContent: \"Hello\",\n  bgSize: 100,\n  bgPosX: 0,\n  bgPosY: 0,\n  font: {\n    fontSize: 100,\n    lineHeight: 1,\n    lineHeightType: true\n  }\n};\nTextMask.displayName = \"Text Mask\"; /* Property Controls */\naddPropertyControls(TextMask, {\n  textContent: {\n    type: ControlType.String,\n    title: \"Text\",\n    defaultValue: \"Hello\"\n  },\n  image: {\n    type: ControlType.ResponsiveImage,\n    title: \"Image\"\n  },\n  bgSizeType: {\n    type: ControlType.Enum,\n    options: [\"cover\", \"contain\", \"percentage\"],\n    optionTitles: [\"Cover\", \"Contain\", \"Percentage\"],\n    title: \"Background\",\n    defaultValue: \"cover\"\n  },\n  bgSize: {\n    type: ControlType.Number,\n    min: 0,\n    max: 200,\n    defaultValue: 100,\n    unit: \"%\",\n    title: \"Size\",\n    hidden: props => props.bgSizeType === \"cover\" || props.bgSizeType === \"contain\"\n  },\n  bgPosX: {\n    type: ControlType.Number,\n    min: 0,\n    max: 100,\n    defaultValue: 0,\n    unit: \"%\",\n    title: \"Offset X\"\n  },\n  bgPosY: {\n    type: ControlType.Number,\n    min: 0,\n    max: 100,\n    defaultValue: 0,\n    unit: \"%\",\n    title: \"Offset Y\"\n  },\n  font: {\n    type: ControlType.Object,\n    controls: {\n      color: {\n        type: ControlType.Color,\n        defaultValue: \"#888\"\n      },\n      fontSize: {\n        type: ControlType.Number,\n        title: \"Size\",\n        min: 0,\n        displayStepper: true,\n        step: 1,\n        defaultValue: 100\n      },\n      fontFamily: {\n        type: ControlType.String,\n        title: \"Font\",\n        defaultValue: \"Inter\"\n      },\n      fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [100, 200, 300, 400, 500, 600, 700, 800, 900],\n        defaultValue: 400\n      },\n      fontStyle: {\n        type: ControlType.Enum,\n        title: \"Style\",\n        options: [\"normal\", \"italic\", \"oblique\"],\n        optionTitles: [\"Normal\", \"Italic\", \"Oblique\"],\n        defaultValue: \"normal\"\n      },\n      textAlign: {\n        type: ControlType.Enum,\n        displaySegmentedControl: true,\n        title: \"Align\",\n        options: [\"left\", \"center\", \"right\"],\n        optionTitles: [\"Left\", \"Center\", \"Right\"],\n        defaultValue: \"center\"\n      },\n      whiteSpace: {\n        type: ControlType.Enum,\n        title: \"Space\",\n        options: [\"normal\", \"nowrap\", \"pre\", \"pre-wrap\", \"preline\", \"break-spaces\"],\n        optionTitles: [\"Normal\", \"No Wrap\", \"Pre\", \"Pre Wrap\", \"Preline\", \"Break Spaces\"],\n        defaultValue: \"center\"\n      },\n      letterSpacing: {\n        type: ControlType.Number,\n        title: \"Letter\",\n        min: -100,\n        max: 100,\n        displayStepper: true,\n        step: .1,\n        defaultValue: 0\n      },\n      lineHeight: {\n        type: ControlType.Number,\n        title: \"Line\",\n        min: -500,\n        max: 500,\n        displayStepper: true,\n        step: .1,\n        defaultValue: 1,\n        hidden: props => !props.lineHeightType\n      },\n      lineHeightPixels: {\n        type: ControlType.Number,\n        title: \"Line\",\n        min: -500,\n        max: 500,\n        displayStepper: true,\n        step: .1,\n        defaultValue: 100,\n        hidden: props => props.lineHeightType\n      },\n      lineHeightType: {\n        type: ControlType.Boolean,\n        title: \" \",\n        enabledTitle: \"em\",\n        disabledTitle: \"px\",\n        defaultValue: true\n      }\n    }\n  },\n  padding: {\n    title: \"Padding\",\n    type: ControlType.FusedNumber,\n    toggleKey: \"paddingPerSide\",\n    toggleTitles: [\"Padding\", \"Padding per side\"],\n    defaultValue: 0,\n    valueKeys: [\"paddingTop\", \"paddingRight\", \"paddingBottom\", \"paddingLeft\"],\n    valueLabels: [\"T\", \"R\", \"B\", \"L\"],\n    min: 0\n  }\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"TextMask\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutHeight\": \"any\",\n        \"framerContractVersion\": \"1\",\n        \"framerDisableUnlink\": \"*\",\n        \"framerIntrinsicHeight\": \"200\",\n        \"framerIntrinsicWidth\": \"260\",\n        \"framerSupportedLayoutWidth\": \"any-prefer-fixed\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./TextMask.map", "import { fontStore } from \"framer\";\nfontStore.loadWebFontsFromSelectors([]);\nexport const fonts = [];\nexport const css = [\".framer-K13Ib .framer-styles-preset-1wevxuf:not(.rich-text-wrapper), .framer-K13Ib .framer-styles-preset-1wevxuf.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #ffffff; --framer-link-hover-text-decoration: none; --framer-link-text-color: #b3b3b3; --framer-link-text-decoration: none; }\"];\nexport const className = \"framer-K13Ib\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "import { fontStore } from \"framer\";\nfontStore.loadWebFontsFromSelectors([\"Inter-Medium\"]);\nexport const fonts = [];\nexport const css = ['.framer-XuOtG .framer-styles-preset-sy2qtm:not(.rich-text-wrapper), .framer-XuOtG .framer-styles-preset-sy2qtm.rich-text-wrapper p { --framer-font-family: \"Inter-Medium\", \"Inter\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0em; --framer-line-height: 2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }'];\nexport const className = \"framer-XuOtG\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "// Generated by Framer (b9ee990)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, Link, removeHiddenBreakpointLayers, RichText, useHydratedBreakpointVariants, useRouteElementId, withCSS, withFX } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport TextMask from \"https://framerusercontent.com/modules/9N50PMbCaZNc8J76vXRL/zbPz4O3CnWxY2tjbhM7b/TextMask.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/cJ6MkArfNFJm3vOS5QU6/KBZnRuc2WlESJ47VYmYb/A7laeerNj.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/UNbM0RkN46FTPdB2SB4L/RXoiKQfal6i4xflubXHo/ZE2lmhvkD.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/j9EKdA318YTU0Br4Exvd/oTFWAwprAIQ9wUV5nyc0/augiA20Il.js\";\nconst ImageWithFX = withFX(Image);\nconst TextMaskFonts = getFonts(TextMask);\nconst MotionDivWithFX = withFX(motion.div);\nconst cycleOrder = [\"WQLkyLRf1\"];\nconst breakpoints = {};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  WQLkyLRf1: \"framer-v-72rtr7\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"WQLkyLRf1\", breakpoints, variantClassNames);\n}\nconst humanReadableVariantMap = {};\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transformTemplate = (_, t) => `translateX(-50%) ${t}`;\nconst transformTemplate1 = (_, t) => `perspective(1200px) translateX(-50%) ${t}`;\nconst transformTemplate2 = (_, t) => `perspective(1200px) ${t}`;\nconst metadata = metadataProvider();\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"WQLkyLRf1\",\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider();\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var ref;\n      (ref = document.querySelector('meta[name=\"viewport\"]')) === null || ref === void 0 ? void 0 : ref.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(metadata1.bodyClassName);\n    }\n  }, []);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const id1 = useRouteElementId(\"y5KBXWQuC\");\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-ekrwk\", sharedStyle.className, sharedStyle1.className),\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-d5x182\",\n            \"data-framer-name\": \"Links\",\n            name: \"Links\",\n            transformTemplate: transformTemplate,\n            children: [/*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(\"p\", {\n                  className: \"framer-styles-preset-sy2qtm\",\n                  \"data-styles-preset\": \"ZE2lmhvkD\",\n                  children: /*#__PURE__*/_jsx(Link, {\n                    href: \"https://www.framer.community/c/challenges/challenge-13-text-mask\",\n                    openInNewTab: true,\n                    smoothScroll: false,\n                    children: /*#__PURE__*/_jsx(\"a\", {\n                      className: \"framer-styles-preset-1wevxuf\",\n                      \"data-styles-preset\": \"A7laeerNj\",\n                      children: \"Vote\"\n                    })\n                  })\n                })\n              }),\n              className: \"framer-1gnbaeh\",\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            }), /*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(\"p\", {\n                  className: \"framer-styles-preset-sy2qtm\",\n                  \"data-styles-preset\": \"ZE2lmhvkD\",\n                  children: /*#__PURE__*/_jsx(Link, {\n                    href: \"https://framer.com/projects/new?duplicate=kUzx9FhzD4ZYxJtzySqd\",\n                    openInNewTab: true,\n                    smoothScroll: false,\n                    children: /*#__PURE__*/_jsx(\"a\", {\n                      className: \"framer-styles-preset-1wevxuf\",\n                      \"data-styles-preset\": \"A7laeerNj\",\n                      children: \"Remix\"\n                    })\n                  })\n                })\n              }),\n              className: \"framer-9ju5na\",\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            })]\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1dq2id6\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-le4z4\",\n              \"data-framer-name\": \"Hero Section\",\n              id: id1,\n              name: \"Hero Section\",\n              ref: ref1,\n              children: [/*#__PURE__*/_jsx(ImageWithFX, {\n                __framer__spring: {\n                  damping: 60,\n                  delay: 0,\n                  duration: .3,\n                  ease: [.44, 0, .56, 1],\n                  mass: 1,\n                  stiffness: 200,\n                  type: \"spring\"\n                },\n                __framer__styleTransformEffectEnabled: true,\n                __framer__transformTargets: [{\n                  target: {\n                    opacity: 1,\n                    rotate: 0,\n                    rotateX: 0,\n                    rotateY: 0,\n                    scale: 1,\n                    x: 0,\n                    y: 0\n                  }\n                }, {\n                  target: {\n                    opacity: 0,\n                    rotate: 0,\n                    rotateX: 0,\n                    rotateY: 0,\n                    scale: 1,\n                    x: 0,\n                    y: 0\n                  }\n                }],\n                __framer__transformTrigger: \"onScroll\",\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                background: {\n                  alt: \"\",\n                  fit: \"fill\",\n                  intrinsicHeight: 3456,\n                  intrinsicWidth: 3456,\n                  pixelHeight: 3456,\n                  pixelWidth: 3456,\n                  sizes: \"878px\",\n                  src: new URL(\"https://framerusercontent.com/images/pSWjOeqQSyMveWZOZUFlREQ5o.jpg\").href,\n                  srcSet: `${new URL(\"https://framerusercontent.com/images/pSWjOeqQSyMveWZOZUFlREQ5o.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/pSWjOeqQSyMveWZOZUFlREQ5o.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/pSWjOeqQSyMveWZOZUFlREQ5o.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/pSWjOeqQSyMveWZOZUFlREQ5o.jpg\").href} 3456w`\n                },\n                className: \"framer-2138eg\",\n                \"data-framer-name\": \"Flower\",\n                name: \"Flower\",\n                transformTemplate: transformTemplate1\n              }), /*#__PURE__*/_jsx(MotionDivWithFX, {\n                __framer__spring: {\n                  damping: 60,\n                  delay: 0,\n                  duration: .3,\n                  ease: [.44, 0, .56, 1],\n                  mass: 1,\n                  stiffness: 200,\n                  type: \"spring\"\n                },\n                __framer__styleTransformEffectEnabled: true,\n                __framer__transformTargets: [{\n                  target: {\n                    opacity: 1,\n                    rotate: 0,\n                    rotateX: 0,\n                    rotateY: 0,\n                    scale: 1,\n                    x: 0,\n                    y: 0\n                  }\n                }, {\n                  target: {\n                    opacity: 1,\n                    rotate: 0,\n                    rotateX: 0,\n                    rotateY: 0,\n                    scale: 1.4,\n                    x: 0,\n                    y: 0\n                  }\n                }],\n                __framer__transformTrigger: \"onScroll\",\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-1cht84m\",\n                \"data-framer-name\": \"Mask\",\n                name: \"Mask\",\n                transformTemplate: transformTemplate2,\n                children: /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-7zps99-container\",\n                  children: /*#__PURE__*/_jsx(TextMask, {\n                    bgPosX: 0,\n                    bgPosY: 50,\n                    bgSize: 200,\n                    bgSizeType: \"cover\",\n                    font: {\n                      color: \"rgb(191, 191, 191)\",\n                      fontFamily: \"Inter\",\n                      fontSize: 300,\n                      fontStyle: \"normal\",\n                      fontWeight: 900,\n                      letterSpacing: 0,\n                      lineHeight: 1,\n                      lineHeightPixels: 100,\n                      lineHeightType: true,\n                      textAlign: \"center\",\n                      whiteSpace: \"normal\"\n                    },\n                    height: \"100%\",\n                    id: \"w2OAp9gMr\",\n                    image: {\n                      alt: \"\",\n                      src: new URL(\"https://framerusercontent.com/images/pSWjOeqQSyMveWZOZUFlREQ5o.jpg\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/pSWjOeqQSyMveWZOZUFlREQ5o.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/pSWjOeqQSyMveWZOZUFlREQ5o.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/pSWjOeqQSyMveWZOZUFlREQ5o.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/pSWjOeqQSyMveWZOZUFlREQ5o.jpg\").href} 3456w`\n                    },\n                    layoutId: \"w2OAp9gMr\",\n                    padding: 0,\n                    paddingBottom: 0,\n                    paddingLeft: 0,\n                    paddingPerSide: false,\n                    paddingRight: 0,\n                    paddingTop: 0,\n                    textContent: \"Hello!\",\n                    width: \"100%\"\n                  })\n                })\n              })]\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-ekrwk [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: hsl(0, 0%, 100%); }`, \".framer-ekrwk .framer-lux5qc { display: block; }\", \".framer-ekrwk .framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 4000px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-ekrwk .framer-d5x182 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 50%; overflow: hidden; padding: 0px 0px 0px 0px; position: fixed; top: 40px; transform: translateX(-50%); width: 878px; z-index: 3; }\", \".framer-ekrwk .framer-1gnbaeh, .framer-ekrwk .framer-9ju5na { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-ekrwk .framer-1dq2id6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 4000px; justify-content: center; left: 0px; overflow: hidden; padding: 0px 0px 0px 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\", \".framer-ekrwk .framer-le4z4 { -webkit-backdrop-filter: blur(0px); -webkit-filter: grayscale(0) blur(0px); align-content: center; align-items: center; backdrop-filter: blur(0px); background-color: #000000; display: flex; filter: grayscale(0) blur(0px); flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 4000px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-ekrwk .framer-2138eg { -webkit-filter: grayscale(0); aspect-ratio: 1 / 1; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 878px); left: 50%; overflow: hidden; position: absolute; top: 40px; transform: perspective(1200px) translateX(-50%); width: 878px; will-change: transform; z-index: 1; }\", \".framer-ekrwk .framer-1cht84m { align-content: center; align-items: center; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 878px; justify-content: center; left: calc(50.00000000000002% - 878px / 2); overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 40px; transform: perspective(1200px); width: 878px; will-change: transform; z-index: 1; }\", \".framer-ekrwk .framer-7zps99-container { flex: none; height: auto; position: relative; width: auto; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ekrwk .framer-72rtr7, .framer-ekrwk .framer-1dq2id6, .framer-ekrwk .framer-le4z4, .framer-ekrwk .framer-1cht84m { gap: 0px; } .framer-ekrwk .framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ekrwk .framer-72rtr7 > :first-child, .framer-ekrwk .framer-le4z4 > :first-child { margin-top: 0px; } .framer-ekrwk .framer-72rtr7 > :last-child, .framer-ekrwk .framer-le4z4 > :last-child { margin-bottom: 0px; } .framer-ekrwk .framer-1dq2id6 > *, .framer-ekrwk .framer-1cht84m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ekrwk .framer-1dq2id6 > :first-child, .framer-ekrwk .framer-1cht84m > :first-child { margin-left: 0px; } .framer-ekrwk .framer-1dq2id6 > :last-child, .framer-ekrwk .framer-1cht84m > :last-child { margin-right: 0px; } .framer-ekrwk .framer-le4z4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\", ...sharedStyle.css, ...sharedStyle1.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerIntrinsicHeight 4000\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        */\nconst FrameraugiA20Il = withCSS(Component, css, \"framer-ekrwk\");\nexport default FrameraugiA20Il;\nFrameraugiA20Il.displayName = \"Home\";\nFrameraugiA20Il.defaultProps = {\n  height: 4e3,\n  width: 1200\n};\naddFonts(FrameraugiA20Il, [...TextMaskFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FrameraugiA20Il\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerIntrinsicHeight\": \"4000\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\n        \"framerIntrinsicWidth\": \"1200\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["TextMask", "props", "textContent", "image", "bgSizeType", "bgSize", "bgPosX", "bgPosY", "font", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "color", "fontSize", "fontFamily", "fontWeight", "fontStyle", "textAlign", "letterSpacing", "whiteSpace", "lineHeight", "lineHeightPixels", "lineHeightType", "backgroundSizeValue", "paddingValue", "p", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "ImageWithFX", "withFX", "Image2", "TextMaskFonts", "getFonts", "TextMask", "MotionDivWithFX", "motion", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "t", "transformTemplate1", "transformTemplate2", "metadata", "augiA20Il_default", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "id1", "useRouteElementId", "ref1", "pe", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "RichText", "x", "Link", "ImageWithFX", "MotionDivWithFX", "Container", "TextMask", "css", "FrameraugiA20Il", "withCSS", "addFonts", "TextMaskFonts", "fonts", "__FramerMetadata__"]
}
