{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js", "ssg:https://framerusercontent.com/modules/QTafdAQq0nJFhAkWL56L/3RgfLudLkuTRb97A1YeO/FBmDYbvZO.js", "ssg:https://framerusercontent.com/modules/I9gIf2Mp6EjCUDs5TZzl/YWtR4pddxdBa8x5M6zLZ/rPI36pb29.js", "ssg:https://framerusercontent.com/modules/tyVFsQfrggKvqeEy9YLd/3TXI9V5NvmbC9KMubnQF/Hr62aO5je.js", "ssg:https://framerusercontent.com/modules/b5DbNnGqdfNigaJZBqeQ/RvrH9qpRjZYi0TvZqRQN/j0Ux2ojTs.js", "ssg:https://framerusercontent.com/modules/VlFUe9XPzbNZAphGqp1g/JfBGs1s3DSwCLZ5wYPTT/t5vivhDDa.js", "ssg:https://framerusercontent.com/modules/PlJD3DZmGYVR1RBgr87U/AJiv2nuqVzK2s5vl14PZ/a9S3k0OCq.js", "ssg:https://framerusercontent.com/modules/YLYLEY4x4TJv8zRW573d/L7icgf4vL7Neln7xtKBf/AmjpItVYn.js", "ssg:https://framerusercontent.com/modules/u9BpZbBLH5yfdFxtCvHe/8HQRc6mj6dPuCN6nSOgE/XkxmfqCyL.js", "ssg:https://framerusercontent.com/modules/Fck2aF9VCJlPZTx4oI3C/aqfvIQbidwjJWdel573u/VqBOyzqlI.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{useState,useEffect,useCallback}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 useForceRender(){const[_,set]=useState(0);return useCallback(()=>set(v=>v+1),[]);}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);}}/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const{outputType,fontFamily,fontSize,fontWeight,timeFormat,showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds,monthFormat,color,font,tabularFont,alignment}=props;const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const render=useForceRender();const localCode=useLocaleCode();const textContent=formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds},timeFormat,monthFormat,localCode);useEffect(()=>{setIsVisible(true);// Don\u2019t want real time on Canvas\nif(isCanvas)return;const int=setInterval(()=>{render();});return()=>{clearInterval(int);};},[]);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\"},children:textContent});}Time.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\"};Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:Time.defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:Time.defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:Time.defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: Time.defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.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:Time.defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"140\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "// Generated by Framer (f5febb9)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-9JFTQ .framer-styles-preset-14c9x6l:not(.rich-text-wrapper), .framer-9JFTQ .framer-styles-preset-14c9x6l.rich-text-wrapper a { --framer-link-current-text-color: var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, #ffffff) /* {\"name\":\"Real White\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-97232150-9965-4d9f-ac48-43b76f692da8, #807f7f) /* {\"name\":\"Grey Secondary\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-decoration: underline; }'];export const className=\"framer-9JFTQ\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f5febb9)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-SrCfW .framer-styles-preset-1os7ito:not(.rich-text-wrapper), .framer-SrCfW .framer-styles-preset-1os7ito.rich-text-wrapper a { --framer-link-current-text-color: var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, #ffffff) /* {\"name\":\"Real White\"} */; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-97232150-9965-4d9f-ac48-43b76f692da8, #807f7f) /* {\"name\":\"Grey Secondary\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: none; }'];export const className=\"framer-SrCfW\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2923eb5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/QTafdAQq0nJFhAkWL56L/3RgfLudLkuTRb97A1YeO/FBmDYbvZO.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/I9gIf2Mp6EjCUDs5TZzl/YWtR4pddxdBa8x5M6zLZ/rPI36pb29.js\";const TimeDateFonts=getFonts(TimeDate);const cycleOrder=[\"QU2d6WHGj\",\"AhU8vf5Vm\",\"zMZZUCFSb\"];const serializationHash=\"framer-dU96q\";const variantClassNames={AhU8vf5Vm:\"framer-v-1eb2e3w\",QU2d6WHGj:\"framer-v-yascb\",zMZZUCFSb:\"framer-v-1foy9dg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"QU2d6WHGj\",\"Variant 2\":\"AhU8vf5Vm\",\"Variant 3\":\"zMZZUCFSb\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"QU2d6WHGj\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QU2d6WHGj\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"zMZZUCFSb\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-yascb\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"QU2d6WHGj\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-56686bb9-7971-4603-81a8-80bfff221266, rgb(33, 33, 33))\",...style},...addPropertyOverrides({AhU8vf5Vm:{\"data-framer-name\":\"Variant 2\"},zMZZUCFSb:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10ryc0e\",layoutDependency:layoutDependency,layoutId:\"UCVU6ik1i\",style:{backgroundColor:\"var(--token-56686bb9-7971-4603-81a8-80bfff221266, rgb(33, 33, 33))\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eeyv6q\",\"data-framer-name\":\"Say Hello\",layoutDependency:layoutDependency,layoutId:\"I1188:1281;1187:1299\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255)))\"},children:\"Say Hello\"})}),className:\"framer-jev9jb\",\"data-framer-name\":\"Say Hello\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"I1188:1281;1187:1300\",style:{\"--extracted-r6o4lv\":\"var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({zMZZUCFSb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255)))\"},children:\"Say Hello\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245)))\"},children:[/*#__PURE__*/_jsx(Link,{href:\"mailto: ivan3f@gmail.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14c9x6l\",\"data-styles-preset\":\"FBmDYbvZO\",children:\"Get in touch\u2197\"})}),\" to discuss how I could be a great addition to your team.\"]})}),className:\"framer-icye1y\",\"data-framer-name\":\"to discuss how I could be a great addition to your team.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I1188:1281;1187:1301\",style:{\"--extracted-r6o4lv\":\"var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({zMZZUCFSb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245)))\"},children:[/*#__PURE__*/_jsx(Link,{href:\"mailto: ivan3f@gmail.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14c9x6l\",\"data-styles-preset\":\"FBmDYbvZO\",children:\"Get in touch\u2197\"})}),\"\uFE0E to discuss how I could be a great addition to your team.\"]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r6ce46\",\"data-framer-name\":\"Socials\",layoutDependency:layoutDependency,layoutId:\"I1188:1281;1187:1302\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245)))\"},children:\"Send me a Message\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:ivan13f@gmail.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1os7ito\",\"data-styles-preset\":\"rPI36pb29\",children:\"ivan13f@gmail.com\"})})})]}),className:\"framer-enelea\",\"data-framer-name\":\"Send me a Message ivan13f@gmail.com\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"I1188:1281;1187:1303\",style:{\"--extracted-2gxw0f\":\"var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255))\",\"--extracted-r6o4lv\":\"var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({zMZZUCFSb:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245)))\"},children:\"Send me a Message\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:ivan13f@gmail.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1os7ito\",\"data-styles-preset\":\"rPI36pb29\",children:\"ivan13f@gmail.com\"})})})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245)))\"},children:\"Or connect with me on Socials\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/ivan-alfonsoburgos\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1os7ito\",\"data-styles-preset\":\"rPI36pb29\",children:\"Behance\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/ivan-alfonsoburgos/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1os7ito\",\"data-styles-preset\":\"rPI36pb29\",children:\"Linkedin\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.are.na/ivan-alfonso-burgos/channels\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1os7ito\",\"data-styles-preset\":\"rPI36pb29\",children:\"Are.na\"})})})]}),className:\"framer-o4zpd1\",\"data-framer-name\":\"Or connect with me on Socials Behance Linkedin Are.na\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"I1188:1281;1187:1304\",style:{\"--extracted-14qxiz\":\"var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255))\",\"--extracted-1iakedh\":\"var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255))\",\"--extracted-2gxw0f\":\"var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255))\",\"--extracted-r6o4lv\":\"var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({zMZZUCFSb:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245)))\"},children:\"Or connect with me on Socials\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/ivan-alfonsoburgos\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1os7ito\",\"data-styles-preset\":\"rPI36pb29\",children:\"Behance\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/ivan-alfonsoburgos/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1os7ito\",\"data-styles-preset\":\"rPI36pb29\",children:\"Linkedin\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.are.na/ivan-alfonso-burgos/channels\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1os7ito\",\"data-styles-preset\":\"rPI36pb29\",children:\"Are.na\"})})})]})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255)))\"},children:\"\\xa9 2024 Iv\\xe1n Alfonso Burgos\"})}),className:\"framer-gf2i7l\",\"data-framer-name\":\"\\xa9 2024 Iv\\xe1n Alfonso Burgos\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I1188:1281;1187:1291\",style:{\"--extracted-r6o4lv\":\"var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bmznlo\",layoutDependency:layoutDependency,layoutId:\"sxcJEdmXX\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245)))\"},children:\"Berlin \"})}),className:\"framer-1aluz2x\",\"data-framer-name\":\"Berlin\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I1188:1281;1216:2183\",style:{\"--extracted-r6o4lv\":\"var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r0he07-container\",layoutDependency:layoutDependency,layoutId:\"cN5ztGTFN-container\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245))\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"13px\",fontStyle:\"normal\",letterSpacing:\"-0.01em\",lineHeight:\"150%\"},height:\"100%\",id:\"cN5ztGTFN\",layoutId:\"cN5ztGTFN\",monthFormat:\"long\",outputType:\"time\",showMinutes:true,showMonth:true,showSeconds:false,showWeekday:true,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1egse8m\",layoutDependency:layoutDependency,layoutId:\"vrdZBEFDQ\",children:isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245)))\"},children:\"Made with \u2661\uFE0E\uFE0E from scratch\"})}),className:\"framer-89lpd4\",\"data-framer-name\":\"Made with \u2661\uFE0E\uFE0E and patience from scratch\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"X3vSVw4Tl\",style:{\"--extracted-r6o4lv\":\"var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245))\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({AhU8vf5Vm:{transformTemplate:undefined}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xzgva\",layoutDependency:layoutDependency,layoutId:\"zhaxPBsdo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kCtx5M0RS\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1os7ito\",\"data-styles-preset\":\"rPI36pb29\",children:\"Imprint\"})})})}),className:\"framer-u7nrd7\",\"data-framer-name\":\"Imprint\u2197\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I1188:1281;1187:1296\",style:{\"--extracted-r6o4lv\":\"var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245))\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dU96q.framer-1crfnml, .framer-dU96q .framer-1crfnml { display: block; }\",\".framer-dU96q.framer-yascb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 60px 60px 60px; position: relative; width: 1440px; }\",\".framer-dU96q .framer-10ryc0e { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dU96q .framer-eeyv6q { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; grid-column: auto / span 2; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-dU96q .framer-jev9jb, .framer-dU96q .framer-enelea, .framer-dU96q .framer-o4zpd1, .framer-dU96q .framer-1aluz2x { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-dU96q .framer-icye1y { flex: none; height: auto; max-width: 490px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-dU96q .framer-1r6ce46 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; grid-column: auto / span 2; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-dU96q .framer-gf2i7l { align-self: end; flex: none; height: auto; justify-self: start; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dU96q .framer-1bmznlo { align-content: flex-start; align-items: flex-start; align-self: end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dU96q .framer-r0he07-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-dU96q .framer-1egse8m { align-self: start; flex: none; height: 20px; justify-self: start; overflow: visible; position: relative; width: 160px; }\",\".framer-dU96q .framer-89lpd4 { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; }\",\".framer-dU96q .framer-xzgva { align-self: start; flex: none; height: 19px; justify-self: start; overflow: visible; position: relative; width: 1fr; }\",\".framer-dU96q .framer-u7nrd7 { flex: none; height: auto; left: 50%; position: absolute; top: 47%; white-space: pre-wrap; width: 300px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dU96q.framer-yascb, .framer-dU96q .framer-eeyv6q, .framer-dU96q .framer-1r6ce46, .framer-dU96q .framer-1bmznlo { gap: 0px; } .framer-dU96q.framer-yascb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-dU96q.framer-yascb > :first-child, .framer-dU96q .framer-eeyv6q > :first-child, .framer-dU96q .framer-1r6ce46 > :first-child { margin-top: 0px; } .framer-dU96q.framer-yascb > :last-child, .framer-dU96q .framer-eeyv6q > :last-child, .framer-dU96q .framer-1r6ce46 > :last-child { margin-bottom: 0px; } .framer-dU96q .framer-eeyv6q > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-dU96q .framer-1r6ce46 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-dU96q .framer-1bmznlo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dU96q .framer-1bmznlo > :first-child { margin-left: 0px; } .framer-dU96q .framer-1bmznlo > :last-child { margin-right: 0px; } }\",\".framer-dU96q.framer-v-1eb2e3w.framer-yascb { width: 810px; }\",\".framer-dU96q.framer-v-1eb2e3w .framer-icye1y, .framer-dU96q.framer-v-1foy9dg .framer-icye1y { width: 100%; }\",\".framer-dU96q.framer-v-1eb2e3w .framer-enelea, .framer-dU96q.framer-v-1eb2e3w .framer-o4zpd1, .framer-dU96q.framer-v-1foy9dg .framer-jev9jb, .framer-dU96q.framer-v-1foy9dg .framer-enelea, .framer-dU96q.framer-v-1foy9dg .framer-o4zpd1 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dU96q.framer-v-1eb2e3w .framer-gf2i7l, .framer-dU96q.framer-v-1foy9dg .framer-gf2i7l { white-space: pre; }\",\".framer-dU96q.framer-v-1eb2e3w .framer-1egse8m { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; width: 100%; }\",\".framer-dU96q.framer-v-1eb2e3w .framer-89lpd4 { left: unset; position: relative; top: unset; }\",\".framer-dU96q.framer-v-1eb2e3w .framer-xzgva { justify-self: end; }\",\".framer-dU96q.framer-v-1eb2e3w .framer-u7nrd7, .framer-dU96q.framer-v-1foy9dg .framer-u7nrd7 { white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dU96q.framer-v-1eb2e3w .framer-1egse8m { gap: 0px; } .framer-dU96q.framer-v-1eb2e3w .framer-1egse8m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dU96q.framer-v-1eb2e3w .framer-1egse8m > :first-child { margin-left: 0px; } .framer-dU96q.framer-v-1eb2e3w .framer-1egse8m > :last-child { margin-right: 0px; } }\",\".framer-dU96q.framer-v-1foy9dg.framer-yascb { justify-content: flex-end; padding: 60px 16px 60px 16px; width: min-content; }\",\".framer-dU96q.framer-v-1foy9dg .framer-10ryc0e { align-self: stretch; padding: 0px 0px 60px 0px; width: auto; }\",\".framer-dU96q.framer-v-1foy9dg .framer-eeyv6q, .framer-dU96q.framer-v-1foy9dg .framer-1r6ce46 { grid-column: auto / span 4; }\",\".framer-dU96q.framer-v-1foy9dg .framer-1bmznlo { min-height: 20px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 482\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AhU8vf5Vm\":{\"layout\":[\"fixed\",\"auto\"]},\"zMZZUCFSb\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHr62aO5je=withCSS(Component,css,\"framer-dU96q\");export default FramerHr62aO5je;FramerHr62aO5je.displayName=\"Footer\";FramerHr62aO5je.defaultProps={height:482,width:1440};addPropertyControls(FramerHr62aO5je,{variant:{options:[\"QU2d6WHGj\",\"AhU8vf5Vm\",\"zMZZUCFSb\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerHr62aO5je,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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\"}]},...TimeDateFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHr62aO5je\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"482\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AhU8vf5Vm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zMZZUCFSb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hr62aO5je.map", "// Generated by Framer (e4277c8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-S6EUl .framer-styles-preset-1a098nn:not(.rich-text-wrapper), .framer-S6EUl .framer-styles-preset-1a098nn.rich-text-wrapper a { --framer-link-current-text-color: var(--token-56686bb9-7971-4603-81a8-80bfff221266, #212121) /* {\"name\":\"Black\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-56686bb9-7971-4603-81a8-80bfff221266, #212121) /* {\"name\":\"Black\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-56686bb9-7971-4603-81a8-80bfff221266, #212121); --framer-link-text-decoration: none; }'];export const className=\"framer-S6EUl\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f5febb9)\nimport{jsx as _jsx}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\";const enabledGestures={WAiHIpy_i:{hover:true}};const serializationHash=\"framer-mfQEB\";const variantClassNames={WAiHIpy_i:\"framer-v-1arbg94\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,menuOverlay,width,...props})=>{var _ref;return{...props,LO6tqcQ6Q:(_ref=menuOverlay!==null&&menuOverlay!==void 0?menuOverlay:props.LO6tqcQ6Q)!==null&&_ref!==void 0?_ref:\"Button\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,LO6tqcQ6Q,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"WAiHIpy_i\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1arbg94\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"WAiHIpy_i\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-2a0e9d26-ee53-4fd9-8eae-e03772cc6d4e, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"WAiHIpy_i-hover\":{backgroundColor:\"var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245))\"}},...addPropertyOverrides({\"WAiHIpy_i-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 33, 33))\"},children:\"Button\"})}),className:\"framer-zv26by\",\"data-framer-name\":\"Home\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"vdE9g0Eo3\",style:{\"--extracted-r6o4lv\":\"rgb(33, 33, 33)\",\"--framer-paragraph-spacing\":\"12px\"},text:LO6tqcQ6Q,verticalAlignment:\"center\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mfQEB.framer-1mvg1tk, .framer-mfQEB .framer-1mvg1tk { display: block; }\",\".framer-mfQEB.framer-1arbg94 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 40px; justify-content: center; overflow: hidden; padding: 8px 24px 8px 24px; position: relative; width: 143px; will-change: var(--framer-will-change-override, transform); }\",\".framer-mfQEB .framer-zv26by { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mfQEB.framer-1arbg94 { gap: 0px; } .framer-mfQEB.framer-1arbg94 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-mfQEB.framer-1arbg94 > :first-child { margin-left: 0px; } .framer-mfQEB.framer-1arbg94 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 143\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ShI3hAo5J\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"LO6tqcQ6Q\":\"menuOverlay\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framert5vivhDDa=withCSS(Component,css,\"framer-mfQEB\");export default Framert5vivhDDa;Framert5vivhDDa.displayName=\"Button Overlay\";Framert5vivhDDa.defaultProps={height:40,width:143};addPropertyControls(Framert5vivhDDa,{LO6tqcQ6Q:{defaultValue:\"Button\",displayTextArea:false,placeholder:\"\",title:\"Menu Overlay\",type:ControlType.String}});addFonts(Framert5vivhDDa,[{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framert5vivhDDa\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ShI3hAo5J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"LO6tqcQ6Q\\\":\\\"menuOverlay\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"143\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./t5vivhDDa.map", "// Generated by Framer (2923eb5)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ButtonOverlay from\"https://framerusercontent.com/modules/VlFUe9XPzbNZAphGqp1g/JfBGs1s3DSwCLZ5wYPTT/t5vivhDDa.js\";const ButtonOverlayFonts=getFonts(ButtonOverlay);const MotionDivWithFX=withFX(motion.div);const enabledGestures={c6sM42t6K:{hover:true},fUk4McypO:{hover:true},K9jH_artD:{hover:true}};const cycleOrder=[\"fUk4McypO\",\"c6sM42t6K\",\"K9jH_artD\"];const serializationHash=\"framer-GGNay\";const variantClassNames={c6sM42t6K:\"framer-v-1y51iym\",fUk4McypO:\"framer-v-656dud\",K9jH_artD:\"framer-v-18om3aw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"On Site\":\"K9jH_artD\",Aside:\"c6sM42t6K\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"fUk4McypO\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fUk4McypO\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntert682wp=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});overlay.show();});const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"fUk4McypO-hover\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"c6sM42t6K-hover\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"K9jH_artD-hover\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-656dud\",className,classNames),\"data-border\":true,\"data-framer-name\":\"On Site\",\"data-highlight\":true,id:`${layoutId}-656dud`,layoutDependency:layoutDependency,layoutId:\"fUk4McypO\",onMouseEnter:onMouseEntert682wp({overlay}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgb(231, 229, 220)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-42714b97-e5b9-4db4-b7ab-68a22317f44d, rgb(250, 249, 245))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"fUk4McypO-hover\":{backgroundColor:\"var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245))\"}},...addPropertyOverrides({\"c6sM42t6K-hover\":{\"data-framer-name\":undefined},\"fUk4McypO-hover\":{\"data-framer-name\":undefined},\"K9jH_artD-hover\":{\"data-framer-name\":undefined},c6sM42t6K:{\"data-framer-name\":\"Aside\"}},baseVariant,gestureVariant),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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 33, 33))\"},children:\"On Site\"})}),className:\"framer-1bhx6d3\",\"data-framer-name\":\"On Site\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"oUIDNfvjv\",style:{\"--extracted-r6o4lv\":\"rgb(33, 33, 33)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({c6sM42t6K:{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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 33, 33))\"},children:\"Aside\"})})},K9jH_artD:{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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 33, 33))\"},children:\"Spotlight\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bwuf8m\",\"data-framer-name\":\"Chevron down\",layoutDependency:layoutDependency,layoutId:\"cK1QKe95W\",style:{rotate:0},variants:{\"c6sM42t6K-hover\":{rotate:180},\"fUk4McypO-hover\":{rotate:-180},\"K9jH_artD-hover\":{rotate:180}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nfyz8p\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jmjC6k1bX\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 10\"><path d=\"M 1.731 1.875 L 7.5 8.125 L 13.269 1.875\" fill=\"transparent\" stroke=\"rgb(30,30,30)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8919029798,withExternalLayout:true})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref!==null&&ref!==void 0?ref:ref1,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-656dud`,offsetX:0,offsetY:8,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1ixg1h6\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"UDYNH7EYk\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d0ajmk\",layoutDependency:layoutDependency,layoutId:\"VJSjUNjyg\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({\"fUk4McypO-hover\":{href:{webPageId:\"qH6HjzWkf\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1hbqbxa framer-1jshr8e\",layoutDependency:layoutDependency,layoutId:\"mfsvxA64K\",children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"fUk4McypO-hover\":{height:36,width:\"159px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uvi374-container\",layoutDependency:layoutDependency,layoutId:\"wh030VQNd-container\",children:/*#__PURE__*/_jsx(ButtonOverlay,{height:\"100%\",id:\"wh030VQNd\",layoutId:\"wh030VQNd\",LO6tqcQ6Q:\"Home\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"fUk4McypO-hover\":{LO6tqcQ6Q:\"On Site\"}},baseVariant,gestureVariant)})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({\"fUk4McypO-hover\":{href:{webPageId:\"FtaepXHXD\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-h0bix6 framer-1jshr8e\",layoutDependency:layoutDependency,layoutId:\"CoSYBALHR\",children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"fUk4McypO-hover\":{height:36,width:\"159px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o12yx0-container\",layoutDependency:layoutDependency,layoutId:\"ffFkilylg-container\",children:/*#__PURE__*/_jsx(ButtonOverlay,{height:\"100%\",id:\"ffFkilylg\",layoutId:\"ffFkilylg\",LO6tqcQ6Q:\"Home\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"fUk4McypO-hover\":{LO6tqcQ6Q:\"Aside\"}},baseVariant,gestureVariant)})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({\"fUk4McypO-hover\":{href:{webPageId:\"TIpc4mX_q\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-cdkn63 framer-1jshr8e\",layoutDependency:layoutDependency,layoutId:\"HqXbsSB9K\",children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"fUk4McypO-hover\":{height:36,width:\"159px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1af5zyr-container\",layoutDependency:layoutDependency,layoutId:\"c_QJAcuwq-container\",children:/*#__PURE__*/_jsx(ButtonOverlay,{height:\"100%\",id:\"c_QJAcuwq\",layoutId:\"c_QJAcuwq\",LO6tqcQ6Q:\"Home\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"fUk4McypO-hover\":{LO6tqcQ6Q:\"Spotlight\"}},baseVariant,gestureVariant)})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jn37qz\",layoutDependency:layoutDependency,layoutId:\"Ncvs5C5_s\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qH6HjzWkf\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-16dyzi2 framer-1jshr8e\",layoutDependency:layoutDependency,layoutId:\"WBCxHOWdq\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"159px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zy3ej2-container\",layoutDependency:layoutDependency,layoutId:\"rsqk7FcDl-container\",children:/*#__PURE__*/_jsx(ButtonOverlay,{height:\"100%\",id:\"rsqk7FcDl\",layoutId:\"rsqk7FcDl\",LO6tqcQ6Q:\"On Site\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({\"c6sM42t6K-hover\":{href:{webPageId:\"FtaepXHXD\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xljspi framer-1jshr8e\",layoutDependency:layoutDependency,layoutId:\"cNyOHLwaq\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"159px\",...addPropertyOverrides({\"c6sM42t6K-hover\":{height:36}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w8kskx-container\",layoutDependency:layoutDependency,layoutId:\"e_tIShFzx-container\",children:/*#__PURE__*/_jsx(ButtonOverlay,{height:\"100%\",id:\"e_tIShFzx\",layoutId:\"e_tIShFzx\",LO6tqcQ6Q:\"Aside\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({\"c6sM42t6K-hover\":{href:{webPageId:\"TIpc4mX_q\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-h02fd6 framer-1jshr8e\",layoutDependency:layoutDependency,layoutId:\"pFw7iw7JQ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"159px\",...addPropertyOverrides({\"c6sM42t6K-hover\":{height:36}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pbfs5e-container\",layoutDependency:layoutDependency,layoutId:\"I2T51oyRs-container\",children:/*#__PURE__*/_jsx(ButtonOverlay,{height:\"100%\",id:\"I2T51oyRs\",layoutId:\"I2T51oyRs\",LO6tqcQ6Q:\"Spotlight\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m0qjx2\",layoutDependency:layoutDependency,layoutId:\"GVt9TbfaH\",...addPropertyOverrides({\"K9jH_artD-hover\":{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qH6HjzWkf\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-sf11ca framer-1jshr8e\",layoutDependency:layoutDependency,layoutId:\"rq82rfKqe\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"159px\",...addPropertyOverrides({\"K9jH_artD-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+11.000000000000028+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-78hu73-container\",layoutDependency:layoutDependency,layoutId:\"z5imLBgbI-container\",children:/*#__PURE__*/_jsx(ButtonOverlay,{height:\"100%\",id:\"z5imLBgbI\",layoutId:\"z5imLBgbI\",LO6tqcQ6Q:\"On Site\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({\"K9jH_artD-hover\":{href:{webPageId:\"FtaepXHXD\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wqr325 framer-1jshr8e\",layoutDependency:layoutDependency,layoutId:\"zDvg4lpXo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"159px\",...addPropertyOverrides({\"K9jH_artD-hover\":{height:36,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+11.000000000000028+0+46+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bf78cf-container\",layoutDependency:layoutDependency,layoutId:\"vaBT0V8KO-container\",children:/*#__PURE__*/_jsx(ButtonOverlay,{height:\"100%\",id:\"vaBT0V8KO\",layoutId:\"vaBT0V8KO\",LO6tqcQ6Q:\"Aside\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({\"K9jH_artD-hover\":{href:{webPageId:\"TIpc4mX_q\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-scnpjv framer-1jshr8e\",layoutDependency:layoutDependency,layoutId:\"W2_lJiiSN\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"159px\",...addPropertyOverrides({\"K9jH_artD-hover\":{height:36,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+11.000000000000028+0+92+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1er5noj-container\",layoutDependency:layoutDependency,layoutId:\"dnpbtXc7z-container\",children:/*#__PURE__*/_jsx(ButtonOverlay,{height:\"100%\",id:\"dnpbtXc7z\",layoutId:\"dnpbtXc7z\",LO6tqcQ6Q:\"Spotlight\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GGNay.framer-1jshr8e, .framer-GGNay .framer-1jshr8e { display: block; }\",\".framer-GGNay.framer-656dud { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 36px; justify-content: center; overflow: hidden; padding: 4px 24px 4px 36px; position: relative; width: 175px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GGNay .framer-1bhx6d3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GGNay .framer-bwuf8m { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-GGNay .framer-1nfyz8p { flex: none; height: 10px; left: calc(50.00000000000002% - 15px / 2); position: absolute; top: calc(50.00000000000002% - 10px / 2); width: 15px; }\",\".framer-GGNay .framer-1ixg1h6 { height: 150px; overflow: hidden; position: relative; width: 175px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GGNay .framer-d0ajmk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; min-height: 331px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-GGNay .framer-1hbqbxa, .framer-GGNay .framer-h0bix6, .framer-GGNay .framer-cdkn63 { flex: none; height: 37px; overflow: visible; position: relative; width: 176px; }\",\".framer-GGNay .framer-uvi374-container, .framer-GGNay .framer-1o12yx0-container, .framer-GGNay .framer-1af5zyr-container { flex: none; height: 36px; left: calc(50.00000000000002% - 175px / 2); position: absolute; top: calc(48.648648648648674% - 36px / 2); width: 175px; }\",\".framer-GGNay .framer-jn37qz, .framer-GGNay .framer-m0qjx2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-GGNay .framer-16dyzi2, .framer-GGNay .framer-sf11ca { flex: none; height: 36px; overflow: visible; position: relative; text-decoration: none; width: 159px; }\",\".framer-GGNay .framer-zy3ej2-container, .framer-GGNay .framer-78hu73-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 159px / 2); position: absolute; top: 0px; width: 159px; }\",\".framer-GGNay .framer-xljspi, .framer-GGNay .framer-h02fd6, .framer-GGNay .framer-1wqr325, .framer-GGNay .framer-scnpjv { flex: none; height: 36px; overflow: visible; position: relative; width: 160px; }\",\".framer-GGNay .framer-w8kskx-container, .framer-GGNay .framer-pbfs5e-container, .framer-GGNay .framer-1bf78cf-container, .framer-GGNay .framer-1er5noj-container { bottom: 0px; flex: none; position: absolute; right: 0px; top: 0px; width: 159px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GGNay.framer-656dud, .framer-GGNay .framer-d0ajmk, .framer-GGNay .framer-jn37qz, .framer-GGNay .framer-m0qjx2 { gap: 0px; } .framer-GGNay.framer-656dud > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-GGNay.framer-656dud > :first-child { margin-left: 0px; } .framer-GGNay.framer-656dud > :last-child { margin-right: 0px; } .framer-GGNay .framer-d0ajmk > *, .framer-GGNay .framer-jn37qz > *, .framer-GGNay .framer-m0qjx2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GGNay .framer-d0ajmk > :first-child, .framer-GGNay .framer-jn37qz > :first-child, .framer-GGNay .framer-m0qjx2 > :first-child { margin-top: 0px; } .framer-GGNay .framer-d0ajmk > :last-child, .framer-GGNay .framer-jn37qz > :last-child, .framer-GGNay .framer-m0qjx2 > :last-child { margin-bottom: 0px; } }\",\".framer-GGNay.framer-v-656dud.hover .framer-1ixg1h6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; }\",\".framer-GGNay.framer-v-656dud.hover .framer-d0ajmk { gap: 16px; left: unset; min-height: unset; padding: 16px 8px 16px 8px; position: relative; top: unset; }\",\".framer-GGNay.framer-v-656dud.hover .framer-1hbqbxa, .framer-GGNay.framer-v-656dud.hover .framer-h0bix6, .framer-GGNay.framer-v-656dud.hover .framer-cdkn63 { height: 36px; text-decoration: none; width: 100%; }\",\".framer-GGNay.framer-v-656dud.hover .framer-uvi374-container, .framer-GGNay.framer-v-656dud.hover .framer-1o12yx0-container, .framer-GGNay.framer-v-656dud.hover .framer-1af5zyr-container { bottom: 0px; height: unset; left: calc(50.00000000000002% - 159px / 2); top: 0px; width: 159px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GGNay.framer-v-656dud.hover .framer-1ixg1h6, .framer-GGNay.framer-v-656dud.hover .framer-d0ajmk { gap: 0px; } .framer-GGNay.framer-v-656dud.hover .framer-1ixg1h6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GGNay.framer-v-656dud.hover .framer-1ixg1h6 > :first-child, .framer-GGNay.framer-v-656dud.hover .framer-d0ajmk > :first-child { margin-top: 0px; } .framer-GGNay.framer-v-656dud.hover .framer-1ixg1h6 > :last-child, .framer-GGNay.framer-v-656dud.hover .framer-d0ajmk > :last-child { margin-bottom: 0px; } .framer-GGNay.framer-v-656dud.hover .framer-d0ajmk > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-GGNay.framer-v-1y51iym.hover .framer-16dyzi2 { width: 100%; }\",\".framer-GGNay.framer-v-1y51iym.hover .framer-zy3ej2-container { bottom: -11px; height: 36px; left: calc(50.28571428571431% - 159px / 2); top: unset; }\",\".framer-GGNay.framer-v-1y51iym.hover .framer-xljspi, .framer-GGNay.framer-v-1y51iym.hover .framer-h02fd6 { text-decoration: none; width: 100%; }\",\".framer-GGNay.framer-v-1y51iym.hover .framer-w8kskx-container { bottom: -11px; left: calc(49.71428571428574% - 159px / 2); right: unset; top: 11px; }\",\".framer-GGNay.framer-v-1y51iym.hover .framer-pbfs5e-container { bottom: -11px; height: 36px; left: calc(49.71428571428574% - 159px / 2); right: unset; top: unset; }\",\".framer-GGNay.framer-v-18om3aw.hover .framer-m0qjx2 { left: 50%; top: 50%; }\",\".framer-GGNay.framer-v-18om3aw.hover .framer-sf11ca { order: 0; width: 100%; }\",\".framer-GGNay.framer-v-18om3aw.hover .framer-1wqr325 { order: 1; text-decoration: none; width: 100%; }\",\".framer-GGNay.framer-v-18om3aw.hover .framer-1bf78cf-container { left: calc(50.28571428571431% - 159px / 2); right: unset; }\",\".framer-GGNay.framer-v-18om3aw.hover .framer-scnpjv { order: 2; text-decoration: none; width: 100%; }\",\".framer-GGNay.framer-v-18om3aw.hover .framer-1er5noj-container { left: calc(49.14285714285717% - 159px / 2); right: unset; }\",'.framer-GGNay[data-border=\"true\"]::after, .framer-GGNay [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 36\n * @framerIntrinsicWidth 175\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"c6sM42t6K\":{\"layout\":[\"fixed\",\"fixed\"]},\"K9jH_artD\":{\"layout\":[\"fixed\",\"fixed\"]},\"JuaXLBw1C\":{\"layout\":[\"fixed\",\"fixed\"]},\"BB4tRGdQ0\":{\"layout\":[\"fixed\",\"fixed\"]},\"IIe51EUik\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framera9S3k0OCq=withCSS(Component,css,\"framer-GGNay\");export default Framera9S3k0OCq;Framera9S3k0OCq.displayName=\"Projects\";Framera9S3k0OCq.defaultProps={height:36,width:175};addPropertyControls(Framera9S3k0OCq,{variant:{options:[\"fUk4McypO\",\"c6sM42t6K\",\"K9jH_artD\"],optionTitles:[\"On Site\",\"Aside\",\"On Site\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framera9S3k0OCq,[{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\"}]},...ButtonOverlayFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framera9S3k0OCq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"c6sM42t6K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"K9jH_artD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JuaXLBw1C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BB4tRGdQ0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IIe51EUik\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"36\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"175\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./a9S3k0OCq.map", "// Generated by Framer (322ed1a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ButtonOverlay from\"https://framerusercontent.com/modules/VlFUe9XPzbNZAphGqp1g/JfBGs1s3DSwCLZ5wYPTT/t5vivhDDa.js\";const ButtonOverlayFonts=getFonts(ButtonOverlay);const MotionDivWithFX=withFX(motion.div);const enabledGestures={aUydbwbC5:{hover:true},plkKO_AQE:{hover:true},ViODGvuWv:{hover:true}};const cycleOrder=[\"aUydbwbC5\",\"plkKO_AQE\",\"ViODGvuWv\"];const serializationHash=\"framer-tzcwz\";const variantClassNames={aUydbwbC5:\"framer-v-7clt3x\",plkKO_AQE:\"framer-v-17irsyu\",ViODGvuWv:\"framer-v-xikqdy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Selectec Works\":\"ViODGvuWv\",About:\"plkKO_AQE\",Home:\"aUydbwbC5\"};const getProps=({height,hover,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"aUydbwbC5\",Wdytxyivr:hover!==null&&hover!==void 0?hover:props.Wdytxyivr};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Wdytxyivr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"aUydbwbC5\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter12r25ej=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(Wdytxyivr){const res=await Wdytxyivr(...args);if(res===false)return false;}overlay.show();});const ref1=React.useRef(null);const ref2=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7clt3x\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Home\",\"data-highlight\":true,id:`${layoutId}-7clt3x`,layoutDependency:layoutDependency,layoutId:\"aUydbwbC5\",onMouseEnter:onMouseEnter12r25ej({overlay}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(231, 229, 220)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-42714b97-e5b9-4db4-b7ab-68a22317f44d, rgb(250, 249, 245))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"aUydbwbC5-hover\":{backgroundColor:\"var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245))\"},\"plkKO_AQE-hover\":{backgroundColor:\"var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245))\"},\"ViODGvuWv-hover\":{backgroundColor:\"var(--token-de9941aa-19a8-4c10-abf1-f24054e07932, rgb(245, 245, 245))\"}},...addPropertyOverrides({\"aUydbwbC5-hover\":{\"data-framer-name\":undefined},\"plkKO_AQE-hover\":{\"data-framer-name\":undefined},\"ViODGvuWv-hover\":{\"data-framer-name\":undefined},plkKO_AQE:{\"data-framer-name\":\"About\"},ViODGvuWv:{\"data-framer-name\":\"Selectec Works\"}},baseVariant,gestureVariant),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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-56686bb9-7971-4603-81a8-80bfff221266, rgb(33, 33, 33)))\"},children:\"Home\"})}),className:\"framer-owzt9o\",\"data-framer-name\":\"Home\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"h_MZdxK71\",style:{\"--extracted-r6o4lv\":\"var(--token-56686bb9-7971-4603-81a8-80bfff221266, rgb(33, 33, 33))\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({plkKO_AQE:{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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-56686bb9-7971-4603-81a8-80bfff221266, rgb(33, 33, 33)))\"},children:\"About\"})})},ViODGvuWv:{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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-56686bb9-7971-4603-81a8-80bfff221266, rgb(33, 33, 33)))\"},children:\"Selected Works\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wlwjgu\",\"data-framer-name\":\"Chevron down\",layoutDependency:layoutDependency,layoutId:\"iH0QQs5__\",style:{rotate:0},variants:{\"aUydbwbC5-hover\":{rotate:-180},\"plkKO_AQE-hover\":{rotate:180},\"ViODGvuWv-hover\":{rotate:180}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-iz0aea\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"dJ8JphbjH\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 10\"><path d=\"M 1.731 1.875 L 7.5 8.125 L 13.269 1.875\" fill=\"transparent\" stroke=\"rgb(30,30,30)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8919029798,withExternalLayout:true})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref!==null&&ref!==void 0?ref:ref1,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-7clt3x`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-rwh9eu\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"WZNzWKAGW\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ln46mp\",layoutDependency:layoutDependency,layoutId:\"BlcSBDAet\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-bw9tuj framer-1waxbrd\",layoutDependency:layoutDependency,layoutId:\"WEUVJ66pi\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"159px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+24+0+0,...addPropertyOverrides({\"aUydbwbC5-hover\":{y:undefined},\"plkKO_AQE-hover\":{y:undefined},\"ViODGvuWv-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+24+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ebkext-container\",layoutDependency:layoutDependency,layoutId:\"WDAEi_LOT-container\",children:/*#__PURE__*/_jsx(ButtonOverlay,{height:\"100%\",id:\"WDAEi_LOT\",layoutId:\"WDAEi_LOT\",LO6tqcQ6Q:\"Home\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XozvDDPLk\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-lz2zdo framer-1waxbrd\",layoutDependency:layoutDependency,layoutId:\"xqGKnHOQj\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"159px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+24+52+0,...addPropertyOverrides({\"aUydbwbC5-hover\":{y:undefined},\"plkKO_AQE-hover\":{y:undefined},\"ViODGvuWv-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+24+52+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15y7zqw-container\",layoutDependency:layoutDependency,layoutId:\"Jq8eGzI2N-container\",children:/*#__PURE__*/_jsx(ButtonOverlay,{height:\"100%\",id:\"Jq8eGzI2N\",layoutId:\"Jq8eGzI2N\",LO6tqcQ6Q:\"About\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AWiEQXrKN\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1y413bv framer-1waxbrd\",layoutDependency:layoutDependency,layoutId:\"lxZVWjxcU\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"159px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+24+104+0,...addPropertyOverrides({\"aUydbwbC5-hover\":{y:undefined},\"plkKO_AQE-hover\":{y:undefined},\"ViODGvuWv-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+24+104+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s9gama-container\",layoutDependency:layoutDependency,layoutId:\"kzLgkJDUl-container\",children:/*#__PURE__*/_jsx(ButtonOverlay,{height:\"100%\",id:\"kzLgkJDUl\",layoutId:\"kzLgkJDUl\",LO6tqcQ6Q:\"Selected Works\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tzcwz.framer-1waxbrd, .framer-tzcwz .framer-1waxbrd { display: block; }\",\".framer-tzcwz.framer-7clt3x { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 36px; justify-content: center; overflow: hidden; padding: 4px 24px 4px 24px; position: relative; width: 175px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tzcwz .framer-owzt9o { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tzcwz .framer-wlwjgu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-tzcwz .framer-iz0aea { flex: none; height: 10px; left: calc(50.00000000000002% - 15px / 2); position: absolute; top: calc(50.00000000000002% - 10px / 2); width: 15px; }\",\".framer-tzcwz .framer-rwh9eu { height: 150px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tzcwz .framer-1ln46mp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 24px 16px 24px 16px; position: absolute; top: 0px; width: 100%; }\",\".framer-tzcwz .framer-bw9tuj, .framer-tzcwz .framer-lz2zdo, .framer-tzcwz .framer-1y413bv { flex: none; height: 36px; overflow: visible; position: relative; text-decoration: none; width: 159px; }\",\".framer-tzcwz .framer-1ebkext-container, .framer-tzcwz .framer-15y7zqw-container, .framer-tzcwz .framer-1s9gama-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tzcwz.framer-7clt3x, .framer-tzcwz .framer-1ln46mp { gap: 0px; } .framer-tzcwz.framer-7clt3x > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-tzcwz.framer-7clt3x > :first-child { margin-left: 0px; } .framer-tzcwz.framer-7clt3x > :last-child { margin-right: 0px; } .framer-tzcwz .framer-1ln46mp > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-tzcwz .framer-1ln46mp > :first-child { margin-top: 0px; } .framer-tzcwz .framer-1ln46mp > :last-child { margin-bottom: 0px; } }\",\".framer-tzcwz.framer-v-17irsyu.framer-7clt3x, .framer-tzcwz.framer-v-xikqdy.framer-7clt3x, .framer-tzcwz.framer-v-7clt3x.hover.framer-7clt3x { aspect-ratio: 4.861111111111111 / 1; height: var(--framer-aspect-ratio-supported, 36px); }\",\".framer-tzcwz.framer-v-7clt3x.hover .framer-rwh9eu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 175px; }\",\".framer-tzcwz.framer-v-7clt3x.hover .framer-1ln46mp, .framer-tzcwz.framer-v-17irsyu.hover .framer-1ln46mp, .framer-tzcwz.framer-v-xikqdy.hover .framer-1ln46mp { left: unset; position: relative; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tzcwz.framer-v-7clt3x.hover .framer-rwh9eu { gap: 0px; } .framer-tzcwz.framer-v-7clt3x.hover .framer-rwh9eu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tzcwz.framer-v-7clt3x.hover .framer-rwh9eu > :first-child { margin-left: 0px; } .framer-tzcwz.framer-v-7clt3x.hover .framer-rwh9eu > :last-child { margin-right: 0px; } }\",\".framer-tzcwz.framer-v-17irsyu.hover .framer-rwh9eu, .framer-tzcwz.framer-v-xikqdy.hover .framer-rwh9eu { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 175px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tzcwz.framer-v-17irsyu.hover .framer-rwh9eu { gap: 0px; } .framer-tzcwz.framer-v-17irsyu.hover .framer-rwh9eu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tzcwz.framer-v-17irsyu.hover .framer-rwh9eu > :first-child { margin-top: 0px; } .framer-tzcwz.framer-v-17irsyu.hover .framer-rwh9eu > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tzcwz.framer-v-xikqdy.hover .framer-rwh9eu { gap: 0px; } .framer-tzcwz.framer-v-xikqdy.hover .framer-rwh9eu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tzcwz.framer-v-xikqdy.hover .framer-rwh9eu > :first-child { margin-top: 0px; } .framer-tzcwz.framer-v-xikqdy.hover .framer-rwh9eu > :last-child { margin-bottom: 0px; } }\",'.framer-tzcwz[data-border=\"true\"]::after, .framer-tzcwz [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 36\n * @framerIntrinsicWidth 175\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"plkKO_AQE\":{\"layout\":[\"fixed\",\"fixed\"]},\"ViODGvuWv\":{\"layout\":[\"fixed\",\"fixed\"]},\"lePQidtWM\":{\"layout\":[\"fixed\",\"fixed\"]},\"zwHkcUg8z\":{\"layout\":[\"fixed\",\"fixed\"]},\"bsiOgPkRz\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Wdytxyivr\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAmjpItVYn=withCSS(Component,css,\"framer-tzcwz\");export default FramerAmjpItVYn;FramerAmjpItVYn.displayName=\"Navigation\";FramerAmjpItVYn.defaultProps={height:36,width:175};addPropertyControls(FramerAmjpItVYn,{variant:{options:[\"aUydbwbC5\",\"plkKO_AQE\",\"ViODGvuWv\"],optionTitles:[\"Home\",\"About\",\"Selectec Works\"],title:\"Variant\",type:ControlType.Enum},Wdytxyivr:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerAmjpItVYn,[{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\"}]},...ButtonOverlayFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAmjpItVYn\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"36\",\"framerVariables\":\"{\\\"Wdytxyivr\\\":\\\"hover\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"175\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"plkKO_AQE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ViODGvuWv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lePQidtWM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zwHkcUg8z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bsiOgPkRz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AmjpItVYn.map", "// Generated by Framer (f5febb9)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={r1wU5xvhc:{hover:true}};const serializationHash=\"framer-gAHfg\";const variantClassNames={r1wU5xvhc:\"framer-v-rj2sks\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"r1wU5xvhc\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-rj2sks\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"r1wU5xvhc\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(33, 33, 33)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"r1wU5xvhc-hover\":{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6a19e302-da96-4bf5-836f-9d0c8274b7bc, rgb(231, 229, 220))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-42714b97-e5b9-4db4-b7ab-68a22317f44d, rgb(250, 249, 245))\"}},...addPropertyOverrides({\"r1wU5xvhc-hover\":{\"data-border\":true,\"data-framer-name\":undefined}},baseVariant,gestureVariant),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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(244, 244, 244))\"},children:\"Get in touch \u2197\uFE0E \"})}),className:\"framer-1t6s4ma\",\"data-framer-name\":\"Get in touch \u2197\uFE0E\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"syce951FN\",style:{\"--extracted-r6o4lv\":\"rgb(244, 244, 244)\",\"--framer-paragraph-spacing\":\"12px\"},variants:{\"r1wU5xvhc-hover\":{\"--extracted-r6o4lv\":\"rgb(33, 33, 33)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"r1wU5xvhc-hover\":{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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 33, 33))\"},children:\"Get in touch \u2197\uFE0E \"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gAHfg.framer-1xdm1dn, .framer-gAHfg .framer-1xdm1dn { display: block; }\",\".framer-gAHfg.framer-rj2sks { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 36px; justify-content: center; overflow: visible; padding: 2px 24px 2px 24px; position: relative; width: 170px; }\",\".framer-gAHfg .framer-1t6s4ma { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gAHfg.framer-rj2sks { gap: 0px; } .framer-gAHfg.framer-rj2sks > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-gAHfg.framer-rj2sks > :first-child { margin-left: 0px; } .framer-gAHfg.framer-rj2sks > :last-child { margin-right: 0px; } }\",'.framer-gAHfg[data-border=\"true\"]::after, .framer-gAHfg [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 36\n * @framerIntrinsicWidth 170\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"sho4xoWx4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXkxmfqCyL=withCSS(Component,css,\"framer-gAHfg\");export default FramerXkxmfqCyL;FramerXkxmfqCyL.displayName=\"Contact Button\";FramerXkxmfqCyL.defaultProps={height:36,width:170};addFonts(FramerXkxmfqCyL,[{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXkxmfqCyL\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sho4xoWx4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"170\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"36\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XkxmfqCyL.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/b5DbNnGqdfNigaJZBqeQ/RvrH9qpRjZYi0TvZqRQN/j0Ux2ojTs.js\";import Projects from\"https://framerusercontent.com/modules/PlJD3DZmGYVR1RBgr87U/AJiv2nuqVzK2s5vl14PZ/a9S3k0OCq.js\";import Navigation from\"https://framerusercontent.com/modules/YLYLEY4x4TJv8zRW573d/L7icgf4vL7Neln7xtKBf/AmjpItVYn.js\";import ContactButton from\"https://framerusercontent.com/modules/u9BpZbBLH5yfdFxtCvHe/8HQRc6mj6dPuCN6nSOgE/XkxmfqCyL.js\";const NavigationFonts=getFonts(Navigation);const ProjectsFonts=getFonts(Projects);const ContactButtonFonts=getFonts(ContactButton);const ProjectsControls=getPropertyControls(Projects);const NavigationControls=getPropertyControls(Navigation);const cycleOrder=[\"dTrNRUjOv\",\"xpIRmv0yk\",\"MbrzGtv9e\",\"KneAb15nE\",\"OAMCLpJtx\"];const serializationHash=\"framer-i7FH4\";const variantClassNames={dTrNRUjOv:\"framer-v-2nvjrd\",KneAb15nE:\"framer-v-cjftip\",MbrzGtv9e:\"framer-v-fxwqyc\",OAMCLpJtx:\"framer-v-1fvassn\",xpIRmv0yk:\"framer-v-1ltvtgn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"On Site\":\"K9jH_artD\",Aside:\"c6sM42t6K\"};const humanReadableEnumMap1={\"Selectec Works\":\"ViODGvuWv\",About:\"plkKO_AQE\",Home:\"aUydbwbC5\"};const humanReadableVariantMap={\"Desktop Menu\":\"KneAb15nE\",\"Desktop Projects HD\":\"OAMCLpJtx\",\"Desktop Projects\":\"dTrNRUjOv\",Mobile:\"MbrzGtv9e\",Tablet:\"xpIRmv0yk\"};const getProps=({height,id,menu,project,width,...props})=>{var _humanReadableEnumMap_project,_ref,_ref1,_humanReadableEnumMap1_menu,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,iAKnDY3D6:(_ref1=(_ref=(_humanReadableEnumMap_project=humanReadableEnumMap[project])!==null&&_humanReadableEnumMap_project!==void 0?_humanReadableEnumMap_project:project)!==null&&_ref!==void 0?_ref:props.iAKnDY3D6)!==null&&_ref1!==void 0?_ref1:\"fUk4McypO\",lMB78J26e:(_ref3=(_ref2=(_humanReadableEnumMap1_menu=humanReadableEnumMap1[menu])!==null&&_humanReadableEnumMap1_menu!==void 0?_humanReadableEnumMap1_menu:menu)!==null&&_ref2!==void 0?_ref2:props.lMB78J26e)!==null&&_ref3!==void 0?_ref3:\"aUydbwbC5\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"dTrNRUjOv\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,iAKnDY3D6,lMB78J26e,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dTrNRUjOv\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1y54cf=activeVariantCallback(async(...args)=>{setVariant(\"dTrNRUjOv\");});const onTapd3mwcn=activeVariantCallback(async(...args)=>{setVariant(\"MbrzGtv9e\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"xpIRmv0yk\",\"MbrzGtv9e\",\"KneAb15nE\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"MbrzGtv9e\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-2nvjrd\",className,classNames),\"data-framer-name\":\"Desktop Projects\",layoutDependency:layoutDependency,layoutId:\"dTrNRUjOv\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({KneAb15nE:{\"data-framer-name\":\"Desktop Menu\"},MbrzGtv9e:{\"data-framer-name\":\"Mobile\"},OAMCLpJtx:{\"data-framer-name\":\"Desktop Projects HD\"},xpIRmv0yk:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g5lgb7\",\"data-framer-name\":\"Nav Frame\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"I1004:943;1104:2061\",onTap:onTap1y54cf,style:{backgroundColor:\"rgb(250, 249, 245)\"},...addPropertyOverrides({KneAb15nE:{\"data-highlight\":undefined,onTap:undefined},MbrzGtv9e:{\"data-highlight\":undefined,onTap:undefined},OAMCLpJtx:{\"data-highlight\":undefined,onTap:undefined},xpIRmv0yk:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bcim80\",\"data-framer-name\":\"All Menus\",layoutDependency:layoutDependency,layoutId:\"JnpoR44dC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cornpr\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"I1004:943;652:173\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 33, 33))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1a098nn\",\"data-styles-preset\":\"j0Ux2ojTs\",children:\"I-AB\"})})})}),className:\"framer-1n7pmy6\",\"data-framer-name\":\"LOGO\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"I1004:943;652:174\",style:{\"--extracted-r6o4lv\":\"rgb(33, 33, 33)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{MbrzGtv9e:{\"--extracted-r6o4lv\":\"var(--token-56686bb9-7971-4603-81a8-80bfff221266, rgb(33, 33, 33))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({MbrzGtv9e:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-56686bb9-7971-4603-81a8-80bfff221266, rgb(33, 33, 33)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1a098nn\",\"data-styles-preset\":\"j0Ux2ojTs\",children:\"I-AB\"})})})}),onTap:onTapd3mwcn}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"175px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||84)-0-84)/2)+24+0+0+0,...addPropertyOverrides({MbrzGtv9e:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+24+0+0+0},xpIRmv0yk:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(11+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||84)-22-84)/2)+24+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ne28sj-container\",layoutDependency:layoutDependency,layoutId:\"sJ87gbqIX-container\",children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"sJ87gbqIX\",layoutId:\"sJ87gbqIX\",style:{height:\"100%\",width:\"100%\"},variant:lMB78J26e,width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ow6wlx\",\"data-framer-name\":\"Projects\",layoutDependency:layoutDependency,layoutId:\"opOlipXNA\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-chrbil\",\"data-framer-name\":\"Chevron down\",layoutDependency:layoutDependency,layoutId:\"lXPtncxJp\",style:{rotate:-90},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1boy0x0\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"n6M1TGZwp\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 10\"><path d=\"M 1.731 1.875 L 7.5 8.125 L 13.269 1.875\" fill=\"transparent\" stroke=\"var(--token-97232150-9965-4d9f-ac48-43b76f692da8, rgb(128, 127, 127)) /* {&quot;name&quot;:&quot;Grey Secondary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9849959339,withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"175px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||84)-0-84)/2)+24+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hv59qt-container\",layoutDependency:layoutDependency,layoutId:\"haqmQ2u_h-container\",children:/*#__PURE__*/_jsx(Projects,{height:\"100%\",id:\"haqmQ2u_h\",layoutId:\"haqmQ2u_h\",style:{height:\"100%\",width:\"100%\"},variant:iAKnDY3D6,width:\"100%\"})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({KneAb15nE:{href:\"mailto: ivan13f@gmail.com\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-136b34x framer-1v3eng4\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"I1004:943;652:170\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"170px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||84)-0-84)/2)+24+0,...addPropertyOverrides({xpIRmv0yk:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(11+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||84)-22-84)/2)+24+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j92mak-container\",layoutDependency:layoutDependency,layoutId:\"rgjYwFppd-container\",children:/*#__PURE__*/_jsx(ContactButton,{height:\"100%\",id:\"rgjYwFppd\",layoutId:\"rgjYwFppd\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-i7FH4.framer-1v3eng4, .framer-i7FH4 .framer-1v3eng4 { display: block; }\",\".framer-i7FH4.framer-2nvjrd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 84px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1380px; }\",\".framer-i7FH4 .framer-1g5lgb7 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 84px; justify-content: space-between; max-width: 1440px; overflow: visible; padding: 12px 60px 12px 60px; position: relative; width: 1px; }\",\".framer-i7FH4 .framer-bcim80 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-i7FH4 .framer-cornpr { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 36px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 300px; }\",\".framer-i7FH4 .framer-1n7pmy6 { flex: none; height: 35px; position: relative; white-space: pre-wrap; width: 95px; word-break: break-word; word-wrap: break-word; }\",\".framer-i7FH4 .framer-ne28sj-container, .framer-i7FH4 .framer-1hv59qt-container { flex: none; height: 36px; position: relative; width: 175px; }\",\".framer-i7FH4 .framer-1ow6wlx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 205px; }\",\".framer-i7FH4 .framer-chrbil { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-i7FH4 .framer-1boy0x0 { flex: none; height: 10px; left: calc(50.00000000000002% - 15px / 2); position: absolute; top: calc(50.00000000000002% - 10px / 2); width: 15px; }\",\".framer-i7FH4 .framer-136b34x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-i7FH4 .framer-1j92mak-container { flex: none; height: 36px; position: relative; width: 170px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-i7FH4.framer-2nvjrd, .framer-i7FH4 .framer-bcim80, .framer-i7FH4 .framer-1ow6wlx, .framer-i7FH4 .framer-136b34x { gap: 0px; } .framer-i7FH4.framer-2nvjrd > *, .framer-i7FH4 .framer-136b34x > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-i7FH4.framer-2nvjrd > :first-child, .framer-i7FH4 .framer-bcim80 > :first-child, .framer-i7FH4 .framer-1ow6wlx > :first-child, .framer-i7FH4 .framer-136b34x > :first-child { margin-left: 0px; } .framer-i7FH4.framer-2nvjrd > :last-child, .framer-i7FH4 .framer-bcim80 > :last-child, .framer-i7FH4 .framer-1ow6wlx > :last-child, .framer-i7FH4 .framer-136b34x > :last-child { margin-right: 0px; } .framer-i7FH4 .framer-bcim80 > *, .framer-i7FH4 .framer-1ow6wlx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-i7FH4.framer-v-1ltvtgn.framer-2nvjrd { padding: 11px 0px 11px 0px; width: 810px; }\",\".framer-i7FH4.framer-v-1ltvtgn .framer-1g5lgb7 { cursor: unset; padding: 0px 30px 0px 30px; }\",\".framer-i7FH4.framer-v-fxwqyc.framer-2nvjrd { align-content: flex-start; align-items: flex-start; justify-content: flex-start; width: 390px; }\",\".framer-i7FH4.framer-v-fxwqyc .framer-1g5lgb7 { cursor: unset; flex: none; padding: 0px 16px 0px 16px; width: 390px; }\",\".framer-i7FH4.framer-v-fxwqyc .framer-bcim80 { flex: 1 0 0px; order: 0; width: 1px; }\",\".framer-i7FH4.framer-v-fxwqyc .framer-cornpr { flex: 1 0 0px; width: 1px; }\",\".framer-i7FH4.framer-v-fxwqyc .framer-1n7pmy6 { cursor: pointer; }\",\".framer-i7FH4.framer-v-cjftip .framer-1g5lgb7, .framer-i7FH4.framer-v-1fvassn .framer-1g5lgb7 { cursor: unset; }\",\".framer-i7FH4.framer-v-cjftip .framer-136b34x { text-decoration: none; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 84\n * @framerIntrinsicWidth 1380\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xpIRmv0yk\":{\"layout\":[\"fixed\",\"fixed\"]},\"MbrzGtv9e\":{\"layout\":[\"fixed\",\"fixed\"]},\"KneAb15nE\":{\"layout\":[\"fixed\",\"fixed\"]},\"OAMCLpJtx\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"iAKnDY3D6\":\"project\",\"lMB78J26e\":\"menu\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVqBOyzqlI=withCSS(Component,css,\"framer-i7FH4\");export default FramerVqBOyzqlI;FramerVqBOyzqlI.displayName=\"Nav Bar\";FramerVqBOyzqlI.defaultProps={height:84,width:1380};addPropertyControls(FramerVqBOyzqlI,{variant:{options:[\"dTrNRUjOv\",\"xpIRmv0yk\",\"MbrzGtv9e\",\"KneAb15nE\",\"OAMCLpJtx\"],optionTitles:[\"Desktop Projects\",\"Tablet\",\"Mobile\",\"Desktop Menu\",\"Desktop Projects HD\"],title:\"Variant\",type:ControlType.Enum},iAKnDY3D6:(ProjectsControls===null||ProjectsControls===void 0?void 0:ProjectsControls[\"variant\"])&&{...ProjectsControls[\"variant\"],defaultValue:\"fUk4McypO\",description:undefined,hidden:undefined,title:\"Project\"},lMB78J26e:(NavigationControls===null||NavigationControls===void 0?void 0:NavigationControls[\"variant\"])&&{...NavigationControls[\"variant\"],defaultValue:\"aUydbwbC5\",description:undefined,hidden:undefined,title:\"Menu\"}});addFonts(FramerVqBOyzqlI,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavigationFonts,...ProjectsFonts,...ContactButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVqBOyzqlI\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1380\",\"framerVariables\":\"{\\\"iAKnDY3D6\\\":\\\"project\\\",\\\"lMB78J26e\\\":\\\"menu\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xpIRmv0yk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MbrzGtv9e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KneAb15nE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OAMCLpJtx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"84\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VqBOyzqlI.map"],
  "mappings": "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",
  "names": ["fontStack", "useForceRender", "_", "set", "ye", "te", "v", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "Time", "props", "fontFamily", "fontSize", "fontWeight", "showHours", "color", "font", "tabularFont", "alignment", "visible", "setIsVisible", "isCanvas", "RenderTarget", "render", "useLocaleCode", "textContent", "ue", "int", "p", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "TimeDateFonts", "getFonts", "Time", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "Link", "ComponentViewportProvider", "css", "FramerHr62aO5je", "withCSS", "Hr62aO5je_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "menuOverlay", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "LO6tqcQ6Q", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "Framert5vivhDDa", "withCSS", "t5vivhDDa_default", "addPropertyControls", "ControlType", "addFonts", "ButtonOverlayFonts", "getFonts", "t5vivhDDa_default", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "animation2", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntert682wp", "overlay", "paginationInfo", "args", "ref1", "pe", "ref2", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "l", "u", "cx", "RichText2", "SVG", "AnimatePresence", "Floating", "Link", "ComponentViewportProvider", "css", "Framera9S3k0OCq", "withCSS", "a9S3k0OCq_default", "addPropertyControls", "ControlType", "addFonts", "ButtonOverlayFonts", "getFonts", "t5vivhDDa_default", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "hover", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Wdytxyivr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter12r25ej", "overlay", "paginationInfo", "args", "ref1", "pe", "ref2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "l", "u", "cx", "RichText2", "SVG", "AnimatePresence", "Floating", "Link", "ComponentViewportProvider", "css", "FramerAmjpItVYn", "withCSS", "AmjpItVYn_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerXkxmfqCyL", "withCSS", "XkxmfqCyL_default", "addFonts", "NavigationFonts", "getFonts", "AmjpItVYn_default", "ProjectsFonts", "a9S3k0OCq_default", "ContactButtonFonts", "XkxmfqCyL_default", "ProjectsControls", "getPropertyControls", "NavigationControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableVariantMap", "getProps", "height", "id", "menu", "project", "width", "props", "_humanReadableEnumMap_project", "_ref", "_ref1", "_humanReadableEnumMap1_menu", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "iAKnDY3D6", "lMB78J26e", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1y54cf", "args", "onTapd3mwcn", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "Link", "ComponentViewportProvider", "SVG", "css", "FramerVqBOyzqlI", "withCSS", "VqBOyzqlI_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
