{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js", "ssg:https://framerusercontent.com/modules/euMMJwRBMvaabEPk3mTS/CKcnyDpaVPT3UbQphrbR/opOD7GoYe.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{startTransition,useCallback,useEffect,useRef,useState}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}const defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const mergedProps={...defaultProps,...props};const{outputType,timeFormat,showYear,showMonth,showWeekday,// showHours,\nshowMinutes,showSeconds,monthFormat,color,font,tabularFont}=mergedProps;const localCode=useLocaleCode();const getTextContent=useCallback(()=>formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,// showHours,\n    showMinutes,showSeconds},timeFormat,monthFormat,localCode),[localCode,monthFormat,outputType,showMinutes,showMonth,showSeconds,showWeekday,showYear,timeFormat]);const timeoutRef=useRef()// FIXME: With React 19, we can remove this and return a cleanup from the ref callback\n;const updateCountdown=useCallback(node=>{if(node===null){// React calls w/ `null` on unmount or if the ref function changes.\nclearTimeout(timeoutRef.current);return;}let prev;const tick=()=>{const date=new Date;const next=new Date().setSeconds(date.getSeconds()+1,0)-+date;timeoutRef.current=setTimeout(tick,next);const textContent=getTextContent();if(prev!==textContent){node.textContent=textContent;prev=textContent;}};tick();},[getTextContent]);const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;useEffect(()=>{startTransition(()=>setIsVisible(true));// Don\u2019t want real time on Canvas\nif(isCanvas)return;},[isCanvas]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},ref:isCanvas?undefined:updateCountdown,children:getTextContent()});}Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicWidth\":\"140\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/VcjoGfejDMobikWC6bzv/aqex9hweKn7IISLplw6D/knV_aOecC.js\";import MenuLink from\"https://framerusercontent.com/modules/i0D4nqtIb3Or9uLx3AEp/vZwvVoiTPTUhdyERUYjV/cGRjAPs92.js\";const MenuLinkFonts=getFonts(MenuLink);const TimeDateFonts=getFonts(TimeDate);const cycleOrder=[\"MwVQMAfcH\",\"ebXvV8FQ8\",\"MicZyEAhl\"];const serializationHash=\"framer-umwP7\";const variantClassNames={ebXvV8FQ8:\"framer-v-c2thr1\",MicZyEAhl:\"framer-v-1lzb6h9\",MwVQMAfcH:\"framer-v-n2t5fl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"MwVQMAfcH\",Mobile:\"MicZyEAhl\",Tablet:\"ebXvV8FQ8\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"MwVQMAfcH\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MwVQMAfcH\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-n2t5fl\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"MwVQMAfcH\",ref:refBinding,style:{backgroundColor:\"var(--token-dd3bc34b-f5c1-47d1-a245-8a68554e705e, rgb(0, 0, 0))\",borderTopLeftRadius:60,borderTopRightRadius:60,...style},variants:{MicZyEAhl:{borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({ebXvV8FQ8:{\"data-framer-name\":\"Tablet\"},MicZyEAhl:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y7epjq\",layoutDependency:layoutDependency,layoutId:\"Te8DuCh7t\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gk88f6\",layoutDependency:layoutDependency,layoutId:\"UqXjaw79C\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tyysf3\",\"data-styles-preset\":\"knV_aOecC\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf55a365-3700-4540-906e-1cae02803a57, rgb(230, 230, 230)))\"},children:\"(LET'S CONNECT)\"})}),className:\"framer-118je8o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MGzZOSRnA\",style:{\"--extracted-r6o4lv\":\"var(--token-cf55a365-3700-4540-906e-1cae02803a57, rgb(230, 230, 230))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-njro4f\",\"data-framer-name\":\"Menu + Description\",layoutDependency:layoutDependency,layoutId:\"MKjlTOVN9\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-28tp1l\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"DZfKZLNec\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`max((${componentViewport?.width||\"100vw\"} - 272px) * 0.7 - 24px, 1px)`,y:(componentViewport?.y||0)+160+0+0+0+128+0+0+0,...addPropertyOverrides({ebXvV8FQ8:{width:`max(${componentViewport?.width||\"100vw\"} - 144px, 1px)`,y:(componentViewport?.y||0)+160+0+0+0+0+128+0+0+0},MicZyEAhl:{height:72,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,y:(componentViewport?.y||0)+96+0+0+0+0+128+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yvsf34-container\",\"data-framer-name\":\"email\",layoutDependency:layoutDependency,layoutId:\"V0J3CapmM-container\",name:\"email\",nodeId:\"V0J3CapmM\",rendersWithMotion:true,scopeId:\"opOD7GoYe\",children:/*#__PURE__*/_jsx(MenuLink,{avVFjwr_8:\"jared@jaredsylvia.net\",eqkivNDgL:\"var(--token-633663d4-6135-4d2d-a328-8707c8a7d2dc, rgb(255, 60, 0))\",height:\"100%\",id:\"V0J3CapmM\",JuK7M5nzE:\"mailto:jared@jaredsylvia.net\",layoutId:\"V0J3CapmM\",name:\"email\",NcibIrZBg:\"ArrowDown\",style:{height:\"100%\",width:\"100%\"},uKTtRpbhS:true,variant:\"Vt5DC45Go\",VNczDV5_T:\"WORK\",width:\"100%\",...addPropertyOverrides({MicZyEAhl:{style:{width:\"100%\"},variant:\"iEdcxDLaV\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LBqH8UGvV\"},implicitPathVariables:undefined},{href:{webPageId:\"LBqH8UGvV\"},implicitPathVariables:undefined},{href:{webPageId:\"LBqH8UGvV\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:`max((${componentViewport?.width||\"100vw\"} - 272px) * 0.7 - 24px, 1px)`,y:(componentViewport?.y||0)+160+0+0+0+128+0+0+88,...addPropertyOverrides({ebXvV8FQ8:{width:`max(${componentViewport?.width||\"100vw\"} - 144px, 1px)`,y:(componentViewport?.y||0)+160+0+0+0+0+128+0+0+64},MicZyEAhl:{height:72,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,y:(componentViewport?.y||0)+96+0+0+0+0+128+0+0+96}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-s6f32k-container\",\"data-framer-name\":\"telephone\",layoutDependency:layoutDependency,layoutId:\"Lix91Lb6M-container\",name:\"telephone\",nodeId:\"Lix91Lb6M\",rendersWithMotion:true,scopeId:\"opOD7GoYe\",children:/*#__PURE__*/_jsx(MenuLink,{avVFjwr_8:\"Start a Project Today\",eqkivNDgL:\"var(--token-633663d4-6135-4d2d-a328-8707c8a7d2dc, rgb(255, 60, 0))\",height:\"100%\",id:\"Lix91Lb6M\",JuK7M5nzE:resolvedLinks[0],layoutId:\"Lix91Lb6M\",name:\"telephone\",NcibIrZBg:\"ArrowDown\",style:{height:\"100%\",width:\"100%\"},uKTtRpbhS:true,variant:\"Vt5DC45Go\",VNczDV5_T:\"WORK\",width:\"100%\",...addPropertyOverrides({ebXvV8FQ8:{JuK7M5nzE:resolvedLinks[1]},MicZyEAhl:{JuK7M5nzE:resolvedLinks[2],style:{width:\"100%\"},variant:\"iEdcxDLaV\"}},baseVariant,gestureVariant)})})})})]})})]}),/*#__PURE__*/_jsx(motion.nav,{className:\"framer-1xavgcu\",layoutDependency:layoutDependency,layoutId:\"B1z8YYdZu\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3j5xkt\",\"data-framer-name\":\"Menu + Description\",layoutDependency:layoutDependency,layoutId:\"bF04PjMwx\",children:/*#__PURE__*/_jsx(motion.nav,{className:\"framer-3busbt\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"bDk97RGYQ\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9jtn36\",layoutDependency:layoutDependency,layoutId:\"xCob4Q5ym\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1usen53\",layoutDependency:layoutDependency,layoutId:\"IjguX9qsq\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`max((${componentViewport?.width||\"100vw\"} - 272px) * 0.3, 1px)`,y:(componentViewport?.y||0)+160+0+0+0+0+0+0+0+0+0+0+0,...addPropertyOverrides({ebXvV8FQ8:{width:\"140px\",y:(componentViewport?.y||0)+160+0+0+322+0+0+0+0+0+0+0},MicZyEAhl:{width:\"100px\",y:(componentViewport?.y||0)+96+0+0+392+0+0+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nhswzc-container\",layoutDependency:layoutDependency,layoutId:\"C2KssBDgA-container\",nodeId:\"C2KssBDgA\",rendersWithMotion:true,scopeId:\"opOD7GoYe\",children:/*#__PURE__*/_jsx(MenuLink,{avVFjwr_8:\"INSTAGRAM\",eqkivNDgL:\"var(--token-633663d4-6135-4d2d-a328-8707c8a7d2dc, rgb(255, 60, 0))\",height:\"100%\",id:\"C2KssBDgA\",JuK7M5nzE:\"www.instagram.com/jaredsylvia\",layoutId:\"C2KssBDgA\",NcibIrZBg:\"ArrowDown\",style:{width:\"100%\"},uKTtRpbhS:true,variant:\"WbH394pxb\",VNczDV5_T:\"WORK\",width:\"100%\"})})})})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8zo6qk\",\"data-framer-name\":\"Agencia\",layoutDependency:layoutDependency,layoutId:\"FFvEEhEBC\",style:{backgroundColor:\"var(--token-dd3bc34b-f5c1-47d1-a245-8a68554e705e, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ixz2hf\",layoutDependency:layoutDependency,layoutId:\"BgiM0CBDI\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xe2lsx\",layoutDependency:layoutDependency,layoutId:\"hjvhr4UkA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tyysf3\",\"data-styles-preset\":\"knV_aOecC\",children:\"\\xa9\"})}),className:\"framer-v47md3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KBZwW7TLS\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pogqt2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Oobe9veXv-container\",nodeId:\"Oobe9veXv\",rendersWithMotion:true,scopeId:\"opOD7GoYe\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"var(--token-51170b41-dbf0-44c9-9f71-6387b73e409d, rgb(255, 255, 255))\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"Oobe9veXv\",layoutId:\"Oobe9veXv\",monthFormat:\"long\",outputType:\"date\",showMinutes:true,showMonth:false,showSeconds:true,showWeekday:false,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tyysf3\",\"data-styles-preset\":\"knV_aOecC\",children:\"by \"})}),className:\"framer-isof76\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LUGiLaIpU\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-633663d4-6135-4d2d-a328-8707c8a7d2dc, rgb(255, 60, 0)))\"},children:\"JARED SYLVIA\"})}),className:\"framer-14fg2ha\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"Ez2ae2wzJ\",style:{\"--extracted-r6o4lv\":\"var(--token-633663d4-6135-4d2d-a328-8707c8a7d2dc, rgb(255, 60, 0))\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"195.47354819404237px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-633663d4-6135-4d2d-a328-8707c8a7d2dc, rgb(255, 60, 0)))\"},children:\"JARED SYLVIA\"})}),className:\"framer-1j66q4v\",fonts:[\"GF;Inter Tight-900\"],layoutDependency:layoutDependency,layoutId:\"T12LNOetx\",style:{\"--extracted-gdpscs\":\"var(--token-633663d4-6135-4d2d-a328-8707c8a7d2dc, rgb(255, 60, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",viewBox:\"0 0 1392 156\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-umwP7.framer-1up81ms, .framer-umwP7 .framer-1up81ms { display: block; }\",\".framer-umwP7.framer-n2t5fl { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 752px; justify-content: flex-start; overflow: hidden; padding: 160px 136px 0px 136px; position: relative; width: 1440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-umwP7 .framer-y7epjq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-umwP7 .framer-1gk88f6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-umwP7 .framer-118je8o { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-umwP7 .framer-njro4f, .framer-umwP7 .framer-3j5xkt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-umwP7 .framer-28tp1l { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-umwP7 .framer-yvsf34-container { flex: none; height: 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-umwP7 .framer-s6f32k-container { flex: none; height: 58px; position: relative; width: 100%; z-index: 1; }\",\".framer-umwP7 .framer-1xavgcu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 30%; }\",\".framer-umwP7 .framer-3busbt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-umwP7 .framer-9jtn36, .framer-umwP7 .framer-1usen53 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-umwP7 .framer-1nhswzc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-umwP7 .framer-8zo6qk { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 24px 24px 0px 24px; position: absolute; right: 0px; z-index: 2; }\",\".framer-umwP7 .framer-1ixz2hf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 16px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 337px; }\",\".framer-umwP7 .framer-xe2lsx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-umwP7 .framer-v47md3, .framer-umwP7 .framer-isof76, .framer-umwP7 .framer-14fg2ha { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-umwP7 .framer-1pogqt2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-umwP7 .framer-1j66q4v { flex: none; height: auto; position: relative; white-space: pre; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-umwP7.framer-n2t5fl, .framer-umwP7 .framer-y7epjq, .framer-umwP7 .framer-1gk88f6, .framer-umwP7 .framer-28tp1l, .framer-umwP7 .framer-1xavgcu, .framer-umwP7 .framer-3busbt, .framer-umwP7 .framer-9jtn36, .framer-umwP7 .framer-1usen53, .framer-umwP7 .framer-8zo6qk, .framer-umwP7 .framer-1ixz2hf, .framer-umwP7 .framer-xe2lsx { gap: 0px; } .framer-umwP7.framer-n2t5fl > *, .framer-umwP7 .framer-1gk88f6 > *, .framer-umwP7 .framer-28tp1l > *, .framer-umwP7 .framer-1xavgcu > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-umwP7.framer-n2t5fl > :first-child, .framer-umwP7 .framer-1gk88f6 > :first-child, .framer-umwP7 .framer-28tp1l > :first-child, .framer-umwP7 .framer-1xavgcu > :first-child, .framer-umwP7 .framer-3busbt > :first-child, .framer-umwP7 .framer-9jtn36 > :first-child, .framer-umwP7 .framer-1usen53 > :first-child, .framer-umwP7 .framer-8zo6qk > :first-child { margin-top: 0px; } .framer-umwP7.framer-n2t5fl > :last-child, .framer-umwP7 .framer-1gk88f6 > :last-child, .framer-umwP7 .framer-28tp1l > :last-child, .framer-umwP7 .framer-1xavgcu > :last-child, .framer-umwP7 .framer-3busbt > :last-child, .framer-umwP7 .framer-9jtn36 > :last-child, .framer-umwP7 .framer-1usen53 > :last-child, .framer-umwP7 .framer-8zo6qk > :last-child { margin-bottom: 0px; } .framer-umwP7 .framer-y7epjq > *, .framer-umwP7 .framer-1ixz2hf > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-umwP7 .framer-y7epjq > :first-child, .framer-umwP7 .framer-1ixz2hf > :first-child, .framer-umwP7 .framer-xe2lsx > :first-child { margin-left: 0px; } .framer-umwP7 .framer-y7epjq > :last-child, .framer-umwP7 .framer-1ixz2hf > :last-child, .framer-umwP7 .framer-xe2lsx > :last-child { margin-right: 0px; } .framer-umwP7 .framer-3busbt > *, .framer-umwP7 .framer-9jtn36 > *, .framer-umwP7 .framer-1usen53 > *, .framer-umwP7 .framer-8zo6qk > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-umwP7 .framer-xe2lsx > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",\".framer-umwP7.framer-v-c2thr1.framer-n2t5fl { height: 840px; padding: 160px 72px 0px 72px; width: 762px; }\",\".framer-umwP7.framer-v-c2thr1 .framer-y7epjq { flex-direction: column; gap: 72px; }\",\".framer-umwP7.framer-v-c2thr1 .framer-1gk88f6, .framer-umwP7.framer-v-1lzb6h9 .framer-1gk88f6 { flex: none; width: 100%; }\",\".framer-umwP7.framer-v-c2thr1 .framer-28tp1l, .framer-umwP7.framer-v-1lzb6h9 .framer-28tp1l { gap: 24px; }\",\".framer-umwP7.framer-v-c2thr1 .framer-1xavgcu, .framer-umwP7.framer-v-1lzb6h9 .framer-1xavgcu { width: 100%; }\",\".framer-umwP7.framer-v-c2thr1 .framer-3busbt, .framer-umwP7.framer-v-1lzb6h9 .framer-9jtn36 { flex-direction: row; }\",\".framer-umwP7.framer-v-c2thr1 .framer-9jtn36 { flex: 1 0 0px; flex-direction: row; width: 1px; }\",\".framer-umwP7.framer-v-c2thr1 .framer-1usen53, .framer-umwP7.framer-v-1lzb6h9 .framer-1usen53 { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; width: 1px; }\",\".framer-umwP7.framer-v-c2thr1 .framer-1nhswzc-container { width: 140px; }\",\".framer-umwP7.framer-v-c2thr1 .framer-1ixz2hf { padding: 0px 48px 0px 48px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-umwP7.framer-v-c2thr1 .framer-y7epjq, .framer-umwP7.framer-v-c2thr1 .framer-28tp1l, .framer-umwP7.framer-v-c2thr1 .framer-3busbt, .framer-umwP7.framer-v-c2thr1 .framer-9jtn36 { gap: 0px; } .framer-umwP7.framer-v-c2thr1 .framer-y7epjq > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-umwP7.framer-v-c2thr1 .framer-y7epjq > :first-child, .framer-umwP7.framer-v-c2thr1 .framer-28tp1l > :first-child { margin-top: 0px; } .framer-umwP7.framer-v-c2thr1 .framer-y7epjq > :last-child, .framer-umwP7.framer-v-c2thr1 .framer-28tp1l > :last-child { margin-bottom: 0px; } .framer-umwP7.framer-v-c2thr1 .framer-28tp1l > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-umwP7.framer-v-c2thr1 .framer-3busbt > *, .framer-umwP7.framer-v-c2thr1 .framer-9jtn36 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-umwP7.framer-v-c2thr1 .framer-3busbt > :first-child, .framer-umwP7.framer-v-c2thr1 .framer-9jtn36 > :first-child { margin-left: 0px; } .framer-umwP7.framer-v-c2thr1 .framer-3busbt > :last-child, .framer-umwP7.framer-v-c2thr1 .framer-9jtn36 > :last-child { margin-right: 0px; } }\",\".framer-umwP7.framer-v-1lzb6h9.framer-n2t5fl { padding: 96px 24px 0px 24px; width: 320px; will-change: unset; }\",\".framer-umwP7.framer-v-1lzb6h9 .framer-y7epjq { flex-direction: column; gap: 96px; }\",\".framer-umwP7.framer-v-1lzb6h9 .framer-yvsf34-container, .framer-umwP7.framer-v-1lzb6h9 .framer-s6f32k-container { height: auto; }\",\".framer-umwP7.framer-v-1lzb6h9 .framer-1nhswzc-container { width: 100px; }\",\".framer-umwP7.framer-v-1lzb6h9 .framer-8zo6qk { bottom: 24px; }\",\".framer-umwP7.framer-v-1lzb6h9 .framer-1ixz2hf { align-content: flex-end; align-items: flex-end; flex-direction: column; height: min-content; justify-content: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-umwP7.framer-v-1lzb6h9 .framer-y7epjq, .framer-umwP7.framer-v-1lzb6h9 .framer-28tp1l, .framer-umwP7.framer-v-1lzb6h9 .framer-9jtn36, .framer-umwP7.framer-v-1lzb6h9 .framer-1ixz2hf { gap: 0px; } .framer-umwP7.framer-v-1lzb6h9 .framer-y7epjq > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-umwP7.framer-v-1lzb6h9 .framer-y7epjq > :first-child, .framer-umwP7.framer-v-1lzb6h9 .framer-28tp1l > :first-child, .framer-umwP7.framer-v-1lzb6h9 .framer-1ixz2hf > :first-child { margin-top: 0px; } .framer-umwP7.framer-v-1lzb6h9 .framer-y7epjq > :last-child, .framer-umwP7.framer-v-1lzb6h9 .framer-28tp1l > :last-child, .framer-umwP7.framer-v-1lzb6h9 .framer-1ixz2hf > :last-child { margin-bottom: 0px; } .framer-umwP7.framer-v-1lzb6h9 .framer-28tp1l > *, .framer-umwP7.framer-v-1lzb6h9 .framer-1ixz2hf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-umwP7.framer-v-1lzb6h9 .framer-9jtn36 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-umwP7.framer-v-1lzb6h9 .framer-9jtn36 > :first-child { margin-left: 0px; } .framer-umwP7.framer-v-1lzb6h9 .framer-9jtn36 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 752\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ebXvV8FQ8\":{\"layout\":[\"fixed\",\"fixed\"]},\"MicZyEAhl\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameropOD7GoYe=withCSS(Component,css,\"framer-umwP7\");export default FrameropOD7GoYe;FrameropOD7GoYe.displayName=\"Footer\";FrameropOD7GoYe.defaultProps={height:752,width:1440};addPropertyControls(FrameropOD7GoYe,{variant:{options:[\"MwVQMAfcH\",\"ebXvV8FQ8\",\"MicZyEAhl\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameropOD7GoYe,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqWSRToK8EPg.woff2\",weight:\"900\"}]},...MenuLinkFonts,...TimeDateFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameropOD7GoYe\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"752\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ebXvV8FQ8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MicZyEAhl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./opOD7GoYe.map"],
  "mappings": "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",
  "names": ["fontStack", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "defaultProps", "Time", "props", "mergedProps", "color", "font", "tabularFont", "useLocaleCode", "getTextContent", "te", "timeoutRef", "pe", "updateCountdown", "node", "prev", "tick", "next", "textContent", "visible", "setIsVisible", "ye", "isCanvas", "RenderTarget", "ue", "Z", "p", "addPropertyControls", "ControlType", "MenuLinkFonts", "getFonts", "cGRjAPs92_default", "TimeDateFonts", "Time", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "css", "FrameropOD7GoYe", "withCSS", "opOD7GoYe_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
