{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/useConstant.js@^1.0.0", "ssg:https://framer.com/m/framer/randomID.js@^2.0.0", "ssg:https://framerusercontent.com/modules/CZcM2tgZ7YCsfKK7Pkw2/sFJGeq7Og5LIfgQvLu6j/g3iNpHNEU.js", "ssg:https://framerusercontent.com/modules/L4GxlVrpvmBuyvHhvvEZ/uFvN8F3FbWlraQiKFg0M/uOxyDZZDL.js", "ssg:https://framerusercontent.com/modules/tP66mPNLaseKXokGB7mh/z03s1D8ogCuhgp0xT5bp/JOIjtfacI.js", "ssg:https://framerusercontent.com/modules/6QhZuthP9EFzseYqd4U5/oQqq9mzkdn2F1fI9nEnS/stylesPresetHeading2.js", "ssg:https://framerusercontent.com/modules/xbQU0hEJVt2zWTagApqL/dgjpVEcbJogm4Z0V7GZn/stylesPresetHeading3.js", "ssg:https://framerusercontent.com/modules/8oF5HX9VPjLWHGs6NMbD/R0u164XU8GomWkC6BTEJ/stylesPresetLink.js", "ssg:https://framerusercontent.com/modules/1t3am1QaT1nqvxOZVmLo/hx9tWhIEhyMA5eEo6PFn/VNR1j0TLS.js", "ssg:https://framerusercontent.com/modules/xM64Tu3dfhFO7ETW5J0a/CHXBX4OlIgaKxNsAP4A9/vpDsOOnp0.js", "ssg:https://framerusercontent.com/modules/lzWGQky8kFXlmaK7d6Bx/aSXuZaNwxQpx92p78o9w/hfXrmnmxn.js"],
  "sourcesContent": ["import { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on.\n * By using `useConstant` you can ensure that initialisers don't execute twice or more.\n */ export function useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useConstant.map", "import { useConstant } from \"https://framer.com/m/framer/useConstant.js@^1.0.0\";\nconst BASE62 = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n/**\n * Generates a random string of BASE62 characters.\n */ export function randomID(length = 5) {\n    return Array(length).fill(0).map(()=>BASE62[Math.floor(Math.random() * BASE62.length)]\n    ).join(\"\");\n}\nexport function useRandomID(length = 5) {\n    return useConstant(()=>randomID(length)\n    );\n}\nconst defaultStorageKey = \"$$FramerRandomID\";\n/**\n * `randomID` but cached in localStorage.\n */ export function useCachedRandomID(storageKey = defaultStorageKey) {\n    return useConstant(()=>{\n        const storage = getLocalStorage();\n        if (!storage) return randomID(8);\n        const cachedValue = storage.getItem(storageKey);\n        if (cachedValue) return cachedValue;\n        const newID = randomID(8);\n        storage.setItem(storageKey, newID);\n        return newID;\n    });\n}\nfunction getLocalStorage() {\n    if (typeof window === undefined) return undefined;\n    try {\n        return window.localStorage;\n    } catch (err) {\n        return undefined;\n    }\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCachedRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./randomID.map", "import{jsx as _jsx}from\"react/jsx-runtime\";// Generated by Framer (d4eeff2)\nimport*as React from\"react\";import{motion,LayoutGroup}from\"framer-motion\";import{addFonts,withCSS,addPropertyControls,ControlType,cx,useVariantState}from\"framer\";import{useRandomID}from\"https://framer.com/m/framer/randomID.js@^2.0.0\";const cycleOrder=[\"d80nmPv8D\"];const variantClassNames={\"d80nmPv8D\":\"framer-v-8thr1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={};const transitions={\"default\":{\"type\":\"spring\",\"ease\":[0.44,0,0.56,1],\"duration\":0.3,\"delay\":0,\"stiffness\":500,\"damping\":60,\"mass\":1}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style:externalStyle={},className,width,height,layoutId,variant:outerVariant=\"d80nmPv8D\",color:cq8C1u5jQ=\"rgb(0, 153, 255)\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{variants,baseVariant,gestureVariant,classNames,transition,setVariant,setGestureState}=useVariantState({defaultVariant:\"d80nmPv8D\",variant,transitions,variantClassNames,cycleOrder});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=useRandomID();const{pointerEvents,...style}=externalStyle;return(/*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{\"data-framer-generated\":true,initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-m28A5\",classNames),style:{\"display\":\"contents\",\"pointerEvents\":pointerEvents!==null&&pointerEvents!==void 0?pointerEvents:undefined},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,layoutId:\"d80nmPv8D\",className:cx(\"framer-8thr1\",className),style:{\"borderBottomLeftRadius\":999,\"borderBottomRightRadius\":999,\"borderTopRightRadius\":999,\"borderTopLeftRadius\":999,\"WebkitFilter\":\"blur(100px)\",\"filter\":\"blur(100px)\",\"backgroundColor\":cq8C1u5jQ,...style},transition:transition,layoutDependency:layoutDependency,\"data-framer-name\":\"Variant 1\",ref:ref})})}));});const css=[\".framer-m28A5 [data-border=\\\"true\\\"]::after { content: \\\"\\\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none;}\",\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-m28A5 * { box-sizing: border-box; }\",\".framer-m28A5 .framer-8thr1 { position: relative; overflow: visible; width: 725px; height: 427px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 427\n * @framerIntrinsicWidth 725\n * @framerCanvasComponentVariantDetails {\"propertyName\": \"variant\", \"data\": {\"default\": {\"layout\": [\"fixed\", \"fixed\"]}}}\n * @framerVariables {\"cq8C1u5jQ\": \"color\"}\n */ const Framerg3iNpHNEU=withCSS(Component,css);export default Framerg3iNpHNEU;Framerg3iNpHNEU.displayName=\"Blob 2\";Framerg3iNpHNEU.defaultProps={\"width\":725,\"height\":427};addPropertyControls(Framerg3iNpHNEU,{\"cq8C1u5jQ\":{\"type\":ControlType.Color,\"title\":\"Color\",\"defaultValue\":\"rgb(0, 153, 255)\"}});addFonts(Framerg3iNpHNEU,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg3iNpHNEU\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"427\",\"framerVariables\":\"{\\\"cq8C1u5jQ\\\": \\\"color\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\": \\\"variant\\\", \\\"data\\\": {\\\"default\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"725\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g3iNpHNEU.map", "import{jsx as _jsx}from\"react/jsx-runtime\";// Generated by Framer (d4eeff2)\nimport*as React from\"react\";import{motion,LayoutGroup}from\"framer-motion\";import{addFonts,withCSS,addPropertyControls,ControlType,cx,useVariantState}from\"framer\";import{useRandomID}from\"https://framer.com/m/framer/randomID.js@^2.0.0\";const cycleOrder=[\"XWhLP9GPV\"];const variantClassNames={\"XWhLP9GPV\":\"framer-v-81rkse\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={};const transitions={\"default\":{\"type\":\"spring\",\"ease\":[0.44,0,0.56,1],\"duration\":0.3,\"delay\":0,\"stiffness\":500,\"damping\":60,\"mass\":1}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style:externalStyle={},className,width,height,layoutId,variant:outerVariant=\"XWhLP9GPV\",colour2:BKhzchbVP=\"rgb(0, 153, 255)\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{variants,baseVariant,gestureVariant,classNames,transition,setVariant,setGestureState}=useVariantState({defaultVariant:\"XWhLP9GPV\",variant,transitions,variantClassNames,cycleOrder});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=useRandomID();const{pointerEvents,...style}=externalStyle;return(/*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{\"data-framer-generated\":true,initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-TL2Nj\",classNames),style:{\"display\":\"contents\",\"pointerEvents\":pointerEvents!==null&&pointerEvents!==void 0?pointerEvents:undefined},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,layoutId:\"XWhLP9GPV\",className:cx(\"framer-81rkse\",className),style:{\"borderBottomLeftRadius\":999,\"borderBottomRightRadius\":999,\"borderTopRightRadius\":999,\"borderTopLeftRadius\":999,\"WebkitFilter\":\"blur(100px)\",\"filter\":\"blur(100px)\",\"backgroundColor\":BKhzchbVP,...style},transition:transition,layoutDependency:layoutDependency,\"data-framer-name\":\"Variant 1\",ref:ref})})}));});const css=[\".framer-TL2Nj [data-border=\\\"true\\\"]::after { content: \\\"\\\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none;}\",\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TL2Nj * { box-sizing: border-box; }\",\".framer-TL2Nj .framer-81rkse { position: relative; overflow: visible; width: 973px; height: 584px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 584\n * @framerIntrinsicWidth 973\n * @framerCanvasComponentVariantDetails {\"propertyName\": \"variant\", \"data\": {\"default\": {\"layout\": [\"fixed\", \"fixed\"]}}}\n * @framerVariables {\"BKhzchbVP\": \"colour2\"}\n */ const FrameruOxyDZZDL=withCSS(Component,css);export default FrameruOxyDZZDL;FrameruOxyDZZDL.displayName=\"Blob 1\";FrameruOxyDZZDL.defaultProps={\"width\":973,\"height\":584};addPropertyControls(FrameruOxyDZZDL,{\"BKhzchbVP\":{\"type\":ControlType.Color,\"title\":\"Colour 2\",\"defaultValue\":\"rgb(0, 153, 255)\"}});addFonts(FrameruOxyDZZDL,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruOxyDZZDL\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"973\",\"framerIntrinsicHeight\":\"584\",\"framerVariables\":\"{\\\"BKhzchbVP\\\": \\\"colour2\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\": \\\"variant\\\", \\\"data\\\": {\\\"default\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uOxyDZZDL.map", "// Generated by Framer (1a71db7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-Xu4S2 .framer-styles-preset-kooaug {  }\"];export const className=\"framer-Xu4S2\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Syne-600\"]);export const fonts=[{family:\"Syne\",moduleAsset:{localModuleIdentifier:\"local-module:css/stylesPresetHeading2:default\",url:\"https://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf\",weight:\"600\"}];export const css=['.framer-GVa9J .framer-styles-preset-1m9bzi2:not(.rich-text-wrapper), .framer-GVa9J .framer-styles-preset-1m9bzi2.rich-text-wrapper h2, .framer-GVa9J .framer-styles-preset-1m9bzi2.rich-text-wrapper [data-preset-tag=\"h2\"] { --framer-font-family: \"Syne\", serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: -1px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 809px) and (min-width: 2px) { .framer-GVa9J .framer-styles-preset-1m9bzi2:not(.rich-text-wrapper), .framer-GVa9J .framer-styles-preset-1m9bzi2.rich-text-wrapper h2, .framer-GVa9J .framer-styles-preset-1m9bzi2.rich-text-wrapper [data-preset-tag=\"h2\"] { --framer-font-family: \"Syne\", serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: -1px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1px) and (min-width: 0px) { .framer-GVa9J .framer-styles-preset-1m9bzi2:not(.rich-text-wrapper), .framer-GVa9J .framer-styles-preset-1m9bzi2.rich-text-wrapper h2, .framer-GVa9J .framer-styles-preset-1m9bzi2.rich-text-wrapper [data-preset-tag=\"h2\"] { --framer-font-family: \"Syne\", serif; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: -1px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-GVa9J\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Syne-600\"]);export const fonts=[{url:\"https://fonts.gstatic.com/s/syne/v14/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf\",family:\"Syne\",style:\"normal\",weight:\"600\",moduleAsset:{url:\"https://fonts.gstatic.com/s/syne/v14/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf\",localModuleIdentifier:\"local-module:css/stylesPresetHeading3:default\"}}];export const css=['.framer-pQg6I .framer-styles-preset-ci2ngw:not(.rich-text-wrapper), .framer-pQg6I .framer-styles-preset-ci2ngw.rich-text-wrapper h3 { --framer-font-family: \"Syne\", serif; --framer-font-style: normal; --framer-font-weight: 600; --framer-text-color: #333333; --framer-font-size: 22px; --framer-letter-spacing: -0.6px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.4em; --framer-text-alignment: start; --framer-paragraph-spacing: 0px; }'];export const className=\"framer-pQg6I\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=[\".framer-7ay9A .framer-styles-preset-aexbeb:not(.rich-text-wrapper), .framer-7ay9A .framer-styles-preset-aexbeb.rich-text-wrapper a { --framer-link-current-text-color: #2B2B2B; --framer-link-hover-text-color: #616161; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #2b2b2b; --framer-link-text-decoration: underline; }\"];export const className=\"framer-7ay9A\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (dc53115)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Italic\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-38gL8 .framer-styles-preset-3v1lay:not(.rich-text-wrapper), .framer-38gL8 .framer-styles-preset-3v1lay.rich-text-wrapper blockquote { --framer-blockquote-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-size: 16px; --framer-blockquote-font-style: italic; --framer-blockquote-font-style-bold: normal; --framer-blockquote-font-style-bold-italic: italic; --framer-blockquote-font-style-italic: italic; --framer-blockquote-font-variation-axes: normal; --framer-blockquote-font-weight: 400; --framer-blockquote-font-weight-bold: 700; --framer-blockquote-font-weight-bold-italic: 700; --framer-blockquote-font-weight-italic: 400; --framer-blockquote-letter-spacing: 0em; --framer-blockquote-line-height: 1.8em; --framer-blockquote-paragraph-spacing: 20px; --framer-blockquote-text-color: #999999; --framer-blockquote-text-stroke-color: initial; --framer-blockquote-text-stroke-width: initial; --framer-font-open-type-features: normal; padding: 0px 0px 0px 22px; position: relative; }','.framer-38gL8 .framer-styles-preset-3v1lay:not(.rich-text-wrapper)::before, .framer-38gL8 .framer-styles-preset-3v1lay.rich-text-wrapper blockquote::before { background-color: #ddd; border-radius: 1px; content: \" \"; display: block; height: 100%; left: 0px; position: absolute; top: 0px; width: 2px; }'];export const className=\"framer-38gL8\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (400c93f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-mHfBp .framer-styles-preset-1mm23up:not(.rich-text-wrapper), .framer-mHfBp .framer-styles-preset-1mm23up.rich-text-wrapper h4 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-mHfBp\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (dc53115)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,NotFoundError,PropertyOverrides,RichText,Text,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,withCodeBoundaryForOverrides,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Blob2 from\"#framer/local/canvasComponent/g3iNpHNEU/g3iNpHNEU.js\";import NavBarEeeeTop from\"#framer/local/canvasComponent/NrvulsM_X/NrvulsM_X.js\";import Footer from\"#framer/local/canvasComponent/qabz3cMCo/qabz3cMCo.js\";import Blob1 from\"#framer/local/canvasComponent/uOxyDZZDL/uOxyDZZDL.js\";import NavBarEeeeTopMOBTEST from\"#framer/local/canvasComponent/WWqtuQPxs/WWqtuQPxs.js\";import{withScrollTriggeredVariant}from\"#framer/local/codeFile/wxGFmio/Scrolly.js\";import Articles from\"#framer/local/collection/E7GHsAote/E7GHsAote.js\";import*as sharedStyle7 from\"#framer/local/css/JOIjtfacI/JOIjtfacI.js\";import*as sharedStyle from\"#framer/local/css/stylesPresetHeading1/stylesPresetHeading1.js\";import*as sharedStyle1 from\"#framer/local/css/stylesPresetHeading2/stylesPresetHeading2.js\";import*as sharedStyle2 from\"#framer/local/css/stylesPresetHeading3/stylesPresetHeading3.js\";import*as sharedStyle5 from\"#framer/local/css/stylesPresetLink/stylesPresetLink.js\";import*as sharedStyle4 from\"#framer/local/css/stylesPresetParagraph/stylesPresetParagraph.js\";import*as sharedStyle6 from\"#framer/local/css/VNR1j0TLS/VNR1j0TLS.js\";import*as sharedStyle3 from\"#framer/local/css/vpDsOOnp0/vpDsOOnp0.js\";import metadataProvider from\"#framer/local/webPageMetadata/hfXrmnmxn/hfXrmnmxn.js\";const Blob2Fonts=getFonts(Blob2);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const Blob1Fonts=getFonts(Blob1);const NavBarEeeeTopFonts=getFonts(NavBarEeeeTop);const NavBarEeeeTopWithScrollTriggeredVariant18o9314=withCodeBoundaryForOverrides(NavBarEeeeTop,{nodeId:\"tiaKGw4uV\",override:withScrollTriggeredVariant,scopeId:\"hfXrmnmxn\"});const NavBarEeeeTopMOBTESTFonts=getFonts(NavBarEeeeTopMOBTEST);const NavBarEeeeTopMOBTESTWithScrollTriggeredVariant17vk1n8=withCodeBoundaryForOverrides(NavBarEeeeTopMOBTEST,{nodeId:\"MtZ9nOLXZ\",override:withScrollTriggeredVariant,scopeId:\"hfXrmnmxn\"});const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const TextWithOptimizedAppearEffect=withOptimizedAppearEffect(Text);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const FooterFonts=getFonts(Footer);const breakpoints={L4Mhj3CLx:\"(min-width: 641px) and (max-width: 1199px)\",pPLztBsTK:\"(max-width: 640px)\",wSU127Idb:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-KffHJ\";const variantClassNames={L4Mhj3CLx:\"framer-v-8slfy\",pPLztBsTK:\"framer-v-6qvx8e\",wSU127Idb:\"framer-v-jrlirq\"};const transition1={damping:30,delay:0,mass:1,stiffness:22,type:\"spring\"};const animation={opacity:.9,rotate:12,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const transition2={damping:85,delay:0,mass:5,stiffness:116,type:\"spring\"};const animation2={opacity:.8,rotate:-15,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-250};const transition3={damping:60,delay:.05,mass:1,stiffness:500,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition4={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation6={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:60,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation7={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition6={damping:60,delay:.15,mass:1,stiffness:500,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition7={damping:60,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"wSU127Idb\",Phone:\"pPLztBsTK\",Tablet:\"L4Mhj3CLx\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"wSU127Idb\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"hfXrmnmxn\",data:Articles,type:\"Collection\"},select:[{collection:\"hfXrmnmxn\",name:\"ZckEhR3V3\",type:\"Identifier\"},{collection:\"hfXrmnmxn\",name:\"OhTG7t3h6\",type:\"Identifier\"},{collection:\"hfXrmnmxn\",name:\"Djh5_J2Mt\",type:\"Identifier\"},{collection:\"hfXrmnmxn\",name:\"qmKEIZQOx\",type:\"Identifier\"},{collection:\"hfXrmnmxn\",name:\"uBkU9cwuF\",type:\"Identifier\"},{collection:\"hfXrmnmxn\",name:\"vny2uxJff\",type:\"Identifier\"},{collection:\"hfXrmnmxn\",name:\"KbGlbG3Yd\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"hfXrmnmxn\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,uBkU9cwuF=getFromCurrentRouteData(\"uBkU9cwuF\")??\"#09F\",qmKEIZQOx=getFromCurrentRouteData(\"qmKEIZQOx\")??\"#09F\",ZckEhR3V3=getFromCurrentRouteData(\"ZckEhR3V3\")??\"\",Djh5_J2Mt=getFromCurrentRouteData(\"Djh5_J2Mt\")??\"\",OhTG7t3h6=getFromCurrentRouteData(\"OhTG7t3h6\")??\"\",vny2uxJff=getFromCurrentRouteData(\"vny2uxJff\"),KbGlbG3Yd=getFromCurrentRouteData(\"KbGlbG3Yd\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"pPLztBsTK\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"pPLztBsTK\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"wSU127Idb\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-jrlirq\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14cqbjz\",\"data-framer-name\":\"Gradient wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8kbl80\",\"data-framer-name\":\"Gradient blobs\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-9jwouk-container\",\"data-framer-appear-id\":\"9jwouk\",initial:animation1,nodeId:\"tAJNpzs2G\",optimized:true,rendersWithMotion:true,scopeId:\"hfXrmnmxn\",style:{rotate:12,transformPerspective:1200},children:/*#__PURE__*/_jsx(Blob2,{color:uBkU9cwuF,height:\"100%\",id:\"tAJNpzs2G\",layoutId:\"tAJNpzs2G\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1x440sg-container\",\"data-framer-appear-id\":\"1x440sg\",initial:animation3,nodeId:\"MwBwL0zSo\",optimized:true,rendersWithMotion:true,scopeId:\"hfXrmnmxn\",style:{rotate:-15,transformPerspective:1200},children:/*#__PURE__*/_jsx(Blob1,{colour2:qmKEIZQOx,height:\"100%\",id:\"MwBwL0zSo\",layoutId:\"MwBwL0zSo\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13z2dl3\",\"data-framer-name\":\"Blob cover\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s9hsre\",\"data-framer-name\":\"Nav wrap 1\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18o9314-container hidden-6qvx8e\",nodeId:\"tiaKGw4uV\",rendersWithMotion:true,scopeId:\"hfXrmnmxn\",children:/*#__PURE__*/_jsx(NavBarEeeeTopWithScrollTriggeredVariant18o9314,{height:\"100%\",id:\"tiaKGw4uV\",layoutId:\"tiaKGw4uV\",style:{width:\"100%\"},variant:\"yQlWZslHR\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17vk1n8-container hidden-jrlirq hidden-8slfy\",nodeId:\"MtZ9nOLXZ\",rendersWithMotion:true,scopeId:\"hfXrmnmxn\",children:/*#__PURE__*/_jsx(NavBarEeeeTopMOBTESTWithScrollTriggeredVariant17vk1n8,{height:\"100%\",id:\"MtZ9nOLXZ\",layoutId:\"MtZ9nOLXZ\",style:{width:\"100%\"},variant:\"eqAIHPnun\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b7bgf5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ftg206\",\"data-framer-name\":\"Header noRadHeader\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pPLztBsTK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-o3e5h0\",\"data-styles-preset\":\"stylesPresetHeading1\",style:{\"--framer-text-alignment\":\"left\"},children:\"Title\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-o3e5h0\",\"data-styles-preset\":\"stylesPresetHeading1\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Title\"})})}),className:\"framer-6t8i4m\",\"data-framer-appear-id\":\"6t8i4m\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation5,optimized:true,text:ZckEhR3V3,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(TextWithOptimizedAppearEffect,{__fromCanvasComponent:true,alignment:\"left\",animate:animation6,className:\"framer-gidtiq\",\"data-framer-appear-id\":\"gidtiq\",\"data-framer-name\":\"Category\",fonts:[\"GF;Libre Baskerville-regular\"],initial:animation5,optimized:true,rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>\u200B</span><br></span></span>\",text:Djh5_J2Mt,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithOptimizedAppearEffect,{__fromCanvasComponent:true,alignment:\"left\",animate:animation7,className:\"framer-1asgf27\",\"data-framer-appear-id\":\"1asgf27\",\"data-framer-name\":\"Date\",fonts:[\"GF;Libre Baskerville-regular\"],initial:animation5,optimized:true,rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>\u200B</span><br></span></span>\",text:OhTG7t3h6,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L4Mhj3CLx:{background:{alt:\"\",fit:\"fill\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 720px) - 64px, 400px)`,...toResponsiveImage(vny2uxJff)}},pPLztBsTK:{background:{alt:\"\",fit:\"fill\",sizes:`min(min(${componentViewport?.width||\"100vw\"} - 16px, 720px) - 32px, 400px)`,...toResponsiveImage(vny2uxJff)}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation8,background:{alt:\"\",fit:\"fill\",sizes:`min(min(${componentViewport?.width||\"100vw\"} * 0.6, 720px), 400px)`,...toResponsiveImage(vny2uxJff)},className:\"framer-1mlm3td\",\"data-framer-appear-id\":\"1mlm3td\",\"data-framer-name\":\"Cover\",initial:animation9,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation10,children:KbGlbG3Yd,className:\"framer-48ckrp\",\"data-framer-appear-id\":\"48ckrp\",\"data-framer-name\":\"Content\",fonts:[\"GF;DM Sans-regular\"],initial:animation9,optimized:true,style:{transformPerspective:1200},stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",blockquote:\"framer-styles-preset-3v1lay\",h1:\"framer-styles-preset-o3e5h0\",h2:\"framer-styles-preset-1m9bzi2\",h3:\"framer-styles-preset-ci2ngw\",h4:\"framer-styles-preset-1mm23up\",img:\"framer-styles-preset-kooaug\",p:\"framer-styles-preset-16bzrdu\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pPLztBsTK:{width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:122,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-l8e4lq-container\",nodeId:\"YSTqW4jdN\",scopeId:\"hfXrmnmxn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L4Mhj3CLx:{variant:\"e1LGEuH3G\"},pPLztBsTK:{variant:\"BNV0irIBR\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"YSTqW4jdN\",layoutId:\"YSTqW4jdN\",style:{width:\"100%\"},variant:\"nhM5S_kgO\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KffHJ.framer-yrr5la, .framer-KffHJ .framer-yrr5la { display: block; }\",\".framer-KffHJ.framer-jrlirq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-KffHJ .framer-14cqbjz { flex: none; height: 700px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-KffHJ .framer-8kbl80 { bottom: 900px; flex: none; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-KffHJ .framer-9jwouk-container { bottom: -285px; flex: none; opacity: 0.9; position: absolute; right: -197px; top: -330px; width: 1239px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-KffHJ .framer-1x440sg-container { bottom: -337px; flex: none; left: -156px; opacity: 0.8; position: absolute; top: -368px; width: 973px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-KffHJ .framer-13z2dl3 { -webkit-filter: blur(100px); background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; bottom: -325px; filter: blur(100px); flex: none; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: -100px; width: 100%; }\",\".framer-KffHJ .framer-1s9hsre { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; left: 0px; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 720px; z-index: 4; }\",\".framer-KffHJ .framer-18o9314-container { flex: none; height: auto; left: 0px; position: sticky; top: 0px; width: 768px; z-index: 3; }\",\".framer-KffHJ .framer-17vk1n8-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\".framer-KffHJ .framer-b7bgf5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; max-width: 720px; overflow: visible; padding: 64px 0px 64px 0px; position: relative; width: 60%; z-index: 2; }\",\".framer-KffHJ .framer-ftg206 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KffHJ .framer-6t8i4m, .framer-KffHJ .framer-48ckrp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",'.framer-KffHJ .framer-gidtiq, .framer-KffHJ .framer-1asgf27 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.2px; --framer-line-height: 1.2em; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }',\".framer-KffHJ .framer-1mlm3td { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 500px; border-top-right-radius: 500px; flex: none; height: 400px; max-width: 400px; overflow: visible; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-KffHJ .framer-l8e4lq-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,\"@media (max-width: 640px) { .framer-KffHJ.framer-jrlirq { padding: 0px 8px 0px 8px; width: 428px; } .framer-KffHJ .framer-14cqbjz { order: 1; } .framer-KffHJ .framer-9jwouk-container { aspect-ratio: 2.0146341463414634 / 1; bottom: -164px; right: -188px; top: -83px; width: var(--framer-aspect-ratio-supported, 498px); } .framer-KffHJ .framer-1x440sg-container { aspect-ratio: 1.3801418439716313 / 1; bottom: -185px; left: -96px; top: -107px; width: var(--framer-aspect-ratio-supported, 403px); } .framer-KffHJ .framer-1s9hsre { order: 0; width: 100%; } .framer-KffHJ .framer-b7bgf5 { gap: 40px; order: 2; padding: 24px 16px 24px 16px; width: 100%; } .framer-KffHJ .framer-gidtiq, .framer-KffHJ .framer-1asgf27 { --framer-font-size: 16px; } .framer-KffHJ .framer-1mlm3td { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 200px; border-top-right-radius: 200px; } .framer-KffHJ .framer-l8e4lq-container { order: 3; }}\",\"@media (min-width: 641px) and (max-width: 1199px) { .framer-KffHJ.framer-jrlirq { width: 641px; } .framer-KffHJ .framer-14cqbjz { order: 0; } .framer-KffHJ .framer-9jwouk-container { aspect-ratio: 2.0150375939849625 / 1; bottom: -233px; right: -100px; top: -50px; width: var(--framer-aspect-ratio-supported, 570px); } .framer-KffHJ .framer-1x440sg-container { aspect-ratio: 1.3801418439716313 / 1; bottom: -214px; left: -127px; top: -154px; width: var(--framer-aspect-ratio-supported, 508px); } .framer-KffHJ .framer-1s9hsre { max-width: 768px; order: 1; padding: 0px 24px 0px 24px; width: 100%; } .framer-KffHJ .framer-18o9314-container { width: 100%; } .framer-KffHJ .framer-b7bgf5 { order: 2; padding: 48px 32px 32px 32px; width: 100%; } .framer-KffHJ .framer-l8e4lq-container { order: 3; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3978\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pPLztBsTK\":{\"layout\":[\"fixed\",\"auto\"]},\"L4Mhj3CLx\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerhfXrmnmxn=withCSS(Component,css,\"framer-KffHJ\");export default FramerhfXrmnmxn;FramerhfXrmnmxn.displayName=\"Articles\";FramerhfXrmnmxn.defaultProps={height:3978,width:1200};addFonts(FramerhfXrmnmxn,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v16/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNbYRI4CN2V.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...Blob2Fonts,...Blob1Fonts,...NavBarEeeeTopFonts,...NavBarEeeeTopMOBTESTFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhfXrmnmxn\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pPLztBsTK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L4Mhj3CLx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"3978\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["useConstant", "init", "ref", "pe", "BASE62", "randomID", "length", "useRandomID", "useConstant", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "externalStyle", "className", "width", "height", "layoutId", "outerVariant", "cq8C1u5jQ", "restProps", "ref", "variant", "variants", "baseVariant", "gestureVariant", "classNames", "transition", "setVariant", "setGestureState", "useVariantState", "variantClassNames", "cycleOrder", "layoutDependency", "defaultLayoutId", "useRandomID", "pointerEvents", "style", "p", "LayoutGroup", "motion", "cx", "css", "Framerg3iNpHNEU", "withCSS", "g3iNpHNEU_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "externalStyle", "className", "width", "height", "layoutId", "outerVariant", "BKhzchbVP", "restProps", "ref", "variant", "variants", "baseVariant", "gestureVariant", "classNames", "transition", "setVariant", "setGestureState", "useVariantState", "variantClassNames", "cycleOrder", "layoutDependency", "defaultLayoutId", "useRandomID", "pointerEvents", "style", "p", "LayoutGroup", "motion", "cx", "css", "FrameruOxyDZZDL", "withCSS", "uOxyDZZDL_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "Blob2Fonts", "getFonts", "g3iNpHNEU_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "Blob1Fonts", "uOxyDZZDL_default", "NavBarEeeeTopFonts", "NrvulsM_X_default", "NavBarEeeeTopWithScrollTriggeredVariant18o9314", "withCodeBoundaryForOverrides", "withScrollTriggeredVariant", "NavBarEeeeTopMOBTESTFonts", "WWqtuQPxs_default", "NavBarEeeeTopMOBTESTWithScrollTriggeredVariant17vk1n8", "RichTextWithOptimizedAppearEffect", "RichText2", "TextWithOptimizedAppearEffect", "Text2", "ImageWithOptimizedAppearEffect", "Image2", "FooterFonts", "qabz3cMCo_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "transition5", "animation7", "toResponsiveImage", "value", "transition6", "animation8", "animation9", "transition7", "animation10", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "E7GHsAote_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "uBkU9cwuF", "qmKEIZQOx", "ZckEhR3V3", "Djh5_J2Mt", "OhTG7t3h6", "vny2uxJff", "KbGlbG3Yd", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "x", "css", "FramerhfXrmnmxn", "withCSS", "hfXrmnmxn_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
