{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/DVYtI0I60utFDv4RKjrL/vS0JVzPfVZXqcrY9nI7B/AutoCopyright_Prod.js", "ssg:https://framerusercontent.com/modules/rofp3mS0LNY15cjhHzia/mqQEarGIByho1rG31aTv/BlurGradient_Prod.js", "ssg:https://framerusercontent.com/modules/mi1UHKWmIPYeYxeUn6mM/H6M4XkP8ibuBy3TZxfc5/Jhv4GxPFm.js", "ssg:https://framerusercontent.com/modules/4TyeNtO4wtkM9JiiOdnR/SNjMZ8GZ8PpQ7C9Pe6Ck/eFNOax2yU.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";const currentYear=new Date().getFullYear();/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-auto\n * @framerSupportedLayoutHeight any-prefer-auto\n */export default function AutoCopyright(props){const{name,statement,dateRange,startYear,font,color,fontSize}=props;const yearDisplay=dateRange?`${startYear}-${currentYear}`:currentYear;let displayText=`\\xa9 ${yearDisplay} ${name.trim()}`;if(statement.trim()){displayText+=` ${statement.trim()}`;}const textStyle={fontSize:`${fontSize}px`,color:color,...font};return /*#__PURE__*/_jsx(\"div\",{style:textStyle,children:displayText});}AutoCopyright.defaultProps={name:\"Your Name\",statement:\"All rights reserved.\",dateRange:false,startYear:currentYear-1,color:\"#999999\",fontSize:14,font:{family:\"Inter\"}};AutoCopyright.displayName=\"Auto Copyright\";addPropertyControls(AutoCopyright,{font:{type:ControlType.Font,title:\"Font\",defaultValue:\"Inter\",controls:\"extended\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#999999\"},dateRange:{type:ControlType.Boolean,title:\"Date Range\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},startYear:{type:ControlType.Number,title:\"Start Year\",min:1e3,max:currentYear-1,defaultValue:currentYear-2,displayStepper:true,hidden:({dateRange})=>!dateRange},name:{type:ControlType.String,title:\"Name\",defaultValue:\"Your Name\"},statement:{type:ControlType.String,title:\"Statement\",defaultValue:\"All rights reserved.\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AutoCopyright\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-auto\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any-prefer-auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AutoCopyright_Prod.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMemo}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 240\n * @framerIntrinsicHeight 240\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */function BlurGradient({blur,borderRadius,direction,transition}){const blurSteps=useMemo(()=>[{blur:`${blur/2/2/2/2/2/2/2}px`,gradient:`rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 37.5%`},{blur:`${blur/2/2/2/2/2/2}px`,gradient:`rgba(0, 0, 0, 0) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 0) 50%`},{blur:`${blur/2/2/2/2/2}px`,gradient:`rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 62.5%`},{blur:`${blur/2/2/2/2}px`,gradient:`rgba(0, 0, 0, 0) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 0) 75%`},{blur:`${blur/2/2/2}px`,gradient:`rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 87.5%`},{blur:`${blur/2/2}px`,gradient:`rgba(0, 0, 0, 0) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 0) 100%`},{blur:`${blur/2}px`,gradient:`rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 1) 100%`},{blur:`${blur}px`,gradient:`rgba(0, 0, 0, 0) 87.5%, rgba(0, 0, 0, 1) 100%`}],[blur]);return /*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,overflow:\"hidden\"},children:blurSteps.map((step,index)=>/*#__PURE__*/_jsx(motion.div,{transition:transition,initial:{backdropFilter:`blur(${step.blur})`},animate:{backdropFilter:`blur(${step.blur})`},style:{opacity:1,position:\"absolute\",inset:0,zIndex:index+1,maskImage:`linear-gradient(${direction}, ${step.gradient})`,WebkitMaskImage:`linear-gradient(${direction}, ${step.gradient})`,borderRadius:borderRadius,pointerEvents:\"none\"}},index))});}BlurGradient.defaultProps={blur:10,borderRadius:\"0px\",direction:\"toBottom\",transition:{duration:.3}};addPropertyControls(BlurGradient,{blur:{title:\"Blur\",type:ControlType.Number,defaultValue:10,min:0,max:100,step:1,description:\"Large blur values (10<) can impact performance.\"},borderRadius:{title:\"Radius\",type:ControlType.BorderRadius,defaultValue:\"0px\",description:\"Blur Gradient component's parent frame can't have border radius (it will break the component). If you need corner radius, apply it directly to the Blur Gradient component here.\"},direction:{title:\"Direction\",type:ControlType.SegmentedEnum,options:[\"to bottom\",\"to top\",\"to left\",\"to right\"],optionTitles:[\"\u2193\",\"\u2191\",\"\u2190\",\"\u2192\"],defaultValue:\"to bottom\"},transition:{type:ControlType.Transition,defaultValue:{duration:.3},title:\"Transition\",description:\"Control how the blur animates when used on hover states or any othe interaction.\\n\\nMore components at [Framer University](https://frameruni.link/cc).\"}});BlurGradient.displayName=\"Blur Gradient\";export default BlurGradient;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BlurGradient\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"240\",\"framerIntrinsicWidth\":\"240\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BlurGradient_Prod.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-vUxRx .framer-styles-preset-7kh6hj:not(.rich-text-wrapper), .framer-vUxRx .framer-styles-preset-7kh6hj.rich-text-wrapper a { --framer-link-current-text-color: var(--token-80aeea00-bc1c-4e76-9301-be43cfc88c4c, #ffffff) /* {\"name\":\"White\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-cefae5f1-1aef-4688-9413-497e69983913, #a1a1aa) /* {\"name\":\"Zinc 400\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-80aeea00-bc1c-4e76-9301-be43cfc88c4c, #ffffff); --framer-link-text-decoration: none; }'];export const className=\"framer-vUxRx\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import AutoCopyright from\"https://framerusercontent.com/modules/DVYtI0I60utFDv4RKjrL/vS0JVzPfVZXqcrY9nI7B/AutoCopyright_Prod.js\";import BlurGradient from\"https://framerusercontent.com/modules/rofp3mS0LNY15cjhHzia/mqQEarGIByho1rG31aTv/BlurGradient_Prod.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/iH2VAwb8deuvrXEBrbkL/uAMgdthTEZ0yIlPUBlPj/etZGMSBih.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/mi1UHKWmIPYeYxeUn6mM/H6M4XkP8ibuBy3TZxfc5/Jhv4GxPFm.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/7JnvjOvEBWJpGEcRZMqZ/rdfLQsbLHGTXKsHv6W3D/RhtV04Rdc.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/fVrnGcJo3YQcR5DTADTW/xdUatY1y0qjPWBNprfQS/ViOOtGXsy.js\";import BookButton from\"https://framerusercontent.com/modules/aK584R22IvJFJNLaMDZn/ikUUtYVbvCRv0E3MPvmK/Ea7rafYPK.js\";const BookButtonFonts=getFonts(BookButton);const AutoCopyrightFonts=getFonts(AutoCopyright);const BlurGradientFonts=getFonts(BlurGradient);const cycleOrder=[\"xZcstfLP4\",\"SO_pkJpu6\"];const serializationHash=\"framer-jqDIr\";const variantClassNames={SO_pkJpu6:\"framer-v-lr0o5\",xZcstfLP4:\"framer-v-bu45yv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"xZcstfLP4\",Phone:\"SO_pkJpu6\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"xZcstfLP4\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xZcstfLP4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-bu45yv\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"xZcstfLP4\",ref:ref??ref1,style:{backgroundColor:\"var(--token-f12c06ad-f4f5-4d6b-a652-39e294716a72, rgb(0, 0, 0))\",...style},...addPropertyOverrides({SO_pkJpu6:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:171.5,intrinsicWidth:703,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-62.5),pixelHeight:149,pixelWidth:775,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7467)`,src:\"https://framerusercontent.com/images/LpwZSiPF6TxkrDn6n30PDjxxx8.svg?lossless=1\",srcSet:\"https://framerusercontent.com/images/LpwZSiPF6TxkrDn6n30PDjxxx8.svg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/LpwZSiPF6TxkrDn6n30PDjxxx8.svg?lossless=1 775w\"},className:\"framer-1gslyid\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"PUdOynm4X\",style:{mask:\"radial-gradient(54% 80.03571428571429% at 50% 17.7%, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0.4) 100%) add\",WebkitMask:\"radial-gradient(54% 80.03571428571429% at 50% 17.7%, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0.4) 100%) add\"},...addPropertyOverrides({SO_pkJpu6:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:171.5,intrinsicWidth:703,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-20),pixelHeight:149,pixelWidth:775,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.95)`,src:\"https://framerusercontent.com/images/LpwZSiPF6TxkrDn6n30PDjxxx8.svg?lossless=1\",srcSet:\"https://framerusercontent.com/images/LpwZSiPF6TxkrDn6n30PDjxxx8.svg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/LpwZSiPF6TxkrDn6n30PDjxxx8.svg?lossless=1 775w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j28nu4\",\"data-framer-name\":\"CTA Stack\",layoutDependency:layoutDependency,layoutId:\"otUVCY1jD\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jqw6r6\",\"data-border\":true,\"data-framer-name\":\"Max Width CTA\",layoutDependency:layoutDependency,layoutId:\"QNvsZ0vjv\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'radial-gradient(45% 50% at 72.89999999999999% 0%, var(--token-33611474-ffd5-429f-8fbb-27307dc0833e, rgb(24, 24, 27)) /* {\"name\":\"Zinc 900\"} */ 0%, var(--token-f6557700-d635-4f83-906a-0c68816d185b, rgb(9, 9, 11)) /* {\"name\":\"Zinc 950\"} */ 100%)',borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},variants:{SO_pkJpu6:{background:'radial-gradient(63% 67% at 74.3% 0%, var(--token-33611474-ffd5-429f-8fbb-27307dc0833e, rgb(24, 24, 27)) /* {\"name\":\"Zinc 900\"} */ 0%, var(--token-f6557700-d635-4f83-906a-0c68816d185b, rgb(9, 9, 11)) /* {\"name\":\"Zinc 950\"} */ 100%)'}},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1.2,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+240+(((componentViewport?.height||724)-332-472.6)/2+0+0)+0+0+0),pixelHeight:50,pixelWidth:50,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/LRFEGuRabRMPzYHwowJY4mbeaQ.png\"},className:\"framer-1xz1pe4\",\"data-framer-name\":\"Tile Image BG\",layoutDependency:layoutDependency,layoutId:\"bIXNQIYA0\",style:{opacity:.04},...addPropertyOverrides({SO_pkJpu6:{background:{alt:\"\",backgroundSize:1.2,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+140+(((componentViewport?.height||719)-204-781.8)/2+0+0)+0+0+0),pixelHeight:50,pixelWidth:50,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/LRFEGuRabRMPzYHwowJY4mbeaQ.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ay3r8h\",\"data-framer-name\":\"Max Width Stack\",layoutDependency:layoutDependency,layoutId:\"DPR0Dn0Uu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vp7yad\",\"data-framer-name\":\"Texts\",layoutDependency:layoutDependency,layoutId:\"QOCNetBrW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1c7gwvv\",\"data-styles-preset\":\"ViOOtGXsy\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-80aeea00-bc1c-4e76-9301-be43cfc88c4c, rgb(255, 255, 255)))\"},children:\"Looking for more answers?\"})}),className:\"framer-g97ht9\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fzgAQ5hmJ\",style:{\"--extracted-a0htzi\":\"var(--token-80aeea00-bc1c-4e76-9301-be43cfc88c4c, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jlt4cx\",\"data-styles-preset\":\"RhtV04Rdc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1d6d89c-03f5-43c6-ab11-1f65714dd808, rgb(212, 212, 216)))\"},children:\"Book a quick 20 min meeting where we discuss if our offer would work for your case\"})}),className:\"framer-k5ywfv\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"G6cMR8ydZ\",style:{\"--extracted-r6o4lv\":\"var(--token-a1d6d89c-03f5-43c6-ab11-1f65714dd808, rgb(212, 212, 216))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,y:(componentViewport?.y||0)+240+(((componentViewport?.height||724)-332-472.6)/2+0+0)+0+0+48+62.5,...addPropertyOverrides({SO_pkJpu6:{width:`min(min(${componentViewport?.width||\"100vw\"} - 24px, 896px) - 44px, 800px)`,y:(componentViewport?.y||0)+140+(((componentViewport?.height||719)-204-781.8)/2+0+0)+0+0+22+0+0+207}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jsvdqu-container\",layoutDependency:layoutDependency,layoutId:\"JzSWHK3wo-container\",children:/*#__PURE__*/_jsx(BookButton,{BauE99f1D:22,DAbwZNPTz:\"Schedule Free Meeting\",height:\"100%\",id:\"JzSWHK3wo\",KVgbxSmkf:\"center\",layoutId:\"JzSWHK3wo\",variant:\"WjPgdSu9C\",width:\"100%\",ZP3Evt5hs:\"https://cal.com/hey-florian/15-min\",...addPropertyOverrides({SO_pkJpu6:{BauE99f1D:12,KVgbxSmkf:\"space-between\",style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gscm66\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"PJXiTDNAd\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-odgoxf\",\"data-framer-name\":\"Max Width Footer\",layoutDependency:layoutDependency,layoutId:\"gBojumYfZ\",style:{backgroundColor:\"rgba(93, 96, 240, 0)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o3cc5j\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"J2zC4XPAU\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ijtefnGXK\"},nodeId:\"hYlTNtgPU\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1tx54ri framer-ejwh9w\",\"data-framer-name\":\"Logo Stack\",layoutDependency:layoutDependency,layoutId:\"hYlTNtgPU\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-c5b94c\",\"data-framer-name\":\"Logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vBkL759fv\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25 17\"><path d=\"M 19.382 0.279 L 19.382 16.721 L 24.719 16.721 L 24.719 0.279 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 0.281 16.721 L 0.281 8.361 L 9.831 0.279 L 9.831 8.361 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 9.831 16.721 L 9.831 8.361 L 19.382 0.279 L 19.382 8.361 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 9.831 16.721 L 9.831 8.361 L 19.382 0.279 L 19.382 8.361 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 9.831 16.721 L 9.831 8.361 L 19.382 0.279 L 19.382 8.361 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11866187882,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Framer Maison\"})}),className:\"framer-5183lo\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"XxyIShBNB\",style:{\"--extracted-r6o4lv\":\"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-1qck63m\",\"data-framer-name\":\"Minor Details\",layoutDependency:layoutDependency,layoutId:\"cZy6n8r89\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ucpf1t-container\",layoutDependency:layoutDependency,layoutId:\"r3aWXLKJ9-container\",children:/*#__PURE__*/_jsx(AutoCopyright,{color:\"var(--token-6b8a560a-ab88-4abf-ac6f-354f230b85e3, rgb(113, 113, 122))\",dateRange:false,font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"r3aWXLKJ9\",layoutId:\"r3aWXLKJ9\",name:\"- Framer Maison\",startYear:2023,statement:\"\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xe1hq0\",\"data-framer-name\":\"Footer Navigation\",layoutDependency:layoutDependency,layoutId:\"Q8zRjmhV0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xqw2ce\",\"data-framer-name\":\"1st Column\",layoutDependency:layoutDependency,layoutId:\"wtGpc2b_q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JRRC5jkVJ\"},nodeId:\"erCIbdc7N\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"Home\"})})})}),className:\"framer-kscd5d\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"erCIbdc7N\",style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"H8AcS5UQh\"},nodeId:\"G02M4olGG\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"Resources\"})})})}),className:\"framer-1q91vf3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"G02M4olGG\",style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"m0VnKnekk\"},nodeId:\"lNdk83vl0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"Legal\"})})})}),className:\"framer-1tdwhkz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lNdk83vl0\",style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o9tn44\",\"data-framer-name\":\"2nd Column\",layoutDependency:layoutDependency,layoutId:\"yd506Sezw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://x.com/florian_btc\",nodeId:\"uQQXq3Pw4\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"X / Twitter\"})})})}),className:\"framer-1fjvpg1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uQQXq3Pw4\",style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/florian-heysen/\",nodeId:\"Mobrt7euO\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"LinkedIn\"})})})}),className:\"framer-1qe9ryf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Mobrt7euO\",style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qnwi3n-container\",layoutDependency:layoutDependency,layoutId:\"w_uwxt9Rg-container\",children:/*#__PURE__*/_jsx(BlurGradient,{blur:10,borderRadius:\"0px\",direction:\"to bottom\",height:\"100%\",id:\"w_uwxt9Rg\",layoutId:\"w_uwxt9Rg\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transition:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\",...addPropertyOverrides({SO_pkJpu6:{blur:20}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jqDIr.framer-ejwh9w, .framer-jqDIr .framer-ejwh9w { display: block; }\",\".framer-jqDIr.framer-bu45yv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 92px; height: min-content; justify-content: center; overflow: hidden; padding: 240px 0px 92px 0px; position: relative; width: 1200px; }\",\".framer-jqDIr .framer-1gslyid { flex: none; height: 218px; left: calc(50.00000000000002% - 74.66666666666667% / 2); overflow: visible; position: absolute; top: -62px; width: 75%; }\",\".framer-jqDIr .framer-j28nu4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-jqDIr .framer-jqw6r6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 896px; overflow: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-jqDIr .framer-1xz1pe4 { bottom: 0px; flex: none; left: 0px; mix-blend-mode: lighten; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-jqDIr .framer-1ay3r8h { 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; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-jqDIr .framer-1vp7yad { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 327px; }\",\".framer-jqDIr .framer-g97ht9, .framer-jqDIr .framer-5183lo, .framer-jqDIr .framer-kscd5d, .framer-jqDIr .framer-1q91vf3, .framer-jqDIr .framer-1tdwhkz, .framer-jqDIr .framer-1fjvpg1, .framer-jqDIr .framer-1qe9ryf { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jqDIr .framer-k5ywfv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jqDIr .framer-jsvdqu-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-jqDIr .framer-gscm66 { 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: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-jqDIr .framer-odgoxf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-jqDIr .framer-1o3cc5j { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-jqDIr .framer-1tx54ri { 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: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-jqDIr .framer-c5b94c { flex: none; height: 17px; position: relative; width: 25px; }\",\".framer-jqDIr .framer-1qck63m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-jqDIr .framer-ucpf1t-container { flex: none; height: auto; position: relative; width: 200px; }\",\".framer-jqDIr .framer-1xe1hq0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-jqDIr .framer-1xqw2ce, .framer-jqDIr .framer-1o9tn44 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-jqDIr .framer-qnwi3n-container { flex: none; height: 170px; left: calc(50.00000000000002% - min(1400px, 100%) / 2); max-width: 1400px; position: absolute; top: 20px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jqDIr.framer-bu45yv, .framer-jqDIr .framer-j28nu4, .framer-jqDIr .framer-jqw6r6, .framer-jqDIr .framer-1vp7yad, .framer-jqDIr .framer-gscm66, .framer-jqDIr .framer-odgoxf, .framer-jqDIr .framer-1tx54ri, .framer-jqDIr .framer-1qck63m, .framer-jqDIr .framer-1xe1hq0, .framer-jqDIr .framer-1xqw2ce, .framer-jqDIr .framer-1o9tn44 { gap: 0px; } .framer-jqDIr.framer-bu45yv > * { margin: 0px; margin-bottom: calc(92px / 2); margin-top: calc(92px / 2); } .framer-jqDIr.framer-bu45yv > :first-child, .framer-jqDIr .framer-j28nu4 > :first-child, .framer-jqDIr .framer-1vp7yad > :first-child, .framer-jqDIr .framer-1xqw2ce > :first-child, .framer-jqDIr .framer-1o9tn44 > :first-child { margin-top: 0px; } .framer-jqDIr.framer-bu45yv > :last-child, .framer-jqDIr .framer-j28nu4 > :last-child, .framer-jqDIr .framer-1vp7yad > :last-child, .framer-jqDIr .framer-1xqw2ce > :last-child, .framer-jqDIr .framer-1o9tn44 > :last-child { margin-bottom: 0px; } .framer-jqDIr .framer-j28nu4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jqDIr .framer-jqw6r6 > *, .framer-jqDIr .framer-gscm66 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jqDIr .framer-jqw6r6 > :first-child, .framer-jqDIr .framer-gscm66 > :first-child, .framer-jqDIr .framer-odgoxf > :first-child, .framer-jqDIr .framer-1tx54ri > :first-child, .framer-jqDIr .framer-1qck63m > :first-child, .framer-jqDIr .framer-1xe1hq0 > :first-child { margin-left: 0px; } .framer-jqDIr .framer-jqw6r6 > :last-child, .framer-jqDIr .framer-gscm66 > :last-child, .framer-jqDIr .framer-odgoxf > :last-child, .framer-jqDIr .framer-1tx54ri > :last-child, .framer-jqDIr .framer-1qck63m > :last-child, .framer-jqDIr .framer-1xe1hq0 > :last-child { margin-right: 0px; } .framer-jqDIr .framer-1vp7yad > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-jqDIr .framer-odgoxf > *, .framer-jqDIr .framer-1xe1hq0 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-jqDIr .framer-1tx54ri > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-jqDIr .framer-1qck63m > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-jqDIr .framer-1xqw2ce > *, .framer-jqDIr .framer-1o9tn44 > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } }\",\".framer-jqDIr.framer-v-lr0o5.framer-bu45yv { gap: 64px; padding: 140px 0px 64px 0px; width: 390px; }\",\".framer-jqDIr.framer-v-lr0o5 .framer-1gslyid { height: 95px; left: calc(50.00000000000002% - 95% / 2); top: -20px; width: 95%; }\",\".framer-jqDIr.framer-v-lr0o5 .framer-j28nu4 { padding: 0px 12px 0px 12px; }\",\".framer-jqDIr.framer-v-lr0o5 .framer-jqw6r6 { flex-direction: column; padding: 22px; }\",\".framer-jqDIr.framer-v-lr0o5 .framer-1ay3r8h { flex: none; flex-direction: column; gap: 24px; justify-content: flex-start; overflow: visible; width: 100%; }\",\".framer-jqDIr.framer-v-lr0o5 .framer-1vp7yad, .framer-jqDIr.framer-v-lr0o5 .framer-jsvdqu-container { width: 100%; }\",\".framer-jqDIr.framer-v-lr0o5 .framer-gscm66 { flex-direction: column; }\",\".framer-jqDIr.framer-v-lr0o5 .framer-odgoxf { flex: none; flex-direction: column; gap: 64px; width: 100%; }\",\".framer-jqDIr.framer-v-lr0o5 .framer-1o3cc5j { align-self: unset; flex: none; gap: 24px; height: min-content; justify-content: flex-start; order: 1; width: 100%; }\",\".framer-jqDIr.framer-v-lr0o5 .framer-1qck63m { justify-content: flex-start; width: 100%; }\",\".framer-jqDIr.framer-v-lr0o5 .framer-1xe1hq0 { flex: none; order: 0; width: 100%; }\",\".framer-jqDIr.framer-v-lr0o5 .framer-qnwi3n-container { height: 98px; left: 0px; right: 0px; width: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jqDIr.framer-v-lr0o5.framer-bu45yv, .framer-jqDIr.framer-v-lr0o5 .framer-jqw6r6, .framer-jqDIr.framer-v-lr0o5 .framer-1ay3r8h, .framer-jqDIr.framer-v-lr0o5 .framer-gscm66, .framer-jqDIr.framer-v-lr0o5 .framer-odgoxf, .framer-jqDIr.framer-v-lr0o5 .framer-1o3cc5j { gap: 0px; } .framer-jqDIr.framer-v-lr0o5.framer-bu45yv > *, .framer-jqDIr.framer-v-lr0o5 .framer-odgoxf > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-jqDIr.framer-v-lr0o5.framer-bu45yv > :first-child, .framer-jqDIr.framer-v-lr0o5 .framer-jqw6r6 > :first-child, .framer-jqDIr.framer-v-lr0o5 .framer-1ay3r8h > :first-child, .framer-jqDIr.framer-v-lr0o5 .framer-gscm66 > :first-child, .framer-jqDIr.framer-v-lr0o5 .framer-odgoxf > :first-child, .framer-jqDIr.framer-v-lr0o5 .framer-1o3cc5j > :first-child { margin-top: 0px; } .framer-jqDIr.framer-v-lr0o5.framer-bu45yv > :last-child, .framer-jqDIr.framer-v-lr0o5 .framer-jqw6r6 > :last-child, .framer-jqDIr.framer-v-lr0o5 .framer-1ay3r8h > :last-child, .framer-jqDIr.framer-v-lr0o5 .framer-gscm66 > :last-child, .framer-jqDIr.framer-v-lr0o5 .framer-odgoxf > :last-child, .framer-jqDIr.framer-v-lr0o5 .framer-1o3cc5j > :last-child { margin-bottom: 0px; } .framer-jqDIr.framer-v-lr0o5 .framer-jqw6r6 > *, .framer-jqDIr.framer-v-lr0o5 .framer-gscm66 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jqDIr.framer-v-lr0o5 .framer-1ay3r8h > *, .framer-jqDIr.framer-v-lr0o5 .framer-1o3cc5j > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-jqDIr[data-border=\"true\"]::after, .framer-jqDIr [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 724\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SO_pkJpu6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereFNOax2yU=withCSS(Component,css,\"framer-jqDIr\");export default FramereFNOax2yU;FramereFNOax2yU.displayName=\"Footer\";FramereFNOax2yU.defaultProps={height:724,width:1200};addPropertyControls(FramereFNOax2yU,{variant:{options:[\"xZcstfLP4\",\"SO_pkJpu6\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramereFNOax2yU,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...BookButtonFonts,...AutoCopyrightFonts,...BlurGradientFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereFNOax2yU\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"724\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SO_pkJpu6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["currentYear", "AutoCopyright", "props", "name", "statement", "dateRange", "startYear", "font", "color", "fontSize", "displayText", "textStyle", "p", "addPropertyControls", "ControlType", "BlurGradient", "blur", "borderRadius", "direction", "transition", "blurSteps", "se", "p", "step", "index", "motion", "addPropertyControls", "ControlType", "BlurGradient_Prod_default", "fontStore", "fonts", "css", "className", "BookButtonFonts", "getFonts", "Ea7rafYPK_default", "AutoCopyrightFonts", "AutoCopyright", "BlurGradientFonts", "BlurGradient_Prod_default", "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", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "Link", "SVG", "css", "FramereFNOax2yU", "withCSS", "eFNOax2yU_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
