{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js", "ssg:https://framerusercontent.com/modules/2mHGM9rluitcNYfG4CVb/NULzuwCAWpedW3rHo8ED/ju3Gvr7P5.js", "ssg:https://framerusercontent.com/modules/8DbMhYpjwnaFgvCbRcVi/gC5HfDa1Ubc3Xnw5yED5/SAv3sS8dq.js", "ssg:https://framerusercontent.com/modules/9uAs25CDjjQ5BDYyGBaC/jfTZ5ryb7MN97E6K9L8L/dkSAvit4R.js", "ssg:https://framerusercontent.com/modules/gqSbNKHe3XOLLRiKiIQ5/P3ECd9vQu92mVPhui62s/VBSNDMwjd.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 (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/mLmxSznsCJoWYTNcFhCP/kCrJ8iCJrG8iEbUxoySR/UbjcdJo48.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/x9IGc2E2Qq3XqWK1xhuy/LMIhOGDrpQaZ5lvgpW7m/v7tI_hyZD.js\";const TimeDateFonts=getFonts(TimeDate);const cycleOrder=[\"jmAAHXKqV\",\"yDawJBhQy\",\"tLOyFYVMm\"];const serializationHash=\"framer-zdXSD\";const variantClassNames={jmAAHXKqV:\"framer-v-1kp9vm3\",tLOyFYVMm:\"framer-v-67baca\",yDawJBhQy:\"framer-v-2j4m94\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - Hero\":\"jmAAHXKqV\",Footer:\"tLOyFYVMm\",Mobile:\"yDawJBhQy\"};const getProps=({color,height,id,width,...props})=>{return{...props,hvyH2UM9b:color??props.hvyH2UM9b??\"var(--token-f2e51d6c-fa2c-4269-94e8-0776848b54ee, rgb(255, 255, 255))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"jmAAHXKqV\"};};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,hvyH2UM9b,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jmAAHXKqV\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"tLOyFYVMm\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"tLOyFYVMm\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1kp9vm3\",className,classNames),\"data-framer-name\":\"Desktop - Hero\",layoutDependency:layoutDependency,layoutId:\"jmAAHXKqV\",ref:refBinding,style:{...style},...addPropertyOverrides({tLOyFYVMm:{\"data-framer-name\":\"Footer\"},yDawJBhQy:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yd6o9a\",\"data-framer-name\":\"copyright\",layoutDependency:layoutDependency,layoutId:\"y2GNh0DgP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19hj8xy\",\"data-styles-preset\":\"v7tI_hyZD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-hvyH2UM9b-ju3Gvr7P5))\"},children:\"\\xa9\"})}),className:\"framer-17rvgy9\",\"data-framer-name\":\"|\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CJlUMSviL\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-hvyH2UM9b-ju3Gvr7P5)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-hvyH2UM9b-ju3Gvr7P5\":hvyH2UM9b},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-107hvln-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"CfF885s_k-container\",nodeId:\"CfF885s_k\",rendersWithMotion:true,scopeId:\"ju3Gvr7P5\",children:/*#__PURE__*/_jsx(TimeDate,{color:hvyH2UM9b,font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"CfF885s_k\",layoutId:\"CfF885s_k\",monthFormat:\"long\",outputType:\"date\",showMinutes:true,showMonth:false,showSeconds:true,showWeekday:false,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-19hj8xy\",\"data-styles-preset\":\"v7tI_hyZD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-hvyH2UM9b-ju3Gvr7P5))\"},children:[/*#__PURE__*/_jsx(motion.code,{children:\"YOU ALREADY SOUND SMART.\"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.code,{children:\"WE MAKE SURE YOUR WRITING DOES TOO.\"})]})}),className:\"framer-3chdoy\",\"data-framer-name\":\"Digital Designer\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q5mqmHYKS\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-hvyH2UM9b-ju3Gvr7P5)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-hvyH2UM9b-ju3Gvr7P5\":hvyH2UM9b},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19hj8xy\",\"data-styles-preset\":\"v7tI_hyZD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-hvyH2UM9b-ju3Gvr7P5))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.uihub.design/\",motionChild:true,nodeId:\"bsxIoYh0q\",openInNewTab:true,scopeId:\"ju3Gvr7P5\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l2sqsl\",\"data-styles-preset\":\"UbjcdJo48\",children:\"UIhub\"})})})}),className:\"framer-8ru5tv\",\"data-framer-name\":\"Digital Designer\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bsxIoYh0q\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-hvyH2UM9b-ju3Gvr7P5)\",\"--variable-reference-hvyH2UM9b-ju3Gvr7P5\":hvyH2UM9b},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19hj8xy\",\"data-styles-preset\":\"v7tI_hyZD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-hvyH2UM9b-ju3Gvr7P5))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://framer.link/cristianmielu\",motionChild:true,nodeId:\"hgm6EoHSz\",openInNewTab:true,scopeId:\"ju3Gvr7P5\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l2sqsl\",\"data-styles-preset\":\"UbjcdJo48\",children:\"Framer\"})})})}),className:\"framer-1s28701\",\"data-framer-name\":\"Digital Designer\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hgm6EoHSz\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-hvyH2UM9b-ju3Gvr7P5)\",\"--variable-reference-hvyH2UM9b-ju3Gvr7P5\":hvyH2UM9b},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19hj8xy\",\"data-styles-preset\":\"v7tI_hyZD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-hvyH2UM9b-ju3Gvr7P5))\"},children:\"\u2014\"})}),className:\"framer-u9ftml\",\"data-framer-name\":\"|\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MQXK1QViP\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-hvyH2UM9b-ju3Gvr7P5)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-hvyH2UM9b-ju3Gvr7P5\":hvyH2UM9b},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zdXSD.framer-xlfs4h, .framer-zdXSD .framer-xlfs4h { display: block; }\",\".framer-zdXSD.framer-1kp9vm3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 48px; position: relative; width: 552px; }\",\".framer-zdXSD .framer-yd6o9a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-zdXSD .framer-17rvgy9, .framer-zdXSD .framer-3chdoy, .framer-zdXSD .framer-8ru5tv, .framer-zdXSD .framer-1s28701, .framer-zdXSD .framer-u9ftml { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-zdXSD .framer-107hvln-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-zdXSD.framer-v-2j4m94.framer-1kp9vm3 { padding: 0px; }\",\".framer-zdXSD.framer-v-67baca.framer-1kp9vm3 { gap: 8px; justify-content: flex-start; padding: 0px; width: min-content; }\",\".framer-zdXSD.framer-v-67baca .framer-yd6o9a { order: 0; }\",\".framer-zdXSD.framer-v-67baca .framer-8ru5tv { order: 2; }\",\".framer-zdXSD.framer-v-67baca .framer-1s28701 { order: 4; }\",\".framer-zdXSD.framer-v-67baca .framer-u9ftml { order: 3; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 552\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yDawJBhQy\":{\"layout\":[\"fixed\",\"auto\"]},\"tLOyFYVMm\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"hvyH2UM9b\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerju3Gvr7P5=withCSS(Component,css,\"framer-zdXSD\");export default Framerju3Gvr7P5;Framerju3Gvr7P5.displayName=\"Credentials Span\";Framerju3Gvr7P5.defaultProps={height:38,width:552};addPropertyControls(Framerju3Gvr7P5,{variant:{options:[\"jmAAHXKqV\",\"yDawJBhQy\",\"tLOyFYVMm\"],optionTitles:[\"Desktop - Hero\",\"Mobile\",\"Footer\"],title:\"Variant\",type:ControlType.Enum},hvyH2UM9b:{defaultValue:\"var(--token-f2e51d6c-fa2c-4269-94e8-0776848b54ee, rgb(255, 255, 255))\",title:\"Color\",type:ControlType.Color}});addFonts(Framerju3Gvr7P5,[{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\"}]},...TimeDateFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerju3Gvr7P5\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"hvyH2UM9b\\\":\\\"color\\\"}\",\"framerIntrinsicWidth\":\"552\",\"framerIntrinsicHeight\":\"38\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yDawJBhQy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tLOyFYVMm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ju3Gvr7P5.map", "// Generated by Framer (9045c1a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{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/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\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-lLyer .framer-styles-preset-d9926o:not(.rich-text-wrapper), .framer-lLyer .framer-styles-preset-d9926o.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-e26320a8-4c32-4137-9eac-2fb95b386dfe, #0d0d0d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-lLyer\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/8lRawzcHUcJ4cWQLkeLQ/B2mmsO0DmxNoUL7XpZZn/C19OmTv69.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/4QHgwquxVRSIW0ih0vFE/RXTSMHxNwi3iloauCxu8/NtretGAX2.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ufKxLqg8rqYdjiQn7kTq/KrG3NrI1dbpiN6GluXdx/rmvci177Z.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/iOAFbr1TH2FGTwp9L5lQ/Yf0jpXjUDhJStSZwlOyK/RwznYDrqE.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/8DbMhYpjwnaFgvCbRcVi/gC5HfDa1Ubc3Xnw5yED5/SAv3sS8dq.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/mskb60Vtq7TFTMabhT5a/Ip3eEfgBSBwG0i6UTXTI/t8BCfSUBA.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/kDIIYOk7QgXD6L9uiHKF/Let9iDlKsZNucVuUp1EL/vb_2OsXVo.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/4iOobibpaMJ6LUjJkMFp/yrdGI0962c3knaz3NZh5/YvJfGxDmy.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"p4fCh8BbD\",\"t1yOVpW1e\",\"CsqqHtELp\",\"uxThMDMmE\",\"DyxPAc5dY\",\"t0oMbS0af\",\"nCVANTKlZ\",\"enAk3AGYJ\"];const serializationHash=\"framer-nDh5P\";const variantClassNames={CsqqHtELp:\"framer-v-17xsdn\",DyxPAc5dY:\"framer-v-10i0qri\",enAk3AGYJ:\"framer-v-1jml9mz\",nCVANTKlZ:\"framer-v-19a8899\",p4fCh8BbD:\"framer-v-2xx5et\",t0oMbS0af:\"framer-v-l1gaqq\",t1yOVpW1e:\"framer-v-1pepvu2\",uxThMDMmE:\"framer-v-1vfe37v\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:48};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:48};const transition2={bounce:.2,delay:0,duration:.8,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};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 - Default - Last\":\"CsqqHtELp\",\"Desktop - Default\":\"p4fCh8BbD\",\"Desktop - Opened - Last\":\"uxThMDMmE\",\"Desktop - Opened\":\"t1yOVpW1e\",\"Tablet & Mobile - Default - Last\":\"nCVANTKlZ\",\"Tablet & Mobile - Default\":\"DyxPAc5dY\",\"Tablet & Mobile - Opened - Last\":\"enAk3AGYJ\",\"Tablet & Mobile - Opened\":\"t0oMbS0af\"};const getProps=({answer,height,id,question,width,...props})=>{return{...props,gAkdU7o_K:question??props.gAkdU7o_K??\"What services do you offer?\",JuW3bmvGL:answer??props.JuW3bmvGL??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"I specialize in premium web design, UI/UX, branding, and interactive experiences. Whether you need a custom website, a brand identity, or ongoing design support, I tailor my services to fit your needs.\"})}),variant:humanReadableVariantMap[props.variant]??props.variant??\"p4fCh8BbD\"};};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,gAkdU7o_K,JuW3bmvGL,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p4fCh8BbD\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapfs174f=activeVariantCallback(async(...args)=>{setVariant(\"t1yOVpW1e\");});const onTapkrx488=activeVariantCallback(async(...args)=>{setVariant(\"p4fCh8BbD\");});const onTap9k9mq6=activeVariantCallback(async(...args)=>{setVariant(\"uxThMDMmE\");});const onTap1udphr0=activeVariantCallback(async(...args)=>{setVariant(\"CsqqHtELp\");});const onTap1b6qmcf=activeVariantCallback(async(...args)=>{setVariant(\"t0oMbS0af\");});const onTap6iqlkd=activeVariantCallback(async(...args)=>{setVariant(\"DyxPAc5dY\");});const onTapl16jre=activeVariantCallback(async(...args)=>{setVariant(\"enAk3AGYJ\");});const onTap1haki3e=activeVariantCallback(async(...args)=>{setVariant(\"nCVANTKlZ\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"t1yOVpW1e\",\"uxThMDMmE\",\"t0oMbS0af\",\"enAk3AGYJ\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"t0oMbS0af\",\"enAk3AGYJ\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"CsqqHtELp\",\"uxThMDMmE\",\"nCVANTKlZ\",\"enAk3AGYJ\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"DyxPAc5dY\",\"t0oMbS0af\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-2xx5et\",className,classNames),\"data-framer-name\":\"Desktop - Default\",layoutDependency:layoutDependency,layoutId:\"p4fCh8BbD\",ref:refBinding,style:{...style},...addPropertyOverrides({CsqqHtELp:{\"data-framer-name\":\"Desktop - Default - Last\"},DyxPAc5dY:{\"data-framer-name\":\"Tablet & Mobile - Default\"},enAk3AGYJ:{\"data-framer-name\":\"Tablet & Mobile - Opened - Last\"},nCVANTKlZ:{\"data-framer-name\":\"Tablet & Mobile - Default - Last\"},t0oMbS0af:{\"data-framer-name\":\"Tablet & Mobile - Opened\"},t1yOVpW1e:{\"data-framer-name\":\"Desktop - Opened\"},uxThMDMmE:{\"data-framer-name\":\"Desktop - Opened - Last\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14eeqan\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"TGfbAqpv1\",onTap:onTapfs174f,...addPropertyOverrides({CsqqHtELp:{onTap:onTap9k9mq6},DyxPAc5dY:{onTap:onTap1b6qmcf},enAk3AGYJ:{onTap:onTap1haki3e},nCVANTKlZ:{onTap:onTapl16jre},t0oMbS0af:{onTap:onTap6iqlkd},t1yOVpW1e:{onTap:onTapkrx488},uxThMDMmE:{onTap:onTap1udphr0}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nhwiih\",layoutDependency:layoutDependency,layoutId:\"sptU3ls2A\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1al3t2x\",layoutDependency:layoutDependency,layoutId:\"BoLS2V73H\",style:{backgroundColor:\"var(--token-0767286d-459f-4001-a1af-025fbd3caedf, rgb(255, 237, 229))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15azuwm\",\"data-framer-name\":\"line\",layoutDependency:layoutDependency,layoutId:\"JPxuGzZI6\",style:{backgroundColor:\"var(--token-a3b27f24-86fb-4e9a-bf94-7405f35162f9, rgb(255, 77, 0))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rz9e9f\",\"data-framer-name\":\"line\",layoutDependency:layoutDependency,layoutId:\"LV3STg582\",style:{backgroundColor:\"var(--token-a3b27f24-86fb-4e9a-bf94-7405f35162f9, rgb(255, 77, 0))\",rotate:0},variants:{CsqqHtELp:{rotate:0},DyxPAc5dY:{rotate:0},enAk3AGYJ:{rotate:90},nCVANTKlZ:{rotate:0},t0oMbS0af:{rotate:90},t1yOVpW1e:{rotate:90},uxThMDMmE:{rotate:90}}})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d9926o\",\"data-styles-preset\":\"SAv3sS8dq\",children:\"What services do you offer?\"})}),className:\"framer-11kotdp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hMRSH2DLR\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:gAkdU7o_K,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1xc7f8i\",\"data-framer-appear-id\":\"1xc7f8i\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"NaoTYMK6g\",...addPropertyOverrides({enAk3AGYJ:{__framer__styleAppearEffectEnabled:undefined,animate:animation2,initial:animation,optimized:true},t0oMbS0af:{__framer__styleAppearEffectEnabled:undefined,animate:animation2,initial:animation,optimized:true},t1yOVpW1e:{__framer__styleAppearEffectEnabled:undefined,animate:animation2,initial:animation,optimized:true},uxThMDMmE:{__framer__styleAppearEffectEnabled:undefined,animate:animation2,initial:animation,optimized:true}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-5b8dyh\",\"data-framer-name\":\"spacer\",layoutDependency:layoutDependency,layoutId:\"iHST56AAF\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:JuW3bmvGL,className:\"framer-h89t65\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ryw62erhc\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},stylesPresetsClassNames:{a:\"framer-styles-preset-1u2qjer\",blockquote:\"framer-styles-preset-1kywygt\",h1:\"framer-styles-preset-yp3igz\",h2:\"framer-styles-preset-12y1gy6\",h3:\"framer-styles-preset-1nfoldq\",h4:\"framer-styles-preset-d0pdz7\",p:\"framer-styles-preset-utq62i\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n5lgrm\",\"data-framer-name\":\"Bottom Border\",layoutDependency:layoutDependency,layoutId:\"r5C4FSZtu\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-r20vh7\",\"data-framer-name\":\"spacer\",layoutDependency:layoutDependency,layoutId:\"mTODFQX97\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5lhad6\",\"data-framer-name\":\"Bottom Border\",layoutDependency:layoutDependency,layoutId:\"DohxXnjTU\",style:{backgroundColor:\"var(--token-0767286d-459f-4001-a1af-025fbd3caedf, rgb(255, 237, 229))\"}})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nDh5P.framer-1nj73ji, .framer-nDh5P .framer-1nj73ji { display: block; }\",\".framer-nDh5P.framer-2xx5et { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 1200px; }\",\".framer-nDh5P .framer-14eeqan { cursor: pointer; display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nDh5P .framer-1nhwiih { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nDh5P .framer-1al3t2x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-nDh5P .framer-15azuwm { flex: none; height: 1px; left: calc(52.38095238095241% - 12px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 1px / 2); width: 12px; z-index: 1; }\",\".framer-nDh5P .framer-1rz9e9f { flex: none; height: 12px; left: calc(52.38095238095241% - 1px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 12px / 2); width: 1px; z-index: 1; }\",\".framer-nDh5P .framer-11kotdp, .framer-nDh5P .framer-h89t65 { align-self: start; flex: none; grid-column: span 2; height: auto; justify-self: start; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-nDh5P .framer-1xc7f8i { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nDh5P .framer-5b8dyh { align-self: start; flex: none; gap: 10px; height: 100%; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-nDh5P .framer-1n5lgrm { bottom: 0px; display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-nDh5P .framer-r20vh7 { align-self: start; flex: none; height: 1px; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-nDh5P .framer-5lhad6 { align-self: start; flex: none; grid-column: span 2; height: 1px; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-nDh5P.framer-v-1pepvu2 .framer-15azuwm, .framer-nDh5P.framer-v-1vfe37v .framer-15azuwm, .framer-nDh5P.framer-v-l1gaqq .framer-15azuwm, .framer-nDh5P.framer-v-1jml9mz .framer-15azuwm { left: calc(52.38095238095241% - 1px / 2); width: 1px; }\",\".framer-nDh5P.framer-v-17xsdn.framer-2xx5et, .framer-nDh5P.framer-v-1vfe37v.framer-2xx5et { padding: 0px; }\",\".framer-nDh5P.framer-v-10i0qri.framer-2xx5et, .framer-nDh5P.framer-v-l1gaqq.framer-2xx5et { width: 810px; }\",\".framer-nDh5P.framer-v-10i0qri .framer-14eeqan, .framer-nDh5P.framer-v-l1gaqq .framer-14eeqan, .framer-nDh5P.framer-v-19a8899 .framer-14eeqan, .framer-nDh5P.framer-v-1jml9mz .framer-14eeqan { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; }\",\".framer-nDh5P.framer-v-10i0qri .framer-1nhwiih, .framer-nDh5P.framer-v-l1gaqq .framer-1nhwiih, .framer-nDh5P.framer-v-19a8899 .framer-1nhwiih, .framer-nDh5P.framer-v-1jml9mz .framer-1nhwiih { align-self: unset; justify-content: flex-start; width: min-content; }\",\".framer-nDh5P.framer-v-10i0qri .framer-11kotdp, .framer-nDh5P.framer-v-10i0qri .framer-5lhad6, .framer-nDh5P.framer-v-l1gaqq .framer-11kotdp, .framer-nDh5P.framer-v-l1gaqq .framer-h89t65, .framer-nDh5P.framer-v-l1gaqq .framer-5lhad6, .framer-nDh5P.framer-v-19a8899 .framer-11kotdp, .framer-nDh5P.framer-v-1jml9mz .framer-11kotdp, .framer-nDh5P.framer-v-1jml9mz .framer-h89t65 { align-self: unset; flex: 1 0 0px; width: 1px; }\",\".framer-nDh5P.framer-v-10i0qri .framer-1n5lgrm, .framer-nDh5P.framer-v-l1gaqq .framer-1n5lgrm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; }\",\".framer-nDh5P.framer-v-l1gaqq .framer-1xc7f8i, .framer-nDh5P.framer-v-1jml9mz .framer-1xc7f8i { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; padding: 0px 0px 0px 48px; }\",\".framer-nDh5P.framer-v-19a8899.framer-2xx5et, .framer-nDh5P.framer-v-1jml9mz.framer-2xx5et { padding: 0px; width: 810px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"t1yOVpW1e\":{\"layout\":[\"fixed\",\"auto\"]},\"CsqqHtELp\":{\"layout\":[\"fixed\",\"auto\"]},\"uxThMDMmE\":{\"layout\":[\"fixed\",\"auto\"]},\"DyxPAc5dY\":{\"layout\":[\"fixed\",\"auto\"]},\"t0oMbS0af\":{\"layout\":[\"fixed\",\"auto\"]},\"nCVANTKlZ\":{\"layout\":[\"fixed\",\"auto\"]},\"enAk3AGYJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"gAkdU7o_K\":\"question\",\"JuW3bmvGL\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerdkSAvit4R=withCSS(Component,css,\"framer-nDh5P\");export default FramerdkSAvit4R;FramerdkSAvit4R.displayName=\"FAQ Tab\";FramerdkSAvit4R.defaultProps={height:48,width:1200};addPropertyControls(FramerdkSAvit4R,{variant:{options:[\"p4fCh8BbD\",\"t1yOVpW1e\",\"CsqqHtELp\",\"uxThMDMmE\",\"DyxPAc5dY\",\"t0oMbS0af\",\"nCVANTKlZ\",\"enAk3AGYJ\"],optionTitles:[\"Desktop - Default\",\"Desktop - Opened\",\"Desktop - Default - Last\",\"Desktop - Opened - Last\",\"Tablet & Mobile - Default\",\"Tablet & Mobile - Opened\",\"Tablet & Mobile - Default - Last\",\"Tablet & Mobile - Opened - Last\"],title:\"Variant\",type:ControlType.Enum},gAkdU7o_K:{defaultValue:\"What services do you offer?\",displayTextArea:false,title:\"Question\",type:ControlType.String},JuW3bmvGL:{defaultValue:\"<p>I specialize in premium web design, UI/UX, branding, and interactive experiences. Whether you need a custom website, a brand identity, or ongoing design support, I tailor my services to fit your needs.</p>\",title:\"Answer\",type:ControlType.RichText}});addFonts(FramerdkSAvit4R,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdkSAvit4R\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t1yOVpW1e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CsqqHtELp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uxThMDMmE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DyxPAc5dY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t0oMbS0af\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nCVANTKlZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"enAk3AGYJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerVariables\":\"{\\\"gAkdU7o_K\\\":\\\"question\\\",\\\"JuW3bmvGL\\\":\\\"answer\\\"}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dkSAvit4R.map", "// Generated by Framer (5b26096)\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*as sharedStyle2 from\"https://framerusercontent.com/modules/5fltXgAZqmeKGwr2Y5ly/4SdNmnX5XPBypbVHtF4V/iU85pzGL6.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/mskb60Vtq7TFTMabhT5a/Ip3eEfgBSBwG0i6UTXTI/t8BCfSUBA.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/x9IGc2E2Qq3XqWK1xhuy/LMIhOGDrpQaZ5lvgpW7m/v7tI_hyZD.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/7rqMaUewLJyN3YyDswFK/huoKkStgVzEFuaB1ezxY/Vg4tdWu7O.js\";import FAQTab from\"https://framerusercontent.com/modules/9uAs25CDjjQ5BDYyGBaC/jfTZ5ryb7MN97E6K9L8L/dkSAvit4R.js\";import Button from\"https://framerusercontent.com/modules/uczTE0akzMgNLBWn47Jx/n8GUcOnSG9bVlwcsXdnY/XaZxxvXBr.js\";const FAQTabFonts=getFonts(FAQTab);const ButtonFonts=getFonts(Button);const cycleOrder=[\"b_ksWkj82\",\"gNYvcBoem\",\"mgMoDNltu\"];const serializationHash=\"framer-OMAzW\";const variantClassNames={b_ksWkj82:\"framer-v-1qfs9p\",gNYvcBoem:\"framer-v-1vbcn9l\",mgMoDNltu:\"framer-v-1u0zst1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"b_ksWkj82\",Mobile:\"mgMoDNltu\",Tablet:\"gNYvcBoem\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"b_ksWkj82\"};};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:\"b_ksWkj82\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"gNYvcBoem\",\"mgMoDNltu\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"gNYvcBoem\")return true;return false;};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__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1qfs9p\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"b_ksWkj82\",ref:refBinding,style:{...style},...addPropertyOverrides({gNYvcBoem:{\"data-framer-name\":\"Tablet\"},mgMoDNltu:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dpkcid\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"OXOrz11GI\",children:[/*#__PURE__*/_jsxs(motion.header,{className:\"framer-jakgbm\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"wBl6qJ_y4\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xj1579\",\"data-framer-name\":\"spacer\",layoutDependency:layoutDependency,layoutId:\"AZzqw1NUu\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ucuvu7\",\"data-framer-name\":\"Header content\",layoutDependency:layoutDependency,layoutId:\"IQ_9cRl8S\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ih4cwh\",\"data-styles-preset\":\"Vg4tdWu7O\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66198006-e4bd-437e-a5b6-50577fe4e1c3, rgb(102, 102, 102)))\"},children:\"[FAQ]\"})}),className:\"framer-60x2kw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tAgK3NBEZ\",style:{\"--extracted-r6o4lv\":\"var(--token-66198006-e4bd-437e-a5b6-50577fe4e1c3, rgb(102, 102, 102))\",\"--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__*/_jsxs(motion.h2,{className:\"framer-styles-preset-12y1gy6\",\"data-styles-preset\":\"t8BCfSUBA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-e26320a8-4c32-4137-9eac-2fb95b386dfe, rgb(10, 10, 10)))\"},children:[/*#__PURE__*/_jsx(motion.strong,{children:\"BEFORE YOU ASK\"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),className:\"framer-1ixvva9\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"qsXPQFE5N\",style:{\"--extracted-1of0zx5\":\"var(--token-e26320a8-4c32-4137-9eac-2fb95b386dfe, rgb(10, 10, 10))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gyw08t\",\"data-framer-name\":\"Subheadline\",layoutDependency:layoutDependency,layoutId:\"AsXwNqgnT\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fza8p\",\"data-styles-preset\":\"iU85pzGL6\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66198006-e4bd-437e-a5b6-50577fe4e1c3, rgb(102, 102, 102)))\"},children:\"Here\u2019s how this actually works.\"})}),className:\"framer-1bt0tco\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"y044V5CHm\",style:{\"--extracted-r6o4lv\":\"var(--token-66198006-e4bd-437e-a5b6-50577fe4e1c3, rgb(102, 102, 102))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2ns5u7\",\"data-framer-name\":\"FAQ Tabs\",layoutDependency:layoutDependency,layoutId:\"pBrunb9L4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15pshy6\",\"data-framer-name\":\"Tabs\",layoutDependency:layoutDependency,layoutId:\"AY1_vstx4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 96px, 2400px)`,y:(componentViewport?.y||0)+(120+((componentViewport?.height||996)-240-621.6)/2)+0+213.6+0+0+0+0,...addPropertyOverrides({gNYvcBoem:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 48px, 2400px)`,y:(componentViewport?.y||0)+(120+((componentViewport?.height||1201)-240-813.6)/2)+0+213.6+0+0+0+0},mgMoDNltu:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 32px, 2400px)`,y:(componentViewport?.y||0)+(96+((componentViewport?.height||200)-192-787.2)/2)+0+211.2+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5whr7t-container\",layoutDependency:layoutDependency,layoutId:\"hw7AjUnOQ-container\",nodeId:\"hw7AjUnOQ\",rendersWithMotion:true,scopeId:\"VBSNDMwjd\",children:/*#__PURE__*/_jsx(FAQTab,{gAkdU7o_K:\"What do you actually do?\",height:\"100%\",id:\"hw7AjUnOQ\",JuW3bmvGL:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"I build writing systems for founders and operators.\",/*#__PURE__*/_jsx(\"br\",{}),\"Ghostwriting, landing pages, tone-of-voice replication \u2014 anything that makes you sound sharp, consistently, without you lifting a finger.\"]})}),layoutId:\"hw7AjUnOQ\",style:{width:\"100%\"},variant:\"t1yOVpW1e\",width:\"100%\",...addPropertyOverrides({gNYvcBoem:{variant:\"t0oMbS0af\"},mgMoDNltu:{variant:\"t0oMbS0af\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 96px, 2400px)`,y:(componentViewport?.y||0)+(120+((componentViewport?.height||996)-240-621.6)/2)+0+213.6+0+0+0+72,...addPropertyOverrides({gNYvcBoem:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 48px, 2400px)`,y:(componentViewport?.y||0)+(120+((componentViewport?.height||1201)-240-813.6)/2)+0+213.6+0+0+0+72},mgMoDNltu:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 32px, 2400px)`,y:(componentViewport?.y||0)+(96+((componentViewport?.height||200)-192-787.2)/2)+0+211.2+0+0+0+72}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-125s8k8-container\",layoutDependency:layoutDependency,layoutId:\"hzWOJsLEp-container\",nodeId:\"hzWOJsLEp\",rendersWithMotion:true,scopeId:\"VBSNDMwjd\",children:/*#__PURE__*/_jsx(FAQTab,{gAkdU7o_K:\"How does the process work?\",height:\"100%\",id:\"hzWOJsLEp\",JuW3bmvGL:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"You send what you\u2019ve got (site, doc, thread, email).\",/*#__PURE__*/_jsx(\"br\",{}),\"I audit it, rewrite a sample, then map the full system: content, cadence, tone, structure.\",/*#__PURE__*/_jsx(\"br\",{}),\"You approve. We ghost you forever (in a good way).\"]})}),layoutId:\"hzWOJsLEp\",style:{width:\"100%\"},variant:\"p4fCh8BbD\",width:\"100%\",...addPropertyOverrides({gNYvcBoem:{variant:\"DyxPAc5dY\"},mgMoDNltu:{variant:\"DyxPAc5dY\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 96px, 2400px)`,y:(componentViewport?.y||0)+(120+((componentViewport?.height||996)-240-621.6)/2)+0+213.6+0+0+0+144,...addPropertyOverrides({gNYvcBoem:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 48px, 2400px)`,y:(componentViewport?.y||0)+(120+((componentViewport?.height||1201)-240-813.6)/2)+0+213.6+0+0+0+144},mgMoDNltu:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 32px, 2400px)`,y:(componentViewport?.y||0)+(96+((componentViewport?.height||200)-192-787.2)/2)+0+211.2+0+0+0+144}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14vh19j-container\",layoutDependency:layoutDependency,layoutId:\"DWVPzKwwm-container\",nodeId:\"DWVPzKwwm\",rendersWithMotion:true,scopeId:\"VBSNDMwjd\",children:/*#__PURE__*/_jsx(FAQTab,{gAkdU7o_K:\"How long does it take?\",height:\"100%\",id:\"DWVPzKwwm\",JuW3bmvGL:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Most systems are live in 2\u20134 weeks. Content cadence starts within the first week.\"})}),layoutId:\"DWVPzKwwm\",style:{width:\"100%\"},variant:\"p4fCh8BbD\",width:\"100%\",...addPropertyOverrides({gNYvcBoem:{variant:\"DyxPAc5dY\"},mgMoDNltu:{variant:\"DyxPAc5dY\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 96px, 2400px)`,y:(componentViewport?.y||0)+(120+((componentViewport?.height||996)-240-621.6)/2)+0+213.6+0+0+0+216,...addPropertyOverrides({gNYvcBoem:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 48px, 2400px)`,y:(componentViewport?.y||0)+(120+((componentViewport?.height||1201)-240-813.6)/2)+0+213.6+0+0+0+216},mgMoDNltu:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 32px, 2400px)`,y:(componentViewport?.y||0)+(96+((componentViewport?.height||200)-192-787.2)/2)+0+211.2+0+0+0+216}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w72i9m-container\",layoutDependency:layoutDependency,layoutId:\"qIupTxa1F-container\",nodeId:\"qIupTxa1F\",rendersWithMotion:true,scopeId:\"VBSNDMwjd\",children:/*#__PURE__*/_jsx(FAQTab,{gAkdU7o_K:\"What do I need to provide before we start?\",height:\"100%\",id:\"qIupTxa1F\",JuW3bmvGL:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"To streamline the process, I\u2019ll need your \",/*#__PURE__*/_jsx(\"strong\",{children:\"brand guidelines (if available), content, inspiration, and any specific requirements\"}),\" for your project. If you need help with content, I can assist with that too.\"]})}),layoutId:\"qIupTxa1F\",style:{width:\"100%\"},variant:\"p4fCh8BbD\",width:\"100%\",...addPropertyOverrides({gNYvcBoem:{variant:\"DyxPAc5dY\"},mgMoDNltu:{variant:\"DyxPAc5dY\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 96px, 2400px)`,y:(componentViewport?.y||0)+(120+((componentViewport?.height||996)-240-621.6)/2)+0+213.6+0+0+0+288,...addPropertyOverrides({gNYvcBoem:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 48px, 2400px)`,y:(componentViewport?.y||0)+(120+((componentViewport?.height||1201)-240-813.6)/2)+0+213.6+0+0+0+288},mgMoDNltu:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 32px, 2400px)`,y:(componentViewport?.y||0)+(96+((componentViewport?.height||200)-192-787.2)/2)+0+211.2+0+0+0+288}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hp4zra-container\",layoutDependency:layoutDependency,layoutId:\"b9T3b_D_4-container\",nodeId:\"b9T3b_D_4\",rendersWithMotion:true,scopeId:\"VBSNDMwjd\",children:/*#__PURE__*/_jsx(FAQTab,{gAkdU7o_K:\" What do I need to give you?\",height:\"100%\",id:\"b9T3b_D_4\",JuW3bmvGL:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Past writing, your offer, voice notes if you\u2019ve got them.\",/*#__PURE__*/_jsx(\"br\",{}),\"But mostly: your brain, once.\",/*#__PURE__*/_jsx(\"br\",{}),\"We extract, document, deploy\"]})}),layoutId:\"b9T3b_D_4\",style:{width:\"100%\"},variant:\"p4fCh8BbD\",width:\"100%\",...addPropertyOverrides({gNYvcBoem:{variant:\"DyxPAc5dY\"},mgMoDNltu:{variant:\"DyxPAc5dY\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 96px, 2400px)`,y:(componentViewport?.y||0)+(120+((componentViewport?.height||996)-240-621.6)/2)+0+213.6+0+0+0+360,...addPropertyOverrides({gNYvcBoem:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 48px, 2400px)`,y:(componentViewport?.y||0)+(120+((componentViewport?.height||1201)-240-813.6)/2)+0+213.6+0+0+0+360},mgMoDNltu:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 2400px) - 32px, 2400px)`,y:(componentViewport?.y||0)+(96+((componentViewport?.height||200)-192-787.2)/2)+0+211.2+0+0+0+360}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1an2mml-container\",layoutDependency:layoutDependency,layoutId:\"ALgoqdmst-container\",nodeId:\"ALgoqdmst\",rendersWithMotion:true,scopeId:\"VBSNDMwjd\",children:/*#__PURE__*/_jsx(FAQTab,{gAkdU7o_K:\"How do we start?\",height:\"100%\",id:\"ALgoqdmst\",JuW3bmvGL:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"You send something you hate.\",/*#__PURE__*/_jsx(\"br\",{}),\"I rewrite it better.\",/*#__PURE__*/_jsx(\"br\",{}),\"If it hits, we go. If not, no hard feelings.\"]})}),layoutId:\"ALgoqdmst\",style:{width:\"100%\"},variant:\"CsqqHtELp\",width:\"100%\",...addPropertyOverrides({gNYvcBoem:{variant:\"nCVANTKlZ\"},mgMoDNltu:{variant:\"nCVANTKlZ\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.header,{className:\"framer-seobgg\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"EZ_tp2tlG\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-f7aa9y\",\"data-framer-name\":\"spacer\",layoutDependency:layoutDependency,layoutId:\"MOErDLmBB\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19hj8xy\",\"data-styles-preset\":\"v7tI_hyZD\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66198006-e4bd-437e-a5b6-50577fe4e1c3, rgb(102, 102, 102)))\"},children:\"Any specific questions?\"})}),className:\"framer-g72ago\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"N7234j4PH\",style:{\"--extracted-r6o4lv\":\"var(--token-66198006-e4bd-437e-a5b6-50577fe4e1c3, rgb(102, 102, 102))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({gNYvcBoem:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19hj8xy\",\"data-styles-preset\":\"v7tI_hyZD\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66198006-e4bd-437e-a5b6-50577fe4e1c3, rgb(102, 102, 102)))\"},children:\"Any specific questions?\"})})},mgMoDNltu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19hj8xy\",\"data-styles-preset\":\"v7tI_hyZD\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66198006-e4bd-437e-a5b6-50577fe4e1c3, rgb(102, 102, 102)))\"},children:\"Any specific questions?\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16v4p2e\",\"data-framer-name\":\"Button Content\",layoutDependency:layoutDependency,layoutId:\"HkrzKFKiN\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"scghVo7af\"},implicitPathVariables:undefined},{href:{webPageId:\"scghVo7af\"},implicitPathVariables:undefined},{href:{webPageId:\"scghVo7af\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(120+((componentViewport?.height||996)-240-621.6)/2)+0+213.6+408-151.5+0+120+0+0,...addPropertyOverrides({gNYvcBoem:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||1201)-240-813.6)/2)+0+213.6+0+456+48+0+0+0},mgMoDNltu:{y:(componentViewport?.y||0)+(96+((componentViewport?.height||200)-192-787.2)/2)+0+211.2+0+456+24+64+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q0ooso-container\",layoutDependency:layoutDependency,layoutId:\"B5HFfBa4m-container\",nodeId:\"B5HFfBa4m\",rendersWithMotion:true,scopeId:\"VBSNDMwjd\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"B5HFfBa4m\",k2AnO8TGz:\"Contact Me\",layoutId:\"B5HFfBa4m\",Lj7fXp6Lf:\"rgba(255, 255, 255, 0)\",MjJKAD1pb:\"var(--token-f2e51d6c-fa2c-4269-94e8-0776848b54ee, rgb(255, 255, 255))\",o_0cY5CRZ:\"var(--token-a3b27f24-86fb-4e9a-bf94-7405f35162f9, rgb(255, 77, 0))\",Shtih09ou:resolvedLinks[0],t1tKyQtku:false,U291ZRGoK:\"var(--token-e26320a8-4c32-4137-9eac-2fb95b386dfe, rgb(13, 13, 13))\",variant:\"glUuQX4p7\",vCulcI0RL:{borderColor:\"var(--token-dac3fa21-f69e-468c-8bdc-239cad1c8c86, rgb(230, 230, 230))\",borderStyle:\"solid\",borderWidth:1},width:\"100%\",...addPropertyOverrides({gNYvcBoem:{Shtih09ou:resolvedLinks[1]},mgMoDNltu:{Shtih09ou:resolvedLinks[2]}},baseVariant,gestureVariant)})})})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OMAzW.framer-qcrm6k, .framer-OMAzW .framer-qcrm6k { display: block; }\",\".framer-OMAzW.framer-1qfs9p { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 1200px; }\",\".framer-OMAzW .framer-1dpkcid { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; max-width: 2400px; overflow: visible; padding: 0px 48px 0px 48px; position: sticky; top: 0px; width: 1px; z-index: 1; }\",\".framer-OMAzW .framer-jakgbm { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; mix-blend-mode: difference; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-OMAzW .framer-1xj1579 { align-self: start; flex: none; height: 100%; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-OMAzW .framer-ucuvu7 { 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: span 2; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OMAzW .framer-60x2kw { flex: none; height: auto; mix-blend-mode: difference; position: relative; white-space: pre; width: auto; }\",\".framer-OMAzW .framer-1ixvva9 { flex: none; height: auto; mix-blend-mode: difference; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OMAzW .framer-gyw08t { align-content: flex-end; align-items: flex-end; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OMAzW .framer-1bt0tco { flex: none; height: auto; max-width: 230px; mix-blend-mode: difference; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-OMAzW .framer-2ns5u7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 2400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OMAzW .framer-15pshy6 { 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-OMAzW .framer-5whr7t-container, .framer-OMAzW .framer-125s8k8-container, .framer-OMAzW .framer-14vh19j-container, .framer-OMAzW .framer-1w72i9m-container, .framer-OMAzW .framer-hp4zra-container, .framer-OMAzW .framer-1an2mml-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-OMAzW .framer-seobgg { 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: flex-start; mix-blend-mode: difference; overflow: visible; padding: 0px; position: absolute; right: 0px; width: 234px; z-index: 1; }\",\".framer-OMAzW .framer-f7aa9y { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-OMAzW .framer-g72ago { flex: none; height: auto; mix-blend-mode: difference; position: relative; white-space: pre-wrap; width: 140px; word-break: break-word; word-wrap: break-word; }\",\".framer-OMAzW .framer-16v4p2e { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OMAzW .framer-1q0ooso-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-OMAzW.framer-v-1vbcn9l.framer-1qfs9p { width: 810px; }\",\".framer-OMAzW.framer-v-1vbcn9l .framer-1dpkcid { padding: 0px 24px 0px 24px; }\",\".framer-OMAzW.framer-v-1vbcn9l .framer-jakgbm { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: unset; justify-content: space-between; }\",\".framer-OMAzW.framer-v-1vbcn9l .framer-ucuvu7 { align-self: unset; flex: 1 0 0px; width: 1px; }\",\".framer-OMAzW.framer-v-1vbcn9l .framer-gyw08t { align-self: stretch; flex: 1 0 0px; height: auto; width: 1px; }\",\".framer-OMAzW.framer-v-1vbcn9l .framer-seobgg { align-content: unset; align-items: unset; bottom: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); justify-content: center; padding: 48px 0px 0px 0px; position: relative; right: unset; width: 100%; }\",\".framer-OMAzW.framer-v-1vbcn9l .framer-f7aa9y { align-self: start; flex: none; height: 100%; justify-self: start; }\",\".framer-OMAzW.framer-v-1vbcn9l .framer-g72ago { align-self: start; height: 100%; justify-self: start; width: 100%; }\",\".framer-OMAzW.framer-v-1vbcn9l .framer-16v4p2e { align-self: start; justify-self: start; }\",\".framer-OMAzW.framer-v-1u0zst1.framer-1qfs9p { padding: 96px 0px 96px 0px; width: 390px; }\",\".framer-OMAzW.framer-v-1u0zst1 .framer-1dpkcid { gap: 48px; padding: 0px 16px 0px 16px; }\",\".framer-OMAzW.framer-v-1u0zst1 .framer-jakgbm { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; }\",\".framer-OMAzW.framer-v-1u0zst1 .framer-ucuvu7 { align-self: unset; }\",\".framer-OMAzW.framer-v-1u0zst1 .framer-gyw08t { align-self: unset; height: min-content; }\",\".framer-OMAzW.framer-v-1u0zst1 .framer-seobgg { bottom: unset; flex-direction: row; gap: unset; justify-content: space-between; padding: 24px 0px 0px 0px; position: relative; right: unset; width: 100%; }\",\".framer-OMAzW.framer-v-1u0zst1 .framer-16v4p2e { flex: 1 0 0px; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 996\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gNYvcBoem\":{\"layout\":[\"fixed\",\"auto\"]},\"mgMoDNltu\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerVBSNDMwjd=withCSS(Component,css,\"framer-OMAzW\");export default FramerVBSNDMwjd;FramerVBSNDMwjd.displayName=\"FAQ\";FramerVBSNDMwjd.defaultProps={height:996,width:1200};addPropertyControls(FramerVBSNDMwjd,{variant:{options:[\"b_ksWkj82\",\"gNYvcBoem\",\"mgMoDNltu\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVBSNDMwjd,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...FAQTabFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVBSNDMwjd\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"996\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gNYvcBoem\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mgMoDNltu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VBSNDMwjd.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", "TimeDateFonts", "getFonts", "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", "color", "height", "id", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "hvyH2UM9b", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Link", "css", "Framerju3Gvr7P5", "withCSS", "ju3Gvr7P5_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transition2", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "gAkdU7o_K", "JuW3bmvGL", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapfs174f", "args", "onTapkrx488", "onTap9k9mq6", "onTap1udphr0", "onTap1b6qmcf", "onTap6iqlkd", "onTapl16jre", "onTap1haki3e", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "RichText2", "css", "FramerdkSAvit4R", "withCSS", "dkSAvit4R_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FAQTabFonts", "getFonts", "dkSAvit4R_default", "ButtonFonts", "XaZxxvXBr_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "css", "FramerVBSNDMwjd", "withCSS", "VBSNDMwjd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
