{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/8TtjecrrZM6688kaKB5n/UqCgMDXzAldaZoDF64gD/Gradient_ease.js", "ssg:https://framerusercontent.com/modules/jePbpoTX9MFy78JLZjay/EgmDgqyiajbEwSstQnbf/vqCJJjluc.js", "ssg:https://framerusercontent.com/modules/HpEAdb6W9jRdcD4ABvbW/ywjuKfybd8a3zk3Ru3nE/hMhsJLtAS.js", "ssg:https://framerusercontent.com/modules/laQ5TCbBVTglAPO6JUCB/DvcarfYL7n00ElsVPDXO/BaiWzMDNf.js", "ssg:https://framerusercontent.com/modules/jfK7C7JmdHGaVBsvt1V7/G0lF2a2mezep3QZSQZwm/DotLottie.js", "ssg:https://framerusercontent.com/modules/49JdHwSYhnnKqP3oy9BM/Cw2iGieTGvINZjXQYeT2/XJAELCSDO.js", "ssg:https://framerusercontent.com/modules/iut3kmiePKEiFZiGy4o7/iprJDbOu6kguRMSWTBbo/Copy_to_clipboard.js", "ssg:https://framerusercontent.com/modules/Fl1RkxNjQhli4jOR9Lxz/YicFe6ZHpXH9J8Cxya7O/Test_Scale.js", "ssg:https://framerusercontent.com/modules/GBjHeEpNvZxeXPoE5CCs/g6M5o3CRorIKu2TZsIDe/WF8PmVlh7.js", "ssg:https://framerusercontent.com/modules/5KonMIvAwUkfAcaq1pPU/kFE9rk16oF9gK4naBsX4/oakJGc2RR.js", "ssg:https://framerusercontent.com/modules/gdrpPQPU0aT6TIQLx8Gc/CIjmGVS3xZNVeMNLJAle/Xw4Qirbvv.js", "ssg:https://framerusercontent.com/modules/BmecJO0dGTwe8pzsKq1L/upUs13pxD4VFwEbywq82/QRmC93gpr.js", "ssg:https://framerusercontent.com/modules/6bZIqqb7RjvFmbshXwBe/EQNdd4Sk3MDHWnxvPMTN/ALeoHd2zM.js", "ssg:https://framerusercontent.com/modules/X21qrJbV2sFFJy8DBKSt/PLIjkBC1q7wEwroknKYh/SYL2iCFws.js", "ssg:https://framerusercontent.com/modules/lsOxgdRweaVsxR8m3Ac8/YBW8iTQMPEEfytT7KQb8/l5kBV_gwA.js", "ssg:https://framerusercontent.com/modules/KfeBRAiYdlPhxL63dri4/36ky9POF2a9mapu4n2iu/Mask_fade.js", "ssg:https://framerusercontent.com/modules/wlSv0ye2tPO77SQPJ6MP/0PP7UyGAwZ8ScembGW4q/s3TV9yejk.js", "ssg:https://framerusercontent.com/modules/k5gBTzYNpEMWXABtCEET/Tevv33FTlqfQYKqOvfVu/UAngPKjwE.js", "ssg:https://framerusercontent.com/modules/OJ922sFMP90gixg4Sm9R/boKT89DaSGHIwKFw6p2Y/WQYZGGXEJ.js", "ssg:https://framerusercontent.com/modules/dAFnYCbwt9GFjkLQIe2H/sdXrXQeF1eeogXk9Z2g1/B5uA9JEYc.js", "ssg:https://framerusercontent.com/modules/CLoccTVUKUtwjnQPz19i/9Vz2DeuSS1Z1z6wwfAem/Tx9Pd72uY.js", "ssg:https://framerusercontent.com/modules/SWYoxNOKMN0WftRohefO/KDcuqzXPOph7dfRUrOXi/jp7lat_1e.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";// Easing functions\nconst easings={linear:t=>t,easeIn:t=>t*t,easeInOut:t=>t<.5?2*t*t:-1+(4-2*t)*t,exponential:t=>t===0?0:Math.pow(1024,t-1)};/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Gradientease(props){const{gradientDirection,cornerRadius,easing,grayScale}=props;// Generate gradient stops\nconst generateGradientStops=(easingFunc,numberOfStops=30)=>{return Array.from({length:numberOfStops},(_,i)=>{const t=i/(numberOfStops-1);const easedT=easingFunc(t);return`hsla(0, 0%, ${grayScale}%, ${easedT}) ${t*100}%`;}).join(\", \");};const gradient=`linear-gradient(${gradientDirection}, ${generateGradientStops(easings[easing])})`;const style={width:\"100%\",height:\"100%\",background:gradient,borderRadius:cornerRadius};return /*#__PURE__*/_jsx(motion.div,{style:style});}Gradientease.defaultProps={gradientDirection:\"to bottom\",cornerRadius:0,easing:\"easeInOut\",grayScale:0};addPropertyControls(Gradientease,{gradientDirection:{type:ControlType.Enum,title:\"Direction\",options:[\"to left\",\"to right\",\"to top\",\"to bottom\"],optionTitles:[\"Left\",\"Right\",\"Up\",\"Down\"],displaySegmentedControl:true,optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],defaultValue:\"to bottom\"},cornerRadius:{type:ControlType.Number,title:\"Corner Radius\",min:0,max:100,step:1,unit:\"px\"},easing:{type:ControlType.Enum,title:\"Easing\",options:[\"linear\",\"easeIn\",\"easeInOut\",\"exponential\"],optionTitles:[\"Linear\",\"Ease In\",\"Ease In-Out\",\"Exponential\"],defaultValue:\"easeInOut\"},grayScale:{type:ControlType.Number,title:\"Gray Scale\",min:0,max:100,defaultValue:0,unit:\"%\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Gradientease\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Gradient_ease.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-regular\",\"GF;Inter-700\"]);export const fonts=[{family:\"Inter\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}];export const css=['.framer-ilX6L .framer-styles-preset-l7lhsi:not(.rich-text-wrapper), .framer-ilX6L .framer-styles-preset-l7lhsi.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, #fafafa); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-ilX6L .framer-styles-preset-l7lhsi:not(.rich-text-wrapper), .framer-ilX6L .framer-styles-preset-l7lhsi.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, #fafafa); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-ilX6L .framer-styles-preset-l7lhsi:not(.rich-text-wrapper), .framer-ilX6L .framer-styles-preset-l7lhsi.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, #fafafa); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-ilX6L\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c75d380)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import OverlaysPoof from\"https://framerusercontent.com/modules/laQ5TCbBVTglAPO6JUCB/DvcarfYL7n00ElsVPDXO/BaiWzMDNf.js\";import OverlaysModal2 from\"https://framerusercontent.com/modules/49JdHwSYhnnKqP3oy9BM/Cw2iGieTGvINZjXQYeT2/XJAELCSDO.js\";const OverlaysModal2Fonts=getFonts(OverlaysModal2);const OverlaysPoofFonts=getFonts(OverlaysPoof);const cycleOrder=[\"Sg8srdK5p\",\"MDWl_7JcH\"];const serializationHash=\"framer-6sMQG\";const variantClassNames={MDWl_7JcH:\"framer-v-t91cax\",Sg8srdK5p:\"framer-v-9ujk7y\"};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 transitions={default:{duration:0,type:\"tween\"},MDWl_7JcH:{duration:0,type:\"tween\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Active:\"MDWl_7JcH\",Base:\"Sg8srdK5p\"};const getProps=({height,id,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,BpQ2WAtFh:tap!==null&&tap!==void 0?tap:props.BpQ2WAtFh,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Sg8srdK5p\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,BpQ2WAtFh,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"Sg8srdK5p\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const BXVIuL5Rc168ioho=activeVariantCallback(async(...args)=>{if(BpQ2WAtFh){const res=await BpQ2WAtFh(...args);if(res===false)return false;}setVariant(\"MDWl_7JcH\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-9ujk7y\",className,classNames),\"data-framer-name\":\"Base\",initial:variant,layoutDependency:layoutDependency,layoutId:\"Sg8srdK5p\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({MDWl_7JcH:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eqtf91-container\",layoutDependency:layoutDependency,layoutId:\"aaILemGMM-container\",children:/*#__PURE__*/_jsx(OverlaysModal2,{BXVIuL5Rc:BXVIuL5Rc168ioho,height:\"100%\",id:\"aaILemGMM\",layoutId:\"aaILemGMM\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lm6cuy-container\",layoutDependency:layoutDependency,layoutId:\"nL9A0ym5V-container\",children:/*#__PURE__*/_jsx(OverlaysPoof,{HBoFb5w3z:0,height:\"100%\",id:\"nL9A0ym5V\",layoutId:\"nL9A0ym5V\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",XEohjJiuB:false,...addPropertyOverrides({MDWl_7JcH:{HBoFb5w3z:1,XEohjJiuB:true}},baseVariant,gestureVariant)})})]})})});});const css=['.framer-6sMQG[data-border=\"true\"]::after, .framer-6sMQG [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-6sMQG.framer-1453o4j, .framer-6sMQG .framer-1453o4j { display: block; }\",\".framer-6sMQG.framer-9ujk7y { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 340px; }\",\".framer-6sMQG .framer-1eqtf91-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-6sMQG .framer-1lm6cuy-container { flex: none; height: 400px; left: calc(50.00000000000002% - 400px / 2); pointer-events: none; position: absolute; top: calc(50.00000000000002% - 400px / 2); width: 400px; z-index: 9; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6sMQG.framer-9ujk7y { gap: 0px; } .framer-6sMQG.framer-9ujk7y > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6sMQG.framer-9ujk7y > :first-child { margin-top: 0px; } .framer-6sMQG.framer-9ujk7y > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 328\n * @framerIntrinsicWidth 340\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MDWl_7JcH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BpQ2WAtFh\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerhMhsJLtAS=withCSS(Component,css,\"framer-6sMQG\");export default FramerhMhsJLtAS;FramerhMhsJLtAS.displayName=\"Overlays/Modal 2 Poof\";FramerhMhsJLtAS.defaultProps={height:328,width:340};addPropertyControls(FramerhMhsJLtAS,{variant:{options:[\"Sg8srdK5p\",\"MDWl_7JcH\"],optionTitles:[\"Base\",\"Active\"],title:\"Variant\",type:ControlType.Enum},BpQ2WAtFh:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerhMhsJLtAS,[...OverlaysModal2Fonts,...OverlaysPoofFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhMhsJLtAS\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MDWl_7JcH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"BpQ2WAtFh\\\":\\\"tap\\\"}\",\"framerIntrinsicHeight\":\"328\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"340\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c75d380)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import DotLottie from\"https://framerusercontent.com/modules/jfK7C7JmdHGaVBsvt1V7/G0lF2a2mezep3QZSQZwm/DotLottie.js\";const DotLottieFonts=getFonts(DotLottie);const cycleOrder=[\"cV0I5CJDr\"];const serializationHash=\"framer-xQJvV\";const variantClassNames={cV0I5CJDr:\"framer-v-1pnuw1j\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({autoplay,height,id,opacity,width,...props})=>{var _ref;return{...props,HBoFb5w3z:(_ref=opacity!==null&&opacity!==void 0?opacity:props.HBoFb5w3z)!==null&&_ref!==void 0?_ref:.9,XEohjJiuB:autoplay!==null&&autoplay!==void 0?autoplay:props.XEohjJiuB};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,XEohjJiuB,HBoFb5w3z,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"cV0I5CJDr\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1pnuw1j\",className,classNames),\"data-framer-name\":\"Variant 1\",initial:variant,layoutDependency:layoutDependency,layoutId:\"cV0I5CJDr\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.9,...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vz3gkg-container\",layoutDependency:layoutDependency,layoutId:\"xvrtW2M5r-container\",style:{opacity:HBoFb5w3z},children:/*#__PURE__*/_jsx(DotLottie,{autoplay:XEohjJiuB,background:\"rgba(255, 255, 255, 0)\",controls:false,direction:\"1\",height:\"100%\",hover:false,id:\"xvrtW2M5r\",layoutId:\"xvrtW2M5r\",loop:false,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/wwD0m3Bv2ngqPwd5chIrUgaoE.zip\",srcType:\"file\",srcUrl:\"https://app.lottiefiles.com/animation/81b393da-92af-4f67-81ce-a8d9e869ce7e?panel=download\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})});});const css=['.framer-xQJvV[data-border=\"true\"]::after, .framer-xQJvV [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-xQJvV.framer-jktai4, .framer-xQJvV .framer-jktai4 { display: block; }\",\".framer-xQJvV.framer-1pnuw1j { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 320px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 320px; }\",\".framer-xQJvV .framer-1vz3gkg-container { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 320px); position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xQJvV.framer-1pnuw1j { gap: 0px; } .framer-xQJvV.framer-1pnuw1j > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xQJvV.framer-1pnuw1j > :first-child { margin-left: 0px; } .framer-xQJvV.framer-1pnuw1j > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 320\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"XEohjJiuB\":\"autoplay\",\"HBoFb5w3z\":\"opacity\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerBaiWzMDNf=withCSS(Component,css,\"framer-xQJvV\");export default FramerBaiWzMDNf;FramerBaiWzMDNf.displayName=\"Overlays/Poof\";FramerBaiWzMDNf.defaultProps={height:320,width:320};addPropertyControls(FramerBaiWzMDNf,{XEohjJiuB:{defaultValue:false,title:\"Autoplay\",type:ControlType.Boolean},HBoFb5w3z:{defaultValue:.9,max:1,min:0,step:.01,title:\"Opacity\",type:ControlType.Number}});addFonts(FramerBaiWzMDNf,[...DotLottieFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBaiWzMDNf\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"320\",\"framerVariables\":\"{\\\"XEohjJiuB\\\":\\\"autoplay\\\",\\\"HBoFb5w3z\\\":\\\"opacity\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"320\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BaiWzMDNf.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useRef,useState}from\"react\";const placeholderUrl=\"https://lottie.host/d826e0a7-b7e8-4072-8afe-c943ed2dd2ca/DpX3m5yT5Z.lottie\";/**\n * DOT LOTTIE\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function DotLottie(props){return /*#__PURE__*/ _jsx(OptimizationFriendly,{loading:/*#__PURE__*/ _jsx(\"div\",{}),loaded:/*#__PURE__*/ _jsx(LottiePlayer,{...props})});};function LottiePlayer(props){/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const lottieInstanceRef=useRef(null);const shouldPlay=isCanvas||props.hover===true||props.autoplay===false?null:true;/* File or URL */ let src;switch(props.srcType){case\"url\":src=props.srcUrl;break;case\"file\":src=props.srcFile;break;default:src=placeholderUrl;break;}/* Progress */ const[isReady,setIsReady]=useState(false);/* For canvas states */ useEffect(()=>{if(!lottieInstanceRef.current)return;lottieInstanceRef.current.addEventListener(\"ready\",()=>setIsReady(true));},[]);useEffect(()=>{if(!lottieInstanceRef.current)return;lottieInstanceRef.current.seek(`${props.progress}%`);},[isReady,props.progress]);const lastVariant=useRef();/* For component variant support */ useEffect(()=>{if(isCanvas)return;if(lastVariant.current!==props.autoplay){if(!lottieInstanceRef.current)return;if(props.autoplay===true){lottieInstanceRef.current.play();}if(props.autoplay===false){lottieInstanceRef.current.pause();}}lastVariant.current=props.autoplay;},[props.autoplay]);return(// @ts-ignore\n/*#__PURE__*/ _jsx(\"dotlottie-player\",{src:src,ref:lottieInstanceRef,autoplay:shouldPlay,loop:props.loop?true:null,hover:props.hover?true:null,controls:props.controls?true:null,background:props.background?props.background:null,speed:props.speed,direction:props.direction,style:{...props.style,width:\"100%\",height:\"100%\"}},src));}DotLottie.defaultProps={srcUrl:placeholderUrl,autoplay:true,background:\"#05F\",controls:false,direction:1,hover:false,loop:true,speed:1};DotLottie.displayName=\"Dot Lottie\";addPropertyControls(DotLottie,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"url\",\"file\"],optionTitles:[\"URL\",\"File\"]},srcUrl:{type:ControlType.String,title:\"Link\",placeholder:\"../example.lottie\",hidden:props=>props.srcType===\"file\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"lottie\",\"json\"],hidden:props=>props.srcType===\"url\"},autoplay:{type:ControlType.Boolean,title:\"Autoplay\",defaultValue:true},background:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"#05F\"},controls:{type:ControlType.Boolean,title:\"Controls\"},direction:{type:ControlType.Enum,title:\"Direction\",defaultValue:\"1\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"1\",\"-1\"],optionTitles:[\"Normal\",\"Reverse\"]},hover:{type:ControlType.Boolean,title:\"Hover Play\"},loop:{type:ControlType.Boolean,title:\"Loop\"},speed:{type:ControlType.Number,title:\"Speed\",defaultValue:1,min:1,max:10,unit:\"x\",step:.5,displayStepper:true},progress:{type:ControlType.Number,title:\"Progress\",defaultValue:0,min:0,max:100,step:1,description:\"This component is made for Lottie files. [Learn more here](https://dotlottie.io/).\"}});/* For SSG */ function OptimizationFriendly({loading,loaded}){const[isLoading,setLoading]=React.useState(true);// We can't load web-components in ssg on the server,\n// so we defer rendering until we hit the client.\nReact.useEffect(()=>{import(\"https://unpkg.com/@dotlottie/player-component@1.3.2/dist/dotlottie-player.js\").then(()=>{setLoading(false);});},[]);return isLoading?loading:loaded;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"DotLottie\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DotLottie.map", "// Generated by Framer (83eb5d8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import{withCopyToClipboard}from\"https://framerusercontent.com/modules/iut3kmiePKEiFZiGy4o7/iprJDbOu6kguRMSWTBbo/Copy_to_clipboard.js\";import{withFadeOutAnimation,withTriggerFadeOut}from\"https://framerusercontent.com/modules/Fl1RkxNjQhli4jOR9Lxz/YicFe6ZHpXH9J8Cxya7O/Test_Scale.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/jePbpoTX9MFy78JLZjay/EgmDgqyiajbEwSstQnbf/vqCJJjluc.js\";import UtilityButtons,*as UtilityButtonsInfo from\"https://framerusercontent.com/modules/Jb6g5TFqwav4TZCWIWmg/n7B3kkTZIOzI8qyLbWPt/QEAaU343u.js\";import IconsMobileIcons,*as IconsMobileIconsInfo from\"https://framerusercontent.com/modules/GBjHeEpNvZxeXPoE5CCs/g6M5o3CRorIKu2TZsIDe/WF8PmVlh7.js\";const IconsMobileIconsFonts=getFonts(IconsMobileIcons);const IconsMobileIconsWithTriggerFadeOutWithMappedReactProps5arc9s=withMappedReactProps(withTriggerFadeOut(IconsMobileIcons),IconsMobileIconsInfo);const UtilityButtonsFonts=getFonts(UtilityButtons);const UtilityButtonsWithCopyToClipboardWithMappedReactProps1x8x024=withMappedReactProps(withCopyToClipboard(UtilityButtons),UtilityButtonsInfo);const NoiseFonts=getFonts(Noise);const MotionDivWithFadeOutAnimation=withFadeOutAnimation(motion.div);const cycleOrder=[\"FQVnwSjQe\"];const serializationHash=\"framer-AxUNM\";const variantClassNames={FQVnwSjQe:\"framer-v-1s2cmum\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,tap,width,...props})=>{return{...props,BXVIuL5Rc:tap!==null&&tap!==void 0?tap:props.BXVIuL5Rc};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,BXVIuL5Rc,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"FQVnwSjQe\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const XKaY3MrGuhld2t2=activeVariantCallback(async(...args)=>{if(BXVIuL5Rc){const res=await BXVIuL5Rc(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(MotionDivWithFadeOutAnimation,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1s2cmum\",className,classNames),\"data-framer-name\":\"Variant 1\",initial:variant,layoutDependency:layoutDependency,layoutId:\"FQVnwSjQe\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-9c478769-f3e5-4eff-b834-fc668299001b, rgba(153, 153, 153, 0.24))\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,boxShadow:\"inset 0px 2px 1px -1px rgba(255, 255, 255, 0.5), inset 0px -2px 1px 0px rgba(0, 0, 0, 0.4), 0px 0.6021873017743928px 1.5656869846134214px -0.6666666666666666px rgba(0, 0, 0, 0.37084), 0px 2.288533303243457px 5.950186588432988px -1.3333333333333333px rgba(0, 0, 0, 0.40119), 0px 10px 26px -2px rgba(0, 0, 0, 0.54)\",...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7lyo24\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Y6dftDQZ5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3vadzv\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"NA330tVSc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, rgb(255, 255, 255)))\"},children:\"Framer discount\"})}),className:\"framer-nio5t7\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"OixEMSshC\",style:{\"--extracted-r6o4lv\":\"var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w8uai6-container\",\"data-framer-name\":\"Menu Icon\",layoutDependency:layoutDependency,layoutId:\"F71orhzzC-container\",name:\"Menu Icon\",children:/*#__PURE__*/_jsx(IconsMobileIconsWithTriggerFadeOutWithMappedReactProps5arc9s,{height:\"100%\",id:\"F71orhzzC\",layoutId:\"F71orhzzC\",name:\"Menu Icon\",variant:\"wrWTkFTrh\",width:\"100%\",XKaY3MrGu:XKaY3MrGuhld2t2})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jtdtnt\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"A0eDo3_7u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l7lhsi\",\"data-styles-preset\":\"vqCJJjluc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, rgb(227, 227, 227)))\"},children:\"Get 3 months free on a Framer Pro yearly site plan using this promo code on the link below.\"})}),className:\"framer-11skkxv\",layoutDependency:layoutDependency,layoutId:\"ejsHpJ7Ms\",style:{\"--extracted-r6o4lv\":\"var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, rgb(227, 227, 227))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-118gxo\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"beu6sHefM\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-crs3cl-container\",\"data-framer-name\":\"Code\",layoutDependency:layoutDependency,layoutId:\"jc_fTQ1gW-container\",name:\"Code\",children:/*#__PURE__*/_jsx(UtilityButtonsWithCopyToClipboardWithMappedReactProps1x8x024,{height:\"100%\",id:\"jc_fTQ1gW\",ItUurwXTd:\"partner25proyearly\",JLJE53cti:true,layoutId:\"jc_fTQ1gW\",name:\"Code\",style:{height:\"100%\",width:\"100%\"},variant:\"w8i82rRE0\",width:\"100%\",ziNjWWCZS:'<?xml version=\"1.0\" encoding=\"utf-8\"?> <!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  --> <svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" \t viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 24 24;\" xml:space=\"preserve\"> <style type=\"text/css\"> \t.st0{clip-path:url(#SVGID_00000079469360016188314500000002985382497631858618_);} \t.st1{fill:#E3E3E3;} </style> <g> \t<defs> \t\t<rect id=\"SVGID_1_\" width=\"24\" height=\"24\"/> \t</defs> \t<clipPath id=\"SVGID_00000177474677164728380160000008595762905293496747_\"> \t\t<use xlink:href=\"#SVGID_1_\"  style=\"overflow:visible;\"/> \t</clipPath> \t<g style=\"clip-path:url(#SVGID_00000177474677164728380160000008595762905293496747_);\"> \t\t<path class=\"st1\" d=\"M22,6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6z M20,6l-8,5L4,6H20z \t\t\t M20,18H4V8l8,5l8-5V18z\"/> \t</g> </g> </svg>'})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g5iofa-container\",\"data-framer-name\":\"Framer link\",layoutDependency:layoutDependency,layoutId:\"yETBjOpl3-container\",name:\"Framer link\",children:/*#__PURE__*/_jsx(UtilityButtons,{height:\"100%\",id:\"yETBjOpl3\",ItUurwXTd:\"Claim it in Framer\",JLJE53cti:false,jW452RN5a:\"https://www.framer.com?via=ui_zsolt\",layoutId:\"yETBjOpl3\",name:\"Framer link\",style:{height:\"100%\",width:\"100%\"},variant:\"kIaRdwR5D\",width:\"100%\",ziNjWWCZS:'<?xml version=\"1.0\" encoding=\"utf-8\"?> <!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  --> <svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" \t viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 24 24;\" xml:space=\"preserve\"> <style type=\"text/css\"> \t.st0{clip-path:url(#SVGID_00000079469360016188314500000002985382497631858618_);} \t.st1{fill:#E3E3E3;} </style> <g> \t<defs> \t\t<rect id=\"SVGID_1_\" width=\"24\" height=\"24\"/> \t</defs> \t<clipPath id=\"SVGID_00000177474677164728380160000008595762905293496747_\"> \t\t<use xlink:href=\"#SVGID_1_\"  style=\"overflow:visible;\"/> \t</clipPath> \t<g style=\"clip-path:url(#SVGID_00000177474677164728380160000008595762905293496747_);\"> \t\t<path class=\"st1\" d=\"M22,6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6z M20,6l-8,5L4,6H20z \t\t\t M20,18H4V8l8,5l8-5V18z\"/> \t</g> </g> </svg>'})})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2r0xwt-container\",\"data-framer-name\":\"\u2728 Grain\",layoutDependency:layoutDependency,layoutId:\"XUYP4u76f-container\",name:\"\u2728 Grain\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:80,borderRadius:14,height:\"100%\",id:\"XUYP4u76f\",layoutId:\"XUYP4u76f\",name:\"\u2728 Grain\",opacity:.04,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})]})})});});const css=['.framer-AxUNM[data-border=\"true\"]::after, .framer-AxUNM [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-AxUNM.framer-1rnttez, .framer-AxUNM .framer-1rnttez { display: block; }\",\".framer-AxUNM.framer-1s2cmum { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: visible; padding: 4px 8px 16px 8px; position: relative; width: 340px; }\",\".framer-AxUNM .framer-7lyo24 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 4px 8px 16px; position: relative; width: 1px; }\",\".framer-AxUNM .framer-3vadzv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-AxUNM .framer-nio5t7 { flex: none; height: auto; pointer-events: none; position: relative; white-space: pre; width: auto; }\",\".framer-AxUNM .framer-1w8uai6-container { cursor: pointer; flex: none; height: auto; pointer-events: auto; position: relative; width: auto; }\",\".framer-AxUNM .framer-1jtdtnt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px 12px 0px 0px; position: relative; width: 100%; }\",\".framer-AxUNM .framer-11skkxv { flex: none; height: auto; pointer-events: none; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AxUNM .framer-118gxo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-AxUNM .framer-crs3cl-container, .framer-AxUNM .framer-g5iofa-container { flex: none; height: 43px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-AxUNM .framer-2r0xwt-container { bottom: 0px; flex: none; left: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AxUNM.framer-1s2cmum, .framer-AxUNM .framer-7lyo24, .framer-AxUNM .framer-1jtdtnt, .framer-AxUNM .framer-118gxo { gap: 0px; } .framer-AxUNM.framer-1s2cmum > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-AxUNM.framer-1s2cmum > :first-child { margin-left: 0px; } .framer-AxUNM.framer-1s2cmum > :last-child { margin-right: 0px; } .framer-AxUNM .framer-7lyo24 > *, .framer-AxUNM .framer-1jtdtnt > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-AxUNM .framer-7lyo24 > :first-child, .framer-AxUNM .framer-1jtdtnt > :first-child, .framer-AxUNM .framer-118gxo > :first-child { margin-top: 0px; } .framer-AxUNM .framer-7lyo24 > :last-child, .framer-AxUNM .framer-1jtdtnt > :last-child, .framer-AxUNM .framer-118gxo > :last-child { margin-bottom: 0px; } .framer-AxUNM .framer-118gxo > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 328\n * @framerIntrinsicWidth 340\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BXVIuL5Rc\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerXJAELCSDO=withCSS(Component,css,\"framer-AxUNM\");export default FramerXJAELCSDO;FramerXJAELCSDO.displayName=\"Overlays/Modal 2\";FramerXJAELCSDO.defaultProps={height:328,width:340};addPropertyControls(FramerXJAELCSDO,{BXVIuL5Rc:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerXJAELCSDO,[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},...IconsMobileIconsFonts,...UtilityButtonsFonts,...NoiseFonts,...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXJAELCSDO\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"BXVIuL5Rc\\\":\\\"tap\\\"}\",\"framerIntrinsicHeight\":\"328\",\"framerIntrinsicWidth\":\"340\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";export const withCopyToClipboard=Component=>{return props=>{const textToCopy=\"partner25proyearly\";const handleClick=()=>{navigator.clipboard.writeText(textToCopy);};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};};\nexport const __FramerMetadata__ = {\"exports\":{\"withCopyToClipboard\":{\"type\":\"reactHoc\",\"name\":\"withCopyToClipboard\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Copy_to_clipboard.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore=createStore({variant:\"initial\"});export function withTriggerFadeOut(Component){return props=>{const[store,setStore]=useStore();const triggerFadeOut=()=>{setStore({variant:\"fadeOut\"});// Optional: Reset to initial state after animation\nsetTimeout(()=>setStore({variant:\"initial\"}),1e3);};return /*#__PURE__*/_jsx(Component,{...props,onClick:triggerFadeOut});};}export function withFadeOutAnimation(Component){return props=>{const[store]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:store.variant===\"fadeOut\"?{opacity:0,scale:.5}:{opacity:1,scale:1},transition:{type:\"spring\",stiffness:400,damping:30,mass:1,delay:store.variant===\"fadeOut\"?0:.8}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withFadeOutAnimation\":{\"type\":\"reactHoc\",\"name\":\"withFadeOutAnimation\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTriggerFadeOut\":{\"type\":\"reactHoc\",\"name\":\"withTriggerFadeOut\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Test_Scale.map", "// Generated by Framer (83eb5d8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"CYUNRSoim\",\"wrWTkFTrh\"];const serializationHash=\"framer-XA9tf\";const variantClassNames={CYUNRSoim:\"framer-v-m02rks\",wrWTkFTrh:\"framer-v-3fkywf\"};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 transitions={default:{damping:50,delay:0,mass:1,stiffness:800,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Close:\"wrWTkFTrh\",Menu:\"CYUNRSoim\"};const getProps=({height,id,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"CYUNRSoim\",XKaY3MrGu:tap!==null&&tap!==void 0?tap:props.XKaY3MrGu};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,XKaY3MrGu,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"CYUNRSoim\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap16y2uw0=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(XKaY3MrGu){const res=await XKaY3MrGu(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-m02rks\",className,classNames),\"data-framer-name\":\"Menu\",\"data-highlight\":true,initial:variant,layoutDependency:layoutDependency,layoutId:\"CYUNRSoim\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap16y2uw0,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({wrWTkFTrh:{\"data-framer-name\":\"Close\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ko6quj\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"fXsM6KFQq\",style:{backgroundColor:\"var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, rgb(255, 255, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{wrWTkFTrh:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ywtarm\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"ICjLAjKTr\",style:{backgroundColor:\"var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, rgb(255, 255, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{wrWTkFTrh:{rotate:45}}})]})})});});const css=['.framer-XA9tf[data-border=\"true\"]::after, .framer-XA9tf [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-XA9tf.framer-10w0rcb, .framer-XA9tf .framer-10w0rcb { display: block; }\",\".framer-XA9tf.framer-m02rks { cursor: pointer; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-XA9tf .framer-1ko6quj { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XA9tf .framer-ywtarm { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XA9tf.framer-v-3fkywf.framer-m02rks { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 40px); }\",\".framer-XA9tf.framer-v-3fkywf .framer-1ko6quj, .framer-XA9tf.framer-v-3fkywf .framer-ywtarm { top: calc(50.00000000000002% - 2px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"wrWTkFTrh\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"XKaY3MrGu\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerWF8PmVlh7=withCSS(Component,css,\"framer-XA9tf\");export default FramerWF8PmVlh7;FramerWF8PmVlh7.displayName=\"Icons/ Mobile Icons\";FramerWF8PmVlh7.defaultProps={height:40,width:40};addPropertyControls(FramerWF8PmVlh7,{variant:{options:[\"CYUNRSoim\",\"wrWTkFTrh\"],optionTitles:[\"Menu\",\"Close\"],title:\"Variant\",type:ControlType.Enum},XKaY3MrGu:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerWF8PmVlh7,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWF8PmVlh7\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"XKaY3MrGu\\\":\\\"tap\\\"}\",\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"40\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wrWTkFTrh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WF8PmVlh7.map", "// Generated by Framer (c75d380)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import OverlaysPoof from\"https://framerusercontent.com/modules/laQ5TCbBVTglAPO6JUCB/DvcarfYL7n00ElsVPDXO/BaiWzMDNf.js\";import OverlaysModal1 from\"https://framerusercontent.com/modules/gdrpPQPU0aT6TIQLx8Gc/CIjmGVS3xZNVeMNLJAle/Xw4Qirbvv.js\";const OverlaysModal1Fonts=getFonts(OverlaysModal1);const OverlaysPoofFonts=getFonts(OverlaysPoof);const cycleOrder=[\"Hm6zMJ6Hh\",\"Mj90We9TI\"];const serializationHash=\"framer-R1U4s\";const variantClassNames={Hm6zMJ6Hh:\"framer-v-1bxixgc\",Mj90We9TI:\"framer-v-1ojfj04\"};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 transitions={default:{duration:0,type:\"tween\"},Mj90We9TI:{duration:0,type:\"tween\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Active:\"Mj90We9TI\",Base:\"Hm6zMJ6Hh\"};const getProps=({height,id,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,BpQ2WAtFh:tap!==null&&tap!==void 0?tap:props.BpQ2WAtFh,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Hm6zMJ6Hh\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,BpQ2WAtFh,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"Hm6zMJ6Hh\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const JoU3ed2Xj92ctd3=activeVariantCallback(async(...args)=>{if(BpQ2WAtFh){const res=await BpQ2WAtFh(...args);if(res===false)return false;}setVariant(\"Mj90We9TI\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1bxixgc\",className,classNames),\"data-framer-name\":\"Base\",initial:variant,layoutDependency:layoutDependency,layoutId:\"Hm6zMJ6Hh\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Mj90We9TI:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ugmoae-container\",layoutDependency:layoutDependency,layoutId:\"uju9NCq2x-container\",children:/*#__PURE__*/_jsx(OverlaysModal1,{height:\"100%\",id:\"uju9NCq2x\",JoU3ed2Xj:JoU3ed2Xj92ctd3,layoutId:\"uju9NCq2x\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gfewqk-container\",layoutDependency:layoutDependency,layoutId:\"xz5Z4Uva6-container\",children:/*#__PURE__*/_jsx(OverlaysPoof,{HBoFb5w3z:0,height:\"100%\",id:\"xz5Z4Uva6\",layoutId:\"xz5Z4Uva6\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",XEohjJiuB:false,...addPropertyOverrides({Mj90We9TI:{HBoFb5w3z:1,XEohjJiuB:true}},baseVariant,gestureVariant)})})]})})});});const css=['.framer-R1U4s[data-border=\"true\"]::after, .framer-R1U4s [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-R1U4s.framer-ih4k4c, .framer-R1U4s .framer-ih4k4c { display: block; }\",\".framer-R1U4s.framer-1bxixgc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 340px; }\",\".framer-R1U4s .framer-1ugmoae-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-R1U4s .framer-gfewqk-container { flex: none; height: 400px; left: calc(50.00000000000002% - 400px / 2); pointer-events: none; position: absolute; top: calc(50.20242914979759% - 400px / 2); width: 400px; z-index: 9; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-R1U4s.framer-1bxixgc { gap: 0px; } .framer-R1U4s.framer-1bxixgc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-R1U4s.framer-1bxixgc > :first-child { margin-top: 0px; } .framer-R1U4s.framer-1bxixgc > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 247\n * @framerIntrinsicWidth 340\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Mj90We9TI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BpQ2WAtFh\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FrameroakJGc2RR=withCSS(Component,css,\"framer-R1U4s\");export default FrameroakJGc2RR;FrameroakJGc2RR.displayName=\"Overlays/Modal 1 Poof\";FrameroakJGc2RR.defaultProps={height:247,width:340};addPropertyControls(FrameroakJGc2RR,{variant:{options:[\"Hm6zMJ6Hh\",\"Mj90We9TI\"],optionTitles:[\"Base\",\"Active\"],title:\"Variant\",type:ControlType.Enum},BpQ2WAtFh:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FrameroakJGc2RR,[...OverlaysModal1Fonts,...OverlaysPoofFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroakJGc2RR\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Mj90We9TI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"BpQ2WAtFh\\\":\\\"tap\\\"}\",\"framerIntrinsicWidth\":\"340\",\"framerIntrinsicHeight\":\"247\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (83eb5d8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import{withFadeOutAnimation,withTriggerFadeOut}from\"https://framerusercontent.com/modules/Fl1RkxNjQhli4jOR9Lxz/YicFe6ZHpXH9J8Cxya7O/Test_Scale.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/jePbpoTX9MFy78JLZjay/EgmDgqyiajbEwSstQnbf/vqCJJjluc.js\";import UtilityButtons from\"https://framerusercontent.com/modules/Jb6g5TFqwav4TZCWIWmg/n7B3kkTZIOzI8qyLbWPt/QEAaU343u.js\";import IconsMobileIcons,*as IconsMobileIconsInfo from\"https://framerusercontent.com/modules/GBjHeEpNvZxeXPoE5CCs/g6M5o3CRorIKu2TZsIDe/WF8PmVlh7.js\";const IconsMobileIconsFonts=getFonts(IconsMobileIcons);const IconsMobileIconsWithTriggerFadeOutWithMappedReactProps5arc9s=withMappedReactProps(withTriggerFadeOut(IconsMobileIcons),IconsMobileIconsInfo);const UtilityButtonsFonts=getFonts(UtilityButtons);const NoiseFonts=getFonts(Noise);const MotionDivWithFadeOutAnimation=withFadeOutAnimation(motion.div);const cycleOrder=[\"e_Jz4ZfQo\"];const serializationHash=\"framer-29TeC\";const variantClassNames={e_Jz4ZfQo:\"framer-v-shav8z\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,tap,width,...props})=>{return{...props,JoU3ed2Xj:tap!==null&&tap!==void 0?tap:props.JoU3ed2Xj};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,JoU3ed2Xj,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"e_Jz4ZfQo\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const XKaY3MrGu4qxtaj=activeVariantCallback(async(...args)=>{if(JoU3ed2Xj){const res=await JoU3ed2Xj(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(MotionDivWithFadeOutAnimation,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-shav8z\",className,classNames),\"data-framer-name\":\"Variant 1\",initial:variant,layoutDependency:layoutDependency,layoutId:\"e_Jz4ZfQo\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-9c478769-f3e5-4eff-b834-fc668299001b, rgba(43, 43, 43, 0.78))\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,boxShadow:\"inset 0px 2px 1px -1px rgba(255, 255, 255, 0.5), inset 0px -2px 1px 0px rgba(0, 0, 0, 0.4), 0px 0.6021873017743928px 1.5656869846134214px -0.6666666666666666px rgba(0, 0, 0, 0.37084), 0px 2.288533303243457px 5.950186588432988px -1.3333333333333333px rgba(0, 0, 0, 0.40119), 0px 10px 26px -2px rgba(0, 0, 0, 0.54)\",...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p4qs4p\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"wKLAMqsRf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1saisf6\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"ppLJYzdN7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, rgb(255, 255, 255)))\"},children:\"Share your idea\"})}),className:\"framer-rq0pz8\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"sn2CdOqsl\",style:{\"--extracted-r6o4lv\":\"var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rfywsx-container\",\"data-framer-name\":\"Menu Icon\",layoutDependency:layoutDependency,layoutId:\"y2vykcPZi-container\",name:\"Menu Icon\",children:/*#__PURE__*/_jsx(IconsMobileIconsWithTriggerFadeOutWithMappedReactProps5arc9s,{height:\"100%\",id:\"y2vykcPZi\",layoutId:\"y2vykcPZi\",name:\"Menu Icon\",variant:\"wrWTkFTrh\",width:\"100%\",XKaY3MrGu:XKaY3MrGu4qxtaj})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jonfvk\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"kGLgGAJXf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l7lhsi\",\"data-styles-preset\":\"vqCJJjluc\",children:\"Got a cool idea? Send me an email or drop me a DM on Twitter / \uD835\uDD4F.\"})}),className:\"framer-o465zi\",layoutDependency:layoutDependency,layoutId:\"IHtMfh6sF\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l5vbre-container\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"aSpBFPIUt-container\",name:\"CTA\",children:/*#__PURE__*/_jsx(UtilityButtons,{height:\"100%\",id:\"aSpBFPIUt\",ItUurwXTd:\"Send me an email\",JLJE53cti:true,jW452RN5a:\"mailto:uizsolti@gmail.com\",layoutId:\"aSpBFPIUt\",name:\"CTA\",style:{height:\"100%\",width:\"100%\"},variant:\"BXsq9b0TL\",width:\"100%\",ziNjWWCZS:'<?xml version=\"1.0\" encoding=\"utf-8\"?> <!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  --> <svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" \t viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 24 24;\" xml:space=\"preserve\"> <style type=\"text/css\"> \t.st0{clip-path:url(#SVGID_00000079469360016188314500000002985382497631858618_);} \t.st1{fill:#E3E3E3;} </style> <g> \t<defs> \t\t<rect id=\"SVGID_1_\" width=\"24\" height=\"24\"/> \t</defs> \t<clipPath id=\"SVGID_00000177474677164728380160000008595762905293496747_\"> \t\t<use xlink:href=\"#SVGID_1_\"  style=\"overflow:visible;\"/> \t</clipPath> \t<g style=\"clip-path:url(#SVGID_00000177474677164728380160000008595762905293496747_);\"> \t\t<path class=\"st1\" d=\"M22,6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6z M20,6l-8,5L4,6H20z \t\t\t M20,18H4V8l8,5l8-5V18z\"/> \t</g> </g> </svg>'})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ylytp3-container\",\"data-framer-name\":\"\u2728 Grain\",layoutDependency:layoutDependency,layoutId:\"PJYxRe6wx-container\",name:\"\u2728 Grain\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:80,borderRadius:14,height:\"100%\",id:\"PJYxRe6wx\",layoutId:\"PJYxRe6wx\",name:\"\u2728 Grain\",opacity:.04,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})]})})});});const css=['.framer-29TeC[data-border=\"true\"]::after, .framer-29TeC [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-29TeC.framer-1bping6, .framer-29TeC .framer-1bping6 { display: block; }\",\".framer-29TeC.framer-shav8z { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: visible; padding: 4px 8px 16px 8px; position: relative; width: 340px; }\",\".framer-29TeC .framer-1p4qs4p { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 4px 8px 16px; position: relative; width: 1px; }\",\".framer-29TeC .framer-1saisf6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-29TeC .framer-rq0pz8 { flex: none; height: auto; pointer-events: none; position: relative; white-space: pre; width: auto; }\",\".framer-29TeC .framer-1rfywsx-container { cursor: pointer; flex: none; height: auto; pointer-events: auto; position: relative; width: auto; }\",\".framer-29TeC .framer-jonfvk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px 12px 0px 0px; position: relative; width: 100%; }\",\".framer-29TeC .framer-o465zi { flex: none; height: auto; pointer-events: none; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-29TeC .framer-l5vbre-container { flex: none; height: 43px; pointer-events: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-29TeC .framer-ylytp3-container { bottom: 0px; flex: none; left: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-29TeC.framer-shav8z, .framer-29TeC .framer-1p4qs4p, .framer-29TeC .framer-jonfvk { gap: 0px; } .framer-29TeC.framer-shav8z > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-29TeC.framer-shav8z > :first-child { margin-left: 0px; } .framer-29TeC.framer-shav8z > :last-child { margin-right: 0px; } .framer-29TeC .framer-1p4qs4p > *, .framer-29TeC .framer-jonfvk > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-29TeC .framer-1p4qs4p > :first-child, .framer-29TeC .framer-jonfvk > :first-child { margin-top: 0px; } .framer-29TeC .framer-1p4qs4p > :last-child, .framer-29TeC .framer-jonfvk > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 247\n * @framerIntrinsicWidth 340\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"JoU3ed2Xj\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerXw4Qirbvv=withCSS(Component,css,\"framer-29TeC\");export default FramerXw4Qirbvv;FramerXw4Qirbvv.displayName=\"Overlays/Modal 1\";FramerXw4Qirbvv.defaultProps={height:247,width:340};addPropertyControls(FramerXw4Qirbvv,{JoU3ed2Xj:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerXw4Qirbvv,[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},...IconsMobileIconsFonts,...UtilityButtonsFonts,...NoiseFonts,...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXw4Qirbvv\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"340\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"247\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"JoU3ed2Xj\\\":\\\"tap\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e182fd8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/jePbpoTX9MFy78JLZjay/EgmDgqyiajbEwSstQnbf/vqCJJjluc.js\";const enabledGestures={blUc4aRF3:{hover:true},cX1ObjlXd:{hover:true,pressed:true}};const cycleOrder=[\"blUc4aRF3\",\"cX1ObjlXd\"];const serializationHash=\"framer-kofZD\";const variantClassNames={blUc4aRF3:\"framer-v-1ht8hjy\",cX1ObjlXd:\"framer-v-lv8yx5\"};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 transition1={delay:0,duration:.03,ease:[.5,0,.88,.77],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Desktop default\":\"blUc4aRF3\",Mobile:\"cX1ObjlXd\"};const getProps=({height,id,link,newTab,tap,title,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1,_ref2;return{...props,I5Ym56Eqx:tap!==null&&tap!==void 0?tap:props.I5Ym56Eqx,jbutjeaCL:link!==null&&link!==void 0?link:props.jbutjeaCL,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"blUc4aRF3\",vz5p7kuaB:(_ref1=title!==null&&title!==void 0?title:props.vz5p7kuaB)!==null&&_ref1!==void 0?_ref1:\"Home\",ZnzsAZnan:(_ref2=newTab!==null&&newTab!==void 0?newTab:props.ZnzsAZnan)!==null&&_ref2!==void 0?_ref2:true};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vz5p7kuaB,jbutjeaCL,I5Ym56Eqx,ZnzsAZnan,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"blUc4aRF3\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1wd8hap=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(I5Ym56Eqx){const res=await I5Ym56Eqx(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:jbutjeaCL,openInNewTab:ZnzsAZnan,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1ht8hjy\",className,classNames)} framer-15popr8`,\"data-framer-name\":\"Desktop default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"blUc4aRF3\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap1wd8hap,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"blUc4aRF3-hover\":{\"data-framer-name\":undefined},\"cX1ObjlXd-hover\":{\"data-framer-name\":undefined},\"cX1ObjlXd-pressed\":{\"data-framer-name\":undefined},cX1ObjlXd:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l7lhsi\",\"data-styles-preset\":\"vqCJJjluc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, rgb(255, 255, 255)))\"},children:\"Home\"})}),className:\"framer-ya96c7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qLGjHeJfB\",style:{\"--extracted-r6o4lv\":\"var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vz5p7kuaB,variants:{\"blUc4aRF3-hover\":{\"--extracted-r6o4lv\":\"var(--token-754b6d6a-5073-4ac6-9d41-3fb149cba9db, rgb(202, 66, 255))\"},\"cX1ObjlXd-hover\":{\"--extracted-r6o4lv\":\"var(--token-754b6d6a-5073-4ac6-9d41-3fb149cba9db, rgb(202, 66, 255))\"},\"cX1ObjlXd-pressed\":{\"--extracted-r6o4lv\":\"var(--token-754b6d6a-5073-4ac6-9d41-3fb149cba9db, rgb(202, 66, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"blUc4aRF3-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l7lhsi\",\"data-styles-preset\":\"vqCJJjluc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-754b6d6a-5073-4ac6-9d41-3fb149cba9db, rgb(202, 66, 255)))\"},children:\"Home\"})})},\"cX1ObjlXd-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l7lhsi\",\"data-styles-preset\":\"vqCJJjluc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-754b6d6a-5073-4ac6-9d41-3fb149cba9db, rgb(202, 66, 255)))\"},children:\"Home\"})})},\"cX1ObjlXd-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l7lhsi\",\"data-styles-preset\":\"vqCJJjluc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-754b6d6a-5073-4ac6-9d41-3fb149cba9db, rgb(202, 66, 255)))\"},children:\"Home\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o8ddpl\",\"data-framer-name\":\"Underline\",layoutDependency:layoutDependency,layoutId:\"eYyWxWOIb\",style:{backgroundColor:\"var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:0},variants:{\"blUc4aRF3-hover\":{backgroundColor:\"var(--token-754b6d6a-5073-4ac6-9d41-3fb149cba9db, rgb(202, 66, 255))\",opacity:1},\"cX1ObjlXd-hover\":{backgroundColor:\"var(--token-754b6d6a-5073-4ac6-9d41-3fb149cba9db, rgb(202, 66, 255))\",opacity:1},\"cX1ObjlXd-pressed\":{backgroundColor:\"var(--token-754b6d6a-5073-4ac6-9d41-3fb149cba9db, rgb(202, 66, 255))\",opacity:1},cX1ObjlXd:{backgroundColor:\"var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, rgb(239, 239, 239))\"}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kofZD.framer-15popr8, .framer-kofZD .framer-15popr8 { display: block; }\",\".framer-kofZD.framer-1ht8hjy { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 8px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-kofZD .framer-ya96c7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-kofZD .framer-1o8ddpl { bottom: 6px; flex: none; height: 1px; left: 16px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kofZD.framer-1ht8hjy { gap: 0px; } .framer-kofZD.framer-1ht8hjy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-kofZD.framer-1ht8hjy > :first-child { margin-left: 0px; } .framer-kofZD.framer-1ht8hjy > :last-child { margin-right: 0px; } }\",\".framer-kofZD.framer-v-lv8yx5.framer-1ht8hjy { padding: 8px 16px 8px 0px; }\",\".framer-kofZD.framer-v-lv8yx5 .framer-1o8ddpl { left: 0px; right: 16px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 60.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"cX1ObjlXd\":{\"layout\":[\"auto\",\"auto\"]},\"GdWvLFXfF\":{\"layout\":[\"auto\",\"auto\"]},\"VFWcFbN0i\":{\"layout\":[\"auto\",\"auto\"]},\"vlA8ePGCg\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"vz5p7kuaB\":\"title\",\"jbutjeaCL\":\"link\",\"I5Ym56Eqx\":\"tap\",\"ZnzsAZnan\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQRmC93gpr=withCSS(Component,css,\"framer-kofZD\");export default FramerQRmC93gpr;FramerQRmC93gpr.displayName=\"Utility/Footer links\";FramerQRmC93gpr.defaultProps={height:40,width:60.5};addPropertyControls(FramerQRmC93gpr,{variant:{options:[\"blUc4aRF3\",\"cX1ObjlXd\"],optionTitles:[\"Desktop default\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},vz5p7kuaB:{defaultValue:\"Home\",displayTextArea:false,title:\"Title\",type:ControlType.String},jbutjeaCL:{title:\"Link\",type:ControlType.Link},I5Ym56Eqx:{title:\"Tap\",type:ControlType.EventHandler},ZnzsAZnan:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerQRmC93gpr,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQRmC93gpr\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"60.5\",\"framerIntrinsicHeight\":\"40\",\"framerVariables\":\"{\\\"vz5p7kuaB\\\":\\\"title\\\",\\\"jbutjeaCL\\\":\\\"link\\\",\\\"I5Ym56Eqx\\\":\\\"tap\\\",\\\"ZnzsAZnan\\\":\\\"newTab\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cX1ObjlXd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GdWvLFXfF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VFWcFbN0i\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vlA8ePGCg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QRmC93gpr.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-regular\",\"GF;Inter-700\"]);export const fonts=[{family:\"Inter\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}];export const css=['.framer-2ZyEP .framer-styles-preset-1rbq60l:not(.rich-text-wrapper), .framer-2ZyEP .framer-styles-preset-1rbq60l.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 14px; --framer-text-alignment: start; --framer-text-color: var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, #fafafa); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-2ZyEP .framer-styles-preset-1rbq60l:not(.rich-text-wrapper), .framer-2ZyEP .framer-styles-preset-1rbq60l.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 14px; --framer-text-alignment: start; --framer-text-color: var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, #fafafa); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-2ZyEP .framer-styles-preset-1rbq60l:not(.rich-text-wrapper), .framer-2ZyEP .framer-styles-preset-1rbq60l.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 14px; --framer-text-alignment: start; --framer-text-color: var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, #fafafa); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-2ZyEP\";\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 (c75d380)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6bZIqqb7RjvFmbshXwBe/EQNdd4Sk3MDHWnxvPMTN/ALeoHd2zM.js\";import Pattern from\"https://framerusercontent.com/modules/lsOxgdRweaVsxR8m3Ac8/YBW8iTQMPEEfytT7KQb8/l5kBV_gwA.js\";import CardsContent from\"https://framerusercontent.com/modules/wlSv0ye2tPO77SQPJ6MP/0PP7UyGAwZ8ScembGW4q/s3TV9yejk.js\";const NoiseFonts=getFonts(Noise);const CardsContentFonts=getFonts(CardsContent);const PatternFonts=getFonts(Pattern);const CardsContentControls=getPropertyControls(CardsContent);const enabledGestures={y1ucbjIrU:{hover:true}};const cycleOrder=[\"y1ucbjIrU\",\"kG41eLwSN\",\"Z3PNV1CSy\"];const serializationHash=\"framer-YHlJx\";const variantClassNames={kG41eLwSN:\"framer-v-g6ym6i\",y1ucbjIrU:\"framer-v-78ri41\",Z3PNV1CSy:\"framer-v-1o0ypen\"};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 transitions={default:{damping:50,delay:0,mass:1,stiffness:400,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableEnumMap={\"01\":\"MtX1e4G0w\",\"02\":\"Va6Ifv5yX\",\"03\":\"CMSu2Ul1w\",\"04\":\"dqcvCVs5D\",\"05\":\"QRQlUMS8k\",\"06\":\"c3mL6XxAH\",\"07\":\"NhT_ywJ07\",\"08\":\"Hg4zSn01h\",\"Coming Soon\":\"eCmbgE2mS\",Empty:\"SwkuMc91t\"};const humanReadableVariantMap={Library:\"kG41eLwSN\",Remix:\"Z3PNV1CSy\"};const getProps=({content,height,id,image,link,number,number1,title,width,...props})=>{var _ref,_ref1,_humanReadableEnumMap_content,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,akEYdY56Q:(_ref=title!==null&&title!==void 0?title:props.akEYdY56Q)!==null&&_ref!==void 0?_ref:\"Windows XP recreated in Framer\",AkNP6t4Zd:(_ref1=number1!==null&&number1!==void 0?number1:props.AkNP6t4Zd)!==null&&_ref1!==void 0?_ref1:true,No0HTmkNW:(_ref3=(_ref2=(_humanReadableEnumMap_content=humanReadableEnumMap[content])!==null&&_humanReadableEnumMap_content!==void 0?_humanReadableEnumMap_content:content)!==null&&_ref2!==void 0?_ref2:props.No0HTmkNW)!==null&&_ref3!==void 0?_ref3:\"eCmbgE2mS\",OpLq4ZtOc:(_ref4=number!==null&&number!==void 0?number:props.OpLq4ZtOc)!==null&&_ref4!==void 0?_ref4:\"01\",pMGRJ_F3b:image!==null&&image!==void 0?image:props.pMGRJ_F3b,R0qW4D_sm:link!==null&&link!==void 0?link:props.R0qW4D_sm,variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"y1ucbjIrU\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,R0qW4D_sm,No0HTmkNW,akEYdY56Q,OpLq4ZtOc,AkNP6t4Zd,pMGRJ_F3b,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"y1ucbjIrU\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Z3PNV1CSy\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:R0qW4D_sm,openInNewTab:false,smoothScroll:false,...addPropertyOverrides({kG41eLwSN:{openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,animate:variants,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-78ri41\",className,classNames)} framer-6yuv7a`,\"data-framer-name\":\"Remix\",initial:variant,layoutDependency:layoutDependency,layoutId:\"y1ucbjIrU\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-9c478769-f3e5-4eff-b834-fc668299001b, rgb(36, 36, 36))\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,boxShadow:\"inset 0px 2px 1px -1px rgba(255, 255, 255, 0.5), inset 0px -2px 1px 0px rgba(0, 0, 0, 0.3), 0px 0.6021873017743928px 1.5656869846134214px -0.6666666666666666px rgba(0, 0, 0, 0.39144), 0px 2.288533303243457px 5.950186588432988px -1.3333333333333333px rgba(0, 0, 0, 0.42348), 0px 10px 26px -2px rgba(0, 0, 0, 0.57)\",...style},...addPropertyOverrides({\"y1ucbjIrU-hover\":{\"data-framer-name\":undefined},kG41eLwSN:{\"data-framer-name\":\"Library\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ifjltc\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"wWhpwdicN\",style:{boxShadow:\"inset 0px -2.5px 1.5px 0px rgb(54, 54, 54), inset 0px -4px 2.5px 0px rgba(0, 0, 0, 0.5)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rbq60l\",\"data-styles-preset\":\"ALeoHd2zM\",children:\"Windows XP recreated in Framer\"})}),className:\"framer-l5539j\",layoutDependency:layoutDependency,layoutId:\"C14YWgbI3\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:akEYdY56Q,verticalAlignment:\"top\",withExternalLayout:true}),AkNP6t4Zd&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rbq60l\",\"data-styles-preset\":\"ALeoHd2zM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-53e60fff-60cd-4f07-b5d3-c0a6cb4dfd56, rgb(134, 134, 134)))\"},children:\"01\"})}),className:\"framer-11ykt8a\",layoutDependency:layoutDependency,layoutId:\"WtFxH4HiY\",style:{\"--extracted-r6o4lv\":\"var(--token-53e60fff-60cd-4f07-b5d3-c0a6cb4dfd56, rgb(134, 134, 134))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OpLq4ZtOc,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19d4l3r-container\",\"data-framer-name\":\"\u2728 Grain\",layoutDependency:layoutDependency,layoutId:\"OU7jEwmhS-container\",name:\"\u2728 Grain\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:80,borderRadius:14,height:\"100%\",id:\"OU7jEwmhS\",layoutId:\"OU7jEwmhS\",name:\"\u2728 Grain\",opacity:.04,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sc4kz5-container\",layoutDependency:layoutDependency,layoutId:\"wqXGpCWjp-container\",children:/*#__PURE__*/_jsx(CardsContent,{height:\"100%\",id:\"wqXGpCWjp\",layoutId:\"wqXGpCWjp\",style:{height:\"100%\",width:\"100%\"},variant:No0HTmkNW,width:\"100%\",...addPropertyOverrides({kG41eLwSN:{Gh96AU_pv:toResponsiveImage(pMGRJ_F3b),variant:\"SwkuMc91t\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g9bieo-container\",layoutDependency:layoutDependency,layoutId:\"TGXiAzm79-container\",children:/*#__PURE__*/_jsx(Pattern,{height:\"100%\",id:\"TGXiAzm79\",layoutId:\"TGXiAzm79\",style:{height:\"100%\",width:\"100%\"},variant:\"aajhBGTgG\",width:\"100%\",...addPropertyOverrides({\"y1ucbjIrU-hover\":{variant:\"kSbbVh2ST\"},Z3PNV1CSy:{variant:\"mvomV4IDQ\"}},baseVariant,gestureVariant)})})]})})})});});const css=['.framer-YHlJx[data-border=\"true\"]::after, .framer-YHlJx [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-YHlJx.framer-6yuv7a, .framer-YHlJx .framer-6yuv7a { display: block; }\",\".framer-YHlJx.framer-78ri41 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 216px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 314px; will-change: var(--framer-will-change-override, transform); }\",\".framer-YHlJx .framer-1ifjltc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 40px; justify-content: space-between; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: 100%; z-index: 0; }\",\".framer-YHlJx .framer-l5539j { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-YHlJx .framer-11ykt8a { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-YHlJx .framer-19d4l3r-container { bottom: 0px; flex: none; left: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-YHlJx .framer-1sc4kz5-container { bottom: 5px; flex: none; left: 5px; position: absolute; right: 5px; top: 44px; z-index: 3; }\",\".framer-YHlJx .framer-g9bieo-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YHlJx.framer-78ri41 { gap: 0px; } .framer-YHlJx.framer-78ri41 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-YHlJx.framer-78ri41 > :first-child { margin-top: 0px; } .framer-YHlJx.framer-78ri41 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 216\n * @framerIntrinsicWidth 314\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"kG41eLwSN\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z3PNV1CSy\":{\"layout\":[\"fixed\",\"fixed\"]},\"Gc7MjC0Nr\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"R0qW4D_sm\":\"link\",\"No0HTmkNW\":\"content\",\"akEYdY56Q\":\"title\",\"OpLq4ZtOc\":\"number\",\"AkNP6t4Zd\":\"number1\",\"pMGRJ_F3b\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerSYL2iCFws=withCSS(Component,css,\"framer-YHlJx\");export default FramerSYL2iCFws;FramerSYL2iCFws.displayName=\"Cards/Card\";FramerSYL2iCFws.defaultProps={height:216,width:314};addPropertyControls(FramerSYL2iCFws,{variant:{options:[\"y1ucbjIrU\",\"kG41eLwSN\",\"Z3PNV1CSy\"],optionTitles:[\"Remix\",\"Library\",\"Remix\"],title:\"Variant\",type:ControlType.Enum},R0qW4D_sm:{title:\"Link\",type:ControlType.Link},No0HTmkNW:(CardsContentControls===null||CardsContentControls===void 0?void 0:CardsContentControls[\"variant\"])&&{...CardsContentControls[\"variant\"],defaultValue:\"eCmbgE2mS\",description:undefined,hidden:undefined,title:\"Content\"},akEYdY56Q:{defaultValue:\"Windows XP recreated in Framer\",displayTextArea:false,placeholder:\"Title\",title:\"Title\",type:ControlType.String},OpLq4ZtOc:{defaultValue:\"01\",displayTextArea:false,placeholder:\"01\",title:\"Number\",type:ControlType.String},AkNP6t4Zd:{defaultValue:true,title:\"Number\",type:ControlType.Boolean},pMGRJ_F3b:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerSYL2iCFws,[...NoiseFonts,...CardsContentFonts,...PatternFonts,...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSYL2iCFws\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"314\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kG41eLwSN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z3PNV1CSy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Gc7MjC0Nr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"R0qW4D_sm\\\":\\\"link\\\",\\\"No0HTmkNW\\\":\\\"content\\\",\\\"akEYdY56Q\\\":\\\"title\\\",\\\"OpLq4ZtOc\\\":\\\"number\\\",\\\"AkNP6t4Zd\\\":\\\"number1\\\",\\\"pMGRJ_F3b\\\":\\\"image\\\"}\",\"framerIntrinsicHeight\":\"216\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c75d380)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withFade}from\"https://framerusercontent.com/modules/KfeBRAiYdlPhxL63dri4/36ky9POF2a9mapu4n2iu/Mask_fade.js\";const ImageWithFade=withFade(Image);const cycleOrder=[\"aajhBGTgG\",\"kSbbVh2ST\",\"mvomV4IDQ\"];const serializationHash=\"framer-X7rmc\";const variantClassNames={aajhBGTgG:\"framer-v-rjaf8m\",kSbbVh2ST:\"framer-v-bu5joj\",mvomV4IDQ:\"framer-v-8luk4\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Active:\"kSbbVh2ST\",Default:\"aajhBGTgG\",Remix:\"mvomV4IDQ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"aajhBGTgG\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"aajhBGTgG\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"mvomV4IDQ\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-rjaf8m\",className,classNames),\"data-framer-name\":\"Default\",initial:variant,layoutDependency:layoutDependency,layoutId:\"aajhBGTgG\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({kSbbVh2ST:{\"data-framer-name\":\"Active\"},mvomV4IDQ:{\"data-framer-name\":\"Remix\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ll8cx9\",\"data-framer-name\":\"Black\",layoutDependency:layoutDependency,layoutId:\"EsQuKvfyi\",style:{backgroundColor:\"var(--token-b5a83414-ac9f-4e5e-b52d-e641be1bc63f, rgb(15, 15, 15))\",borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-14wam42\",\"data-framer-name\":\"Shine\",layoutDependency:layoutDependency,layoutId:\"jKunLTq54\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%)\",borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9,opacity:0},variants:{kSbbVh2ST:{opacity:.6}}}),/*#__PURE__*/_jsx(ImageWithFade,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:126,intrinsicWidth:126,pixelHeight:126,pixelWidth:126,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/VfkEna8iRjS9ZbXeCG1MRu3r0w.svg\"},className:\"framer-3dd949\",\"data-framer-name\":\"Cards/ Pattern\",layoutDependency:layoutDependency,layoutId:\"MITp_V8xU\",style:{borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9,filter:\"invert(1)\",opacity:.13,WebkitFilter:\"invert(1)\"},variants:{mvomV4IDQ:{opacity:.1}},...addPropertyOverrides({mvomV4IDQ:{background:{alt:\"\",backgroundSize:.8,fit:\"tile\",intrinsicHeight:126,intrinsicWidth:126,pixelHeight:126,pixelWidth:126,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/VfkEna8iRjS9ZbXeCG1MRu3r0w.svg\"}}},baseVariant,gestureVariant)})]})})});});const css=['.framer-X7rmc[data-border=\"true\"]::after, .framer-X7rmc [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-X7rmc.framer-1h3c1di, .framer-X7rmc .framer-1h3c1di { display: block; }\",\".framer-X7rmc.framer-rjaf8m { height: 167px; overflow: visible; position: relative; width: 304px; }\",\".framer-X7rmc .framer-ll8cx9, .framer-X7rmc .framer-14wam42, .framer-X7rmc .framer-3dd949 { bottom: 5px; flex: none; left: 5px; overflow: visible; position: absolute; right: 5px; top: 4px; }\",\".framer-X7rmc.framer-v-8luk4 .framer-ll8cx9, .framer-X7rmc.framer-v-8luk4 .framer-3dd949 { top: 5px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 167\n * @framerIntrinsicWidth 304\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"kSbbVh2ST\":{\"layout\":[\"fixed\",\"fixed\"]},\"mvomV4IDQ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Framerl5kBV_gwA=withCSS(Component,css,\"framer-X7rmc\");export default Framerl5kBV_gwA;Framerl5kBV_gwA.displayName=\"Pattern\";Framerl5kBV_gwA.defaultProps={height:167,width:304};addPropertyControls(Framerl5kBV_gwA,{variant:{options:[\"aajhBGTgG\",\"kSbbVh2ST\",\"mvomV4IDQ\"],optionTitles:[\"Default\",\"Active\",\"Remix\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerl5kBV_gwA,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerl5kBV_gwA\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"304\",\"framerIntrinsicHeight\":\"167\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kSbbVh2ST\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mvomV4IDQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./l5kBV_gwA.map", "import{jsx as _jsx}from\"react/jsx-runtime\";export function withFade(Component,fadeToOpacity=0,fadeWidthPercent=100){return props=>{const fadeMask=`linear-gradient(to bottom, rgba(0, 0, 0, ${fadeToOpacity*100}%) 0%, rgba(0, 0, 0, 100%) ${fadeWidthPercent}%)`;const fadingStyle={WebkitMaskImage:fadeMask,MozMaskImage:fadeMask,maskImage:fadeMask,overflow:\"hidden\"};return /*#__PURE__*/_jsx(Component,{...props,style:{...props.style,...fadingStyle}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withFade\":{\"type\":\"reactHoc\",\"name\":\"withFade\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Mask_fade.map", "// Generated by Framer (c75d380)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"eCmbgE2mS\",\"SwkuMc91t\",\"MtX1e4G0w\",\"Va6Ifv5yX\",\"CMSu2Ul1w\",\"dqcvCVs5D\",\"QRQlUMS8k\",\"c3mL6XxAH\",\"NhT_ywJ07\",\"Hg4zSn01h\"];const serializationHash=\"framer-oP7oz\";const variantClassNames={c3mL6XxAH:\"framer-v-2golf7\",CMSu2Ul1w:\"framer-v-on2bf3\",dqcvCVs5D:\"framer-v-lan461\",eCmbgE2mS:\"framer-v-zrwhcs\",Hg4zSn01h:\"framer-v-enromo\",MtX1e4G0w:\"framer-v-6hn42z\",NhT_ywJ07:\"framer-v-1bo2ldl\",QRQlUMS8k:\"framer-v-1rpvcpi\",SwkuMc91t:\"framer-v-6i97q\",Va6Ifv5yX:\"framer-v-14h4l0h\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"01\":\"MtX1e4G0w\",\"02\":\"Va6Ifv5yX\",\"03\":\"CMSu2Ul1w\",\"04\":\"dqcvCVs5D\",\"05\":\"QRQlUMS8k\",\"06\":\"c3mL6XxAH\",\"07\":\"NhT_ywJ07\",\"08\":\"Hg4zSn01h\",\"Coming Soon\":\"eCmbgE2mS\",Empty:\"SwkuMc91t\"};const getProps=({height,id,image,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,Gh96AU_pv:image!==null&&image!==void 0?image:props.Gh96AU_pv,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"eCmbgE2mS\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Gh96AU_pv,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"eCmbgE2mS\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"SwkuMc91t\",\"MtX1e4G0w\",\"Va6Ifv5yX\",\"CMSu2Ul1w\",\"dqcvCVs5D\",\"QRQlUMS8k\",\"c3mL6XxAH\",\"NhT_ywJ07\",\"Hg4zSn01h\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"MtX1e4G0w\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"Va6Ifv5yX\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"CMSu2Ul1w\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"dqcvCVs5D\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"QRQlUMS8k\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"c3mL6XxAH\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"NhT_ywJ07\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"Hg4zSn01h\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(Image,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-zrwhcs\",className,classNames),\"data-framer-name\":\"Coming Soon\",initial:variant,layoutDependency:layoutDependency,layoutId:\"eCmbgE2mS\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9,...style},variants:{SwkuMc91t:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}},...addPropertyOverrides({c3mL6XxAH:{\"data-framer-name\":\"06\"},CMSu2Ul1w:{\"data-framer-name\":\"03\"},dqcvCVs5D:{\"data-framer-name\":\"04\"},Hg4zSn01h:{\"data-framer-name\":\"08\"},MtX1e4G0w:{\"data-framer-name\":\"01\"},NhT_ywJ07:{\"data-framer-name\":\"07\"},QRQlUMS8k:{\"data-framer-name\":\"05\"},SwkuMc91t:{\"data-framer-name\":\"Empty\",background:{alt:\"\",fit:\"fill\",sizes:\"min(298px, 100vw)\",...toResponsiveImage(Gh96AU_pv)}},Va6Ifv5yX:{\"data-framer-name\":\"02\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:620,intrinsicWidth:828,pixelHeight:620,pixelWidth:828,positionX:\"center\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/kGEYWZrIdo5mP8Owjo6Wl9p7wA0.png\",srcSet:\"https://framerusercontent.com/images/kGEYWZrIdo5mP8Owjo6Wl9p7wA0.png?scale-down-to=512 512w, https://framerusercontent.com/images/kGEYWZrIdo5mP8Owjo6Wl9p7wA0.png 828w\"},className:\"framer-tum05i\",\"data-framer-name\":\"Coming Soon\",layoutDependency:layoutDependency,layoutId:\"HpilEjo8f\"}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:404,intrinsicWidth:432,pixelHeight:404,pixelWidth:432,src:\"https://framerusercontent.com/images/9Lb6IX3aDaywNzqgwtHy9f6Srvc.png\"},className:\"framer-1gothcz\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"AwtPqpMXt\"}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",intrinsicHeight:456,intrinsicWidth:456,pixelHeight:456,pixelWidth:456,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/X9Y9y4pFSd7JdF0YrJ7T4fTdiI.png\"},className:\"framer-gx1syy\",\"data-framer-name\":\"02\",layoutDependency:layoutDependency,layoutId:\"D3AsrRhcH\",style:{rotate:-3}}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:324,intrinsicWidth:432,pixelHeight:324,pixelWidth:432,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7DjrIbwC39iSRVsQzNrPwW8KD9A.png\"},className:\"framer-1zab95\",\"data-framer-name\":\"03\",layoutDependency:layoutDependency,layoutId:\"DiMX6pJTC\"}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:416,intrinsicWidth:416,pixelHeight:416,pixelWidth:416,src:\"https://framerusercontent.com/images/mQMdIRj3ezEmhOAHA8dtE7BuU.png\"},className:\"framer-8o1bqf\",\"data-framer-name\":\"04\",layoutDependency:layoutDependency,layoutId:\"BPmVdqXo7\"}),isDisplayed5()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:176,intrinsicWidth:616,pixelHeight:176,pixelWidth:616,src:\"https://framerusercontent.com/images/O33wTTeSlpipNBvAGi5PLQYsepU.png\",srcSet:\"https://framerusercontent.com/images/O33wTTeSlpipNBvAGi5PLQYsepU.png?scale-down-to=512 512w, https://framerusercontent.com/images/O33wTTeSlpipNBvAGi5PLQYsepU.png 616w\"},className:\"framer-105nuxw\",\"data-framer-name\":\"05\",layoutDependency:layoutDependency,layoutId:\"ATfyKB0C8\",...addPropertyOverrides({QRQlUMS8k:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:176,intrinsicWidth:616,pixelHeight:176,pixelWidth:616,sizes:\"154px\",src:\"https://framerusercontent.com/images/O33wTTeSlpipNBvAGi5PLQYsepU.png\",srcSet:\"https://framerusercontent.com/images/O33wTTeSlpipNBvAGi5PLQYsepU.png?scale-down-to=512 512w, https://framerusercontent.com/images/O33wTTeSlpipNBvAGi5PLQYsepU.png 616w\"}}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:368,intrinsicWidth:368,pixelHeight:368,pixelWidth:368,src:\"https://framerusercontent.com/images/3yw3KJYSLDuFKe1UsT0Gsd1UnB8.png\"},className:\"framer-k1nip7\",\"data-framer-name\":\"06\",layoutDependency:layoutDependency,layoutId:\"Tkb8hLUVZ\"}),isDisplayed7()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:396,intrinsicWidth:456,pixelHeight:396,pixelWidth:456,src:\"https://framerusercontent.com/images/bj2JfCwEDDRl3HPnP58Lt7HiUFA.png\"},className:\"framer-talxfm\",\"data-framer-name\":\"07\",layoutDependency:layoutDependency,layoutId:\"h4m2dsvpM\"}),isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:668,intrinsicWidth:1072,pixelHeight:668,pixelWidth:1072,src:\"https://framerusercontent.com/images/MnOt204aQuyLxJ2d4pK8qXnaAqA.png\",srcSet:\"https://framerusercontent.com/images/MnOt204aQuyLxJ2d4pK8qXnaAqA.png?scale-down-to=512 512w, https://framerusercontent.com/images/MnOt204aQuyLxJ2d4pK8qXnaAqA.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/MnOt204aQuyLxJ2d4pK8qXnaAqA.png 1072w\"},className:\"framer-aiqkrq\",\"data-framer-name\":\"NegativeGap_4x\",layoutDependency:layoutDependency,layoutId:\"kzLLwjQiF\",...addPropertyOverrides({Hg4zSn01h:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:668,intrinsicWidth:1072,pixelHeight:668,pixelWidth:1072,sizes:\"268px\",src:\"https://framerusercontent.com/images/MnOt204aQuyLxJ2d4pK8qXnaAqA.png\",srcSet:\"https://framerusercontent.com/images/MnOt204aQuyLxJ2d4pK8qXnaAqA.png?scale-down-to=512 512w, https://framerusercontent.com/images/MnOt204aQuyLxJ2d4pK8qXnaAqA.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/MnOt204aQuyLxJ2d4pK8qXnaAqA.png 1072w\"}}},baseVariant,gestureVariant)})]})})});});const css=['.framer-oP7oz[data-border=\"true\"]::after, .framer-oP7oz [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-oP7oz.framer-bdzyi6, .framer-oP7oz .framer-bdzyi6 { display: block; }\",\".framer-oP7oz.framer-zrwhcs { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 160px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 298px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oP7oz .framer-tum05i { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 155px); overflow: visible; position: relative; width: 207px; }\",\".framer-oP7oz .framer-1gothcz { aspect-ratio: 1.0693069306930694 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 101px); overflow: visible; position: relative; width: 108px; }\",\".framer-oP7oz .framer-gx1syy { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 114px); overflow: visible; position: relative; width: 114px; }\",\".framer-oP7oz .framer-1zab95 { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 81px); overflow: visible; position: relative; width: 108px; }\",\".framer-oP7oz .framer-8o1bqf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 104px); overflow: visible; position: relative; width: 104px; }\",\".framer-oP7oz .framer-105nuxw { aspect-ratio: 3.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); overflow: visible; position: relative; width: 154px; }\",\".framer-oP7oz .framer-k1nip7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 92px); overflow: visible; position: relative; width: 92px; }\",\".framer-oP7oz .framer-talxfm { aspect-ratio: 1.1557522123893806 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 99px); overflow: visible; position: relative; width: 114px; }\",\".framer-oP7oz .framer-aiqkrq { aspect-ratio: 1.6036036036036037 / 1; flex: none; height: 167px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 268px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oP7oz.framer-zrwhcs { gap: 0px; } .framer-oP7oz.framer-zrwhcs > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oP7oz.framer-zrwhcs > :first-child { margin-top: 0px; } .framer-oP7oz.framer-zrwhcs > :last-child { margin-bottom: 0px; } }\",\".framer-oP7oz.framer-v-14h4l0h .framer-gx1syy { order: 2; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 160\n * @framerIntrinsicWidth 298\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"SwkuMc91t\":{\"layout\":[\"fixed\",\"fixed\"]},\"MtX1e4G0w\":{\"layout\":[\"fixed\",\"fixed\"]},\"Va6Ifv5yX\":{\"layout\":[\"fixed\",\"fixed\"]},\"CMSu2Ul1w\":{\"layout\":[\"fixed\",\"fixed\"]},\"dqcvCVs5D\":{\"layout\":[\"fixed\",\"fixed\"]},\"QRQlUMS8k\":{\"layout\":[\"fixed\",\"fixed\"]},\"c3mL6XxAH\":{\"layout\":[\"fixed\",\"fixed\"]},\"NhT_ywJ07\":{\"layout\":[\"fixed\",\"fixed\"]},\"Hg4zSn01h\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Gh96AU_pv\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Framers3TV9yejk=withCSS(Component,css,\"framer-oP7oz\");export default Framers3TV9yejk;Framers3TV9yejk.displayName=\"Cards/\uD83C\uDF1F Content\";Framers3TV9yejk.defaultProps={height:160,width:298};addPropertyControls(Framers3TV9yejk,{variant:{options:[\"eCmbgE2mS\",\"SwkuMc91t\",\"MtX1e4G0w\",\"Va6Ifv5yX\",\"CMSu2Ul1w\",\"dqcvCVs5D\",\"QRQlUMS8k\",\"c3mL6XxAH\",\"NhT_ywJ07\",\"Hg4zSn01h\"],optionTitles:[\"Coming Soon\",\"Empty\",\"01\",\"02\",\"03\",\"04\",\"05\",\"06\",\"07\",\"08\"],title:\"Variant\",type:ControlType.Enum},Gh96AU_pv:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(Framers3TV9yejk,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framers3TV9yejk\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"160\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SwkuMc91t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MtX1e4G0w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Va6Ifv5yX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CMSu2Ul1w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dqcvCVs5D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QRQlUMS8k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"c3mL6XxAH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NhT_ywJ07\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Hg4zSn01h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"298\",\"framerVariables\":\"{\\\"Gh96AU_pv\\\":\\\"image\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./s3TV9yejk.map", "// Generated by Framer (c75d380)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={HjmcugXQg:{hover:true}};const cycleOrder=[\"HjmcugXQg\",\"Re17uC68M\",\"F45t99wGd\"];const serializationHash=\"framer-cqWlO\";const variantClassNames={F45t99wGd:\"framer-v-ivk4nh\",HjmcugXQg:\"framer-v-1u1e7nn\",Re17uC68M:\"framer-v-rvei4g\"};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 transitions={default:{delay:0,duration:.03,ease:[.5,0,.88,.77],type:\"tween\"},F45t99wGd:{damping:20,delay:0,mass:2,stiffness:160,type:\"spring\"},Re17uC68M:{damping:20,delay:0,mass:2,stiffness:160,type:\"spring\"}};const transformTemplate1=(_,t)=>`perspective(1200px) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Footer Spin\":\"F45t99wGd\",Footer:\"Re17uC68M\",Navigation:\"HjmcugXQg\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"HjmcugXQg\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"HjmcugXQg\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap76fd9e=activeVariantCallback(async(...args)=>{setVariant(\"F45t99wGd\");});const onTaplzsa3k=activeVariantCallback(async(...args)=>{setVariant(\"Re17uC68M\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Re17uC68M\",\"F45t99wGd\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,\"aria-label\":\"Remix Lab Logo\",className:cx(serializationHash,...sharedStyleClassNames,\"framer-1u1e7nn\",className,classNames),\"data-framer-name\":\"Navigation\",initial:variant,layoutDependency:layoutDependency,layoutId:\"HjmcugXQg\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"HjmcugXQg-hover\":{\"data-framer-name\":undefined},F45t99wGd:{\"data-framer-name\":\"Footer Spin\"},Re17uC68M:{\"data-framer-name\":\"Footer\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:824,intrinsicWidth:824,pixelHeight:1648,pixelWidth:1648,sizes:\"32px\",src:\"https://framerusercontent.com/images/0SFXzo4NR8eqbMut2G2zOQAJYI.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0SFXzo4NR8eqbMut2G2zOQAJYI.webp?scale-down-to=512 512w, https://framerusercontent.com/images/0SFXzo4NR8eqbMut2G2zOQAJYI.webp?scale-down-to=1024 1024w, https://framerusercontent.com/images/0SFXzo4NR8eqbMut2G2zOQAJYI.webp 1648w\"},className:\"framer-a8pzhm\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"ppkXstB4b\",style:{rotate:0},variants:{F45t99wGd:{rotate:360}},...addPropertyOverrides({F45t99wGd:{\"data-highlight\":true,onTap:onTaplzsa3k,transformTemplate:transformTemplate1},Re17uC68M:{\"data-highlight\":true,onTap:onTap76fd9e,transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2ucudp\",\"data-framer-name\":\"Gap\",layoutDependency:layoutDependency,layoutId:\"E4E93hlus\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, rgb(239, 239, 239)))\"},children:\"Remix Lab\"})}),className:\"framer-oa04e6\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"baQShgNTz\",style:{\"--extracted-r6o4lv\":\"var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, rgb(239, 239, 239))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",viewBox:\"0 0 125 31\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i3y57j\",\"data-framer-name\":\"Blur\",layoutDependency:layoutDependency,layoutId:\"nBpK4spK7\",style:{backgroundColor:\"var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, rgb(239, 239, 239))\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,filter:\"blur(15px)\",opacity:0,WebkitFilter:\"blur(15px)\"},variants:{\"HjmcugXQg-hover\":{opacity:.16}}})]})})});});const css=['.framer-cqWlO[data-border=\"true\"]::after, .framer-cqWlO [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-cqWlO.framer-16f79lk, .framer-cqWlO .framer-16f79lk { display: block; }\",\".framer-cqWlO.framer-1u1e7nn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 32px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 140px; }\",\".framer-cqWlO .framer-a8pzhm { -webkit-user-select: none; aspect-ratio: 1 / 1; flex: none; height: 100%; overflow: visible; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 32px); }\",\".framer-cqWlO .framer-2ucudp { flex: none; height: 100%; overflow: visible; position: relative; width: 8%; }\",\".framer-cqWlO .framer-oa04e6 { flex: 1 0 0px; height: auto; position: relative; white-space: pre; width: 1px; }\",\".framer-cqWlO .framer-1i3y57j { -webkit-user-select: none; bottom: 0px; flex: none; left: -8px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; will-change: var(--framer-will-change-override, transform); z-index: -1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cqWlO.framer-1u1e7nn { gap: 0px; } .framer-cqWlO.framer-1u1e7nn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-cqWlO.framer-1u1e7nn > :first-child { margin-left: 0px; } .framer-cqWlO.framer-1u1e7nn > :last-child { margin-right: 0px; } }\",\".framer-cqWlO.framer-v-rvei4g.framer-1u1e7nn, .framer-cqWlO.framer-v-ivk4nh.framer-1u1e7nn { aspect-ratio: 4.375 / 1; cursor: unset; height: var(--framer-aspect-ratio-supported, 32px); }\",\".framer-cqWlO.framer-v-rvei4g .framer-a8pzhm, .framer-cqWlO.framer-v-ivk4nh .framer-a8pzhm { cursor: pointer; }\",\".framer-cqWlO.framer-v-rvei4g .framer-2ucudp, .framer-cqWlO.framer-v-ivk4nh .framer-2ucudp { width: 6%; }\",\".framer-cqWlO.framer-v-1u1e7nn.hover.framer-1u1e7nn { aspect-ratio: 4.375 / 1; height: var(--framer-aspect-ratio-supported, 32px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Re17uC68M\":{\"layout\":[\"fixed\",\"fixed\"]},\"F45t99wGd\":{\"layout\":[\"fixed\",\"fixed\"]},\"YdmdYtq_9\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerUAngPKjwE=withCSS(Component,css,\"framer-cqWlO\");export default FramerUAngPKjwE;FramerUAngPKjwE.displayName=\"Navigation/ Nav Logo\";FramerUAngPKjwE.defaultProps={height:32,width:140};addPropertyControls(FramerUAngPKjwE,{variant:{options:[\"HjmcugXQg\",\"Re17uC68M\",\"F45t99wGd\"],optionTitles:[\"Navigation\",\"Footer\",\"Footer Spin\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerUAngPKjwE,[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUAngPKjwE\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"32\",\"framerIntrinsicWidth\":\"140\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Re17uC68M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"F45t99wGd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YdmdYtq_9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UAngPKjwE.map", "// Generated by Framer (c60b0a0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,ResolveLinks,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import NavigationNavButton from\"https://framerusercontent.com/modules/dAFnYCbwt9GFjkLQIe2H/sdXrXQeF1eeogXk9Z2g1/B5uA9JEYc.js\";import NavigationMobileMenuFloat from\"https://framerusercontent.com/modules/CLoccTVUKUtwjnQPz19i/9Vz2DeuSS1Z1z6wwfAem/Tx9Pd72uY.js\";import NavigationNavLogo from\"https://framerusercontent.com/modules/k5gBTzYNpEMWXABtCEET/Tevv33FTlqfQYKqOvfVu/UAngPKjwE.js\";import IconsMobileIcons from\"https://framerusercontent.com/modules/GBjHeEpNvZxeXPoE5CCs/g6M5o3CRorIKu2TZsIDe/WF8PmVlh7.js\";const NavigationNavLogoFonts=getFonts(NavigationNavLogo);const IconsMobileIconsFonts=getFonts(IconsMobileIcons);const NavigationNavButtonFonts=getFonts(NavigationNavButton);const NoiseFonts=getFonts(Noise);const NavigationMobileMenuFloatFonts=getFonts(NavigationMobileMenuFloat);const NavigationMobileMenuFloatControls=getPropertyControls(NavigationMobileMenuFloat);const cycleOrder=[\"Qr2OhnVLG\",\"REqtwIWgT\",\"rW7zfAwWz\",\"T5_3q8Krf\",\"KFb9kuhAl\",\"T2TFL32j3\",\"JM99yX0ZL\"];const serializationHash=\"framer-mSldw\";const variantClassNames={JM99yX0ZL:\"framer-v-1ydzu9g\",KFb9kuhAl:\"framer-v-1g1dgjt\",Qr2OhnVLG:\"framer-v-txr2sh\",REqtwIWgT:\"framer-v-1ftis4m\",rW7zfAwWz:\"framer-v-1l5fauf\",T2TFL32j3:\"framer-v-1y5taaq\",T5_3q8Krf:\"framer-v-3rgezc\"};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 transition1={damping:50,delay:0,mass:1,stiffness:600,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={Default:\"luBkZmJAJ\",Home:\"zKVpftdav\"};const humanReadableVariantMap={\"Desktop /home\":\"Qr2OhnVLG\",\"Desktop /inactive\":\"rW7zfAwWz\",\"Desktop /resources\":\"REqtwIWgT\",\"Mobile /expanded\":\"T5_3q8Krf\",\"Tablet /expanded\":\"T2TFL32j3\",Mobile:\"KFb9kuhAl\",Tablet:\"JM99yX0ZL\"};const getProps=({framerDiscount,height,id,mobileDefaultHome,shareYourIdea,width,...props})=>{var _humanReadableEnumMap_mobileDefaultHome,_ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,cij1YChaR:(_ref1=(_ref=(_humanReadableEnumMap_mobileDefaultHome=humanReadableEnumMap[mobileDefaultHome])!==null&&_humanReadableEnumMap_mobileDefaultHome!==void 0?_humanReadableEnumMap_mobileDefaultHome:mobileDefaultHome)!==null&&_ref!==void 0?_ref:props.cij1YChaR)!==null&&_ref1!==void 0?_ref1:\"luBkZmJAJ\",eZvNKEAFk:shareYourIdea!==null&&shareYourIdea!==void 0?shareYourIdea:props.eZvNKEAFk,SAjPVTQ4U:framerDiscount!==null&&framerDiscount!==void 0?framerDiscount:props.SAjPVTQ4U,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"Qr2OhnVLG\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,SAjPVTQ4U,eZvNKEAFk,cij1YChaR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Qr2OhnVLG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const XKaY3MrGu1lkcy1b=activeVariantCallback(async(...args)=>{setVariant(\"KFb9kuhAl\");});const XKaY3MrGu1ed78vv=activeVariantCallback(async(...args)=>{setVariant(\"T5_3q8Krf\");});const XKaY3MrGux2vyxx=activeVariantCallback(async(...args)=>{setVariant(\"JM99yX0ZL\");});const XKaY3MrGuzso2bg=activeVariantCallback(async(...args)=>{setVariant(\"T2TFL32j3\");});const jUBF5uVVv1a1ok8l=activeVariantCallback(async(...args)=>{if(eZvNKEAFk){const res=await eZvNKEAFk(...args);if(res===false)return false;}});const jUBF5uVVv1lax80e=activeVariantCallback(async(...args)=>{if(SAjPVTQ4U){const res=await SAjPVTQ4U(...args);if(res===false)return false;}});const Gbwu5Uquj1a1ok8l=activeVariantCallback(async(...args)=>{if(eZvNKEAFk){const res=await eZvNKEAFk(...args);if(res===false)return false;}});const KkcvI2rPh1lax80e=activeVariantCallback(async(...args)=>{if(SAjPVTQ4U){const res=await SAjPVTQ4U(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"T5_3q8Krf\",\"KFb9kuhAl\",\"T2TFL32j3\",\"JM99yX0ZL\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"T5_3q8Krf\",\"KFb9kuhAl\",\"T2TFL32j3\",\"JM99yX0ZL\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed2=()=>{if([\"T5_3q8Krf\",\"T2TFL32j3\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-txr2sh\",className,classNames),\"data-framer-name\":\"Desktop /home\",layoutDependency:layoutDependency,layoutId:\"Qr2OhnVLG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-9c478769-f3e5-4eff-b834-fc668299001b, rgba(43, 43, 43, 0.78))\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,boxShadow:\"inset 0px 2px 1px -1px rgba(255, 255, 255, 0.5), inset 0px -2px 1px 0px rgba(0, 0, 0, 0.4), 0px 0.6021873017743928px 1.5656869846134214px -0.6666666666666666px rgba(0, 0, 0, 0.39144), 0px 2.288533303243457px 5.950186588432988px -1.3333333333333333px rgba(0, 0, 0, 0.42348), 0px 10px 26px -2px rgba(0, 0, 0, 0.57)\",...style},variants:{JM99yX0ZL:{boxShadow:\"inset 0px 2px 1px -1px rgba(255, 255, 255, 0.5), inset 0px -2px 1px 0px rgba(0, 0, 0, 0.4), 0px 0.6021873017743928px 1.5656869846134214px -0.6666666666666666px rgba(0, 0, 0, 0.37084), 0px 2.288533303243457px 5.950186588432988px -1.3333333333333333px rgba(0, 0, 0, 0.40119), 0px 10px 26px -2px rgba(0, 0, 0, 0.54)\"},KFb9kuhAl:{boxShadow:\"inset 0px 2px 1px -1px rgba(255, 255, 255, 0.5), inset 0px -2px 1px 0px rgba(0, 0, 0, 0.4), 0px 0.6021873017743928px 1.5656869846134214px -0.6666666666666666px rgba(0, 0, 0, 0.37084), 0px 2.288533303243457px 5.950186588432988px -1.3333333333333333px rgba(0, 0, 0, 0.40119), 0px 10px 26px -2px rgba(0, 0, 0, 0.54)\"},T2TFL32j3:{boxShadow:\"inset 0px 2px 1px -1px rgba(255, 255, 255, 0.5), inset 0px -2px 1px 0px rgba(0, 0, 0, 0.4), 0px 0.6021873017743928px 1.5656869846134214px -0.6666666666666666px rgba(0, 0, 0, 0.37084), 0px 2.288533303243457px 5.950186588432988px -1.3333333333333333px rgba(0, 0, 0, 0.40119), 0px 10px 26px -2px rgba(0, 0, 0, 0.54)\"},T5_3q8Krf:{boxShadow:\"inset 0px 2px 1px -1px rgba(255, 255, 255, 0.5), inset 0px -2px 1px 0px rgba(0, 0, 0, 0.4), 0px 0.6021873017743928px 1.5656869846134214px -0.6666666666666666px rgba(0, 0, 0, 0.37084), 0px 2.288533303243457px 5.950186588432988px -1.3333333333333333px rgba(0, 0, 0, 0.40119), 0px 10px 26px -2px rgba(0, 0, 0, 0.54)\"}},...addPropertyOverrides({JM99yX0ZL:{\"data-framer-name\":\"Tablet\"},KFb9kuhAl:{\"data-framer-name\":\"Mobile\"},REqtwIWgT:{\"data-framer-name\":\"Desktop /resources\"},rW7zfAwWz:{\"data-framer-name\":\"Desktop /inactive\"},T2TFL32j3:{\"data-framer-name\":\"Tablet /expanded\"},T5_3q8Krf:{\"data-framer-name\":\"Mobile /expanded\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nkcp5l\",\"data-framer-name\":\"Nav Content\",layoutDependency:layoutDependency,layoutId:\"HSKwRcjmX\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bintw7\",\"data-framer-name\":\"Mobile Bar\",layoutDependency:layoutDependency,layoutId:\"gtF3usSM8\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"Home\",className:\"framer-1jq59wz framer-1o1vdwo\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"cKFnBxqjG\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ugnbzg-container\",layoutDependency:layoutDependency,layoutId:\"fSzN0gKp3-container\",children:/*#__PURE__*/_jsx(NavigationNavLogo,{height:\"100%\",id:\"fSzN0gKp3\",layoutId:\"fSzN0gKp3\",style:{height:\"100%\",width:\"100%\"},variant:\"HjmcugXQg\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nrp48f-container\",\"data-framer-name\":\"Menu Icon\",layoutDependency:layoutDependency,layoutId:\"Wlb8LwayM-container\",name:\"Menu Icon\",children:/*#__PURE__*/_jsx(IconsMobileIcons,{height:\"100%\",id:\"Wlb8LwayM\",layoutId:\"Wlb8LwayM\",name:\"Menu Icon\",variant:\"CYUNRSoim\",width:\"100%\",...addPropertyOverrides({JM99yX0ZL:{XKaY3MrGu:XKaY3MrGuzso2bg},KFb9kuhAl:{XKaY3MrGu:XKaY3MrGu1ed78vv},T2TFL32j3:{variant:\"wrWTkFTrh\",XKaY3MrGu:XKaY3MrGux2vyxx},T5_3q8Krf:{variant:\"wrWTkFTrh\",XKaY3MrGu:XKaY3MrGu1lkcy1b}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1473inw\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"c8Qb7eC2B\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42.5,width:\"89px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||62.5)-0-62.5)/2)+10+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tcy37j-container\",\"data-framer-name\":\"Remixes\",layoutDependency:layoutDependency,layoutId:\"bIBKap14o-container\",name:\"Remixes\",children:/*#__PURE__*/_jsx(NavigationNavButton,{C3yEFktwg:resolvedLinks[0],height:\"100%\",id:\"bIBKap14o\",layoutId:\"bIBKap14o\",name:\"Remixes\",O4T9nxlyF:\"Remixes\",style:{height:\"100%\",width:\"100%\"},variant:\"re4aITo8M\",width:\"100%\",...addPropertyOverrides({REqtwIWgT:{C3yEFktwg:resolvedLinks[1],variant:\"NTSlRSfgO\"},rW7zfAwWz:{C3yEFktwg:resolvedLinks[2],variant:\"NTSlRSfgO\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FuN1VYV2W\"},implicitPathVariables:undefined},{href:{webPageId:\"FuN1VYV2W\"},implicitPathVariables:undefined},{href:{webPageId:\"FuN1VYV2W\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42.5,width:\"151px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||62.5)-0-62.5)/2)+10+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ur3a4k-container\",\"data-framer-name\":\"Resources\",layoutDependency:layoutDependency,layoutId:\"plEhQNUxx-container\",name:\"Resources\",children:/*#__PURE__*/_jsx(NavigationNavButton,{C3yEFktwg:resolvedLinks1[0],height:\"100%\",id:\"plEhQNUxx\",layoutId:\"plEhQNUxx\",name:\"Resources\",O4T9nxlyF:\"Framer resources\",style:{height:\"100%\",width:\"100%\"},variant:\"NTSlRSfgO\",width:\"100%\",...addPropertyOverrides({REqtwIWgT:{C3yEFktwg:resolvedLinks1[1],variant:\"re4aITo8M\"},rW7zfAwWz:{C3yEFktwg:resolvedLinks1[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42.5,width:\"137.5px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||62.5)-0-62.5)/2)+10+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fl2xw6-container\",\"data-framer-name\":\"Share idea\",layoutDependency:layoutDependency,layoutId:\"wmGjyzlhU-container\",name:\"Share idea\",children:/*#__PURE__*/_jsx(NavigationNavButton,{height:\"100%\",id:\"wmGjyzlhU\",jUBF5uVVv:jUBF5uVVv1a1ok8l,layoutId:\"wmGjyzlhU\",name:\"Share idea\",O4T9nxlyF:\"Share your idea\",style:{height:\"100%\",width:\"100%\"},variant:\"NTSlRSfgO\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42.5,width:\"142.5px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||62.5)-0-62.5)/2)+10+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lmctwo-container\",\"data-framer-name\":\"Framer Discount\",layoutDependency:layoutDependency,layoutId:\"fVTAAqT1p-container\",name:\"Framer Discount\",children:/*#__PURE__*/_jsx(NavigationNavButton,{height:\"100%\",id:\"fVTAAqT1p\",jUBF5uVVv:jUBF5uVVv1lax80e,layoutId:\"fVTAAqT1p\",name:\"Framer Discount\",O4T9nxlyF:\"Framer discount\",style:{height:\"100%\",width:\"100%\"},variant:\"NTSlRSfgO\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g5wb76-container\",\"data-framer-name\":\"\u2728 Grain\",layoutDependency:layoutDependency,layoutId:\"IAUaMJWly-container\",name:\"\u2728 Grain\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:80,borderRadius:14,height:\"100%\",id:\"IAUaMJWly\",layoutId:\"IAUaMJWly\",name:\"\u2728 Grain\",opacity:.04,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({T2TFL32j3:{height:332,width:\"296px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+68},T5_3q8Krf:{height:332,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+68}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gppe5g-container\",layoutDependency:layoutDependency,layoutId:\"duhuqqHAd-container\",children:/*#__PURE__*/_jsx(NavigationMobileMenuFloat,{height:\"100%\",id:\"duhuqqHAd\",layoutId:\"duhuqqHAd\",style:{width:\"100%\"},variant:cij1YChaR,width:\"100%\",...addPropertyOverrides({T2TFL32j3:{Gbwu5Uquj:Gbwu5Uquj1a1ok8l,KkcvI2rPh:KkcvI2rPh1lax80e},T5_3q8Krf:{Gbwu5Uquj:Gbwu5Uquj1a1ok8l,KkcvI2rPh:KkcvI2rPh1lax80e}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mSldw.framer-1o1vdwo, .framer-mSldw .framer-1o1vdwo { display: block; }\",\".framer-mSldw.framer-txr2sh { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-mSldw .framer-nkcp5l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; pointer-events: auto; position: relative; width: min-content; z-index: 2; }\",\".framer-mSldw .framer-bintw7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; min-height: 40px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-mSldw .framer-1jq59wz { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; text-decoration: none; user-select: none; width: min-content; z-index: 1; }\",\".framer-mSldw .framer-ugnbzg-container { aspect-ratio: 4.375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 114px; }\",\".framer-mSldw .framer-nrp48f-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-mSldw .framer-1473inw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-mSldw .framer-tcy37j-container { cursor: pointer; flex: none; height: 43px; position: relative; width: 89px; }\",\".framer-mSldw .framer-ur3a4k-container { cursor: pointer; flex: none; height: 43px; position: relative; width: 151px; }\",\".framer-mSldw .framer-fl2xw6-container { cursor: pointer; flex: none; height: 43px; position: relative; width: 138px; }\",\".framer-mSldw .framer-1lmctwo-container { cursor: pointer; flex: none; height: 43px; position: relative; width: 143px; }\",\".framer-mSldw .framer-1g5wb76-container { bottom: 0px; flex: none; left: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-mSldw .framer-1gppe5g-container { flex: none; height: auto; left: 0px; pointer-events: auto; position: absolute; right: 0px; top: 68px; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mSldw.framer-txr2sh, .framer-mSldw .framer-nkcp5l, .framer-mSldw .framer-1jq59wz, .framer-mSldw .framer-1473inw { gap: 0px; } .framer-mSldw.framer-txr2sh > *, .framer-mSldw .framer-nkcp5l > *, .framer-mSldw .framer-1jq59wz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-mSldw.framer-txr2sh > :first-child, .framer-mSldw .framer-nkcp5l > :first-child, .framer-mSldw .framer-1jq59wz > :first-child, .framer-mSldw .framer-1473inw > :first-child { margin-left: 0px; } .framer-mSldw.framer-txr2sh > :last-child, .framer-mSldw .framer-nkcp5l > :last-child, .framer-mSldw .framer-1jq59wz > :last-child, .framer-mSldw .framer-1473inw > :last-child { margin-right: 0px; } .framer-mSldw .framer-1473inw > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-mSldw.framer-v-3rgezc.framer-txr2sh, .framer-mSldw.framer-v-1g1dgjt.framer-txr2sh, .framer-mSldw.framer-v-1y5taaq.framer-txr2sh, .framer-mSldw.framer-v-1ydzu9g.framer-txr2sh { align-content: flex-start; align-items: flex-start; height: 56px; width: 296px; }\",\".framer-mSldw.framer-v-3rgezc .framer-nkcp5l, .framer-mSldw.framer-v-1g1dgjt .framer-nkcp5l, .framer-mSldw.framer-v-1y5taaq .framer-nkcp5l, .framer-mSldw.framer-v-1ydzu9g .framer-nkcp5l { flex: 1 0 0px; flex-direction: column; height: 100%; order: 0; overflow: visible; padding: 10px 6px 10px 6px; width: 1px; }\",\".framer-mSldw.framer-v-3rgezc .framer-bintw7, .framer-mSldw.framer-v-1g1dgjt .framer-bintw7, .framer-mSldw.framer-v-1y5taaq .framer-bintw7, .framer-mSldw.framer-v-1ydzu9g .framer-bintw7 { flex: none; min-height: unset; order: 0; width: 100%; }\",\".framer-mSldw.framer-v-3rgezc .framer-1g5wb76-container, .framer-mSldw.framer-v-1g1dgjt .framer-1g5wb76-container, .framer-mSldw.framer-v-1y5taaq .framer-1g5wb76-container, .framer-mSldw.framer-v-1ydzu9g .framer-1g5wb76-container { bottom: 0px; order: 1; }\",\".framer-mSldw.framer-v-3rgezc .framer-1gppe5g-container { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mSldw.framer-v-3rgezc .framer-nkcp5l { gap: 0px; } .framer-mSldw.framer-v-3rgezc .framer-nkcp5l > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-mSldw.framer-v-3rgezc .framer-nkcp5l > :first-child { margin-top: 0px; } .framer-mSldw.framer-v-3rgezc .framer-nkcp5l > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mSldw.framer-v-1g1dgjt .framer-nkcp5l { gap: 0px; } .framer-mSldw.framer-v-1g1dgjt .framer-nkcp5l > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-mSldw.framer-v-1g1dgjt .framer-nkcp5l > :first-child { margin-top: 0px; } .framer-mSldw.framer-v-1g1dgjt .framer-nkcp5l > :last-child { margin-bottom: 0px; } }\",\".framer-mSldw.framer-v-1y5taaq .framer-1gppe5g-container { left: unset; order: 2; width: 296px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mSldw.framer-v-1y5taaq .framer-nkcp5l { gap: 0px; } .framer-mSldw.framer-v-1y5taaq .framer-nkcp5l > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-mSldw.framer-v-1y5taaq .framer-nkcp5l > :first-child { margin-top: 0px; } .framer-mSldw.framer-v-1y5taaq .framer-nkcp5l > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mSldw.framer-v-1ydzu9g .framer-nkcp5l { gap: 0px; } .framer-mSldw.framer-v-1ydzu9g .framer-nkcp5l > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-mSldw.framer-v-1ydzu9g .framer-nkcp5l > :first-child { margin-top: 0px; } .framer-mSldw.framer-v-1ydzu9g .framer-nkcp5l > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 62.5\n * @framerIntrinsicWidth 564\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"REqtwIWgT\":{\"layout\":[\"auto\",\"auto\"]},\"rW7zfAwWz\":{\"layout\":[\"auto\",\"auto\"]},\"T5_3q8Krf\":{\"layout\":[\"fixed\",\"fixed\"]},\"KFb9kuhAl\":{\"layout\":[\"fixed\",\"fixed\"]},\"T2TFL32j3\":{\"layout\":[\"fixed\",\"fixed\"]},\"JM99yX0ZL\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"SAjPVTQ4U\":\"framerDiscount\",\"eZvNKEAFk\":\"shareYourIdea\",\"cij1YChaR\":\"mobileDefaultHome\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWQYZGGXEJ=withCSS(Component,css,\"framer-mSldw\");export default FramerWQYZGGXEJ;FramerWQYZGGXEJ.displayName=\"Navigation/ Middle Nav\";FramerWQYZGGXEJ.defaultProps={height:62.5,width:564};addPropertyControls(FramerWQYZGGXEJ,{variant:{options:[\"Qr2OhnVLG\",\"REqtwIWgT\",\"rW7zfAwWz\",\"T5_3q8Krf\",\"KFb9kuhAl\",\"T2TFL32j3\",\"JM99yX0ZL\"],optionTitles:[\"Desktop /home\",\"Desktop /resources\",\"Desktop /inactive\",\"Mobile /expanded\",\"Mobile\",\"Tablet /expanded\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum},SAjPVTQ4U:{title:\"Framer discount\",type:ControlType.EventHandler},eZvNKEAFk:{title:\"Share your idea\",type:ControlType.EventHandler},cij1YChaR:(NavigationMobileMenuFloatControls===null||NavigationMobileMenuFloatControls===void 0?void 0:NavigationMobileMenuFloatControls[\"variant\"])&&{...NavigationMobileMenuFloatControls[\"variant\"],defaultValue:\"luBkZmJAJ\",description:undefined,hidden:undefined,title:\"Mobile (Default / Home)\"}});addFonts(FramerWQYZGGXEJ,[{explicitInter:true,fonts:[]},...NavigationNavLogoFonts,...IconsMobileIconsFonts,...NavigationNavButtonFonts,...NoiseFonts,...NavigationMobileMenuFloatFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWQYZGGXEJ\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"REqtwIWgT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rW7zfAwWz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"T5_3q8Krf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KFb9kuhAl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"T2TFL32j3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JM99yX0ZL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"564\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"SAjPVTQ4U\\\":\\\"framerDiscount\\\",\\\"eZvNKEAFk\\\":\\\"shareYourIdea\\\",\\\"cij1YChaR\\\":\\\"mobileDefaultHome\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"62.5\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WQYZGGXEJ.map", "// Generated by Framer (6124c77)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nh5quZylBsOny1oitU00/2MaMuFkBowsxvwMc9MxJ/jrv5bwnyy.js\";const NoiseFonts=getFonts(Noise);const enabledGestures={NTSlRSfgO:{hover:true,pressed:true},re4aITo8M:{pressed:true}};const cycleOrder=[\"NTSlRSfgO\",\"re4aITo8M\",\"nzItmzQxv\",\"K5kR0Yq2B\"];const serializationHash=\"framer-ERD8m\";const variantClassNames={K5kR0Yq2B:\"framer-v-1nniao3\",NTSlRSfgO:\"framer-v-3w28hx\",nzItmzQxv:\"framer-v-83godt\",re4aITo8M:\"framer-v-1nytp8a\"};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 transition1={delay:0,duration:.03,ease:[.5,0,.88,.77],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Desktop /active\":\"re4aITo8M\",Mobile:\"nzItmzQxv\",Tablet:\"K5kR0Yq2B\",Variant:\"NTSlRSfgO\"};const getProps=({height,id,link,tap,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,C3yEFktwg:link!==null&&link!==void 0?link:props.C3yEFktwg,jUBF5uVVv:tap!==null&&tap!==void 0?tap:props.jUBF5uVVv,O4T9nxlyF:(_ref=title!==null&&title!==void 0?title:props.O4T9nxlyF)!==null&&_ref!==void 0?_ref:\"Resources\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"NTSlRSfgO\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,O4T9nxlyF,jUBF5uVVv,C3yEFktwg,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NTSlRSfgO\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap5ihh3r=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(jUBF5uVVv){const res=await jUBF5uVVv(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"nzItmzQxv\",\"K5kR0Yq2B\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:C3yEFktwg,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-3w28hx\",className,classNames)} framer-gahg0j`,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"NTSlRSfgO\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap5ihh3r,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(48, 48, 48)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"inset 0px 3px 1px -1px rgba(255, 255, 255, 0.3), inset 0px -2px 1px 0px rgba(0, 0, 0, 0.4), 0px 0.6021873017743928px 0.84306222248415px -1.3333333333333333px rgba(0, 0, 0, 0.53471), 0px 2.288533303243457px 3.20394662454084px -2.6666666666666665px rgba(0, 0, 0, 0.46388), 0px 10px 14px -4px rgba(0, 0, 0, 0.14), inset 0px 2px 1px -1px rgba(255, 255, 255, 0.4), 0px 0px 32px 0px rgba(255, 255, 255, 0)\",...style},variants:{\"NTSlRSfgO-hover\":{backgroundColor:\"rgb(87, 87, 87)\",boxShadow:\"inset 0px 3px 1px -1px rgba(255, 255, 255, 0.3), inset 0px -2px 1px 0px rgba(0, 0, 0, 0.4), 0px 0.6021873017743928px 0.84306222248415px -1.3333333333333333px rgba(0, 0, 0, 0.53471), 0px 2.288533303243457px 3.20394662454084px -2.6666666666666665px rgba(0, 0, 0, 0.46388), 0px 10px 14px -4px rgba(0, 0, 0, 0.14), inset 0px 2px 1px -1px rgba(255, 255, 255, 0.4), 0px 0px 32px 0px rgba(255, 255, 255, 0.1)\"},\"NTSlRSfgO-pressed\":{backgroundColor:\"rgb(41, 41, 41)\",boxShadow:\"inset 0px -3px 1px -1px rgba(255, 255, 255, 0.2), inset 0px 2px 10px 1px rgba(0, 0, 0, 0.8), 0px 0.6021873017743928px 0.84306222248415px -1.3333333333333333px rgba(0, 0, 0, 0.53471), 0px 2.288533303243457px 3.20394662454084px -2.6666666666666665px rgba(0, 0, 0, 0.46388), 0px 10px 14px -4px rgba(0, 0, 0, 0.14), inset 0px -2px 1px -1px rgba(255, 255, 255, 0.25), 0px 0px 32px 0px rgba(255, 255, 255, 0)\"},\"re4aITo8M-pressed\":{backgroundColor:\"rgb(41, 41, 41)\",boxShadow:\"inset 0px -3px 1px -1px rgba(255, 255, 255, 0.2), inset 0px 2px 10px 1px rgba(0, 0, 0, 0.8), 0px 0.6021873017743928px 0.84306222248415px -1.3333333333333333px rgba(0, 0, 0, 0.53471), 0px 2.288533303243457px 3.20394662454084px -2.6666666666666665px rgba(0, 0, 0, 0.46388), 0px 10px 14px -4px rgba(0, 0, 0, 0.14), inset 0px -2px 1px -1px rgba(255, 255, 255, 0.25), 0px 0px 32px 0px rgba(255, 255, 255, 0)\"},K5kR0Yq2B:{backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\"},nzItmzQxv:{backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\"},re4aITo8M:{backgroundColor:\"rgb(87, 87, 87)\",boxShadow:\"inset 0px 3px 1px -1px rgba(255, 255, 255, 0.3), inset 0px -2px 1px 0px rgba(0, 0, 0, 0.4), 0px 0.6021873017743928px 0.84306222248415px -1.3333333333333333px rgba(0, 0, 0, 0.53471), 0px 2.288533303243457px 3.20394662454084px -2.6666666666666665px rgba(0, 0, 0, 0.46388), 0px 10px 14px -4px rgba(0, 0, 0, 0.14), inset 0px 2px 1px -1px rgba(255, 255, 255, 0.4), 0px 0px 32px 0px rgba(255, 255, 255, 0.1)\"}},...addPropertyOverrides({\"re4aITo8M-pressed\":{\"data-framer-name\":undefined},K5kR0Yq2B:{\"data-framer-name\":\"Tablet\"},nzItmzQxv:{\"data-framer-name\":\"Mobile\"},re4aITo8M:{\"data-framer-name\":\"Desktop /active\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15d6wvb-container\",\"data-framer-name\":\"\u2728 Grain\",layoutDependency:layoutDependency,layoutId:\"EfvA63hWL-container\",name:\"\u2728 Grain\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:80,borderRadius:6,height:\"100%\",id:\"EfvA63hWL\",layoutId:\"EfvA63hWL\",name:\"\u2728 Grain\",opacity:.04,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-iyz54d\",\"data-styles-preset\":\"jrv5bwnyy\",children:\"Resources\"})}),className:\"framer-89hwc1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Z6osdL7Qy\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:5e3},text:O4T9nxlyF,variants:{\"NTSlRSfgO-pressed\":{\"--extracted-r6o4lv\":\"rgb(209, 209, 209)\",z:-250},\"re4aITo8M-pressed\":{\"--extracted-r6o4lv\":\"rgb(209, 209, 209)\",z:-250}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"NTSlRSfgO-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-iyz54d\",\"data-styles-preset\":\"jrv5bwnyy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(209, 209, 209))\"},children:\"Resources\"})})},\"re4aITo8M-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-iyz54d\",\"data-styles-preset\":\"jrv5bwnyy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(209, 209, 209))\"},children:\"Resources\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ERD8m.framer-gahg0j, .framer-ERD8m .framer-gahg0j { display: block; }\",\".framer-ERD8m.framer-3w28hx { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 16px 10px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-ERD8m .framer-15d6wvb-container { bottom: 0px; flex: none; left: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-ERD8m .framer-89hwc1 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ERD8m.framer-3w28hx { gap: 0px; } .framer-ERD8m.framer-3w28hx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ERD8m.framer-3w28hx > :first-child { margin-left: 0px; } .framer-ERD8m.framer-3w28hx > :last-child { margin-right: 0px; } }\",\".framer-ERD8m.framer-v-83godt.framer-3w28hx { height: 40px; justify-content: flex-start; padding: 8px 16px 8px 16px; }\",\".framer-ERD8m.framer-v-1nniao3.framer-3w28hx { height: 40px; justify-content: flex-start; padding: 8px 16px 8px 16px; width: 114px; }\",\".framer-ERD8m.framer-v-1nniao3 .framer-89hwc1 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42.5\n * @framerIntrinsicWidth 103.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"re4aITo8M\":{\"layout\":[\"auto\",\"auto\"]},\"nzItmzQxv\":{\"layout\":[\"auto\",\"fixed\"]},\"K5kR0Yq2B\":{\"layout\":[\"fixed\",\"fixed\"]},\"ezxyHX7cs\":{\"layout\":[\"auto\",\"auto\"]},\"ypXZt3Nj1\":{\"layout\":[\"auto\",\"auto\"]},\"VB4Pm0hrn\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"O4T9nxlyF\":\"title\",\"jUBF5uVVv\":\"tap\",\"C3yEFktwg\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerB5uA9JEYc=withCSS(Component,css,\"framer-ERD8m\");export default FramerB5uA9JEYc;FramerB5uA9JEYc.displayName=\"Navigation/ Nav Button\";FramerB5uA9JEYc.defaultProps={height:42.5,width:103.5};addPropertyControls(FramerB5uA9JEYc,{variant:{options:[\"NTSlRSfgO\",\"re4aITo8M\",\"nzItmzQxv\",\"K5kR0Yq2B\"],optionTitles:[\"Variant\",\"Desktop /active\",\"Mobile\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum},O4T9nxlyF:{defaultValue:\"Resources\",displayTextArea:false,title:\"Title\",type:ControlType.String},jUBF5uVVv:{title:\"Tap\",type:ControlType.EventHandler},C3yEFktwg:{title:\"Link\",type:ControlType.Link}});addFonts(FramerB5uA9JEYc,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...NoiseFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerB5uA9JEYc\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"re4aITo8M\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nzItmzQxv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"K5kR0Yq2B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ezxyHX7cs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ypXZt3Nj1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VB4Pm0hrn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"42.5\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"O4T9nxlyF\\\":\\\"title\\\",\\\"jUBF5uVVv\\\":\\\"tap\\\",\\\"C3yEFktwg\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"103.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./B5uA9JEYc.map", "// Generated by Framer (236a21b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import NavigationNavButton from\"https://framerusercontent.com/modules/dAFnYCbwt9GFjkLQIe2H/sdXrXQeF1eeogXk9Z2g1/B5uA9JEYc.js\";import UtilityButtons from\"https://framerusercontent.com/modules/Jb6g5TFqwav4TZCWIWmg/n7B3kkTZIOzI8qyLbWPt/QEAaU343u.js\";const NavigationNavButtonFonts=getFonts(NavigationNavButton);const UtilityButtonsFonts=getFonts(UtilityButtons);const NoiseFonts=getFonts(Noise);const cycleOrder=[\"luBkZmJAJ\",\"zKVpftdav\"];const serializationHash=\"framer-oIVk7\";const variantClassNames={luBkZmJAJ:\"framer-v-1ungcuk\",zKVpftdav:\"framer-v-1vnyebg\"};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 transition1={damping:50,delay:0,mass:1,stiffness:600,type:\"spring\"};const transition2={damping:50,delay:.15,mass:1,stiffness:350,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Default:\"luBkZmJAJ\",Home:\"zKVpftdav\"};const getProps=({framerDiscount,height,id,shareYourIdea,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,Gbwu5Uquj:shareYourIdea!==null&&shareYourIdea!==void 0?shareYourIdea:props.Gbwu5Uquj,KkcvI2rPh:framerDiscount!==null&&framerDiscount!==void 0?framerDiscount:props.KkcvI2rPh,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"luBkZmJAJ\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Gbwu5Uquj,KkcvI2rPh,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"luBkZmJAJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const jUBF5uVVv1pn7es0=activeVariantCallback(async(...args)=>{if(Gbwu5Uquj){const res=await Gbwu5Uquj(...args);if(res===false)return false;}});const jUBF5uVVv1w0curb=activeVariantCallback(async(...args)=>{if(KkcvI2rPh){const res=await KkcvI2rPh(...args);if(res===false)return false;}});const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(baseVariant===\"zKVpftdav\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ungcuk\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"luBkZmJAJ\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-9c478769-f3e5-4eff-b834-fc668299001b, rgb(36, 36, 36))\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,boxShadow:\"inset 0px 2px 1px -1px rgba(255, 255, 255, 0.5), inset 0px -2px 1px 0px rgba(0, 0, 0, 0.4), 0px 0.6021873017743928px 1.5656869846134214px -0.6666666666666666px rgba(0, 0, 0, 0.39144), 0px 2.288533303243457px 5.950186588432988px -1.3333333333333333px rgba(0, 0, 0, 0.42348), 0px 10px 26px -2px rgba(0, 0, 0, 0.57)\",...style},...addPropertyOverrides({zKVpftdav:{\"data-framer-name\":\"Home\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13lj9v\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"AFapKugS0\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 28px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16wz3oi-container\",\"data-framer-name\":\"Remixes\",layoutDependency:layoutDependency,layoutId:\"J4OL7C5Pq-container\",name:\"Remixes\",children:/*#__PURE__*/_jsx(NavigationNavButton,{C3yEFktwg:resolvedLinks[0],height:\"100%\",id:\"J4OL7C5Pq\",layoutId:\"J4OL7C5Pq\",name:\"Remixes\",O4T9nxlyF:\"Remixes\",style:{width:\"100%\"},variant:\"nzItmzQxv\",width:\"100%\",...addPropertyOverrides({zKVpftdav:{C3yEFktwg:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FuN1VYV2W\"},implicitPathVariables:undefined},{href:{webPageId:\"FuN1VYV2W\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 28px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2fgnvv-container\",\"data-framer-name\":\"Resources\",layoutDependency:layoutDependency,layoutId:\"UEOopWsQy-container\",name:\"Resources\",children:/*#__PURE__*/_jsx(NavigationNavButton,{C3yEFktwg:resolvedLinks1[0],height:\"100%\",id:\"UEOopWsQy\",layoutId:\"UEOopWsQy\",name:\"Resources\",O4T9nxlyF:\"Framer resources\",style:{width:\"100%\"},variant:\"nzItmzQxv\",width:\"100%\",...addPropertyOverrides({zKVpftdav:{C3yEFktwg:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 28px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d9hmeg-container\",\"data-framer-name\":\"Share idea\",layoutDependency:layoutDependency,layoutId:\"d0axMXaPI-container\",name:\"Share idea\",children:/*#__PURE__*/_jsx(NavigationNavButton,{height:\"100%\",id:\"d0axMXaPI\",jUBF5uVVv:jUBF5uVVv1pn7es0,layoutId:\"d0axMXaPI\",name:\"Share idea\",O4T9nxlyF:\"Share your idea\",style:{width:\"100%\"},variant:\"nzItmzQxv\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 28px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rydisz-container\",\"data-framer-name\":\"Framer Discount\",layoutDependency:layoutDependency,layoutId:\"U8_sR3IQN-container\",name:\"Framer Discount\",children:/*#__PURE__*/_jsx(NavigationNavButton,{height:\"100%\",id:\"U8_sR3IQN\",jUBF5uVVv:jUBF5uVVv1w0curb,layoutId:\"U8_sR3IQN\",name:\"Framer Discount\",O4T9nxlyF:\"Framer discount\",style:{width:\"100%\"},variant:\"nzItmzQxv\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 28px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s1gyfm-container\",\"data-framer-name\":\"Framer\",layoutDependency:layoutDependency,layoutId:\"y0ZBCRS5F-container\",name:\"Framer\",children:/*#__PURE__*/_jsx(NavigationNavButton,{C3yEFktwg:\"https://www.framer.com?via=ui_zsolt\",height:\"100%\",id:\"y0ZBCRS5F\",layoutId:\"y0ZBCRS5F\",name:\"Framer\",O4T9nxlyF:\"Framer\",style:{width:\"100%\"},variant:\"nzItmzQxv\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1afj3sm\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"xOKQTSo1H\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p58yx2-container\",\"data-framer-name\":\"Mobile CTA\",layoutDependency:layoutDependency,layoutId:\"WsXhWjgUQ-container\",name:\"Mobile CTA\",children:/*#__PURE__*/_jsx(UtilityButtons,{height:\"100%\",id:\"WsXhWjgUQ\",ItUurwXTd:\"Follow on \",JLJE53cti:true,jW452RN5a:\"https://twitter.com/intent/user?screen_name=ui_zsolt\",layoutId:\"WsXhWjgUQ\",name:\"Mobile CTA\",style:{height:\"100%\",width:\"100%\"},variant:\"kIaRdwR5D\",width:\"100%\",ziNjWWCZS:'<?xml version=\"1.0\" encoding=\"utf-8\"?> <!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  --> <svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" \t viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 24 24;\" xml:space=\"preserve\"> <style type=\"text/css\"> \t.st0{clip-path:url(#SVGID_00000079469360016188314500000002985382497631858618_);} \t.st1{fill:#E3E3E3;} </style> <g> \t<defs> \t\t<rect id=\"SVGID_1_\" width=\"24\" height=\"24\"/> \t</defs> \t<clipPath id=\"SVGID_00000177474677164728380160000008595762905293496747_\"> \t\t<use xlink:href=\"#SVGID_1_\"  style=\"overflow:visible;\"/> \t</clipPath> \t<g style=\"clip-path:url(#SVGID_00000177474677164728380160000008595762905293496747_);\"> \t\t<path class=\"st1\" d=\"M22,6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6z M20,6l-8,5L4,6H20z \t\t\t M20,18H4V8l8,5l8-5V18z\"/> \t</g> </g> </svg>'})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13s9xep-container\",\"data-framer-name\":\"\u2728 Grain\",layoutDependency:layoutDependency,layoutId:\"LRT77Ffth-container\",name:\"\u2728 Grain\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:80,borderRadius:14,height:\"100%\",id:\"LRT77Ffth\",layoutId:\"LRT77Ffth\",name:\"\u2728 Grain\",opacity:.04,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oIVk7.framer-1w75dc0, .framer-oIVk7 .framer-1w75dc0 { display: block; }\",\".framer-oIVk7.framer-1ungcuk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px 16px 16px 12px; pointer-events: auto; position: relative; width: 555px; }\",\".framer-oIVk7 .framer-13lj9v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-oIVk7 .framer-16wz3oi-container, .framer-oIVk7 .framer-2fgnvv-container, .framer-oIVk7 .framer-1d9hmeg-container, .framer-oIVk7 .framer-rydisz-container, .framer-oIVk7 .framer-s1gyfm-container { cursor: pointer; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-oIVk7 .framer-1afj3sm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-oIVk7 .framer-1p58yx2-container { flex: 1 0 0px; height: 44px; position: relative; width: 1px; }\",\".framer-oIVk7 .framer-13s9xep-container { bottom: 0px; flex: none; left: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oIVk7.framer-1ungcuk, .framer-oIVk7 .framer-13lj9v, .framer-oIVk7 .framer-1afj3sm { gap: 0px; } .framer-oIVk7.framer-1ungcuk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oIVk7.framer-1ungcuk > :first-child, .framer-oIVk7 .framer-13lj9v > :first-child { margin-top: 0px; } .framer-oIVk7.framer-1ungcuk > :last-child, .framer-oIVk7 .framer-13lj9v > :last-child { margin-bottom: 0px; } .framer-oIVk7 .framer-13lj9v > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-oIVk7 .framer-1afj3sm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oIVk7 .framer-1afj3sm > :first-child { margin-left: 0px; } .framer-oIVk7 .framer-1afj3sm > :last-child { margin-right: 0px; } }\",\".framer-oIVk7.framer-v-1vnyebg.framer-1ungcuk { padding: 8px 16px 8px 12px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 332\n * @framerIntrinsicWidth 555\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zKVpftdav\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Gbwu5Uquj\":\"shareYourIdea\",\"KkcvI2rPh\":\"framerDiscount\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTx9Pd72uY=withCSS(Component,css,\"framer-oIVk7\");export default FramerTx9Pd72uY;FramerTx9Pd72uY.displayName=\"Navigation/Mobile Menu Float\";FramerTx9Pd72uY.defaultProps={height:332,width:555};addPropertyControls(FramerTx9Pd72uY,{variant:{options:[\"luBkZmJAJ\",\"zKVpftdav\"],optionTitles:[\"Default\",\"Home\"],title:\"Variant\",type:ControlType.Enum},Gbwu5Uquj:{title:\"Share your idea\",type:ControlType.EventHandler},KkcvI2rPh:{title:\"Framer discount\",type:ControlType.EventHandler}});addFonts(FramerTx9Pd72uY,[{explicitInter:true,fonts:[]},...NavigationNavButtonFonts,...UtilityButtonsFonts,...NoiseFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTx9Pd72uY\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"555\",\"framerVariables\":\"{\\\"Gbwu5Uquj\\\":\\\"shareYourIdea\\\",\\\"KkcvI2rPh\\\":\\\"framerDiscount\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zKVpftdav\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"332\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Tx9Pd72uY.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=['.framer-VkuMt .framer-styles-preset-1fvwtju:not(.rich-text-wrapper), .framer-VkuMt .framer-styles-preset-1fvwtju.rich-text-wrapper a { --framer-link-current-text-color: var(--token-754b6d6a-5073-4ac6-9d41-3fb149cba9db, #ca42ff) /* {\"name\":\"Pink\"} */; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-754b6d6a-5073-4ac6-9d41-3fb149cba9db, #ca42ff); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-3cdeeb14-f85f-449d-b13b-b05c94184730, #efefef); --framer-link-text-decoration: none; transition: color 0.12s cubic-bezier(0.44, 0, 0.56, 1) 0s; }'];export const className=\"framer-VkuMt\";\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\"}}}"],
  "mappings": "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",
  "names": ["init_shims", "easings", "t", "Gradientease", "props", "gradientDirection", "cornerRadius", "easing", "grayScale", "style", "easingFunc", "numberOfStops", "_", "i", "easedT", "p", "motion", "addPropertyControls", "ControlType", "init_shims", "fontStore", "fonts", "css", "className", "hMhsJLtAS_exports", "__export", "__FramerMetadata__", "hMhsJLtAS_default", "init_shims", "init_shims", "init_shims", "placeholderUrl", "DotLottie", "props", "p", "OptimizationFriendly", "LottiePlayer", "isCanvas", "RenderTarget", "lottieInstanceRef", "pe", "shouldPlay", "src", "isReady", "setIsReady", "ye", "ue", "lastVariant", "addPropertyControls", "ControlType", "loading", "loaded", "isLoading", "setLoading", "DotLottieFonts", "getFonts", "DotLottie", "cycleOrder", "serializationHash", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "autoplay", "height", "id", "opacity", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "XEohjJiuB", "HBoFb5w3z", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "serializationHash", "DotLottie", "css", "FramerBaiWzMDNf", "withCSS", "BaiWzMDNf_default", "addPropertyControls", "ControlType", "addFonts", "DotLottieFonts", "init_shims", "init_shims", "withCopyToClipboard", "Component", "props", "textToCopy", "p", "init_shims", "useStore", "createStore", "withTriggerFadeOut", "Component", "props", "store", "setStore", "p", "withFadeOutAnimation", "WF8PmVlh7_exports", "__export", "__FramerMetadata__", "WF8PmVlh7_default", "init_shims", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "XKaY3MrGu", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap16y2uw0", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "css", "FramerWF8PmVlh7", "withCSS", "WF8PmVlh7_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "IconsMobileIconsFonts", "getFonts", "WF8PmVlh7_default", "IconsMobileIconsWithTriggerFadeOutWithMappedReactProps5arc9s", "withMappedReactProps", "withTriggerFadeOut", "WF8PmVlh7_exports", "UtilityButtonsFonts", "QEAaU343u_default", "UtilityButtonsWithCopyToClipboardWithMappedReactProps1x8x024", "withCopyToClipboard", "QEAaU343u_exports", "NoiseFonts", "Noise", "MotionDivWithFadeOutAnimation", "withFadeOutAnimation", "motion", "cycleOrder", "serializationHash", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "tap", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "BXVIuL5Rc", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "XKaY3MrGuhld2t2", "args", "ref1", "pe", "defaultLayoutId", "ae", "LayoutGroup", "u", "MotionDivWithFadeOutAnimation", "cx", "serializationHash", "motion", "RichText2", "x", "IconsMobileIconsWithTriggerFadeOutWithMappedReactProps5arc9s", "UtilityButtonsWithCopyToClipboardWithMappedReactProps1x8x024", "QEAaU343u_default", "Noise", "css", "FramerXJAELCSDO", "withCSS", "XJAELCSDO_default", "addPropertyControls", "ControlType", "addFonts", "IconsMobileIconsFonts", "UtilityButtonsFonts", "NoiseFonts", "fonts", "OverlaysModal2Fonts", "getFonts", "XJAELCSDO_default", "OverlaysPoofFonts", "BaiWzMDNf_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BpQ2WAtFh", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "BXVIuL5Rc168ioho", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "css", "FramerhMhsJLtAS", "withCSS", "hMhsJLtAS_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "oakJGc2RR_exports", "__export", "__FramerMetadata__", "oakJGc2RR_default", "init_shims", "init_shims", "IconsMobileIconsFonts", "getFonts", "WF8PmVlh7_default", "IconsMobileIconsWithTriggerFadeOutWithMappedReactProps5arc9s", "withMappedReactProps", "withTriggerFadeOut", "WF8PmVlh7_exports", "UtilityButtonsFonts", "QEAaU343u_default", "NoiseFonts", "Noise", "MotionDivWithFadeOutAnimation", "withFadeOutAnimation", "motion", "cycleOrder", "serializationHash", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "tap", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "JoU3ed2Xj", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "XKaY3MrGu4qxtaj", "args", "ref1", "pe", "defaultLayoutId", "ae", "LayoutGroup", "u", "MotionDivWithFadeOutAnimation", "cx", "serializationHash", "motion", "RichText2", "x", "IconsMobileIconsWithTriggerFadeOutWithMappedReactProps5arc9s", "QEAaU343u_default", "Noise", "css", "FramerXw4Qirbvv", "withCSS", "Xw4Qirbvv_default", "addPropertyControls", "ControlType", "addFonts", "IconsMobileIconsFonts", "UtilityButtonsFonts", "NoiseFonts", "fonts", "OverlaysModal1Fonts", "getFonts", "Xw4Qirbvv_default", "OverlaysPoofFonts", "BaiWzMDNf_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BpQ2WAtFh", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "JoU3ed2Xj92ctd3", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "css", "FrameroakJGc2RR", "withCSS", "oakJGc2RR_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "init_shims", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "newTab", "tap", "title", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vz5p7kuaB", "jbutjeaCL", "I5Ym56Eqx", "ZnzsAZnan", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1wd8hap", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "css", "FramerQRmC93gpr", "withCSS", "QRmC93gpr_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "init_shims", "fontStore", "fonts", "css", "className", "init_shims", "init_shims", "init_shims", "withFade", "Component", "fadeToOpacity", "fadeWidthPercent", "props", "fadeMask", "fadingStyle", "p", "ImageWithFade", "withFade", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "css", "Framerl5kBV_gwA", "withCSS", "l5kBV_gwA_default", "addPropertyControls", "ControlType", "addFonts", "init_shims", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "image", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Gh96AU_pv", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "defaultLayoutId", "ae", "LayoutGroup", "u", "Image2", "cx", "css", "Framers3TV9yejk", "withCSS", "s3TV9yejk_default", "addPropertyControls", "ControlType", "addFonts", "NoiseFonts", "getFonts", "Noise", "CardsContentFonts", "s3TV9yejk_default", "PatternFonts", "l5kBV_gwA_default", "CardsContentControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "content", "height", "id", "image", "link", "number", "number1", "title", "width", "props", "_ref", "_ref1", "_humanReadableEnumMap_content", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "R0qW4D_sm", "No0HTmkNW", "akEYdY56Q", "OpLq4ZtOc", "AkNP6t4Zd", "pMGRJ_F3b", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "Link", "u", "motion", "cx", "RichText2", "x", "css", "FramerSYL2iCFws", "withCSS", "SYL2iCFws_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "init_shims", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap76fd9e", "args", "onTaplzsa3k", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "Image2", "RichText2", "x", "css", "FramerUAngPKjwE", "withCSS", "UAngPKjwE_default", "addPropertyControls", "ControlType", "addFonts", "init_shims", "init_shims", "NoiseFonts", "getFonts", "Noise", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "tap", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "O4T9nxlyF", "jUBF5uVVv", "C3yEFktwg", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap5ihh3r", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerB5uA9JEYc", "withCSS", "B5uA9JEYc_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "init_shims", "NavigationNavButtonFonts", "getFonts", "B5uA9JEYc_default", "UtilityButtonsFonts", "QEAaU343u_default", "NoiseFonts", "Noise", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "framerDiscount", "height", "id", "shareYourIdea", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Gbwu5Uquj", "KkcvI2rPh", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "jUBF5uVVv1pn7es0", "args", "jUBF5uVVv1w0curb", "ref1", "pe", "router", "useRouter", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "css", "FramerTx9Pd72uY", "withCSS", "Tx9Pd72uY_default", "addPropertyControls", "ControlType", "addFonts", "NavigationNavLogoFonts", "getFonts", "UAngPKjwE_default", "IconsMobileIconsFonts", "WF8PmVlh7_default", "NavigationNavButtonFonts", "B5uA9JEYc_default", "NoiseFonts", "Noise", "NavigationMobileMenuFloatFonts", "Tx9Pd72uY_default", "NavigationMobileMenuFloatControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "framerDiscount", "height", "id", "mobileDefaultHome", "shareYourIdea", "width", "props", "_humanReadableEnumMap_mobileDefaultHome", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "SAjPVTQ4U", "eZvNKEAFk", "cij1YChaR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "XKaY3MrGu1lkcy1b", "args", "XKaY3MrGu1ed78vv", "XKaY3MrGux2vyxx", "XKaY3MrGuzso2bg", "jUBF5uVVv1a1ok8l", "jUBF5uVVv1lax80e", "Gbwu5Uquj1a1ok8l", "KkcvI2rPh1lax80e", "ref1", "pe", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerWQYZGGXEJ", "withCSS", "WQYZGGXEJ_default", "addPropertyControls", "ControlType", "addFonts", "init_shims", "fontStore", "fonts", "css", "className"]
}
