{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/rPLOw9eJrwRhQahyaqdj/o9tE78pKsYDZrmDKZmdO/ro7OPezbn.js", "ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js", "ssg:https://framerusercontent.com/modules/TGXD8zzc56bJqR7W2XnE/xifRPfsPpcIp7z2a0pMN/JEUII3jTS.js", "ssg:https://framerusercontent.com/modules/ZYCQinK2Qfis09V8ghSs/6Y6TKblRTt92N9X84GGG/zlVaO_E_e.js", "ssg:https://framerusercontent.com/modules/oNMUgG4cDRBCnZLNaM8F/ACRoVYT4oY5XT3LOSFWX/je5hSNu7b.js", "ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/hAahUT5WhkA90ScusgxD/SVG.js", "ssg:https://framerusercontent.com/modules/tsAm7GxFdOmJnyqSQrVr/8Vv1svVCLv6osxcfRAl5/kDx5JlhX8.js", "ssg:https://framerusercontent.com/modules/aNeGfQvjjd6Ih6OYXFHm/qOiWJQfxnYHCX4nOpHW7/lOx6KV3T2.js"],
  "sourcesContent": ["// Generated by Framer (ff86393)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-gaA9J .framer-styles-preset-1wicq5s:not(.rich-text-wrapper), .framer-gaA9J .framer-styles-preset-1wicq5s.rich-text-wrapper a { --framer-link-current-text-color: #000000; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: rgba(0, 0, 0, 0.5); --framer-link-hover-text-decoration: none; --framer-link-text-color: rgba(0, 0, 0, 0.75); --framer-link-text-decoration: none; }\"];export const className=\"framer-gaA9J\";\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\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{startTransition,useCallback,useEffect,useRef,useState}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}const defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const mergedProps={...defaultProps,...props};const{outputType,timeFormat,showYear,showMonth,showWeekday,// showHours,\nshowMinutes,showSeconds,monthFormat,color,font,tabularFont}=mergedProps;const localCode=useLocaleCode();const getTextContent=useCallback(()=>formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,// showHours,\n    showMinutes,showSeconds},timeFormat,monthFormat,localCode),[localCode,monthFormat,outputType,showMinutes,showMonth,showSeconds,showWeekday,showYear,timeFormat]);const timeoutRef=useRef()// FIXME: With React 19, we can remove this and return a cleanup from the ref callback\n;const updateCountdown=useCallback(node=>{if(node===null){// React calls w/ `null` on unmount or if the ref function changes.\nclearTimeout(timeoutRef.current);return;}let prev;const tick=()=>{const date=new Date;const next=new Date().setSeconds(date.getSeconds()+1,0)-+date;timeoutRef.current=setTimeout(tick,next);const textContent=getTextContent();if(prev!==textContent){node.textContent=textContent;prev=textContent;}};tick();},[getTextContent]);const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;useEffect(()=>{startTransition(()=>setIsVisible(true));// Don\u2019t want real time on Canvas\nif(isCanvas)return;},[isCanvas]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},ref:isCanvas?undefined:updateCountdown,children:getTextContent()});}Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicWidth\":\"140\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "// Generated by Framer (6f76210)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-Nyo54 .framer-styles-preset-1y9xooo:not(.rich-text-wrapper), .framer-Nyo54 .framer-styles-preset-1y9xooo.rich-text-wrapper a { --framer-link-current-text-color: var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, #666666) /* {\"name\":\"Dark/40\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-3780689f-8242-4039-a78f-f2f587967c29, #050505) /* {\"name\":\"Dark/2\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, #666666); --framer-link-text-decoration: none; }'];export const className=\"framer-Nyo54\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3266cfb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"IUR0_oZ04\",\"zWKokBeau\",\"XQKdq5gH1\",\"syz8WOBBw\"];const serializationHash=\"framer-xQrEK\";const variantClassNames={IUR0_oZ04:\"framer-v-4adst3\",syz8WOBBw:\"framer-v-3jssr5\",XQKdq5gH1:\"framer-v-i6706b\",zWKokBeau:\"framer-v-13xiv0m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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 - Contact\":\"XQKdq5gH1\",\"Desktop - Footer\":\"IUR0_oZ04\",\"Mobile - Contact\":\"syz8WOBBw\",\"Mobile - Footer\":\"zWKokBeau\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"IUR0_oZ04\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"IUR0_oZ04\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"XQKdq5gH1\",\"syz8WOBBw\"].includes(baseVariant))return true;return false;};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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-4adst3\",className,classNames),\"data-framer-name\":\"Desktop - Footer\",layoutDependency:layoutDependency,layoutId:\"IUR0_oZ04\",ref:refBinding,style:{...style},...addPropertyOverrides({syz8WOBBw:{\"data-framer-name\":\"Mobile - Contact\"},XQKdq5gH1:{\"data-framer-name\":\"Desktop - Contact\"},zWKokBeau:{\"data-framer-name\":\"Mobile - Footer\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6piarn\",\"data-framer-name\":\"Contact Us\",layoutDependency:layoutDependency,layoutId:\"xlVTgEXi8\",children:[isDisplayed()&&/*#__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-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3780689f-8242-4039-a78f-f2f587967c29, rgb(5, 5, 5)))\"},children:\"CONTACT US\"})}),className:\"framer-1lgah0t\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"UsL2lGcdP\",style:{\"--extracted-r6o4lv\":\"var(--token-3780689f-8242-4039-a78f-f2f587967c29, rgb(5, 5, 5))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102)))\"},children:\"Ruffenbrunnerstra\\xdfe 13\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102)))\"},children:\"A-2352 Gumpoldskirchen\"})]}),className:\"framer-1hp9okt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"q0TaeBXvv\",style:{\"--extracted-2gxw0f\":\"var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102))\",\"--extracted-r6o4lv\":\"var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({syz8WOBBw:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102)))\"},children:\"Ruffenbrunnerstra\\xdfe 13\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102)))\"},children:\"A-2352 Gumpoldskirchen\"})]})},zWKokBeau:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102)))\"},children:\"Ruffenbrunnerstra\\xdfe 13\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102)))\"},children:\"A-2352 Gumpoldskirchen\"})]})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m609pg\",\"data-framer-name\":\"Let's Connect\",layoutDependency:layoutDependency,layoutId:\"VyPQzajU5\",children:[isDisplayed()&&/*#__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-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3780689f-8242-4039-a78f-f2f587967c29, rgb(5, 5, 5)))\"},children:\"LET'S CONNECT\"})}),className:\"framer-18x0fka\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"A0PDfd3k_\",style:{\"--extracted-r6o4lv\":\"var(--token-3780689f-8242-4039-a78f-f2f587967c29, rgb(5, 5, 5))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sl5t5o\",\"data-framer-name\":\"Email and Phone\",layoutDependency:layoutDependency,layoutId:\"wp1hBFPIX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102)))\"},children:\"office@wienermarketing.com\"})}),className:\"framer-9qixjx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TEg938mSk\",style:{\"--extracted-r6o4lv\":\"var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102)))\"},children:\"+43 677 61 30 4001\"})}),className:\"framer-1o25mm0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qkQxbQqyh\",style:{\"--extracted-r6o4lv\":\"var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xQrEK.framer-9g86m2, .framer-xQrEK .framer-9g86m2 { display: block; }\",\".framer-xQrEK.framer-4adst3 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 360px; }\",\".framer-xQrEK .framer-6piarn, .framer-xQrEK .framer-1m609pg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xQrEK .framer-1lgah0t, .framer-xQrEK .framer-18x0fka, .framer-xQrEK .framer-9qixjx, .framer-xQrEK .framer-1o25mm0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-xQrEK .framer-1hp9okt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 180px; word-break: break-word; word-wrap: break-word; }\",\".framer-xQrEK .framer-sl5t5o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xQrEK.framer-v-13xiv0m.framer-4adst3, .framer-xQrEK.framer-v-13xiv0m .framer-6piarn, .framer-xQrEK.framer-v-13xiv0m .framer-sl5t5o, .framer-xQrEK.framer-v-3jssr5 .framer-sl5t5o { align-content: center; align-items: center; }\",\".framer-xQrEK.framer-v-i6706b.framer-4adst3 { gap: 48px; }\",\".framer-xQrEK.framer-v-i6706b .framer-6piarn { order: 0; }\",\".framer-xQrEK.framer-v-i6706b .framer-1m609pg { order: 1; }\",\".framer-xQrEK.framer-v-3jssr5.framer-4adst3 { align-content: center; align-items: center; gap: 48px; }\",\".framer-xQrEK.framer-v-3jssr5 .framer-6piarn { align-content: center; align-items: center; order: 0; }\",\".framer-xQrEK.framer-v-3jssr5 .framer-1m609pg { align-content: center; align-items: center; order: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 103\n * @framerIntrinsicWidth 360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zWKokBeau\":{\"layout\":[\"fixed\",\"auto\"]},\"XQKdq5gH1\":{\"layout\":[\"fixed\",\"auto\"]},\"syz8WOBBw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerzlVaO_E_e=withCSS(Component,css,\"framer-xQrEK\");export default FramerzlVaO_E_e;FramerzlVaO_E_e.displayName=\"Contact Details\";FramerzlVaO_E_e.defaultProps={height:103,width:360};addPropertyControls(FramerzlVaO_E_e,{variant:{options:[\"IUR0_oZ04\",\"zWKokBeau\",\"XQKdq5gH1\",\"syz8WOBBw\"],optionTitles:[\"Desktop - Footer\",\"Mobile - Footer\",\"Desktop - Contact\",\"Mobile - Contact\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerzlVaO_E_e,[{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/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\"},{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzlVaO_E_e\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"103\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"360\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zWKokBeau\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XQKdq5gH1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"syz8WOBBw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zlVaO_E_e.map", "// Generated by Framer (3266cfb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/TGXD8zzc56bJqR7W2XnE/xifRPfsPpcIp7z2a0pMN/JEUII3jTS.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/rPLOw9eJrwRhQahyaqdj/o9tE78pKsYDZrmDKZmdO/ro7OPezbn.js\";import ContactDetails from\"https://framerusercontent.com/modules/ZYCQinK2Qfis09V8ghSs/6Y6TKblRTt92N9X84GGG/zlVaO_E_e.js\";const ContactDetailsFonts=getFonts(ContactDetails);const TimeDateFonts=getFonts(TimeDate);const cycleOrder=[\"da_OhErsM\",\"ZOOL8GbRN\",\"nMLZLinBZ\"];const serializationHash=\"framer-VjeMw\";const variantClassNames={da_OhErsM:\"framer-v-yxvwa6\",nMLZLinBZ:\"framer-v-191seqe\",ZOOL8GbRN:\"framer-v-o3qz7l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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:\"da_OhErsM\",Phone:\"nMLZLinBZ\",Tablet:\"ZOOL8GbRN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"da_OhErsM\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"da_OhErsM\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"nMLZLinBZ\")return false;return true;};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-yxvwa6\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"da_OhErsM\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-f5a7c943-8b36-46e3-a5c4-ec7830a70866, rgb(250, 250, 250))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-ddedeadf-0063-4ee2-89da-9c0d94a97206, rgb(245, 245, 245))\",...style},...addPropertyOverrides({nMLZLinBZ:{\"data-framer-name\":\"Phone\"},ZOOL8GbRN:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uz5l4v\",layoutDependency:layoutDependency,layoutId:\"ItNCtiU28\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ygy1un\",layoutDependency:layoutDependency,layoutId:\"h0YtF0SeS\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JXgBhjARX\"},motionChild:true,nodeId:\"VdC4N7fpT\",scopeId:\"je5hSNu7b\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-4lr56l framer-xjmrzy\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"VdC4N7fpT\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Wiener Marketing\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+15+0+0+0+13+0+0+0),pixelHeight:581,pixelWidth:1522,sizes:\"205px\",src:\"https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg\",srcSet:\"https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg 1522w\"},className:\"framer-h6wujy\",layoutDependency:layoutDependency,layoutId:\"NOUNlqhtt\",...addPropertyOverrides({nMLZLinBZ:{background:{alt:\"Wiener Marketing\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+0+0+0+0+0+0+0),pixelHeight:581,pixelWidth:1522,sizes:\"205px\",src:\"https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg\",srcSet:\"https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg 1522w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 24px) / 3, 50px)`,y:(componentViewport?.y||0)+15+0+0+0+13+115,...addPropertyOverrides({nMLZLinBZ:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1200px)`,y:(componentViewport?.y||0)+48+0+0+0+0+115},ZOOL8GbRN:{width:\"381px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x96kxm-container\",layoutDependency:layoutDependency,layoutId:\"CGZ4Y0IuN-container\",nodeId:\"CGZ4Y0IuN\",rendersWithMotion:true,scopeId:\"je5hSNu7b\",children:/*#__PURE__*/_jsx(ContactDetails,{height:\"100%\",id:\"CGZ4Y0IuN\",layoutId:\"CGZ4Y0IuN\",style:{width:\"100%\"},variant:\"IUR0_oZ04\",width:\"100%\",...addPropertyOverrides({nMLZLinBZ:{variant:\"zWKokBeau\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d9jl32\",layoutDependency:layoutDependency,layoutId:\"IVmTbiYbP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1whkund\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"irJjJI3yS\",children:[/*#__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-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3780689f-8242-4039-a78f-f2f587967c29, rgb(5, 5, 5)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"d6WOQM9iA\"},motionChild:true,nodeId:\"ekJHoma4l\",openInNewTab:false,scopeId:\"je5hSNu7b\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Services\"})})})}),className:\"framer-d65pww\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ekJHoma4l\",style:{\"--extracted-r6o4lv\":\"var(--token-3780689f-8242-4039-a78f-f2f587967c29, rgb(5, 5, 5))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nMLZLinBZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3780689f-8242-4039-a78f-f2f587967c29, rgb(5, 5, 5)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"d6WOQM9iA\"},motionChild:true,nodeId:\"ekJHoma4l\",openInNewTab:false,scopeId:\"je5hSNu7b\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Services\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v67648\",layoutDependency:layoutDependency,layoutId:\"pIblTOJzT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rufLDlDwN\"},motionChild:true,nodeId:\"I2MuQJiYz\",openInNewTab:false,scopeId:\"je5hSNu7b\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y9xooo\",\"data-styles-preset\":\"JEUII3jTS\",children:\"Google Ads\"})})})}),className:\"framer-1ychis9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I2MuQJiYz\",style:{\"--extracted-r6o4lv\":\"var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aATGNVKuP\"},motionChild:true,nodeId:\"Hl4QFWVdS\",openInNewTab:false,scopeId:\"je5hSNu7b\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y9xooo\",\"data-styles-preset\":\"JEUII3jTS\",children:\"Social Media Ads\"})})})}),className:\"framer-8yog5q\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Hl4QFWVdS\",style:{\"--extracted-r6o4lv\":\"var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yiov25\",\"data-framer-name\":\"Social\",layoutDependency:layoutDependency,layoutId:\"eTRJVKp9V\",children:[/*#__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-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3780689f-8242-4039-a78f-f2f587967c29, rgb(5, 5, 5)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lzdxQIEDK\"},motionChild:true,nodeId:\"jMbFQUVSx\",openInNewTab:false,scopeId:\"je5hSNu7b\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Impressum\"})})})}),className:\"framer-3iguo9\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"jMbFQUVSx\",style:{\"--extracted-r6o4lv\":\"var(--token-3780689f-8242-4039-a78f-f2f587967c29, rgb(5, 5, 5))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rwp3uq\",layoutDependency:layoutDependency,layoutId:\"PWhvM0w9q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dG2TERzvV\"},motionChild:true,nodeId:\"qIoRBlj8d\",openInNewTab:false,scopeId:\"je5hSNu7b\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y9xooo\",\"data-styles-preset\":\"JEUII3jTS\",children:\"Datenschutz\"})})})}),className:\"framer-vroukc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qIoRBlj8d\",style:{\"--extracted-r6o4lv\":\"var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LcQ8gNVp2\"},motionChild:true,nodeId:\"yTfWUxNaK\",openInNewTab:false,scopeId:\"je5hSNu7b\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y9xooo\",\"data-styles-preset\":\"JEUII3jTS\",children:\"Kontakt\"})})})}),className:\"framer-1st3xm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yTfWUxNaK\",style:{\"--extracted-r6o4lv\":\"var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GkkhOoLsP\"},motionChild:true,nodeId:\"drACUjmVZ\",openInNewTab:false,scopeId:\"je5hSNu7b\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y9xooo\",\"data-styles-preset\":\"JEUII3jTS\",children:\"Blog\"})})})}),className:\"framer-kco5mh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"drACUjmVZ\",style:{\"--extracted-r6o4lv\":\"var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/wienermarketing/\",motionChild:true,nodeId:\"zitOzRn2p\",scopeId:\"je5hSNu7b\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Instragram\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+15+0+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 24px) / 3, 50px)`,src:\"https://framerusercontent.com/images/j5MXBoiRlRHrCJMhMhcqzC5YJ0.png\",srcSet:\"https://framerusercontent.com/images/j5MXBoiRlRHrCJMhMhcqzC5YJ0.png?scale-down-to=512 512w,https://framerusercontent.com/images/j5MXBoiRlRHrCJMhMhcqzC5YJ0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j5MXBoiRlRHrCJMhMhcqzC5YJ0.png 1920w\"},className:\"framer-jtymos framer-xjmrzy\",layoutDependency:layoutDependency,layoutId:\"zitOzRn2p\",...addPropertyOverrides({nMLZLinBZ:{background:{alt:\"Instragram\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+0+0+242),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"359px\",src:\"https://framerusercontent.com/images/j5MXBoiRlRHrCJMhMhcqzC5YJ0.png\",srcSet:\"https://framerusercontent.com/images/j5MXBoiRlRHrCJMhMhcqzC5YJ0.png?scale-down-to=512 512w,https://framerusercontent.com/images/j5MXBoiRlRHrCJMhMhcqzC5YJ0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j5MXBoiRlRHrCJMhMhcqzC5YJ0.png 1920w\"}},ZOOL8GbRN:{background:{alt:\"Instragram\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+15+0+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 24px) / 3, 50px)`,src:\"https://framerusercontent.com/images/j5MXBoiRlRHrCJMhMhcqzC5YJ0.png\",srcSet:\"https://framerusercontent.com/images/j5MXBoiRlRHrCJMhMhcqzC5YJ0.png?scale-down-to=512 512w,https://framerusercontent.com/images/j5MXBoiRlRHrCJMhMhcqzC5YJ0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j5MXBoiRlRHrCJMhMhcqzC5YJ0.png 1920w\"}}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7ooxy6\",\"data-framer-name\":\"App\",layoutDependency:layoutDependency,layoutId:\"o9WR2n4Xy\",style:{backgroundColor:\"var(--token-f5a7c943-8b36-46e3-a5c4-ec7830a70866, rgb(250, 250, 250))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14edp47\",layoutDependency:layoutDependency,layoutId:\"AeaO3bx63\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fgg9a6\",\"data-framer-name\":\"left Stack\",layoutDependency:layoutDependency,layoutId:\"QOTMV82Pe\",children:[/*#__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-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102)))\"},children:\"\\xa9\"})}),className:\"framer-tbi0rp\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"VudRMwDcG\",style:{\"--extracted-r6o4lv\":\"var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sctd1q-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ky7XanPgd-container\",nodeId:\"Ky7XanPgd\",rendersWithMotion:true,scopeId:\"je5hSNu7b\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102))\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"Ky7XanPgd\",layoutId:\"Ky7XanPgd\",monthFormat:\"long\",outputType:\"date\",showMinutes:true,showMonth:false,showSeconds:true,showWeekday:false,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})}),/*#__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-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102)))\"},children:\"Wiener Marketing\"})}),className:\"framer-htae6i\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ATd3bdgtd\",style:{\"--extracted-r6o4lv\":\"var(--token-21a7a83b-9c05-4cf1-b9d4-6e74f10e98cd, rgb(102, 102, 102))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VjeMw.framer-xjmrzy, .framer-VjeMw .framer-xjmrzy { display: block; }\",\".framer-VjeMw.framer-yxvwa6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; padding: 15px 48px 15px 48px; position: relative; width: 1400px; }\",\".framer-VjeMw .framer-1uz5l4v { display: grid; flex: none; gap: 12px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VjeMw .framer-1ygy1un { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: auto; justify-content: flex-start; justify-self: start; overflow: visible; padding: 13px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-VjeMw .framer-4lr56l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 78px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-VjeMw .framer-h6wujy { flex: none; height: 79px; position: relative; width: 205px; z-index: 1; }\",\".framer-VjeMw .framer-x96kxm-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-VjeMw .framer-1d9jl32 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: flex-end; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VjeMw .framer-1whkund, .framer-VjeMw .framer-yiov25 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-VjeMw .framer-d65pww { flex: none; height: 14px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VjeMw .framer-1v67648, .framer-VjeMw .framer-1rwp3uq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VjeMw .framer-1ychis9, .framer-VjeMw .framer-8yog5q, .framer-VjeMw .framer-3iguo9, .framer-VjeMw .framer-vroukc, .framer-VjeMw .framer-1st3xm, .framer-VjeMw .framer-kco5mh, .framer-VjeMw .framer-tbi0rp, .framer-VjeMw .framer-htae6i { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-VjeMw .framer-jtymos { align-self: start; flex: none; height: 40px; justify-self: center; position: relative; text-decoration: none; width: 100%; }\",\".framer-VjeMw .framer-7ooxy6 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: auto; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VjeMw .framer-14edp47 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 14px; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VjeMw .framer-1fgg9a6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-VjeMw .framer-sctd1q-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-VjeMw.framer-v-o3qz7l.framer-yxvwa6 { padding: 15px 24px 15px 24px; width: 810px; }\",\".framer-VjeMw.framer-v-o3qz7l .framer-1ygy1un, .framer-VjeMw.framer-v-191seqe .framer-vroukc { order: 0; }\",\".framer-VjeMw.framer-v-o3qz7l .framer-x96kxm-container { width: 381px; }\",\".framer-VjeMw.framer-v-o3qz7l .framer-1d9jl32 { gap: 12px; order: 1; }\",\".framer-VjeMw.framer-v-o3qz7l .framer-jtymos, .framer-VjeMw.framer-v-191seqe .framer-kco5mh { order: 2; }\",\".framer-VjeMw.framer-v-o3qz7l .framer-7ooxy6 { order: 3; }\",\".framer-VjeMw.framer-v-191seqe.framer-yxvwa6 { gap: 48px; padding: 48px 16px 48px 16px; width: 390px; }\",\".framer-VjeMw.framer-v-191seqe .framer-1uz5l4v { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; justify-content: flex-start; }\",\".framer-VjeMw.framer-v-191seqe .framer-1ygy1un { align-content: center; align-items: center; align-self: unset; height: min-content; order: 0; padding: 0px; }\",\".framer-VjeMw.framer-v-191seqe .framer-1d9jl32 { align-self: unset; flex-direction: column; height: min-content; order: 2; }\",\".framer-VjeMw.framer-v-191seqe .framer-1whkund { align-content: center; align-items: center; flex: none; gap: 24px; order: 0; width: 100%; }\",\".framer-VjeMw.framer-v-191seqe .framer-1v67648, .framer-VjeMw.framer-v-191seqe .framer-1rwp3uq { align-content: center; align-items: center; }\",\".framer-VjeMw.framer-v-191seqe .framer-yiov25 { align-content: center; align-items: center; flex: none; gap: 24px; order: 1; width: 100%; }\",\".framer-VjeMw.framer-v-191seqe .framer-1st3xm { order: 1; }\",\".framer-VjeMw.framer-v-191seqe .framer-jtymos { align-self: unset; order: 1; width: 359px; }\",\".framer-VjeMw.framer-v-191seqe .framer-14edp47 { flex-direction: column; gap: 24px; height: min-content; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-VjeMw[data-border=\"true\"]::after, .framer-VjeMw [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 312\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZOOL8GbRN\":{\"layout\":[\"fixed\",\"auto\"]},\"nMLZLinBZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerje5hSNu7b=withCSS(Component,css,\"framer-VjeMw\");export default Framerje5hSNu7b;Framerje5hSNu7b.displayName=\"Footer Wiener Marketing\";Framerje5hSNu7b.defaultProps={height:312,width:1400};addPropertyControls(Framerje5hSNu7b,{variant:{options:[\"da_OhErsM\",\"ZOOL8GbRN\",\"nMLZLinBZ\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerje5hSNu7b,[{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/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\"},{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\"}]},...ContactDetailsFonts,...TimeDateFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerje5hSNu7b\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"312\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1400\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZOOL8GbRN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nMLZLinBZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as e}from\"react/jsx-runtime\";import{useState as t,useEffect as o}from\"react\";import{addPropertyControls as i,ControlType as l}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function s(i){let[l,s]=t(null);o(()=>{let e=i.customSvgCode;r(e);},[i.customSvgCode,i.customColor,i.customStrokeWidth,i.lineCap,i.lineJoin]);let r=e=>{let t=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']],o=e.includes('stroke=\"'),l=e.includes('stroke-width=\"'),r=e.includes('stroke-linecap=\"'),n=e.includes('stroke-linejoin=\"');if(e.includes(\"<circle\")){// Find the circle element and update its fill attribute\nlet o=/<circle[^>]*fill=\"([^\"]*)\"/,l=e.match(o);if(l){// Update the fill attribute with the custom color\nlet t=l[0].replace(l[1],i.customColor);e=e.replace(o,t);}else // If there is no fill attribute, add it with the custom color\nt.push([/<circle/g,`<circle fill=\"${i.customColor}\"`]);}o?(r?t.push([/<path/g,`<path stroke=\"${i.customColor}\" stroke-linecap=\"${i.lineCap}\"`]):t.push([/<path/g,`<path stroke=\"${i.customColor}\"`]),l&&t.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${i.customStrokeWidth}\"`])):t.push([/<path/g,`<path fill=\"${i.customColor}\"`]),e.includes('overflow=\"')?t.push([/overflow=\"[^\"]*\"/,'overflow=\"visible\"']):t.push([/<svg/,'<svg overflow=\"visible\"']),n?t.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${i.lineJoin}\"`]):t.push([/<path/g,`<path stroke-linejoin=\"${i.lineJoin}\"`]),t.forEach(([t,o])=>{e=e.replace(t,o);}),s(e);},n={padding:`${i.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};return /*#__PURE__*/e(\"div\",{dangerouslySetInnerHTML:{__html:l},style:n});}s.defaultProps={customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M11.9996 4.58607L19.414 12.0001L22.9139 8.50015L15.4997 1.08594L11.9996 4.58607Z\" fill=\"black\"/> <path d=\"M18.403 13.8175L10.1822 5.59708L5.63438 7.25082L3.08203 19.5021L8.15387 14.4302C8.0427 14.1472 7.98166 13.839 7.98166 13.5166C7.98166 12.1359 9.10095 11.0166 10.4817 11.0166C11.8624 11.0166 12.9817 12.1359 12.9817 13.5166C12.9817 14.8973 11.8624 16.0166 10.4817 16.0166C10.1592 16.0166 9.85109 15.9556 9.56811 15.8444L4.49378 20.9188L16.7491 18.3656L18.403 13.8175Z\" fill=\"black\"/> </svg>',customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\"},i(s,{customSvgCode:{type:l.String,title:\"SVG Code\",displayTextArea:!1},customColor:{type:l.Color,title:\"Color\",defaultValue:\"#ffffff\"},customStrokeWidth:{type:l.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:!0,hidden:e=>!e.customSvgCode.includes('stroke=\"')},customPadding:{type:l.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:!0},lineCap:{type:l.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:e=>!e.customSvgCode.includes('stroke=\"')},lineJoin:{type:l.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:e=>!e.customSvgCode.includes('stroke=\"')}});export default s;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map", "// Generated by Framer (ae50a0d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/hAahUT5WhkA90ScusgxD/SVG.js\";const SVGFonts=getFonts(SVG);const enabledGestures={udIBjp1OB:{hover:true}};const serializationHash=\"framer-v2f94\";const variantClassNames={udIBjp1OB:\"framer-v-1k8jz7l\"};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:800,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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 getProps=({defaultCircle,defaultFill,defaultIcon,defaultText,height,hoverCircle,hoverFill,hoverIcon,hoverText,icon01,icon02,id,label,width,...props})=>{return{...props,AL6IB9otP:hoverFill??props.AL6IB9otP??\"var(--token-a042497d-749d-4d03-8d3a-78930210d354, rgb(0, 128, 255))\",fTULNZYxz:defaultIcon??props.fTULNZYxz??\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",g0e9eEWSg:defaultText??props.g0e9eEWSg??\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",k3JhaMy5_:icon01??props.k3JhaMy5_??'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.5 5L20.5 12L13.5 19M3.5 12L20 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>',Lf8afaZg_:hoverCircle??props.Lf8afaZg_??\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",Lzyfez8Rw:defaultCircle??props.Lzyfez8Rw??\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",mKVpWCoSL:hoverText??props.mKVpWCoSL??\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",Oon8L041D:defaultFill??props.Oon8L041D??\"var(--token-a042497d-749d-4d03-8d3a-78930210d354, rgb(0, 128, 255))\",rZYR6tqXt:hoverIcon??props.rZYR6tqXt??\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",VArIlTNTt:label??props.VArIlTNTt??\"Learn more\",wbc_aIg1P:icon02??props.wbc_aIg1P??'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.5 5L20.5 12L13.5 19M3.5 12L20 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>'};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,VArIlTNTt,Oon8L041D,AL6IB9otP,Lzyfez8Rw,Lf8afaZg_,g0e9eEWSg,mKVpWCoSL,fTULNZYxz,rZYR6tqXt,k3JhaMy5_,wbc_aIg1P,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"udIBjp1OB\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LcQ8gNVp2\"},motionChild:true,nodeId:\"udIBjp1OB\",scopeId:\"kDx5JlhX8\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1k8jz7l\",className,classNames)} framer-aabcoy`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"udIBjp1OB\",ref:refBinding,style:{backgroundColor:Oon8L041D,borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{\"udIBjp1OB-hover\":{backgroundColor:AL6IB9otP}},...addPropertyOverrides({\"udIBjp1OB-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iykmwj\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"YGxn3qlqP\",style:{backgroundColor:Lzyfez8Rw,borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{\"udIBjp1OB-hover\":{backgroundColor:Lf8afaZg_}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oe1i3n\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"x38ClD42r\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-115vnz5-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FmBlPOZKS-container\",nodeId:\"FmBlPOZKS\",rendersWithMotion:true,scopeId:\"kDx5JlhX8\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"udIBjp1OB-hover\":{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{customColor:fTULNZYxz,customPadding:0,customStrokeWidth:2,customSvgCode:k3JhaMy5_,height:\"100%\",id:\"FmBlPOZKS\",layoutId:\"FmBlPOZKS\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"udIBjp1OB-hover\":{customColor:rZYR6tqXt}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ws0nr2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Xk9WoTBN8-container\",nodeId:\"Xk9WoTBN8\",rendersWithMotion:true,scopeId:\"kDx5JlhX8\",children:/*#__PURE__*/_jsx(SVG,{customColor:fTULNZYxz,customPadding:0,customStrokeWidth:2,customSvgCode:wbc_aIg1P,height:\"100%\",id:\"Xk9WoTBN8\",layoutId:\"Xk9WoTBN8\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"udIBjp1OB-hover\":{customColor:rZYR6tqXt}},baseVariant,gestureVariant)})})})]})}),/*#__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-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-g0e9eEWSg-kDx5JlhX8))\"},children:\"Learn more\"})}),className:\"framer-1cftbhd\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"IxQGJAzc0\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-g0e9eEWSg-kDx5JlhX8)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-g0e9eEWSg-kDx5JlhX8\":g0e9eEWSg,\"--variable-reference-mKVpWCoSL-kDx5JlhX8\":mKVpWCoSL},text:VArIlTNTt,variants:{\"udIBjp1OB-hover\":{\"--extracted-r6o4lv\":\"var(--variable-reference-mKVpWCoSL-kDx5JlhX8)\",\"--variable-reference-mKVpWCoSL-kDx5JlhX8\":mKVpWCoSL}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"udIBjp1OB-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-mKVpWCoSL-kDx5JlhX8))\"},children:\"Learn more\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-v2f94.framer-aabcoy, .framer-v2f94 .framer-aabcoy { display: block; }\",\".framer-v2f94.framer-1k8jz7l { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 44px; justify-content: center; overflow: hidden; padding: 0px 58px 0px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-v2f94 .framer-1iykmwj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: flex-end; overflow: hidden; padding: 0px 12px 0px 0px; position: absolute; right: 2px; top: calc(50.00000000000002% - 40px / 2); width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-v2f94 .framer-oe1i3n { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; }\",\".framer-v2f94 .framer-115vnz5-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 50%; position: absolute; top: 50%; width: 16px; }\",\".framer-v2f94 .framer-1ws0nr2-container { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: -16px; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 16px); }\",\".framer-v2f94 .framer-1cftbhd { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-v2f94.framer-1k8jz7l, .framer-v2f94 .framer-1iykmwj { gap: 0px; } .framer-v2f94.framer-1k8jz7l > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-v2f94.framer-1k8jz7l > :first-child, .framer-v2f94 .framer-1iykmwj > :first-child { margin-left: 0px; } .framer-v2f94.framer-1k8jz7l > :last-child, .framer-v2f94 .framer-1iykmwj > :last-child { margin-right: 0px; } .framer-v2f94 .framer-1iykmwj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-v2f94.framer-v-1k8jz7l.hover .framer-1iykmwj { left: 2px; width: unset; }\",\".framer-v2f94.framer-v-1k8jz7l.hover .framer-115vnz5-container { bottom: 0px; height: unset; left: unset; right: -16px; top: 0px; width: var(--framer-aspect-ratio-supported, 16px); }\",\".framer-v2f94.framer-v-1k8jz7l.hover .framer-1ws0nr2-container { left: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 166.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"vafEmd3E6\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"VArIlTNTt\":\"label\",\"Oon8L041D\":\"defaultFill\",\"AL6IB9otP\":\"hoverFill\",\"Lzyfez8Rw\":\"defaultCircle\",\"Lf8afaZg_\":\"hoverCircle\",\"g0e9eEWSg\":\"defaultText\",\"mKVpWCoSL\":\"hoverText\",\"fTULNZYxz\":\"defaultIcon\",\"rZYR6tqXt\":\"hoverIcon\",\"k3JhaMy5_\":\"icon01\",\"wbc_aIg1P\":\"icon02\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkDx5JlhX8=withCSS(Component,css,\"framer-v2f94\");export default FramerkDx5JlhX8;FramerkDx5JlhX8.displayName=\"Button\";FramerkDx5JlhX8.defaultProps={height:44,width:166.5};addPropertyControls(FramerkDx5JlhX8,{VArIlTNTt:{defaultValue:\"Learn more\",displayTextArea:false,title:\"Label\",type:ControlType.String},Oon8L041D:{defaultValue:'var(--token-a042497d-749d-4d03-8d3a-78930210d354, rgb(0, 128, 255)) /* {\"name\":\"Accent\"} */',title:\"Default Fill\",type:ControlType.Color},AL6IB9otP:{defaultValue:'var(--token-a042497d-749d-4d03-8d3a-78930210d354, rgb(0, 128, 255)) /* {\"name\":\"Accent\"} */',title:\"Hover Fill\",type:ControlType.Color},Lzyfez8Rw:{defaultValue:'var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5)) /* {\"name\":\"1\"} */',title:\"Default Circle\",type:ControlType.Color},Lf8afaZg_:{defaultValue:'var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5)) /* {\"name\":\"1\"} */',title:\"Hover Circle\",type:ControlType.Color},g0e9eEWSg:{defaultValue:'var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)) /* {\"name\":\"12\"} */',title:\"Default Text\",type:ControlType.Color},mKVpWCoSL:{defaultValue:'var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)) /* {\"name\":\"12\"} */',title:\"Hover Text\",type:ControlType.Color},fTULNZYxz:{defaultValue:'var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)) /* {\"name\":\"12\"} */',title:\"Default Icon\",type:ControlType.Color},rZYR6tqXt:{defaultValue:'var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)) /* {\"name\":\"12\"} */',title:\"Hover Icon\",type:ControlType.Color},k3JhaMy5_:{defaultValue:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.5 5L20.5 12L13.5 19M3.5 12L20 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>',displayTextArea:false,title:\"Icon 01\",type:ControlType.String},wbc_aIg1P:{defaultValue:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.5 5L20.5 12L13.5 19M3.5 12L20 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>',displayTextArea:false,title:\"Icon 02\",type:ControlType.String}});addFonts(FramerkDx5JlhX8,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkDx5JlhX8\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"44\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"166.5\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"VArIlTNTt\\\":\\\"label\\\",\\\"Oon8L041D\\\":\\\"defaultFill\\\",\\\"AL6IB9otP\\\":\\\"hoverFill\\\",\\\"Lzyfez8Rw\\\":\\\"defaultCircle\\\",\\\"Lf8afaZg_\\\":\\\"hoverCircle\\\",\\\"g0e9eEWSg\\\":\\\"defaultText\\\",\\\"mKVpWCoSL\\\":\\\"hoverText\\\",\\\"fTULNZYxz\\\":\\\"defaultIcon\\\",\\\"rZYR6tqXt\\\":\\\"hoverIcon\\\",\\\"k3JhaMy5_\\\":\\\"icon01\\\",\\\"wbc_aIg1P\\\":\\\"icon02\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"vafEmd3E6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kDx5JlhX8.map", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Button from\"https://framerusercontent.com/modules/tsAm7GxFdOmJnyqSQrVr/8Vv1svVCLv6osxcfRAl5/kDx5JlhX8.js\";const ButtonFonts=getFonts(Button);const cycleOrder=[\"KBuAz8mzN\",\"aDLeekPtN\",\"YTRkoh9QR\"];const serializationHash=\"framer-Sy4Bv\";const variantClassNames={aDLeekPtN:\"framer-v-163vfzt\",KBuAz8mzN:\"framer-v-ye47p8\",YTRkoh9QR:\"framer-v-9jn3eu\"};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 transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};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:\"KBuAz8mzN\",Phone:\"YTRkoh9QR\",Tablet:\"aDLeekPtN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KBuAz8mzN\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KBuAz8mzN\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"YTRkoh9QR\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"aDLeekPtN\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ye47p8\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"KBuAz8mzN\",ref:refBinding,style:{...style},...addPropertyOverrides({aDLeekPtN:{\"data-framer-name\":\"Tablet\"},YTRkoh9QR:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n203ay\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"afiYgYGBi\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k5wr96\",layoutDependency:layoutDependency,layoutId:\"Oj4G947T9\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JXgBhjARX\"},motionChild:true,nodeId:\"H0Y84yVzw\",scopeId:\"lOx6KV3T2\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-gu44js framer-1tckpur\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"H0Y84yVzw\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||119)-0-119)/2)+0+15+0+0+0),pixelHeight:581,pixelWidth:1522,sizes:\"207px\",src:\"https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg\",srcSet:\"https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg 1522w\"},className:\"framer-hmoil6\",layoutDependency:layoutDependency,layoutId:\"sgu63TJcb\",whileHover:animation,...addPropertyOverrides({aDLeekPtN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||100)-0-119)/2)+0+15+0+0+0),pixelHeight:581,pixelWidth:1522,sizes:\"207px\",src:\"https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg\",srcSet:\"https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg 1522w\"}},YTRkoh9QR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-103)/2)+0+12+0+0+0),pixelHeight:581,pixelWidth:1522,sizes:\"176px\",src:\"https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg\",srcSet:\"https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IsFRoWhwwQmkezJjkiQ1FonOiW4.svg 1522w\"}}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o4uwkg\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"bNVwwUxLu\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+(0+((componentViewport?.height||119)-0-119)/2)+0+15+0+22.5,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1g8t0do-container\",layoutDependency:layoutDependency,layoutId:\"wpG9dNDjO-container\",nodeId:\"wpG9dNDjO\",rendersWithMotion:true,scopeId:\"lOx6KV3T2\",children:/*#__PURE__*/_jsx(Button,{AL6IB9otP:\"var(--token-463b7f41-1e13-458e-9747-d7ecbb49dc30, rgb(189, 255, 28))\",fTULNZYxz:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",g0e9eEWSg:\"var(--token-ecf9bf6e-7d03-42d5-9550-9a11c3f0cdc9, rgb(51, 51, 51))\",height:\"100%\",id:\"wpG9dNDjO\",k3JhaMy5_:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.5 5L20.5 12L13.5 19M3.5 12L20 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>',layoutId:\"wpG9dNDjO\",Lf8afaZg_:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",Lzyfez8Rw:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",mKVpWCoSL:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",Oon8L041D:\"var(--token-463b7f41-1e13-458e-9747-d7ecbb49dc30, rgb(189, 255, 28))\",rZYR6tqXt:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",style:{height:\"100%\"},VArIlTNTt:\"Let's Talk\",wbc_aIg1P:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.5 5L20.5 12L13.5 19M3.5 12L20 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>',width:\"100%\"})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Sy4Bv.framer-1tckpur, .framer-Sy4Bv .framer-1tckpur { display: block; }\",\".framer-Sy4Bv.framer-ye47p8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; padding: 0px 25px 0px 25px; position: relative; width: 1400px; }\",\".framer-Sy4Bv .framer-1n203ay { 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; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Sy4Bv .framer-k5wr96 { display: grid; flex: 1 0 0px; gap: 90px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 15px 0px 15px 0px; position: relative; width: 1px; }\",\".framer-Sy4Bv .framer-gu44js { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 89px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 246px; }\",\".framer-Sy4Bv .framer-hmoil6 { flex: none; height: 70px; position: relative; width: 207px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Sy4Bv .framer-1o4uwkg { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 53px; height: 100%; justify-content: flex-end; justify-self: end; overflow: visible; padding: 0px 23px 0px 23px; position: relative; width: 100%; z-index: 1; }\",\".framer-Sy4Bv .framer-1g8t0do-container { flex: none; height: 44px; position: relative; width: auto; }\",\".framer-Sy4Bv.framer-v-163vfzt.framer-ye47p8 { height: 100px; padding: 0px 24px 0px 24px; width: 810px; }\",\".framer-Sy4Bv.framer-v-163vfzt .framer-k5wr96 { gap: 0px; }\",\".framer-Sy4Bv.framer-v-163vfzt .framer-1o4uwkg { justify-self: center; }\",\".framer-Sy4Bv.framer-v-9jn3eu.framer-ye47p8 { padding: 0px 24px 0px 24px; width: 390px; }\",\".framer-Sy4Bv.framer-v-9jn3eu .framer-k5wr96 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: unset; justify-content: space-between; padding: 12px 0px 12px 0px; }\",\".framer-Sy4Bv.framer-v-9jn3eu .framer-gu44js { align-self: unset; height: 79px; order: 0; width: 175px; }\",\".framer-Sy4Bv.framer-v-9jn3eu .framer-hmoil6 { height: 62px; width: 176px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 119\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"aDLeekPtN\":{\"layout\":[\"fixed\",\"fixed\"]},\"YTRkoh9QR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerlOx6KV3T2=withCSS(Component,css,\"framer-Sy4Bv\");export default FramerlOx6KV3T2;FramerlOx6KV3T2.displayName=\"Navigation Bar\";FramerlOx6KV3T2.defaultProps={height:119,width:1400};addPropertyControls(FramerlOx6KV3T2,{variant:{options:[\"KBuAz8mzN\",\"aDLeekPtN\",\"YTRkoh9QR\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerlOx6KV3T2,[{explicitInter:true,fonts:[]},...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlOx6KV3T2\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"119\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aDLeekPtN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YTRkoh9QR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1400\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lOx6KV3T2.map"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "fontStack", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "defaultProps", "Time", "props", "mergedProps", "color", "font", "tabularFont", "useLocaleCode", "getTextContent", "te", "timeoutRef", "pe", "updateCountdown", "node", "prev", "tick", "next", "textContent", "visible", "setIsVisible", "ye", "isCanvas", "RenderTarget", "ue", "Z", "p", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "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", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "RichText2", "css", "FramerzlVaO_E_e", "withCSS", "zlVaO_E_e_default", "addPropertyControls", "ControlType", "addFonts", "ContactDetailsFonts", "getFonts", "zlVaO_E_e_default", "TimeDateFonts", "Time", "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", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "Framerje5hSNu7b", "withCSS", "je5hSNu7b_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "s", "i", "l", "ye", "ue", "e", "r", "t", "o", "n", "p", "addPropertyControls", "ControlType", "SVG_default", "SVGFonts", "getFonts", "SVG_default", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "defaultCircle", "defaultFill", "defaultIcon", "defaultText", "height", "hoverCircle", "hoverFill", "hoverIcon", "hoverText", "icon01", "icon02", "id", "label", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "VArIlTNTt", "Oon8L041D", "AL6IB9otP", "Lzyfez8Rw", "Lf8afaZg_", "g0e9eEWSg", "mKVpWCoSL", "fTULNZYxz", "rZYR6tqXt", "k3JhaMy5_", "wbc_aIg1P", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerkDx5JlhX8", "withCSS", "kDx5JlhX8_default", "addPropertyControls", "ControlType", "addFonts", "ButtonFonts", "getFonts", "kDx5JlhX8_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerlOx6KV3T2", "withCSS", "lOx6KV3T2_default", "addPropertyControls", "ControlType", "addFonts"]
}
