{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/s3SYTXCrPqbqjI2yY5wk/Eul2dLzwbHvU102m5DAT/kIge2YdBH.js", "ssg:https://framerusercontent.com/modules/aQ0uuraYluC1YjIT02qo/6RhMY4qMaXqZxZWdbUWH/ddP1ZGjCC.js", "ssg:https://framerusercontent.com/modules/nnSSaqQbujjX2yr43Flx/80Y2350rVPxJZZEUyVVD/F5FsYrOp_.js", "ssg:https://framerusercontent.com/modules/xHQQQT2LKPP7zDkzcwHm/ArdjytxKHC52zDv0alQI/Jy__ZHX01.js", "ssg:https://framerusercontent.com/modules/tx6kjsQ6gfUaeLDR8ads/X8XtlwEt3gQPxaZ7PuUQ/Kj7_uzx2q.js", "ssg:https://framerusercontent.com/modules/9NWJ4FVph5wLHBk0AgFo/hkPVKmnaO0y6lXIWIK3c/mLLDk_sM1.js", "ssg:https://framerusercontent.com/modules/7uhzVUKZMi8wVD50iaWD/i7x9X8090jhZNGJqWED9/nl1FFRjX8.js", "ssg:https://framerusercontent.com/modules/9Td0LhMRId2gRKm15Q83/uXSrCQebUKDoBdgyob5e/S0FWhyfg9.js", "ssg:https://framerusercontent.com/modules/gi0g7TYDb5LBpt6pnONn/zv6knpFrey4x6IQUoJy4/zqI6pP98V.js", "ssg:https://framerusercontent.com/modules/bvIPmZMX7lRgODVyPi9i/bvvFmCT2ICogiKzuPlx3/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (d0dedfe)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/wkblqhHq2Yf5AsWip1uy/FSQRM7chel6W3aXfVAf3/KtyUEnTXi.js\";const enabledGestures={EK09oMfl9:{hover:true,pressed:true},JF8EO8uFy:{hover:true,pressed:true}};const cycleOrder=[\"EK09oMfl9\",\"JF8EO8uFy\"];const serializationHash=\"framer-Cn0h8\";const variantClassNames={EK09oMfl9:\"framer-v-1755tok\",JF8EO8uFy:\"framer-v-1xn2eno\"};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={Primary:\"EK09oMfl9\",Secondary:\"JF8EO8uFy\"};const getProps=({height,id,link,newTab,title,width,...props})=>{return{...props,avSMDE5Ve:link??props.avSMDE5Ve,hwfLEpAJz:title??props.hwfLEpAJz??\"Button text\",kkkcdH9pG:newTab??props.kkkcdH9pG,variant:humanReadableVariantMap[props.variant]??props.variant??\"EK09oMfl9\"};};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,hwfLEpAJz,avSMDE5Ve,kkkcdH9pG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EK09oMfl9\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:avSMDE5Ve,motionChild:true,nodeId:\"EK09oMfl9\",openInNewTab:kkkcdH9pG,scopeId:\"kIge2YdBH\",...addPropertyOverrides({JF8EO8uFy:{smoothScroll:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1755tok\",className,classNames)} framer-1tvxid5`,\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"EK09oMfl9\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-5cda19d4-7efa-4b63-b7e4-17b25f40e63f, rgb(59, 130, 246))\",borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80,opacity:1,WebkitBackdropFilter:\"blur(5px)\",...style},variants:{\"EK09oMfl9-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},\"EK09oMfl9-pressed\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",opacity:.8},\"JF8EO8uFy-hover\":{backgroundColor:\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},\"JF8EO8uFy-pressed\":{opacity:.8},JF8EO8uFy:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-534356b4-1a9b-444d-82a0-f898bbe1568e, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.08)\"}},...addPropertyOverrides({\"EK09oMfl9-hover\":{\"data-framer-name\":undefined},\"EK09oMfl9-pressed\":{\"data-framer-name\":undefined},\"JF8EO8uFy-hover\":{\"data-framer-name\":undefined},\"JF8EO8uFy-pressed\":{\"data-framer-name\":undefined},JF8EO8uFy:{\"data-border\":true,\"data-framer-name\":\"Secondary\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255)))\"},children:\"Let's talk\"})}),className:\"framer-1d7ok25\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jPrdn2F6E\",style:{\"--extracted-r6o4lv\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:hwfLEpAJz,variants:{\"EK09oMfl9-hover\":{\"--extracted-r6o4lv\":\"var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, rgb(0, 0, 0))\"},\"JF8EO8uFy-hover\":{\"--extracted-r6o4lv\":\"var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"EK09oMfl9-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, rgb(0, 0, 0)))\"},children:\"Let's talk\"})})},\"JF8EO8uFy-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, rgb(0, 0, 0)))\"},children:\"Let's talk\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Cn0h8.framer-1tvxid5, .framer-Cn0h8 .framer-1tvxid5 { display: block; }\",\".framer-Cn0h8.framer-1755tok { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 32px 12px 32px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Cn0h8 .framer-1d7ok25 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Cn0h8.framer-1755tok { gap: 0px; } .framer-Cn0h8.framer-1755tok > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Cn0h8.framer-1755tok > :first-child { margin-left: 0px; } .framer-Cn0h8.framer-1755tok > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-Cn0h8[data-border=\"true\"]::after, .framer-Cn0h8 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 148\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"JF8EO8uFy\":{\"layout\":[\"auto\",\"auto\"]},\"d6vW_YIBp\":{\"layout\":[\"auto\",\"auto\"]},\"LH1PgqCW8\":{\"layout\":[\"auto\",\"auto\"]},\"QLpcm0ekP\":{\"layout\":[\"auto\",\"auto\"]},\"pHfdZQ2lp\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"hwfLEpAJz\":\"title\",\"avSMDE5Ve\":\"link\",\"kkkcdH9pG\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerkIge2YdBH=withCSS(Component,css,\"framer-Cn0h8\");export default FramerkIge2YdBH;FramerkIge2YdBH.displayName=\"Button\";FramerkIge2YdBH.defaultProps={height:48,width:148};addPropertyControls(FramerkIge2YdBH,{variant:{options:[\"EK09oMfl9\",\"JF8EO8uFy\"],optionTitles:[\"Primary\",\"Secondary\"],title:\"Variant\",type:ControlType.Enum},hwfLEpAJz:{defaultValue:\"Button text\",displayTextArea:false,title:\"Title\",type:ControlType.String},avSMDE5Ve:{title:\"Link\",type:ControlType.Link},kkkcdH9pG:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerkIge2YdBH,[{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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkIge2YdBH\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"hwfLEpAJz\\\":\\\"title\\\",\\\"avSMDE5Ve\\\":\\\"link\\\",\\\"kkkcdH9pG\\\":\\\"newTab\\\"}\",\"framerIntrinsicWidth\":\"148\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"JF8EO8uFy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"d6vW_YIBp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LH1PgqCW8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QLpcm0ekP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pHfdZQ2lp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"48\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kIge2YdBH.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={ryii0bH2n:{hover:true}};const serializationHash=\"framer-jUVE0\";const variantClassNames={ryii0bH2n:\"framer-v-1f922yn\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ryii0bH2n\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1f922yn\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"ryii0bH2n\",ref:ref??ref1,style:{opacity:.5,...style},variants:{\"ryii0bH2n-hover\":{opacity:1}},...addPropertyOverrides({\"ryii0bH2n-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yq5h91\",\"data-framer-name\":\"Booking\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:165,layoutDependency:layoutDependency,layoutId:\"TXWe_BBtN\",svg:'<svg width=\"165\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M64.456 14.85a2.498 2.498 0 1 1 4.995 0 2.5 2.5 0 0 1-4.995 0ZM23.465 30.424c-2.15 0-3.645-1.707-3.645-4.15 0-2.44 1.495-4.146 3.647-4.146 2.162 0 3.673 1.706 3.673 4.146 0 2.48-1.478 4.15-3.675 4.15Zm0-11.943c-4.55 0-7.853 3.278-7.853 7.793 0 4.517 3.305 7.794 7.853 7.794 4.57 0 7.884-3.276 7.884-7.792 0-4.517-3.315-7.795-7.882-7.795h-.002Zm36.153 8.185a3.712 3.712 0 0 0-.594-.84l-.14-.145.147-.139c.208-.22.422-.482.627-.784l4.018-5.97H58.8l-3.017 4.67c-.171.251-.515.376-1.032.376h-.687v-8.829c0-1.765-1.1-2.005-2.289-2.005H49.74l.005 20.839h4.32v-6.251h.406c.492 0 .826.057.981.325l2.383 4.498c.666 1.22 1.329 1.428 2.577 1.428h3.31l-2.466-4.077-1.635-3.096h-.002Zm20.973-8.22c-2.198 0-3.6.977-4.386 1.803l-.261.265-.094-.36c-.23-.886-1.009-1.37-2.18-1.37h-1.936l.013 15.05h4.29v-6.937c0-.678.087-1.266.268-1.803.477-1.627 1.81-2.637 3.474-2.637 1.34 0 1.863.708 1.863 2.534v6.555c0 1.559.721 2.288 2.282 2.288h2.042l-.007-9.574c0-3.802-1.856-5.812-5.368-5.812v-.002Zm-13.586.342h-2.033l.014 11.638v3.413h2.169l.076.003 1.013-.003h1.005v-.005h.007l.009-12.758c0-1.54-.736-2.286-2.258-2.286l-.002-.002ZM40.317 30.424c-2.15 0-3.647-1.707-3.647-4.15 0-2.44 1.497-4.146 3.65-4.146 2.156 0 3.672 1.706 3.672 4.146 0 2.48-1.478 4.15-3.673 4.15h-.002Zm0-11.943c-4.553 0-7.858 3.278-7.858 7.793 0 4.517 3.305 7.794 7.86 7.794 4.562 0 7.884-3.276 7.884-7.792 0-4.517-3.322-7.795-7.884-7.795m54.686 11.281c-2.346 0-3.181-2.046-3.181-3.964 0-.845.213-3.599 2.956-3.599 1.362 0 3.176.39 3.176 3.74 0 3.16-1.605 3.823-2.951 3.823Zm5.179-11.014c-.814 0-1.44.326-1.754.919l-.119.23-.198-.175c-.692-.598-1.934-1.31-3.95-1.31-4.013 0-6.714 3.015-6.714 7.497 0 4.48 2.795 7.611 6.794 7.611 1.365 0 2.445-.32 3.301-.967l.33-.248v.417c0 2.01-1.299 3.12-3.655 3.12-1.147 0-2.188-.278-2.888-.532-.908-.275-1.443-.047-1.81.866l-.341.842-.482 1.232.297.158c1.51.8 3.474 1.278 5.248 1.278 3.653 0 7.921-1.87 7.921-7.133l.015-13.805h-1.995ZM7.488 30.252l-3.493-.003v-4.175c0-.894.346-1.356 1.11-1.464h2.383c1.699 0 2.798 1.071 2.8 2.805-.002 1.782-1.073 2.835-2.8 2.835v.002ZM3.995 17.89c0-.962.407-1.42 1.3-1.478h1.788c1.532 0 2.45.916 2.45 2.452 0 1.169-.63 2.534-2.395 2.534H3.995V17.89Zm7.952 5.267-.631-.355.551-.471c.642-.552 1.715-1.792 1.715-3.931 0-3.277-2.54-5.392-6.472-5.392H2.112A2.192 2.192 0 0 0 0 15.17v18.593h7.199c4.37 0 7.192-2.38 7.192-6.065 0-1.985-.911-3.68-2.444-4.543Zm91.916 8.351a2.499 2.499 0 0 1 2.493-2.506 2.506 2.506 0 0 1 0 5.009 2.5 2.5 0 0 1-2.493-2.505m28.421-1.082c-2.15 0-3.649-1.708-3.649-4.15 0-2.44 1.499-4.146 3.649-4.146 2.16 0 3.675 1.706 3.675 4.146 0 2.48-1.479 4.15-3.675 4.15Zm0-11.944c-4.554 0-7.857 3.28-7.857 7.794 0 4.517 3.303 7.794 7.857 7.794 4.564 0 7.884-3.277 7.884-7.792 0-4.517-3.322-7.796-7.884-7.796Zm27.05.016a5.912 5.912 0 0 0-4.606 2.232l-.31.393-.243-.44c-.797-1.45-2.164-2.185-4.065-2.185-1.995 0-3.333 1.113-3.953 1.774l-.407.44-.157-.579c-.226-.835-.969-1.292-2.092-1.292h-1.804l-.018 14.993h4.097v-6.618c0-.581.073-1.154.217-1.754.391-1.6 1.466-3.32 3.273-3.148 1.114.108 1.66.969 1.66 2.632v8.888h4.125v-6.618c0-.726.068-1.268.232-1.811.33-1.527 1.454-3.092 3.197-3.092 1.262 0 1.728.713 1.728 2.633v6.696c0 1.513.675 2.192 2.19 2.192h1.927l.004-9.572c0-3.825-1.684-5.764-4.995-5.764Zm-37.281 10.13c-.012.016-1.774 1.873-4.096 1.873-2.115 0-4.251-1.297-4.251-4.193 0-2.501 1.656-4.25 4.028-4.25.769 0 1.646.275 1.783.74l.019.078a1.51 1.51 0 0 0 1.461 1.108l2.244.003v-1.962c0-2.588-3.293-3.527-5.507-3.527-4.738 0-8.174 3.298-8.174 7.841 0 4.54 3.398 7.834 8.087 7.834 4.067 0 6.279-2.674 6.3-2.7l.118-.146-1.777-2.948-.235.249Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jUVE0.framer-mbg6sj, .framer-jUVE0 .framer-mbg6sj { display: block; }\",\".framer-jUVE0.framer-1f922yn { cursor: pointer; height: 48px; overflow: hidden; position: relative; width: 165px; }\",\".framer-jUVE0 .framer-yq5h91 { aspect-ratio: 3.4375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 165\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"gBJaCEt7d\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerddP1ZGjCC=withCSS(Component,css,\"framer-jUVE0\");export default FramerddP1ZGjCC;FramerddP1ZGjCC.displayName=\"Booking\";FramerddP1ZGjCC.defaultProps={height:48,width:165};addFonts(FramerddP1ZGjCC,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerddP1ZGjCC\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"165\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gBJaCEt7d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"48\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ddP1ZGjCC.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={uitcFbFaj:{hover:true}};const serializationHash=\"framer-rbcZr\";const variantClassNames={uitcFbFaj:\"framer-v-9oagvu\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"uitcFbFaj\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-9oagvu\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"uitcFbFaj\",ref:ref??ref1,style:{opacity:.5,...style},variants:{\"uitcFbFaj-hover\":{opacity:1}},...addPropertyOverrides({\"uitcFbFaj-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19laiva\",\"data-framer-name\":\"Notion\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:130,layoutDependency:layoutDependency,layoutId:\"du1vCggsQ\",svg:'<svg width=\"130\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M45.436 34.775V20.22h.259L56.29 34.775h3.334V13.4h-3.705v14.518h-.26L45.066 13.401h-3.334v21.374h3.705Zm24.671.33c4.89 0 7.89-3.153 7.89-8.432 0-5.243-3-8.433-7.89-8.433-4.853 0-7.89 3.19-7.89 8.433.037 5.279 3 8.432 7.89 8.432Zm0-3.08c-2.593 0-4.075-1.943-4.075-5.352 0-3.373 1.482-5.353 4.075-5.353s4.075 1.98 4.075 5.352c0 3.41-1.482 5.353-4.075 5.353ZM81.37 14.611v4.069h-2.594v2.933h2.594v8.836c0 3.153 1.481 4.4 5.26 4.4.704 0 1.408-.074 1.963-.184v-2.86c-.444.037-.74.074-1.26.074-1.555 0-2.259-.697-2.259-2.31v-7.956h3.52V18.68h-3.52v-4.07H81.37Zm9.446 20.164h3.704V18.57h-3.704v16.205Zm1.852-18.881c1.223 0 2.223-.99 2.223-2.2 0-1.247-1-2.237-2.223-2.237-1.222 0-2.223.99-2.223 2.237 0 1.21 1 2.2 2.223 2.2Zm12.002 19.21c4.89 0 7.891-3.152 7.891-8.431 0-5.243-3.001-8.433-7.891-8.433-4.852 0-7.89 3.19-7.89 8.433 0 5.279 2.964 8.432 7.89 8.432Zm0-3.079c-2.593 0-4.074-1.943-4.074-5.352 0-3.373 1.481-5.353 4.074-5.353 2.557 0 4.075 1.98 4.075 5.352-.037 3.41-1.518 5.353-4.075 5.353Zm10.076 2.75h3.705v-9.422c0-2.383 1.408-3.887 3.593-3.887 2.26 0 3.297 1.247 3.297 3.703v9.606h3.705V24.289c0-3.886-2.001-6.049-5.631-6.049-2.445 0-4.075 1.1-4.853 2.933h-.259V18.57h-3.594c.037 0 .037 16.205.037 16.205Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.212 12.033c1.078.87 1.468.8 3.487.663l19.017-1.144c.413 0 .069-.412-.069-.458l-3.165-2.266c-.597-.458-1.423-1.007-2.96-.87L4.125 9.308c-.666.07-.803.413-.528.665l2.615 2.06ZM7.36 16.45v19.96c0 1.076.528 1.465 1.743 1.396l20.899-1.213c1.216-.069 1.353-.801 1.353-1.671V15.1c0-.87-.344-1.35-1.078-1.282L8.437 15.1c-.803.068-1.078.48-1.078 1.35Zm20.623 1.076c.138.595 0 1.213-.596 1.282l-1.01.206v14.74c-.871.459-1.674.733-2.363.733-1.078 0-1.353-.343-2.156-1.35l-6.584-10.323v9.98l2.088.457s0 1.213-1.675 1.213l-4.634.275c-.137-.275 0-.938.46-1.076l1.215-.343V20.136l-1.675-.138c-.137-.595.207-1.465 1.147-1.534l4.978-.343 6.86 10.438v-9.225l-1.744-.206c-.138-.732.413-1.282 1.078-1.35l4.611-.252ZM2.588 7.478 21.742 6.08c2.34-.206 2.96-.068 4.428 1.007l6.102 4.28c1.01.733 1.353.94 1.353 1.74v23.508c0 1.465-.527 2.335-2.408 2.472l-22.23 1.35c-1.421.07-2.087-.137-2.82-1.075l-4.52-5.837C.844 32.45.5 31.649.5 30.71V9.812c0-1.213.55-2.197 2.088-2.334Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5)\" d=\"M0 0h129v48H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rbcZr.framer-ebvot6, .framer-rbcZr .framer-ebvot6 { display: block; }\",\".framer-rbcZr.framer-9oagvu { cursor: pointer; height: 48px; overflow: hidden; position: relative; width: 130px; }\",\".framer-rbcZr .framer-19laiva { aspect-ratio: 2.7083333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 130\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"NHq11cBMP\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerF5FsYrOp_=withCSS(Component,css,\"framer-rbcZr\");export default FramerF5FsYrOp_;FramerF5FsYrOp_.displayName=\"Notion\";FramerF5FsYrOp_.defaultProps={height:48,width:130};addFonts(FramerF5FsYrOp_,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerF5FsYrOp_\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NHq11cBMP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"48\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"130\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./F5FsYrOp_.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={nxtF2lBhc:{hover:true}};const serializationHash=\"framer-lzhuk\";const variantClassNames={nxtF2lBhc:\"framer-v-4es85b\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"nxtF2lBhc\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-4es85b\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"nxtF2lBhc\",ref:ref??ref1,style:{opacity:.5,...style},variants:{\"nxtF2lBhc-hover\":{opacity:1}},...addPropertyOverrides({\"nxtF2lBhc-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kmjuc0\",\"data-framer-name\":\"Dribbble\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:113,layoutDependency:layoutDependency,layoutId:\"NCXjbVCuk\",svg:'<svg width=\"113\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M111.794 30.563c-4.658 7.898-12.035 5.606-14.25 3.812-.944.64-2.597 2.042-4.801 1.88-4.696-.345-6.377-7.054-6.377-7.054.034.026-1.399.494-2.173.486-.01 1.967-1.71 6.668-6.301 6.607-5.151-.067-6.198-7.74-6.198-7.74s-.513.71-2.462 1.42c.098-1.512.026 6.09-6.147 6.202-4.881.089-6.199-7.741-6.199-7.741s-.846.88-2.487 1.184c.104-1.536-.066 6.583-6.24 6.557-4.173-.017-5.599-4.823-5.488-5.49.142-.85-1.41 5.61-5.463 5.509-1.673-.05-2.92-1.26-3.702-2.875-1.048 1.199-2.568 2.875-4.274 2.875-3.063 0-4.413-2.561-4.184-9.877.02-.868-.043-1.209-.906-1.339-.518-.086-1.048-.25-1.609-.336-.18.6-1.705 11.357-6.949 11.561-1.76.069-2.721-1.456-3.511-2.587-1.211 1.602-2.81 2.638-5.087 2.638C3.128 36.255.5 33.136.5 29.289s2.628-6.965 6.486-6.965c.682 0 .874.098 1.497.28C7.2 10.937 10.227 9.113 12.875 9.113c2.541 0 6.884 5.899.774 20.862 1.356 4.463 4.28 4.21 5.686-4.977.286-1.867-.479-4.388.71-4.74 2.175-.642 2.406 1.287 3.425 1.608 1.078.34 1.707.306 2.742.523 1.768.345 2.459 1.295 2.243 3.41-.259 2.678-.711 6.574.669 7.05.995.344 2.812-1.72 3.13-2.849.32-1.129.386-1.515.414-2.344.043-1.77.098-3.067.4-4.406.129-.518.276-.861.862-.885.482-.012 1.364-.157 1.752.145.518.389.453.783.394 1.822-.602 14.803 4.03 7.413 5.41 1.496-.491-6.691-.154-16.592 4.04-16.759 2.18-.086 3.144 1.661 3.25 2.965.3 3.683-1.38 9.783-3.59 13.886-1.262 8.37 5.522 10.026 6.607 3.344-1.775-.844-3.694-4.26-2.133-5.924.876-.934 4.522.408 4.582 3.335 1.788-.479 2.027-1.488 2.052-1.321-.492-6.691-.036-16.118 4.158-16.284 2.18-.087 3.144 1.66 3.25 2.964.3 3.683-1.38 9.783-3.59 13.886-1.263 8.37 5.522 10.026 6.606 3.344-1.314-.253-4.088-3.886-2.487-5.924.855-1.09 4.488 1.175 4.894 3.432 1.718-.486 1.952-1.464 1.976-1.3-.491-6.69-.035-16.118 4.158-16.284 2.18-.086 3.144 1.66 3.25 2.965.3 3.682-1.38 9.783-3.59 13.885-1.262 8.372 5.522 10.026 6.607 3.345-1.806-.301-4.373-4.137-2.307-6.1.825-.784 3.979 1.252 4.717 3.574 1.025-.04 1.664-.393 1.8-.43C84.1 18.574 85.319 9.149 89.83 9.07c2.438-.043 4.822 1.318 3.775 8.79-.998 7.13-4.588 10.123-4.58 10.169.21.854 2.051 8.002 6.69 4.23-.24-.543-.48-1.099-.615-1.772-.769-3.92.741-8.347 4.846-9.062 2.351-.41 4.567.735 4.917 3.316.576 4.224-3.238 7.282-4.688 7.946-.65-.37 5.888 3.824 9.768-4.579.225-.48.496-.44.848-.192.248.175 1.661 1.514 1.004 2.647ZM9.792 28.252a51.17 51.17 0 0 1-.746-2.454C8.257 25.11 7.694 25 6.681 25c-2.25 0-3.575 2.08-3.575 4.325 0 2.243 1.443 4.325 3.694 4.325 1.95 0 3.435-1.326 3.888-3.204-.317-.732-.632-1.404-.896-2.194Zm3.028-16.05c-1.582 0-2.118 3.772-2.014 6.99.092 2.846.887 5.35 1.3 6.473.104.14.085.05.178.199 2.746-6.017 1.607-13.663.536-13.663Zm32.931.118c-2.044-.235-2.03 8.28-1.777 10.19 1.062-1.698 2.906-9.733 1.777-10.19Zm14.926 0c-2.044-.235-2.03 8.28-1.777 10.19 1.062-1.698 2.906-9.733 1.777-10.19Zm14.807.118c-2.044-.234-2.03 8.28-1.777 10.19 1.062-1.698 2.906-9.732 1.777-10.19Zm14.57-.617c-3.184.64-2.442 11.258-1.959 13.12 3.752-5.152 3.829-13.313 1.96-13.12Zm11.936 13.27c-.162-.678-.972-1.04-1.531-.95-1.599.218-3.15 2.21-2.55 5.241a4.94 4.94 0 0 0 .463 1.276c3.579-2.4 3.883-4.292 3.618-5.568Zm-67.433-5.07a2.31 2.31 0 1 1-.001-4.62 2.31 2.31 0 0 1 0 4.62Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5)\" d=\"M0 0h112v48H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lzhuk.framer-1qxtgie, .framer-lzhuk .framer-1qxtgie { display: block; }\",\".framer-lzhuk.framer-4es85b { cursor: pointer; height: 48px; overflow: hidden; position: relative; width: 113px; }\",\".framer-lzhuk .framer-kmjuc0 { aspect-ratio: 2.3541666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 113\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"q_gKty8BM\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJy__ZHX01=withCSS(Component,css,\"framer-lzhuk\");export default FramerJy__ZHX01;FramerJy__ZHX01.displayName=\"Dribbble\";FramerJy__ZHX01.defaultProps={height:48,width:113};addFonts(FramerJy__ZHX01,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJy__ZHX01\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"113\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q_gKty8BM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"48\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Jy__ZHX01.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={bLHN95p03:{hover:true}};const serializationHash=\"framer-s5gyZ\";const variantClassNames={bLHN95p03:\"framer-v-idfzxn\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"bLHN95p03\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-idfzxn\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"bLHN95p03\",ref:ref??ref1,style:{opacity:.5,...style},variants:{\"bLHN95p03-hover\":{opacity:1}},...addPropertyOverrides({\"bLHN95p03-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l3ak2\",\"data-framer-name\":\"Spotify\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:140,layoutDependency:layoutDependency,layoutId:\"Yg1eql4jV\",svg:'<svg width=\"140\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M21.073 3.08c-11.598 0-21 9.401-21 21 0 11.598 9.402 21 21 21 11.599 0 21-9.402 21-21s-9.401-21-21-21Zm9.63 30.287a1.308 1.308 0 0 1-1.8.434c-4.93-3.012-11.138-3.694-18.448-2.024a1.31 1.31 0 0 1-.583-2.552c8-1.828 14.862-1.041 20.398 2.342.616.378.812 1.183.433 1.8Zm2.57-5.718a1.637 1.637 0 0 1-2.251.54c-5.645-3.47-14.25-4.475-20.927-2.448a1.64 1.64 0 0 1-2.043-1.09 1.64 1.64 0 0 1 1.092-2.043c7.627-2.314 17.108-1.193 23.59 2.79a1.637 1.637 0 0 1 .54 2.252Zm.221-5.954c-6.768-4.02-17.935-4.39-24.397-2.429a1.964 1.964 0 1 1-1.14-3.759c7.418-2.252 19.75-1.816 27.542 2.81a1.962 1.962 0 0 1 .687 2.691 1.963 1.963 0 0 1-2.69.687h-.002Zm23.713.77c-3.626-.864-4.27-1.471-4.27-2.746 0-1.205 1.133-2.016 2.82-2.016 1.636 0 3.256.616 4.956 1.883a.23.23 0 0 0 .178.044.234.234 0 0 0 .158-.097l1.77-2.496a.238.238 0 0 0-.044-.323c-2.024-1.623-4.301-2.412-6.964-2.412-3.915 0-6.65 2.35-6.65 5.711 0 3.605 2.359 4.881 6.436 5.866 3.469.8 4.055 1.47 4.055 2.666 0 1.327-1.183 2.152-3.09 2.152-2.116 0-3.843-.715-5.774-2.385a.235.235 0 0 0-.336.025l-1.987 2.362a.239.239 0 0 0 .023.331c2.247 2.006 5.01 3.064 7.995 3.064 4.218 0 6.944-2.304 6.944-5.873.007-3.01-1.796-4.678-6.212-5.753l-.008-.003Zm15.764-3.576c-1.828 0-3.328.72-4.567 2.196v-1.66a.237.237 0 0 0-.235-.239H64.92a.237.237 0 0 0-.236.238v18.457c0 .13.106.238.236.238h3.248c.13 0 .235-.107.235-.238v-5.825c1.24 1.387 2.739 2.066 4.567 2.066 3.398 0 6.838-2.615 6.838-7.616.005-5-3.435-7.617-6.836-7.617h-.002Zm3.062 7.617c0 2.546-1.567 4.323-3.814 4.323-2.22 0-3.895-1.858-3.895-4.323 0-2.465 1.675-4.322 3.895-4.322 2.209 0 3.814 1.817 3.814 4.322Zm12.591-7.617c-4.376 0-7.804 3.37-7.804 7.672 0 4.256 3.406 7.589 7.751 7.589 4.391 0 7.83-3.358 7.83-7.644 0-4.27-3.416-7.616-7.777-7.616Zm0 11.966c-2.327 0-4.082-1.871-4.082-4.35 0-2.49 1.695-4.296 4.03-4.296 2.342 0 4.107 1.87 4.107 4.35 0 2.49-1.705 4.296-4.055 4.296Zm17.12-11.669h-3.573v-3.653a.237.237 0 0 0-.236-.237h-3.248a.239.239 0 0 0-.238.237v3.653h-1.56a.237.237 0 0 0-.235.238v2.79c0 .131.105.239.236.239h1.56v7.22c0 2.917 1.451 4.396 4.318 4.396 1.163 0 2.129-.24 3.039-.757.075-.04.12-.12.12-.206v-2.658a.235.235 0 0 0-.113-.2.23.23 0 0 0-.23-.01 4.102 4.102 0 0 1-1.906.459c-1.041 0-1.507-.474-1.507-1.533v-6.71h3.573a.237.237 0 0 0 .236-.238v-2.79a.23.23 0 0 0-.233-.238l-.003-.002Zm12.449.015v-.45c0-1.319.506-1.908 1.64-1.908.677 0 1.221.135 1.83.338a.234.234 0 0 0 .213-.033.235.235 0 0 0 .098-.193v-2.736a.235.235 0 0 0-.168-.228 8.893 8.893 0 0 0-2.698-.388c-2.997 0-4.584 1.689-4.584 4.882v.687h-1.56a.24.24 0 0 0-.238.238v2.805c0 .13.108.238.238.238h1.56v11.135c0 .133.108.238.238.238h3.245a.236.236 0 0 0 .238-.238V22.453h3.032l4.644 11.135c-.526 1.169-1.045 1.402-1.753 1.402-.571 0-1.176-.17-1.79-.51a.258.258 0 0 0-.188-.017.239.239 0 0 0-.141.128l-1.1 2.415a.237.237 0 0 0 .102.309c1.149.621 2.185.887 3.466.887 2.397 0 3.724-1.118 4.89-4.122l5.632-14.554a.23.23 0 0 0-.025-.221.23.23 0 0 0-.193-.104h-3.38a.238.238 0 0 0-.226.16l-3.463 9.889-3.792-9.896a.237.237 0 0 0-.22-.153h-5.547Zm-7.218-.015h-3.247a.238.238 0 0 0-.238.238v14.164c0 .133.107.238.238.238h3.247a.238.238 0 0 0 .239-.238V19.425a.238.238 0 0 0-.239-.238Zm-1.605-6.45a2.328 2.328 0 1 0-.002 4.656 2.328 2.328 0 0 0 .002-4.655Zm28.443 11.004a2.277 2.277 0 0 1-2.285-2.285 2.298 2.298 0 0 1 2.298-2.296 2.276 2.276 0 0 1 2.284 2.283 2.298 2.298 0 0 1-2.297 2.298Zm.013-4.354c-1.172 0-2.057.93-2.057 2.07 0 1.138.88 2.056 2.044 2.056 1.171 0 2.056-.93 2.056-2.07 0-1.138-.88-2.056-2.043-2.056Zm.506 2.291.647.905h-.547l-.581-.83h-.499v.83h-.457v-2.398h1.068c.56 0 .926.285.926.765.002.393-.226.633-.554.728h-.003Zm-.386-1.082h-.594v.759h.594c.296 0 .474-.145.474-.38 0-.247-.178-.379-.474-.379Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h140v48H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-s5gyZ.framer-1c1huua, .framer-s5gyZ .framer-1c1huua { display: block; }\",\".framer-s5gyZ.framer-idfzxn { cursor: pointer; height: 48px; overflow: hidden; position: relative; width: 140px; }\",\".framer-s5gyZ .framer-1l3ak2 { aspect-ratio: 2.9166666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BJ_XkLrzi\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKj7_uzx2q=withCSS(Component,css,\"framer-s5gyZ\");export default FramerKj7_uzx2q;FramerKj7_uzx2q.displayName=\"Spotify\";FramerKj7_uzx2q.defaultProps={height:48,width:140};addFonts(FramerKj7_uzx2q,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKj7_uzx2q\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BJ_XkLrzi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"48\",\"framerIntrinsicWidth\":\"140\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Kj7_uzx2q.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={aJQRA70c5:{hover:true}};const serializationHash=\"framer-JAax0\";const variantClassNames={aJQRA70c5:\"framer-v-1y3au7g\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"aJQRA70c5\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1y3au7g\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"aJQRA70c5\",ref:ref??ref1,style:{opacity:.5,...style},variants:{\"aJQRA70c5-hover\":{opacity:1}},...addPropertyOverrides({\"aJQRA70c5-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1onz4i7\",\"data-framer-name\":\"Mailchimp\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:168,layoutDependency:layoutDependency,layoutId:\"BN4LMMn5f\",svg:'<svg width=\"168\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M76.53 30.438c-1.169.27-1.773-.09-1.773-.864 0-1.06 1.096-1.485 2.662-1.485.69 0 1.34.06 1.34.06 0 .454-.987 2.003-2.23 2.29Zm1.189-10.617c-3.741 0-6.426 1.375-6.426 1.375v4.044s2.964-1.705 5.37-1.705c1.919 0 2.155 1.036 2.068 1.895 0 0-.554-.147-2.243-.147-3.981 0-5.99 1.81-5.99 4.71 0 2.753 2.257 3.903 4.16 3.903 2.776 0 3.998-1.866 4.372-2.751.26-.614.308-1.028.541-1.028.268 0 .178.297.165.908-.023 1.07.028 1.88.198 2.561h3.681v-6.622c0-4.134-1.462-7.143-5.896-7.143Zm24.23 7.044c0-1.21 1.124-2.31 3.188-2.31 2.249 0 4.058 1.082 4.464 1.328v-4.68s-1.429-1.377-4.942-1.377c-3.702 0-6.786 2.167-6.786 6.83s2.799 7.249 6.776 7.249c3.108 0 4.96-1.707 4.96-1.707v-4.446c-.586.328-2.219 1.461-4.449 1.461-2.362 0-3.211-1.087-3.211-2.348Zm-49.205-6.732c0 .003.235 1.009-.074 2.324-.157.67-.447 1.238-.098 1.238.241 0 .242-.2.555-.917.459-1.048 1.425-2.955 3.684-2.955 2.147 0 3.158 1.304 3.493 2.526.255.928.032 1.346.343 1.346.221 0 .298-.481.57-1.09.489-1.091 1.551-2.782 3.7-2.782 3.242 0 4.48 2.341 4.48 5.854v7.914H64.58v-7.296c0-1.217-.196-2.397-1.305-2.397-1.027 0-1.506 1.821-1.506 2.997v6.7h-4.906v-7.3c0-1.556-.22-2.396-1.313-2.396-.947 0-1.5 1.675-1.5 2.996v6.697h-4.886v-13.46h3.58Zm32.475.018c.002.001.833.48 2.447.48 1.617 0 2.438-.48 2.438-.48v13.443H85.22V20.151Zm40.334 0c.002.001.834.48 2.448.48 1.617 0 2.438-.48 2.438-.48v13.443h-4.886V20.151Zm-28.982-4.093v17.536h-4.886V16.058h4.886Zm18.836 0c.001.002.203.506.203 2.005 0 2.213-.482 4.015-.709 4.701-.121.364-.336.925-.027.935.178.005.285-.263.503-.728.217-.465 1.293-3.145 4.121-3.145 3.895 0 4.468 3.19 4.468 6.644v7.124h-4.886v-7.416c0-1.521-.319-2.277-1.338-2.277-1.231 0-1.666 1.906-1.666 2.997v6.696h-4.886V16.058h4.217Zm20.263 4.075c0 .003.235 1.009-.074 2.324-.158.67-.447 1.238-.098 1.238.241 0 .242-.2.555-.917.458-1.048 1.425-2.955 3.684-2.955 2.245 0 3.135 1.31 3.493 2.526.24.814.032 1.346.343 1.346.221 0 .298-.481.57-1.09.487-1.091 1.551-2.782 3.7-2.782 3.242 0 4.48 2.341 4.48 5.854v7.914h-4.817v-7.296c0-1.217-.196-2.397-1.305-2.397-1.028 0-1.507 1.821-1.507 2.997v6.7h-4.906v-7.3c0-1.556-.218-2.396-1.313-2.396-.947 0-1.499 1.675-1.499 2.996v6.697h-4.886v-13.46h3.58Zm-48.023-4.21c-1.651 0-2.99.873-2.99 1.951s1.338 1.952 2.99 1.952c1.652 0 2.99-.874 2.99-1.952 0-1.078-1.338-1.952-2.99-1.952Zm40.335 0c-1.652 0-2.991.873-2.991 1.951s1.339 1.952 2.991 1.952c1.651 0 2.991-.874 2.991-1.952 0-1.078-1.339-1.952-2.991-1.952Zm32.664 14.771c-1.12 0-1.944-1.42-1.944-3.4 0-1.922.846-3.399 1.905-3.399 1.359 0 1.939 1.247 1.939 3.4 0 2.239-.535 3.4-1.9 3.4Zm1.34-10.876c-2.51 0-3.662 1.882-4.162 2.955-.33.708-.313.917-.555.917-.348 0-.059-.57.098-1.238.31-1.318.075-2.324.075-2.324h-3.578v17.171h4.884v-5.444c.577.98 1.648 2.028 3.298 2.028 3.533 0 5.31-2.988 5.31-7.026 0-4.576-2.127-7.04-5.369-7.04M31.892 23.881c.329-.039.643-.041.933 0 .167-.384.196-1.046.045-1.766-.223-1.071-.526-1.719-1.152-1.618-.626.101-.65.877-.425 1.948.126.602.35 1.117.6 1.436Zm-5.37.848c.447.196.723.326.83.213.07-.072.049-.207-.058-.381-.221-.361-.676-.727-1.158-.933-.986-.424-2.163-.283-3.07.369-.3.22-.584.523-.543.708.013.06.058.105.163.12.247.027 1.11-.409 2.104-.47.702-.043 1.284.177 1.732.373Zm-.899.514c-.584.092-.905.284-1.111.463-.176.154-.285.324-.285.444.001.057.026.09.045.106a.14.14 0 0 0 .096.037c.132 0 .427-.119.427-.119.811-.29 1.347-.255 1.877-.195.293.033.433.051.497-.05.018-.028.041-.09-.017-.186-.137-.221-.726-.596-1.529-.5Zm4.457 1.886c.396.194.832.118.974-.17.142-.29-.064-.681-.46-.876-.396-.194-.832-.118-.974.17-.142.29.064.681.46.876Zm2.546-2.225c-.321-.005-.588.348-.596.79-.007.44.248.802.57.808.32.005.588-.348.595-.79.008-.44-.247-.802-.569-.808Zm-21.609 7.955c-.08-.1-.212-.07-.34-.04a1.18 1.18 0 0 1-.3.042c-.236-.004-.436-.105-.549-.278-.146-.225-.138-.56.024-.944l.075-.172c.258-.58.69-1.548.205-2.47-.365-.696-.96-1.128-1.675-1.22a2.153 2.153 0 0 0-1.845.666c-.712.785-.823 1.853-.686 2.23.05.139.13.177.187.185.12.016.3-.072.412-.373l.032-.098c.05-.16.143-.457.295-.695a1.29 1.29 0 0 1 1.791-.373c.499.326.69.937.478 1.52-.11.301-.29.878-.25 1.351.08.959.67 1.343 1.2 1.385.514.019.874-.27.965-.482.054-.125.009-.2-.02-.233\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.915 15.254c1.68-1.94 3.747-3.628 5.6-4.576.064-.033.132.037.097.1-.147.266-.43.837-.52 1.27a.076.076 0 0 0 .117.079c1.152-.786 3.157-1.628 4.915-1.736a.078.078 0 0 1 .052.139 4.18 4.18 0 0 0-.773.776.075.075 0 0 0 .059.12c1.234.008 2.975.44 4.11 1.077.076.043.021.191-.065.172-1.716-.394-4.526-.692-7.445.02-2.605.635-4.594 1.617-6.045 2.672-.073.053-.162-.044-.102-.113ZM24.28 34.06v.001l.001.002-.001-.003Zm6.927.818a.134.134 0 0 0 .078-.134.126.126 0 0 0-.138-.113s-3.585.53-6.971-.71c.369-1.198 1.35-.765 2.832-.646 2.672.16 5.067-.23 6.837-.739 1.533-.44 3.548-1.308 5.112-2.543.528 1.16.714 2.435.714 2.435s.409-.073.75.137c.323.199.56.611.398 1.678-.33 1.993-1.176 3.611-2.6 5.1a10.721 10.721 0 0 1-3.123 2.334c-.64.336-1.32.626-2.04.86-5.368 1.754-10.863-.173-12.634-4.312a6.598 6.598 0 0 1-.355-.978c-.754-2.727-.114-6 1.89-8.06.123-.13.249-.286.249-.48 0-.163-.104-.335-.193-.457-.701-1.016-3.129-2.748-2.641-6.1.35-2.408 2.456-4.104 4.42-4.004l.497.029c.85.05 1.593.16 2.293.189 1.173.05 2.227-.12 3.476-1.16.42-.351.759-.656 1.33-.752.06-.01.21-.064.508-.05.305.016.595.1.856.273 1 .666 1.143 2.28 1.195 3.46.03.673.11 2.303.139 2.771.063 1.07.345 1.22.914 1.408.32.106.617.184 1.055.307 1.325.372 2.11.75 2.606 1.235.295.303.433.625.475.932.156 1.14-.885 2.548-3.641 3.827-3.013 1.399-6.669 1.753-9.194 1.471l-.885-.1c-2.02-.272-3.173 2.339-1.96 4.128.781 1.153 2.91 1.903 5.04 1.903 4.882 0 8.635-2.084 10.03-3.885l.112-.159c.07-.103.012-.16-.073-.102-1.14.78-6.207 3.88-11.626 2.947 0 0-.658-.109-1.26-.342-.477-.186-1.477-.646-1.598-1.672 4.373 1.353 7.126.074 7.126.074ZM7.188 24.485c-1.52.296-2.861 1.158-3.68 2.349-.49-.409-1.403-1.2-1.565-1.508C.635 22.84 3.371 18.01 5.283 15.28c4.725-6.742 12.125-11.846 15.55-10.92.558.158 2.402 2.296 2.402 2.296s-3.424 1.9-6.6 4.549c-4.279 3.294-7.51 8.083-9.447 13.28Zm2.556 11.403c-.23.04-.465.055-.702.049-2.289-.062-4.76-2.122-5.006-4.565-.271-2.7 1.109-4.778 3.552-5.271a4.142 4.142 0 0 1 1.025-.073c1.37.075 3.386 1.126 3.847 4.108.408 2.64-.24 5.33-2.716 5.752Zm30.998-4.782c-.02-.07-.148-.536-.323-1.099-.176-.563-.357-.958-.357-.958.704-1.054.716-1.996.622-2.53-.1-.661-.375-1.225-.93-1.808-.555-.582-1.69-1.18-3.286-1.627l-.837-.233c-.004-.034-.044-1.973-.08-2.806-.027-.602-.078-1.541-.37-2.466-.347-1.253-.952-2.349-1.708-3.05 2.085-2.16 3.387-4.542 3.383-6.584-.006-3.927-4.83-5.116-10.774-2.654l-1.26.534a1427.31 1427.31 0 0 0-2.31-2.264C15.734-2.35-5.455 21.203 1.319 26.924l1.48 1.254c-.384.995-.535 2.135-.411 3.36.158 1.575.97 3.084 2.286 4.25 1.25 1.107 2.893 1.808 4.487 1.807 2.636 6.075 8.66 9.802 15.723 10.012 7.577.225 13.937-3.33 16.602-9.716.174-.448.914-2.467.914-4.25 0-1.792-1.013-2.535-1.658-2.535Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JAax0.framer-1t0p0aj, .framer-JAax0 .framer-1t0p0aj { display: block; }\",\".framer-JAax0.framer-1y3au7g { cursor: pointer; height: 48px; overflow: hidden; position: relative; width: 168px; }\",\".framer-JAax0 .framer-1onz4i7 { aspect-ratio: 3.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 168\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rdSWLqazt\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermLLDk_sM1=withCSS(Component,css,\"framer-JAax0\");export default FramermLLDk_sM1;FramermLLDk_sM1.displayName=\"Mailchimp\";FramermLLDk_sM1.defaultProps={height:48,width:168};addFonts(FramermLLDk_sM1,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermLLDk_sM1\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"168\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rdSWLqazt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"48\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mLLDk_sM1.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/t5ywJdZTFBhMMDeObSTv/57cOOgvucjtRSkeiHoAH/oMzAN8GuQ.js\";const serializationHash=\"framer-TWGHb\";const variantClassNames={Qkkvno9Bv:\"framer-v-l4qdpt\"};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 getProps=({height,id,text,width,...props})=>{return{...props,DQPLNF5gS:text??props.DQPLNF5gS??\"One-time investment, with no ongoing payments\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,DQPLNF5gS,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Qkkvno9Bv\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-l4qdpt\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"Qkkvno9Bv\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12oj6t3\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"mBufin7Pd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xp5cz5\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"a4AhAi6zT\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"#FFF\"><path d=\"m382-354 339-339q12-12 28-12t28 12q12 12 12 28.5T777-636L410-268q-12 12-28 12t-28-12L182-440q-12-12-11.5-28.5T183-497q12-12 28.5-12t28.5 12l142 143Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",children:\"One-time investment, with no ongoing payments\"})}),className:\"framer-16rd9x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wJdHuYrBn\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DQPLNF5gS,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TWGHb.framer-y36ruw, .framer-TWGHb .framer-y36ruw { display: block; }\",\".framer-TWGHb.framer-l4qdpt { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-TWGHb .framer-12oj6t3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 2px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-TWGHb .framer-1xp5cz5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-TWGHb .framer-16rd9x { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TWGHb.framer-l4qdpt, .framer-TWGHb .framer-12oj6t3 { gap: 0px; } .framer-TWGHb.framer-l4qdpt > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-TWGHb.framer-l4qdpt > :first-child, .framer-TWGHb .framer-12oj6t3 > :first-child { margin-left: 0px; } .framer-TWGHb.framer-l4qdpt > :last-child, .framer-TWGHb .framer-12oj6t3 > :last-child { margin-right: 0px; } .framer-TWGHb .framer-12oj6t3 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"DQPLNF5gS\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framernl1FFRjX8=withCSS(Component,css,\"framer-TWGHb\");export default Framernl1FFRjX8;Framernl1FFRjX8.displayName=\"Feature\";Framernl1FFRjX8.defaultProps={height:24,width:400};addPropertyControls(Framernl1FFRjX8,{DQPLNF5gS:{defaultValue:\"One-time investment, with no ongoing payments\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(Framernl1FFRjX8,[{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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framernl1FFRjX8\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"24\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"DQPLNF5gS\\\":\\\"text\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nl1FFRjX8.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/wkblqhHq2Yf5AsWip1uy/FSQRM7chel6W3aXfVAf3/KtyUEnTXi.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/t5ywJdZTFBhMMDeObSTv/57cOOgvucjtRSkeiHoAH/oMzAN8GuQ.js\";const enabledGestures={uz572CxfG:{hover:true}};const serializationHash=\"framer-0UiSv\";const variantClassNames={uz572CxfG:\"framer-v-1xsndry\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({function1,height,id,link,name1,photo,testimonialText,width,...props})=>{return{...props,jbEdan8Mc:link??props.jbEdan8Mc,jhbzeUGWy:testimonialText??props.jhbzeUGWy??'\"John is a true professional in every sense of the word. He brought a fresh perspective to our web design project, and the results were outstanding.\"',r0tUIN2cH:photo??props.r0tUIN2cH,sbXn9nBiI:name1??props.sbXn9nBiI??\"Ralph Edwards\",zNTrZkuSB:function1??props.zNTrZkuSB??\"Owner\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,jhbzeUGWy,sbXn9nBiI,zNTrZkuSB,r0tUIN2cH,jbEdan8Mc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"uz572CxfG\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:jbEdan8Mc,nodeId:\"uz572CxfG\",openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1xsndry\",className,classNames)} framer-1xd5e9w`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"uz572CxfG\",ref:ref??ref1,style:{backgroundColor:\"var(--token-0f07f556-9e14-491d-9aef-f342061eaaa0, rgb(20, 20, 20))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"uz572CxfG-hover\":{backgroundColor:\"var(--token-46103156-4e43-4976-89f4-cd011844ca33, rgb(28, 28, 28))\"}},...addPropertyOverrides({\"uz572CxfG-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jnyaa4\",\"data-framer-name\":\"Stars\",layoutDependency:layoutDependency,layoutId:\"Wad7VDEGx\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1l5hzy2\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"IGgmxPGJT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 14.063 L 6.583 16.104 C 6.431 16.188 6.281 16.222 6.135 16.208 C 5.99 16.194 5.861 16.146 5.75 16.063 C 5.639 15.979 5.556 15.865 5.5 15.719 C 5.444 15.573 5.438 15.424 5.479 15.271 L 6.375 11.458 L 3.354 8.896 C 3.229 8.785 3.153 8.656 3.125 8.51 C 3.097 8.365 3.104 8.222 3.146 8.083 C 3.188 7.944 3.264 7.83 3.375 7.74 C 3.486 7.649 3.625 7.597 3.792 7.583 L 7.75 7.229 L 9.313 3.604 C 9.382 3.451 9.479 3.337 9.604 3.26 C 9.729 3.184 9.861 3.146 10 3.146 C 10.139 3.146 10.271 3.184 10.396 3.26 C 10.521 3.337 10.618 3.451 10.688 3.604 L 12.25 7.25 L 16.208 7.583 C 16.375 7.597 16.514 7.653 16.625 7.75 C 16.736 7.847 16.813 7.965 16.854 8.104 C 16.896 8.243 16.899 8.382 16.865 8.521 C 16.83 8.66 16.75 8.785 16.625 8.896 L 13.625 11.458 L 14.521 15.271 C 14.563 15.424 14.556 15.573 14.5 15.719 C 14.444 15.865 14.361 15.979 14.25 16.063 C 14.139 16.146 14.01 16.194 13.865 16.208 C 13.719 16.222 13.569 16.188 13.417 16.104 Z\" fill=\"var(--token-5cda19d4-7efa-4b63-b7e4-17b25f40e63f, rgb(59, 130, 246))\"></path></svg>',svgContentId:10842428683,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15rsroc\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"wIkeNaDAP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 14.063 L 6.583 16.104 C 6.431 16.188 6.281 16.222 6.135 16.208 C 5.99 16.194 5.861 16.146 5.75 16.063 C 5.639 15.979 5.556 15.865 5.5 15.719 C 5.444 15.573 5.438 15.424 5.479 15.271 L 6.375 11.458 L 3.354 8.896 C 3.229 8.785 3.153 8.656 3.125 8.51 C 3.097 8.365 3.104 8.222 3.146 8.083 C 3.188 7.944 3.264 7.83 3.375 7.74 C 3.486 7.649 3.625 7.597 3.792 7.583 L 7.75 7.229 L 9.313 3.604 C 9.382 3.451 9.479 3.337 9.604 3.26 C 9.729 3.184 9.861 3.146 10 3.146 C 10.139 3.146 10.271 3.184 10.396 3.26 C 10.521 3.337 10.618 3.451 10.688 3.604 L 12.25 7.25 L 16.208 7.583 C 16.375 7.597 16.514 7.653 16.625 7.75 C 16.736 7.847 16.813 7.965 16.854 8.104 C 16.896 8.243 16.899 8.382 16.865 8.521 C 16.83 8.66 16.75 8.785 16.625 8.896 L 13.625 11.458 L 14.521 15.271 C 14.563 15.424 14.556 15.573 14.5 15.719 C 14.444 15.865 14.361 15.979 14.25 16.063 C 14.139 16.146 14.01 16.194 13.865 16.208 C 13.719 16.222 13.569 16.188 13.417 16.104 Z\" fill=\"var(--token-5cda19d4-7efa-4b63-b7e4-17b25f40e63f, rgb(59, 130, 246))\"></path></svg>',svgContentId:10842428683,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bgb85w\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"NeBmGsO92\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 14.063 L 6.583 16.104 C 6.431 16.188 6.281 16.222 6.135 16.208 C 5.99 16.194 5.861 16.146 5.75 16.063 C 5.639 15.979 5.556 15.865 5.5 15.719 C 5.444 15.573 5.438 15.424 5.479 15.271 L 6.375 11.458 L 3.354 8.896 C 3.229 8.785 3.153 8.656 3.125 8.51 C 3.097 8.365 3.104 8.222 3.146 8.083 C 3.188 7.944 3.264 7.83 3.375 7.74 C 3.486 7.649 3.625 7.597 3.792 7.583 L 7.75 7.229 L 9.313 3.604 C 9.382 3.451 9.479 3.337 9.604 3.26 C 9.729 3.184 9.861 3.146 10 3.146 C 10.139 3.146 10.271 3.184 10.396 3.26 C 10.521 3.337 10.618 3.451 10.688 3.604 L 12.25 7.25 L 16.208 7.583 C 16.375 7.597 16.514 7.653 16.625 7.75 C 16.736 7.847 16.813 7.965 16.854 8.104 C 16.896 8.243 16.899 8.382 16.865 8.521 C 16.83 8.66 16.75 8.785 16.625 8.896 L 13.625 11.458 L 14.521 15.271 C 14.563 15.424 14.556 15.573 14.5 15.719 C 14.444 15.865 14.361 15.979 14.25 16.063 C 14.139 16.146 14.01 16.194 13.865 16.208 C 13.719 16.222 13.569 16.188 13.417 16.104 Z\" fill=\"var(--token-5cda19d4-7efa-4b63-b7e4-17b25f40e63f, rgb(59, 130, 246))\"></path></svg>',svgContentId:10842428683,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c5kooo\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"gXC_Uw29D\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 14.063 L 6.583 16.104 C 6.431 16.188 6.281 16.222 6.135 16.208 C 5.99 16.194 5.861 16.146 5.75 16.063 C 5.639 15.979 5.556 15.865 5.5 15.719 C 5.444 15.573 5.438 15.424 5.479 15.271 L 6.375 11.458 L 3.354 8.896 C 3.229 8.785 3.153 8.656 3.125 8.51 C 3.097 8.365 3.104 8.222 3.146 8.083 C 3.188 7.944 3.264 7.83 3.375 7.74 C 3.486 7.649 3.625 7.597 3.792 7.583 L 7.75 7.229 L 9.313 3.604 C 9.382 3.451 9.479 3.337 9.604 3.26 C 9.729 3.184 9.861 3.146 10 3.146 C 10.139 3.146 10.271 3.184 10.396 3.26 C 10.521 3.337 10.618 3.451 10.688 3.604 L 12.25 7.25 L 16.208 7.583 C 16.375 7.597 16.514 7.653 16.625 7.75 C 16.736 7.847 16.813 7.965 16.854 8.104 C 16.896 8.243 16.899 8.382 16.865 8.521 C 16.83 8.66 16.75 8.785 16.625 8.896 L 13.625 11.458 L 14.521 15.271 C 14.563 15.424 14.556 15.573 14.5 15.719 C 14.444 15.865 14.361 15.979 14.25 16.063 C 14.139 16.146 14.01 16.194 13.865 16.208 C 13.719 16.222 13.569 16.188 13.417 16.104 Z\" fill=\"var(--token-5cda19d4-7efa-4b63-b7e4-17b25f40e63f, rgb(59, 130, 246))\"></path></svg>',svgContentId:10842428683,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vkwa2p\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"WYpft3oJ7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 14.063 L 6.583 16.104 C 6.431 16.188 6.281 16.222 6.135 16.208 C 5.99 16.194 5.861 16.146 5.75 16.063 C 5.639 15.979 5.556 15.865 5.5 15.719 C 5.444 15.573 5.438 15.424 5.479 15.271 L 6.375 11.458 L 3.354 8.896 C 3.229 8.785 3.153 8.656 3.125 8.51 C 3.097 8.365 3.104 8.222 3.146 8.083 C 3.188 7.944 3.264 7.83 3.375 7.74 C 3.486 7.649 3.625 7.597 3.792 7.583 L 7.75 7.229 L 9.313 3.604 C 9.382 3.451 9.479 3.337 9.604 3.26 C 9.729 3.184 9.861 3.146 10 3.146 C 10.139 3.146 10.271 3.184 10.396 3.26 C 10.521 3.337 10.618 3.451 10.688 3.604 L 12.25 7.25 L 16.208 7.583 C 16.375 7.597 16.514 7.653 16.625 7.75 C 16.736 7.847 16.813 7.965 16.854 8.104 C 16.896 8.243 16.899 8.382 16.865 8.521 C 16.83 8.66 16.75 8.785 16.625 8.896 L 13.625 11.458 L 14.521 15.271 C 14.563 15.424 14.556 15.573 14.5 15.719 C 14.444 15.865 14.361 15.979 14.25 16.063 C 14.139 16.146 14.01 16.194 13.865 16.208 C 13.719 16.222 13.569 16.188 13.417 16.104 Z\" fill=\"var(--token-5cda19d4-7efa-4b63-b7e4-17b25f40e63f, rgb(59, 130, 246))\"></path></svg>',svgContentId:10842428683,withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",children:'\"John is a true professional in every sense of the word. He brought a fresh perspective to our web design project, and the results were outstanding.\"'})}),className:\"framer-1ymkj9i\",\"data-framer-name\":\"Testimonial\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FapXK_5kr\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:jhbzeUGWy,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j54opt\",\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"MzglbmHQk\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+172+96),sizes:\"48px\",...toResponsiveImage(r0tUIN2cH),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1oy30gm\",layoutDependency:layoutDependency,layoutId:\"OiIGMso2_\",style:{borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gs69g3\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"H9vSLNiFp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255)))\"},children:\"Ralph Edwards\"})}),className:\"framer-1vtd1ol\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kIiE0EA5g\",style:{\"--extracted-r6o4lv\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:sbXn9nBiI,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",children:\"Owner\"})}),className:\"framer-1re3anh\",\"data-framer-name\":\"Function\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LqpoBIRgl\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zNTrZkuSB,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0UiSv.framer-1xd5e9w, .framer-0UiSv .framer-1xd5e9w { display: block; }\",\".framer-0UiSv.framer-1xsndry { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; text-decoration: none; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0UiSv .framer-jnyaa4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0UiSv .framer-1l5hzy2, .framer-0UiSv .framer-15rsroc, .framer-0UiSv .framer-bgb85w, .framer-0UiSv .framer-1c5kooo, .framer-0UiSv .framer-vkwa2p { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-0UiSv .framer-1ymkj9i, .framer-0UiSv .framer-1vtd1ol, .framer-0UiSv .framer-1re3anh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0UiSv .framer-j54opt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0UiSv .framer-1oy30gm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 48px; }\",\".framer-0UiSv .framer-gs69g3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0UiSv.framer-1xsndry, .framer-0UiSv .framer-jnyaa4, .framer-0UiSv .framer-j54opt, .framer-0UiSv .framer-gs69g3 { gap: 0px; } .framer-0UiSv.framer-1xsndry > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-0UiSv.framer-1xsndry > :first-child, .framer-0UiSv .framer-gs69g3 > :first-child { margin-top: 0px; } .framer-0UiSv.framer-1xsndry > :last-child, .framer-0UiSv .framer-gs69g3 > :last-child { margin-bottom: 0px; } .framer-0UiSv .framer-jnyaa4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0UiSv .framer-jnyaa4 > :first-child, .framer-0UiSv .framer-j54opt > :first-child { margin-left: 0px; } .framer-0UiSv .framer-jnyaa4 > :last-child, .framer-0UiSv .framer-j54opt > :last-child { margin-right: 0px; } .framer-0UiSv .framer-j54opt > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-0UiSv .framer-gs69g3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 276\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OYSEEcbOC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"jhbzeUGWy\":\"testimonialText\",\"sbXn9nBiI\":\"name1\",\"zNTrZkuSB\":\"function1\",\"r0tUIN2cH\":\"photo\",\"jbEdan8Mc\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerS0FWhyfg9=withCSS(Component,css,\"framer-0UiSv\");export default FramerS0FWhyfg9;FramerS0FWhyfg9.displayName=\"Testimonial\";FramerS0FWhyfg9.defaultProps={height:276,width:400};addPropertyControls(FramerS0FWhyfg9,{jhbzeUGWy:{defaultValue:'\"John is a true professional in every sense of the word. He brought a fresh perspective to our web design project, and the results were outstanding.\"',displayTextArea:false,title:\"Testimonial text\",type:ControlType.String},sbXn9nBiI:{defaultValue:\"Ralph Edwards\",displayTextArea:false,title:\"Name\",type:ControlType.String},zNTrZkuSB:{defaultValue:\"Owner\",displayTextArea:false,title:\"Function\",type:ControlType.String},r0tUIN2cH:{title:\"Photo\",type:ControlType.ResponsiveImage},jbEdan8Mc:{title:\"Link\",type:ControlType.Link}});addFonts(FramerS0FWhyfg9,[{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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerS0FWhyfg9\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"276\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OYSEEcbOC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"jhbzeUGWy\\\":\\\"testimonialText\\\",\\\"sbXn9nBiI\\\":\\\"name1\\\",\\\"zNTrZkuSB\\\":\\\"function1\\\",\\\"r0tUIN2cH\\\":\\\"photo\\\",\\\"jbEdan8Mc\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./S0FWhyfg9.map", "// Generated by Framer (b0cf16c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={hbRdg9AyL:{hover:true,pressed:true},HfBnyDpI_:{hover:true,pressed:true}};const cycleOrder=[\"HfBnyDpI_\",\"hbRdg9AyL\"];const serializationHash=\"framer-zylZY\";const variantClassNames={hbRdg9AyL:\"framer-v-1u5zlvo\",HfBnyDpI_:\"framer-v-1jzpvmz\"};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={Primary:\"HfBnyDpI_\",Secondary:\"hbRdg9AyL\"};const getProps=({height,id,link,newTab,title,width,...props})=>{return{...props,avSMDE5Ve:link??props.avSMDE5Ve,hwfLEpAJz:title??props.hwfLEpAJz??\"Button text\",kkkcdH9pG:newTab??props.kkkcdH9pG,variant:humanReadableVariantMap[props.variant]??props.variant??\"HfBnyDpI_\"};};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,hwfLEpAJz,avSMDE5Ve,kkkcdH9pG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HfBnyDpI_\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:avSMDE5Ve,motionChild:true,nodeId:\"HfBnyDpI_\",openInNewTab:kkkcdH9pG,scopeId:\"zqI6pP98V\",...addPropertyOverrides({hbRdg9AyL:{smoothScroll:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1jzpvmz\",className,classNames)} framer-17fjijg`,\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"HfBnyDpI_\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(5px)\",backgroundColor:\"rgb(74, 74, 74)\",borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80,opacity:1,WebkitBackdropFilter:\"blur(5px)\",...style},variants:{\"hbRdg9AyL-hover\":{backgroundColor:\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},\"hbRdg9AyL-pressed\":{opacity:.8},\"HfBnyDpI_-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},\"HfBnyDpI_-pressed\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",opacity:.8},hbRdg9AyL:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-534356b4-1a9b-444d-82a0-f898bbe1568e, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.08)\"}},...addPropertyOverrides({\"hbRdg9AyL-hover\":{\"data-framer-name\":undefined},\"hbRdg9AyL-pressed\":{\"data-framer-name\":undefined},\"HfBnyDpI_-hover\":{\"data-framer-name\":undefined},\"HfBnyDpI_-pressed\":{\"data-framer-name\":undefined},hbRdg9AyL:{\"data-border\":true,\"data-framer-name\":\"Secondary\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255)))\"},children:\"Let's talk\"})}),className:\"framer-byo400\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"GuCMJ35AW\",style:{\"--extracted-r6o4lv\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:hwfLEpAJz,variants:{\"hbRdg9AyL-hover\":{\"--extracted-r6o4lv\":\"var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, rgb(0, 0, 0))\"},\"HfBnyDpI_-hover\":{\"--extracted-r6o4lv\":\"var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"hbRdg9AyL-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, rgb(0, 0, 0)))\"},children:\"Let's talk\"})})},\"HfBnyDpI_-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, rgb(0, 0, 0)))\"},children:\"Let's talk\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zylZY.framer-17fjijg, .framer-zylZY .framer-17fjijg { display: block; }\",\".framer-zylZY.framer-1jzpvmz { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 32px 12px 32px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-zylZY .framer-byo400 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zylZY.framer-1jzpvmz { gap: 0px; } .framer-zylZY.framer-1jzpvmz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-zylZY.framer-1jzpvmz > :first-child { margin-left: 0px; } .framer-zylZY.framer-1jzpvmz > :last-child { margin-right: 0px; } }\",'.framer-zylZY[data-border=\"true\"]::after, .framer-zylZY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 148\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"hbRdg9AyL\":{\"layout\":[\"auto\",\"auto\"]},\"z_jHA9tcs\":{\"layout\":[\"auto\",\"auto\"]},\"sGP9qWtE8\":{\"layout\":[\"auto\",\"auto\"]},\"jJYe0urN6\":{\"layout\":[\"auto\",\"auto\"]},\"mBl5vLGmP\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"hwfLEpAJz\":\"title\",\"avSMDE5Ve\":\"link\",\"kkkcdH9pG\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerzqI6pP98V=withCSS(Component,css,\"framer-zylZY\");export default FramerzqI6pP98V;FramerzqI6pP98V.displayName=\"Button 2\";FramerzqI6pP98V.defaultProps={height:48,width:148};addPropertyControls(FramerzqI6pP98V,{variant:{options:[\"HfBnyDpI_\",\"hbRdg9AyL\"],optionTitles:[\"Primary\",\"Secondary\"],title:\"Variant\",type:ControlType.Enum},hwfLEpAJz:{defaultValue:\"Button text\",displayTextArea:false,title:\"Title\",type:ControlType.String},avSMDE5Ve:{title:\"Link\",type:ControlType.Link},kkkcdH9pG:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerzqI6pP98V,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzqI6pP98V\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hbRdg9AyL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"z_jHA9tcs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sGP9qWtE8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jJYe0urN6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mBl5vLGmP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"148\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"hwfLEpAJz\\\":\\\"title\\\",\\\"avSMDE5Ve\\\":\\\"link\\\",\\\"kkkcdH9pG\\\":\\\"newTab\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zqI6pP98V.map", "// Generated by Framer (047deaf)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import Button from\"https://framerusercontent.com/modules/s3SYTXCrPqbqjI2yY5wk/Eul2dLzwbHvU102m5DAT/kIge2YdBH.js\";import ProductItem from\"#framer/local/canvasComponent/bXxL_ulUc/bXxL_ulUc.js\";import Booking from\"#framer/local/canvasComponent/ddP1ZGjCC/ddP1ZGjCC.js\";import Notion from\"#framer/local/canvasComponent/F5FsYrOp_/F5FsYrOp_.js\";import FAQItem from\"#framer/local/canvasComponent/gzC090QB_/gzC090QB_.js\";import Dribbble from\"#framer/local/canvasComponent/Jy__ZHX01/Jy__ZHX01.js\";import Button1 from\"#framer/local/canvasComponent/kIge2YdBH/kIge2YdBH.js\";import Spotify from\"#framer/local/canvasComponent/Kj7_uzx2q/Kj7_uzx2q.js\";import Mailchimp from\"#framer/local/canvasComponent/mLLDk_sM1/mLLDk_sM1.js\";import WorkItem from\"#framer/local/canvasComponent/n_KCRw5fi/n_KCRw5fi.js\";import Feature from\"#framer/local/canvasComponent/nl1FFRjX8/nl1FFRjX8.js\";import BlogItem from\"#framer/local/canvasComponent/pXrxHY97w/pXrxHY97w.js\";import Testimonial from\"#framer/local/canvasComponent/S0FWhyfg9/S0FWhyfg9.js\";import Button2 from\"#framer/local/canvasComponent/zqI6pP98V/zqI6pP98V.js\";import Work from\"#framer/local/collection/eDHm1sab3/eDHm1sab3.js\";import Shop from\"#framer/local/collection/mlonwwwCp/mlonwwwCp.js\";import Blog from\"#framer/local/collection/UYgssMU2c/UYgssMU2c.js\";import*as sharedStyle from\"#framer/local/css/CFvrzJmr4/CFvrzJmr4.js\";import*as sharedStyle6 from\"#framer/local/css/EbwL93Yud/EbwL93Yud.js\";import*as sharedStyle1 from\"#framer/local/css/KtyUEnTXi/KtyUEnTXi.js\";import*as sharedStyle4 from\"#framer/local/css/oMzAN8GuQ/oMzAN8GuQ.js\";import*as sharedStyle3 from\"#framer/local/css/pNktkXffu/pNktkXffu.js\";import*as sharedStyle5 from\"#framer/local/css/sohND2NNd/sohND2NNd.js\";import*as sharedStyle2 from\"#framer/local/css/XfEDhSkY7/XfEDhSkY7.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const Button2Fonts=getFonts(Button2);const ContainerWithFX=withFX(Container);const ButtonFonts=getFonts(Button);const ProductItemFonts=getFonts(ProductItem);const MotionDivWithFX=withFX(motion.div);const WorkItemFonts=getFonts(WorkItem);const BookingFonts=getFonts(Booking);const SpotifyFonts=getFonts(Spotify);const NotionFonts=getFonts(Notion);const MailchimpFonts=getFonts(Mailchimp);const DribbbleFonts=getFonts(Dribbble);const TickerFonts=getFonts(Ticker);const BlogItemFonts=getFonts(BlogItem);const TestimonialFonts=getFonts(Testimonial);const Button1Fonts=getFonts(Button1);const FeatureFonts=getFonts(Feature);const FAQItemFonts=getFonts(FAQItem);const ImageWithFX=withFX(Image);const breakpoints={G3ZrQu2Nb:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\",xawIChTct:\"(min-width: 810px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-bf7Hh\";const variantClassNames={G3ZrQu2Nb:\"framer-v-1tfzniy\",WQLkyLRf1:\"framer-v-72rtr7\",xawIChTct:\"framer-v-iwkrjh\"};const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={bounce:0,delay:.05,duration:1.2,type:\"spring\"};const textEffect={effect:animation,tokenization:\"word\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:.1,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:10};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition4={delay:.05,duration:.85,ease:[.44,0,.56,1],type:\"tween\"};const textEffect1={effect:animation,threshold:.5,tokenization:\"word\",transition:transition4,trigger:\"onInView\",type:\"appear\"};const transition5={delay:0,duration:10,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:110,y:270};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"G3ZrQu2Nb\",Tablet:\"xawIChTct\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,s9B_hbmyCDx8pLQxS6,y62fq8pIpDx8pLQxS6,TbvNyHeAYDx8pLQxS6,tKSWt1rfBDx8pLQxS6,Wlio9sg6mDx8pLQxS6,idDx8pLQxS6,Vw8sETrE7bplvpDPwX,YWhGaTO19bplvpDPwX,ZjwaZoOB8bplvpDPwX,PTI3Fw1rgbplvpDPwX,idbplvpDPwX,SsFcRNaX1JunkpIXKz,VAF3x_YTkJunkpIXKz,qTQhUgahpJunkpIXKz,ZXlUncUWpJunkpIXKz,idJunkpIXKz,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const activeLocaleCode=useLocaleCode();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"G3ZrQu2Nb\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-27g9v2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t4gex1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:750,intrinsicWidth:246.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+150),pixelHeight:1500,pixelWidth:493,sizes:\"156px\",src:\"https://framerusercontent.com/images/y3djjFnK9D9jChQIlMYrfDvm4Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/y3djjFnK9D9jChQIlMYrfDvm4Y.png 493w\"}},xawIChTct:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:750,intrinsicWidth:246.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+100),pixelHeight:1500,pixelWidth:493,sizes:\"236px\",src:\"https://framerusercontent.com/images/y3djjFnK9D9jChQIlMYrfDvm4Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/y3djjFnK9D9jChQIlMYrfDvm4Y.png 493w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:750,intrinsicWidth:246.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+100),pixelHeight:1500,pixelWidth:493,sizes:\"286px\",src:\"https://framerusercontent.com/images/y3djjFnK9D9jChQIlMYrfDvm4Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/y3djjFnK9D9jChQIlMYrfDvm4Y.png 493w\"},className:\"framer-rai5zq\",\"data-framer-name\":\"ChatGPT Image Apr 15, 2025, 08 56_26 PM Background Removed copy\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fnbjfc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rhhnn8\",\"data-framer-name\":\"Titles\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"39px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6a4aeca2-2020-4447-a3b8-da9cf8c08379, rgb(133, 133, 136))\"},children:\"I'm V. Slavoff\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Curator and creator.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"72px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6a4aeca2-2020-4447-a3b8-da9cf8c08379, rgb(133, 133, 136))\"},children:\"I'm V. Slavoff\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Curator and creator.\"]})}),className:\"framer-1l4yl75\",effect:textEffect,fonts:[\"GF;Playfair Display-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dkpdj2\",\"data-framer-name\":\"Buttons\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r01vwp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+0+0+0+297.55+0+72.9+0+0+0},xawIChTct:{y:(componentViewport?.y||0)+0+0+0+0+380.4+0+109.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+0+466.4+0+89.2+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nlmvol-container\",nodeId:\"FzYZQnTNe\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button2,{avSMDE5Ve:\"https://framer.link/Bel4l0K\",height:\"100%\",hwfLEpAJz:\"Browse Tools\",id:\"FzYZQnTNe\",kkkcdH9pG:false,layoutId:\"FzYZQnTNe\",variant:\"HfBnyDpI_\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GxSZFGgWF\"},implicitPathVariables:undefined},{href:{webPageId:\"GxSZFGgWF\"},implicitPathVariables:undefined},{href:{webPageId:\"GxSZFGgWF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+0+0+0+297.55+0+72.9+0+0+58},xawIChTct:{y:(componentViewport?.y||0)+0+0+0+0+380.4+0+109.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+0+466.4+0+89.2+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1is791x-container\",isModuleExternal:true,nodeId:\"FKtxQxygO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{avSMDE5Ve:resolvedLinks[2]},xawIChTct:{avSMDE5Ve:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{avSMDE5Ve:resolvedLinks[0],height:\"100%\",hwfLEpAJz:\"About me\",id:\"FKtxQxygO\",kkkcdH9pG:false,layoutId:\"FKtxQxygO\",variant:\"JF8EO8uFy\",width:\"100%\"})})})})})})]})})]})]})}),/*#__PURE__*/_jsx(\"main\",{className:\"framer-4slwv7\",\"data-framer-name\":\"Main\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c8e8vx\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tn5m7t\",\"data-framer-name\":\"Products\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yuid5k\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",children:\"Digital goods\"})}),className:\"framer-11hylqy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s5krou\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"B1k3hwCyl\"},motionChild:true,nodeId:\"NUqt2vo9J\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-13fjzrd\",\"data-styles-preset\":\"XfEDhSkY7\",children:\"See all\"})})})}),className:\"framer-175d4cq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nxtky\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Dx8pLQxS6\",data:Shop,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"Dx8pLQxS6\",name:\"s9B_hbmyC\",type:\"Identifier\"},{collection:\"Dx8pLQxS6\",name:\"y62fq8pIp\",type:\"Identifier\"},{collection:\"Dx8pLQxS6\",name:\"TbvNyHeAY\",type:\"Identifier\"},{collection:\"Dx8pLQxS6\",name:\"tKSWt1rfB\",type:\"Identifier\"},{collection:\"Dx8pLQxS6\",name:\"Wlio9sg6m\",type:\"Identifier\"},{collection:\"Dx8pLQxS6\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idDx8pLQxS6,s9B_hbmyC:s9B_hbmyCDx8pLQxS6,TbvNyHeAY:TbvNyHeAYDx8pLQxS6,tKSWt1rfB:tKSWt1rfBDx8pLQxS6,Wlio9sg6m:Wlio9sg6mDx8pLQxS6,y62fq8pIp:y62fq8pIpDx8pLQxS6},index)=>{s9B_hbmyCDx8pLQxS6??=\"\";TbvNyHeAYDx8pLQxS6??=\"\";tKSWt1rfBDx8pLQxS6??=\"\";Wlio9sg6mDx8pLQxS6??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Dx8pLQxS6-${idDx8pLQxS6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{s9B_hbmyC:s9B_hbmyCDx8pLQxS6},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{s9B_hbmyC:s9B_hbmyCDx8pLQxS6},webPageId:\"m0RFsLyTv\"},implicitPathVariables:undefined},{href:{pathVariables:{s9B_hbmyC:s9B_hbmyCDx8pLQxS6},webPageId:\"m0RFsLyTv\"},implicitPathVariables:undefined},{href:{pathVariables:{s9B_hbmyC:s9B_hbmyCDx8pLQxS6},webPageId:\"m0RFsLyTv\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+724+0+0+0+0+62.4+0+0},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+0+0+78.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:402,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1120+0+0+0+0+78.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1edl2w5-container\",nodeId:\"n4KHHB6Oa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{CaMryZpcW:resolvedLinks1[2],variant:\"k8XgmrePN\"},xawIChTct:{CaMryZpcW:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ProductItem,{CaMryZpcW:resolvedLinks1[0],FORxya4fk:TbvNyHeAYDx8pLQxS6,height:\"100%\",id:\"n4KHHB6Oa\",KfrUxc7eV:toResponsiveImage(y62fq8pIpDx8pLQxS6),layoutId:\"n4KHHB6Oa\",mjjU_ruhN:Wlio9sg6mDx8pLQxS6,pKv4MZCPK:tKSWt1rfBDx8pLQxS6,style:{width:\"100%\"},variant:\"mNyyTQpQt\",width:\"100%\"})})})})})})})},idDx8pLQxS6);})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7005s6\",\"data-framer-name\":\"Services\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8a6ef4\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",children:\"What I do\"})}),className:\"framer-1gjn23l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pvwojd\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tb0ldm\",\"data-framer-name\":\"Rows\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t8trbj\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dgjgo0\",\"data-border\":true,\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3v3sz3\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ndchdm\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2bl6ow\",\"data-framer-name\":\"Icon\",fill:\"rgb(0, 0, 0)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"#FFF\"><path d=\"M400-200v-80H160q-33 0-56.5-23.5T80-360v-400q0-33 23.5-56.5T160-840h640q33 0 56.5 23.5T880-760v400q0 33-23.5 56.5T800-280H560v80h40q17 0 28.5 11.5T640-160q0 17-11.5 28.5T600-120H360q-17 0-28.5-11.5T320-160q0-17 11.5-28.5T360-200h40Z\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eqg73c\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",style:{\"--framer-text-alignment\":\"center\"},children:\"Notion Templates\"})}),className:\"framer-1rl8djm\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19cyt6h\",\"data-styles-preset\":\"pNktkXffu\",style:{\"--framer-text-alignment\":\"center\"},children:\"Organized, aesthetic, and ready to go.\"})}),className:\"framer-1e6akvs\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Custom templates to organize your work and life with style.\"})}),className:\"framer-gh5vtp\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ku4nxt\",\"data-border\":true,\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mjp8ow\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wl3idi\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-w4t224\",\"data-framer-name\":\"Icon\",fill:\"rgb(0, 0, 0)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"#FFF\"><path d=\"M480-80q-82 0-155-31.5t-127.5-86Q143-252 111.5-325T80-480q0-83 32.5-156t88-127Q256-817 330-848.5T488-880q80 0 151 27.5t124.5 76q53.5 48.5 85 115T880-518q0 115-70 176.5T640-280h-74q-9 0-12.5 5t-3.5 11q0 12 15 34.5t15 51.5q0 50-27.5 74T480-80ZM260-440q26 0 43-17t17-43q0-26-17-43t-43-17q-26 0-43 17t-17 43q0 26 17 43t43 17Zm120-160q26 0 43-17t17-43q0-26-17-43t-43-17q-26 0-43 17t-17 43q0 26 17 43t43 17Zm200 0q26 0 43-17t17-43q0-26-17-43t-43-17q-26 0-43 17t-17 43q0 26 17 43t43 17Zm120 160q26 0 43-17t17-43q0-26-17-43t-43-17q-26 0-43 17t-17 43q0 26 17 43t43 17Z\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r4wzsg\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",style:{\"--framer-text-alignment\":\"center\"},children:\"AI Automation\"})}),className:\"framer-13lsoyr\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19cyt6h\",\"data-styles-preset\":\"pNktkXffu\",style:{\"--framer-text-alignment\":\"center\"},children:\"Let smart systems do the heavy lifting.\"})}),className:\"framer-9rz4a3\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Automate tasks and streamline your workflow with AI.\"})}),className:\"framer-9xi0by\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rsp6ce\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8qnz33\",\"data-border\":true,\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qmp0xq\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qj0d22\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-s90hwe\",\"data-framer-name\":\"Icon\",fill:\"rgb(0, 0, 0)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"#FFF\"><path d=\"M186-80q-54 0-80-22t-26-66q0-58 49-74t116-16h21v-56q0-34-1-55.5t-6-35.5q-5-14-11.5-19.5T230-430q-9 0-16.5 3t-12.5 8q-4 5-5 10.5t1 11.5q6 11 14 21.5t8 24.5q0 25-17.5 42.5T159-291q-25 0-42.5-17.5T99-351q0-27 12-44t32.5-27q20.5-10 47.5-14t58-4q85 0 118 30.5T400-302v147q0 19 4.5 28t15.5 9q12 0 19.5-18t9.5-56h11q-3 62-23.5 87T368-80q-43 0-67.5-13.5T269-134q-10 29-29.5 41.5T186-80Zm373 0q-20 0-32.5-16.5T522-132l102-269q7-17 22-28t34-11q19 0 34 11t22 28l102 269q8 19-4.5 35.5T801-80q-12 0-22-7t-15-19l-20-58H616l-20 58q-4 11-14 18.5T559-80Zm-324-29q13 0 22-20.5t9-49.5v-67q-26 0-38 15.5T216-180v11q0 36 4 48t15 12Zm407-125h77l-39-114-38 114Zm-37-285q-48 0-76.5-33.5T500-643q0-104 66-170.5T735-880q42 0 68 9.5t26 24.5q0 6-2 12t-7 11q-5 7-12.5 10t-15.5 1q-14-4-32-7t-33-3q-71 0-114 48t-43 127q0 22 8 46t36 24q11 0 21.5-5t18.5-14q17-18 31.5-60T712-758q2-13 10.5-18.5T746-782q18 0 27.5 9.5T779-749q-12 43-17.5 75t-5.5 58q0 20 5.5 29t16.5 9q11 0 21.5-8t29.5-30q2-3 15-7 8 0 12 6t4 17q0 28-32 54t-67 26q-26 0-44.5-14T691-574q-15 26-37 40.5T605-519Zm-485-1v-220q0-58 41-99t99-41q58 0 99 41t41 99v220h-80v-80H200v80h-80Zm80-160h120v-60q0-25-17.5-42.5T260-800q-25 0-42.5 17.5T200-740v60Z\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x5egoi\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",style:{\"--framer-text-alignment\":\"center\"},children:\"App Prototypes\"})}),className:\"framer-ir6lxy\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19cyt6h\",\"data-styles-preset\":\"pNktkXffu\",style:{\"--framer-text-alignment\":\"center\"},children:\"From concept to clickable\u2014fast.\"})}),className:\"framer-1cke4ip\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Rapid, intelligent app prototypes built for testing and pitching.\"})}),className:\"framer-1n524bi\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nvm0wg\",\"data-border\":true,\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sjgswb\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lds7ge\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-182f0ev\",\"data-framer-name\":\"Icon\",fill:\"rgb(0, 0, 0)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"#FFF\"><path d=\"m352-522 86-87-56-57-16 16q-11 11-27.5 11.5T310-650q-12-12-12-28.5t12-28.5l15-15-45-45-87 87 159 158Zm328 329 87-87-45-45-16 15q-12 12-28 12t-28-12q-12-12-12-28t12-28l15-16-57-56-86 86 158 159Zm-31-510 56 56 56-56-57-57-55 57ZM160-120q-17 0-28.5-11.5T120-160v-113q0-8 3-15.5t9-13.5l163-163-173-173q-17-17-17-42t17-42l116-116q17-17 42-16.5t42 17.5l174 173 151-152q12-12 27-18t31-6q16 0 31 6t27 18l53 54q12 12 18 27t6 31q0 16-6 30.5T816-647L665-495l173 173q17 17 17 42t-17 42L722-122q-17 17-42 17t-42-17L465-295 302-132q-6 6-13.5 9t-15.5 3H160Z\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sj89e9\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",style:{\"--framer-text-alignment\":\"center\"},children:\"Drone Cinematics\"})}),className:\"framer-1t5xyfz\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19cyt6h\",\"data-styles-preset\":\"pNktkXffu\",style:{\"--framer-text-alignment\":\"center\"},children:\"Elevating perspectives\u2014literally.\"})}),className:\"framer-1uafv2d\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Stunning aerial footage for brands, events, and stories.\"})}),className:\"framer-1t7q57r\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-168lux9\",\"data-framer-name\":\"Work\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o3nd9q\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",children:\"Latest work\"})}),className:\"framer-rpvdbv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k9jp86\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"haGUcgN3o\"},motionChild:true,nodeId:\"i9mSOAfxB\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-13fjzrd\",\"data-styles-preset\":\"XfEDhSkY7\",children:\"See all\"})})})}),className:\"framer-1680q7y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16jadjd\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"bplvpDPwX\",data:Work,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"bplvpDPwX\",name:\"Vw8sETrE7\",type:\"Identifier\"},{collection:\"bplvpDPwX\",name:\"YWhGaTO19\",type:\"Identifier\"},{collection:\"bplvpDPwX\",name:\"ZjwaZoOB8\",type:\"Identifier\"},{collection:\"bplvpDPwX\",name:\"PTI3Fw1rg\",type:\"Identifier\"},{collection:\"bplvpDPwX\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idbplvpDPwX,PTI3Fw1rg:PTI3Fw1rgbplvpDPwX,Vw8sETrE7:Vw8sETrE7bplvpDPwX,YWhGaTO19:YWhGaTO19bplvpDPwX,ZjwaZoOB8:ZjwaZoOB8bplvpDPwX},index1)=>{Vw8sETrE7bplvpDPwX??=\"\";ZjwaZoOB8bplvpDPwX??=\"\";PTI3Fw1rgbplvpDPwX??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`bplvpDPwX-${idbplvpDPwX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Vw8sETrE7:Vw8sETrE7bplvpDPwX},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Vw8sETrE7:Vw8sETrE7bplvpDPwX},webPageId:\"CYIyW4BZg\"},implicitPathVariables:undefined},{href:{pathVariables:{Vw8sETrE7:Vw8sETrE7bplvpDPwX},webPageId:\"CYIyW4BZg\"},implicitPathVariables:undefined},{href:{pathVariables:{Vw8sETrE7:Vw8sETrE7bplvpDPwX},webPageId:\"CYIyW4BZg\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+724+0+0+2618.4+0+62.4+0+0},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+1965.6+0+78.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:378,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px), 50px)`,y:(componentViewport?.y||0)+0+1120+0+0+1965.6+0+78.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yxgj-container\",nodeId:\"fQp_C_eYa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{BuewtrqjG:resolvedLinks2[2],variant:\"gNlheUFUM\"},xawIChTct:{BuewtrqjG:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(WorkItem,{BuewtrqjG:resolvedLinks2[0],height:\"100%\",id:\"fQp_C_eYa\",j52Hn3ptk:toResponsiveImage(YWhGaTO19bplvpDPwX),layoutId:\"fQp_C_eYa\",style:{width:\"100%\"},TvytUzwax:ZjwaZoOB8bplvpDPwX,U3sztV1s0:PTI3Fw1rgbplvpDPwX,variant:\"XfFq3FYFZ\",width:\"100%\"})})})})})})})},idbplvpDPwX);})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uhe6fj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"w0ywd07y_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"w0ywd07y_\",layoutId:\"w0ywd07y_\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"165px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-a8dryg-container\",inComponentSlot:true,nodeId:\"lSTx49yUe\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Booking,{height:\"100%\",id:\"lSTx49yUe\",layoutId:\"lSTx49yUe\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"140px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xykld-container\",inComponentSlot:true,nodeId:\"TU8VFRYcV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spotify,{height:\"100%\",id:\"TU8VFRYcV\",layoutId:\"TU8VFRYcV\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"130px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rij9co-container\",inComponentSlot:true,nodeId:\"uvJ2mOiDV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Notion,{height:\"100%\",id:\"uvJ2mOiDV\",layoutId:\"uvJ2mOiDV\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"168px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-iaf7j-container\",inComponentSlot:true,nodeId:\"EiDBDG5_4\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Mailchimp,{height:\"100%\",id:\"EiDBDG5_4\",layoutId:\"EiDBDG5_4\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"113px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ozmejo-container\",inComponentSlot:true,nodeId:\"b1MoxlXLT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Dribbble,{height:\"100%\",id:\"b1MoxlXLT\",layoutId:\"b1MoxlXLT\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-h29b56\",\"data-framer-name\":\"Journal\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zi3fax\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",children:\"From the blog\"})}),className:\"framer-1ki6ddm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j96ha7\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cU2JyY13P\"},motionChild:true,nodeId:\"a8KUCCK7h\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-13fjzrd\",\"data-styles-preset\":\"XfEDhSkY7\",children:\"See all\"})})})}),className:\"framer-tjer9u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-1s9vtir\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JunkpIXKz\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:5},select:[{collection:\"JunkpIXKz\",name:\"SsFcRNaX1\",type:\"Identifier\"},{collection:\"JunkpIXKz\",name:\"VAF3x_YTk\",type:\"Identifier\"},{collection:\"JunkpIXKz\",name:\"qTQhUgahp\",type:\"Identifier\"},{collection:\"JunkpIXKz\",name:\"ZXlUncUWp\",type:\"Identifier\"},{collection:\"JunkpIXKz\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idJunkpIXKz,qTQhUgahp:qTQhUgahpJunkpIXKz,SsFcRNaX1:SsFcRNaX1JunkpIXKz,VAF3x_YTk:VAF3x_YTkJunkpIXKz,ZXlUncUWp:ZXlUncUWpJunkpIXKz},index2)=>{SsFcRNaX1JunkpIXKz??=\"\";VAF3x_YTkJunkpIXKz??=\"\";ZXlUncUWpJunkpIXKz??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JunkpIXKz-${idJunkpIXKz}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{SsFcRNaX1:SsFcRNaX1JunkpIXKz},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{SsFcRNaX1:SsFcRNaX1JunkpIXKz},webPageId:\"mAaXf5BPx\"},implicitPathVariables:undefined},{href:{pathVariables:{SsFcRNaX1:SsFcRNaX1JunkpIXKz},webPageId:\"mAaXf5BPx\"},implicitPathVariables:undefined},{href:{pathVariables:{SsFcRNaX1:SsFcRNaX1JunkpIXKz},webPageId:\"mAaXf5BPx\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+724+0+0+3668.8+0+46.4+0+0},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+3112+0+62.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:116,width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px)`,y:(componentViewport?.y||0)+0+1120+0+0+3112+0+62.4+0+0,children:/*#__PURE__*/_jsx(Container,{as:\"li\",className:\"framer-19eo0cd-container\",nodeId:\"q_MMy0Pfj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{myEBywSoM:resolvedLinks3[2],variant:\"EDhl2Yyxx\"},xawIChTct:{myEBywSoM:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(BlogItem,{height:\"100%\",id:\"q_MMy0Pfj\",layoutId:\"q_MMy0Pfj\",mBuj3vPvX:toDateString(qTQhUgahpJunkpIXKz,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),myEBywSoM:resolvedLinks3[0],style:{width:\"100%\"},TLqUSDTdG:VAF3x_YTkJunkpIXKz,variant:\"bevVQZcln\",width:\"100%\",Y_hmjNl2a:ZXlUncUWpJunkpIXKz})})})})})})})},idJunkpIXKz);})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-470q6r\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7d6sjt\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",children:\"What others say\"})}),className:\"framer-1tdnitx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b8zp7\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ch21qj\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jp8bbt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"m2XkPLpqD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"m2XkPLpqD\",layoutId:\"m2XkPLpqD\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tsg5cc-container\",inComponentSlot:true,nodeId:\"hhDevm3m8\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"hhDevm3m8\",jbEdan8Mc:\"https://x.com/\",jhbzeUGWy:\"\u201CSlavoff work exceeded all expectations. They brought fresh ideas to the table, and the final designs were nothing short of exceptional.\u201D\",layoutId:\"hhDevm3m8\",r0tUIN2cH:addImageAlt({pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/V0VjlWbaMqKLaAfzXo1ZVzabGEA.png\"},\"\"),sbXn9nBiI:\"Jordan P.\",style:{width:\"100%\"},width:\"100%\",zNTrZkuSB:\"Startup Founder\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-axrzvc-container\",inComponentSlot:true,nodeId:\"k9tdsEVA1\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"k9tdsEVA1\",jbEdan8Mc:\"https://x.com/\",jhbzeUGWy:\"\u201CSlavoff made the design process smooth and exciting. Their unique approach and dedication resulted in a polished and cohesive brand aesthetic.\u201D\",layoutId:\"k9tdsEVA1\",r0tUIN2cH:addImageAlt({pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/V0JIqgy7BSEhYZO2u8bprhOvSVQ.png\"},\"\"),sbXn9nBiI:\"Nina S.\",style:{width:\"100%\"},width:\"100%\",zNTrZkuSB:\"Marketing Manager\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fknx3o-container\",inComponentSlot:true,nodeId:\"Uw_xGMy2u\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"Uw_xGMy2u\",jbEdan8Mc:\"https://x.com/\",jhbzeUGWy:\"\u201CSlavoff transformed our vision into a stunning reality. Their creativity and attention to detail brought our brand to life in ways we couldn\u2019t have imagined!\u201D\",layoutId:\"Uw_xGMy2u\",r0tUIN2cH:addImageAlt({pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/vgfPvUD5iG4gikiyrOOcUTCYNo.png\"},\"\"),sbXn9nBiI:\"Juno C.\",style:{width:\"100%\"},width:\"100%\",zNTrZkuSB:\"Small Business Owner\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g1ctsm-container hidden-1tfzniy\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fiqL_nLJw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"fiqL_nLJw\",layoutId:\"fiqL_nLJw\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yzdcw0-container\",inComponentSlot:true,nodeId:\"BzjyF30sk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"BzjyF30sk\",jbEdan8Mc:\"https://x.com/\",jhbzeUGWy:\"\u201CSlavoff is a true creative talent. From concept to completion, they delivered a portfolio that truly reflects my style and personality.\u201D\",layoutId:\"BzjyF30sk\",r0tUIN2cH:addImageAlt({pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/tyz5oeJmbRuRGN0foJnpQSUIGQ.png\"},\"\"),sbXn9nBiI:\"Samantha R.\",style:{width:\"100%\"},width:\"100%\",zNTrZkuSB:\"Creative Director\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-lone41-container\",inComponentSlot:true,nodeId:\"fO2AkLdfa\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"fO2AkLdfa\",jbEdan8Mc:\"https://x.com/\",jhbzeUGWy:\"\u201CSlavoff work exceeded all expectations. They brought fresh ideas to the table, and the final designs were nothing short of exceptional.\u201D\",layoutId:\"fO2AkLdfa\",r0tUIN2cH:addImageAlt({pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/V0VjlWbaMqKLaAfzXo1ZVzabGEA.png\"},\"\"),sbXn9nBiI:\"Jordan P.\",style:{width:\"100%\"},width:\"100%\",zNTrZkuSB:\"Startup Founder\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-esxgun-container\",inComponentSlot:true,nodeId:\"IPB6RVnfm\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"IPB6RVnfm\",jbEdan8Mc:\"https://x.com/\",jhbzeUGWy:\"\u201CWorking with Slavoff was a game-changer. Their innovative designs not only look amazing but also perfectly align with our brand\u2019s identity.\u201D\",layoutId:\"IPB6RVnfm\",r0tUIN2cH:addImageAlt({pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/Hex6M3QAm7sX7cxZ2yul8sFs6g.png\"},\"\"),sbXn9nBiI:\"Lucas M.\",style:{width:\"100%\"},width:\"100%\",zNTrZkuSB:\"Photographer\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o27vwy\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-egl8nu\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",children:\"Pricing\"})}),className:\"framer-6qbay2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j4grdc\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l2nozu\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{style:{rotate:90}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-111d5xc\",\"data-framer-name\":\"Spiral wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77,intrinsicWidth:320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+724+0+0+4853.6+0+62.4+784+0),pixelHeight:154,pixelWidth:640,sizes:\"640px\",src:\"https://framerusercontent.com/images/LuWTLiI0UXvkg72UfExgIuQ7wM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/LuWTLiI0UXvkg72UfExgIuQ7wM.png?scale-down-to=512 512w,https://framerusercontent.com/images/LuWTLiI0UXvkg72UfExgIuQ7wM.png 640w\"}},xawIChTct:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77,intrinsicWidth:320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+968+0+0+4408.8+0+78.4+328+0),pixelHeight:154,pixelWidth:640,sizes:\"640px\",src:\"https://framerusercontent.com/images/LuWTLiI0UXvkg72UfExgIuQ7wM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/LuWTLiI0UXvkg72UfExgIuQ7wM.png?scale-down-to=512 512w,https://framerusercontent.com/images/LuWTLiI0UXvkg72UfExgIuQ7wM.png 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77,intrinsicWidth:320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1120+0+0+4408.8+0+78.4+328+0),pixelHeight:154,pixelWidth:640,sizes:\"640px\",src:\"https://framerusercontent.com/images/LuWTLiI0UXvkg72UfExgIuQ7wM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/LuWTLiI0UXvkg72UfExgIuQ7wM.png?scale-down-to=512 512w,https://framerusercontent.com/images/LuWTLiI0UXvkg72UfExgIuQ7wM.png 640w\"},className:\"framer-1ln7o3k\",\"data-framer-name\":\"Spiral\",draggable:\"false\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mg37j2\",\"data-border\":true,\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tvnkxz\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xmfg8u\",\"data-styles-preset\":\"sohND2NNd\",style:{\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:\"Per project\"})}),className:\"framer-15d1k1o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",children:\"For clients seeking a professionally designed landing page with no recurring costs.\"})}),className:\"framer-14qqkp8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xcsh12\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q12y3a\",\"data-styles-preset\":\"EbwL93Yud\",children:\"From\"})}),className:\"framer-vtl57q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"32px\"},children:\"$5000\"}),\"/project\"]})}),className:\"framer-7h4mmy\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined},{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined},{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+724+0+0+4853.6+0+62.4+0+0+40+656},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+4408.8+0+78.4+0+0+40+656}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1120+0+0+4408.8+0+78.4+0+0+40+656,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1736l92-container\",nodeId:\"DaZ13Wwb3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{avSMDE5Ve:resolvedLinks4[2]},xawIChTct:{avSMDE5Ve:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button1,{avSMDE5Ve:resolvedLinks4[0],height:\"100%\",hwfLEpAJz:\"Book a call\",id:\"DaZ13Wwb3\",kkkcdH9pG:false,layoutId:\"DaZ13Wwb3\",style:{width:\"100%\"},variant:\"EK09oMfl9\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r0p8vs\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+724+0+0+4853.6+0+62.4+0+0+40+728+0+0},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+4408.8+0+78.4+0+0+40+728+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1120+0+0+4408.8+0+78.4+0+0+40+728+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vdytie-container\",nodeId:\"wrNqzsCDE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{DQPLNF5gS:\"One-time investment\",height:\"100%\",id:\"wrNqzsCDE\",layoutId:\"wrNqzsCDE\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+724+0+0+4853.6+0+62.4+0+0+40+728+0+32},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+4408.8+0+78.4+0+0+40+728+0+32}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1120+0+0+4408.8+0+78.4+0+0+40+728+0+32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8wn5he-container\",nodeId:\"K_LyzDhM1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{DQPLNF5gS:\"Full ownership\",height:\"100%\",id:\"K_LyzDhM1\",layoutId:\"K_LyzDhM1\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+724+0+0+4853.6+0+62.4+0+0+40+728+0+64},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+4408.8+0+78.4+0+0+40+728+0+64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1120+0+0+4408.8+0+78.4+0+0+40+728+0+64,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ndgcm0-container\",nodeId:\"NEUFLWjae\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{DQPLNF5gS:\"Get all the design files\",height:\"100%\",id:\"NEUFLWjae\",layoutId:\"NEUFLWjae\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eyth8r\",\"data-border\":true,\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17hlls2\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xmfg8u\",\"data-styles-preset\":\"sohND2NNd\",style:{\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:\"Monthly\"})}),className:\"framer-yd61k9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",children:\"For clients who want ongoing design updates and support.\"})}),className:\"framer-1xwa4tk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-853jm2\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q12y3a\",\"data-styles-preset\":\"EbwL93Yud\",children:\"From\"})}),className:\"framer-13t8e9l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"32px\"},children:\"$2500\"}),\"/month\"]})}),className:\"framer-1cd3tx6\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined},{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined},{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+724+0+0+4853.6+0+62.4+0+912+40+656},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+4408.8+0+78.4+0+0+40+656}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1120+0+0+4408.8+0+78.4+0+0+40+656,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x2c0of-container\",nodeId:\"nkEl5ryn2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{avSMDE5Ve:resolvedLinks5[2]},xawIChTct:{avSMDE5Ve:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Button1,{avSMDE5Ve:resolvedLinks5[0],height:\"100%\",hwfLEpAJz:\"Book a call\",id:\"nkEl5ryn2\",kkkcdH9pG:false,layoutId:\"nkEl5ryn2\",style:{width:\"100%\"},variant:\"EK09oMfl9\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a4zv6l\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+724+0+0+4853.6+0+62.4+0+912+40+728+0+0},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+4408.8+0+78.4+0+0+40+728+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1120+0+0+4408.8+0+78.4+0+0+40+728+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-smhku8-container\",nodeId:\"o1YlZwp_l\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{DQPLNF5gS:\"Lower upfront cost\",height:\"100%\",id:\"o1YlZwp_l\",layoutId:\"o1YlZwp_l\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+724+0+0+4853.6+0+62.4+0+912+40+728+0+32},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+4408.8+0+78.4+0+0+40+728+0+32}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1120+0+0+4408.8+0+78.4+0+0+40+728+0+32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ihlr63-container\",nodeId:\"ZAzYLB4pq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{DQPLNF5gS:\"Monthly updates and support\",height:\"100%\",id:\"ZAzYLB4pq\",layoutId:\"ZAzYLB4pq\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+724+0+0+4853.6+0+62.4+0+912+40+728+0+64},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+4408.8+0+78.4+0+0+40+728+0+64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1120+0+0+4408.8+0+78.4+0+0+40+728+0+64,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dc3hj3-container\",nodeId:\"EphoiHgDt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{DQPLNF5gS:\"Easily add new features\",height:\"100%\",id:\"EphoiHgDt\",layoutId:\"EphoiHgDt\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11fp0vd\",\"data-framer-name\":\"FAQ\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+724+0+0+6804+0+0},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+5503.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px)`,y:(componentViewport?.y||0)+0+1120+0+0+5503.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j8t3p-container\",nodeId:\"ybkqd0MAy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{DK3QMHYdz:\"As a digital product designer, I specialize in creating user interfaces for mobile and web applications, comprehensive design systems, and engaging e-commerce platforms. My work encompasses everything from enterprise dashboards to brand identity packages, always focusing on delivering intuitive user experiences that align with your business goals.\",height:\"100%\",hNwAqP6O_:\"What types of digital products do you design?\",id:\"ybkqd0MAy\",layoutId:\"ybkqd0MAy\",style:{width:\"100%\"},variant:\"pb2K3NDlC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+724+0+0+6804+0+88},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+5503.2+0+88}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px)`,y:(componentViewport?.y||0)+0+1120+0+0+5503.2+0+88,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ga7k3h-container\",nodeId:\"Ie8jB9k6D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{DK3QMHYdz:\"My design process begins with thorough research into your business goals and target audience. From there, I develop user personas and journey maps before moving into wireframing and visual design. Each project goes through interactive prototyping and testing phases, culminating in a detailed handoff to your development team. This systematic approach ensures we create products that truly resonate with your users.\",height:\"100%\",hNwAqP6O_:\"What is your design process like?\",id:\"Ie8jB9k6D\",layoutId:\"Ie8jB9k6D\",style:{width:\"100%\"},variant:\"pb2K3NDlC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+724+0+0+6804+0+176},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+5503.2+0+176}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px)`,y:(componentViewport?.y||0)+0+1120+0+0+5503.2+0+176,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bdqe37-container\",nodeId:\"iQB8O9tJ3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{DK3QMHYdz:\"Project timelines vary based on complexity: landing pages and basic UI work typically take 1-2 weeks, mobile apps and multi-page websites require 4-8 weeks, while complex applications and complete design systems need 8-12 weeks. These timeframes include research, design, testing, and revision cycles, ensuring quality results while maintaining efficiency.\",height:\"100%\",hNwAqP6O_:\"What is your typical timeline for projects?\",id:\"iQB8O9tJ3\",layoutId:\"iQB8O9tJ3\",style:{width:\"100%\"},variant:\"pb2K3NDlC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+724+0+0+6804+0+264},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+5503.2+0+264}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px)`,y:(componentViewport?.y||0)+0+1120+0+0+5503.2+0+264,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1whrki5-container\",nodeId:\"AgqIXAcbN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{DK3QMHYdz:\"To begin effectively, I need your project brief outlining goals and requirements, any existing brand guidelines, content strategy, and reference materials that inspire your vision. Access to key stakeholders for feedback and clear timeline and budget parameters help ensure a smooth project flow from start to finish.\",height:\"100%\",hNwAqP6O_:\"What do you need from me to get started?\",id:\"AgqIXAcbN\",layoutId:\"AgqIXAcbN\",style:{width:\"100%\"},variant:\"pb2K3NDlC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+724+0+0+6804+0+352},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+5503.2+0+352}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px)`,y:(componentViewport?.y||0)+0+1120+0+0+5503.2+0+352,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1we9dbt-container\",nodeId:\"YGlgyASgv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{DK3QMHYdz:\"Each project phase includes two to three revision rounds with structured feedback sessions and clear documentation of changes. I facilitate collaborative design reviews and implement agreed-upon changes promptly. If needed, additional revision rounds can be arranged at an hourly rate to ensure your complete satisfaction.\",height:\"100%\",hNwAqP6O_:\"How do you handle revisions and feedback?\",id:\"YGlgyASgv\",layoutId:\"YGlgyASgv\",style:{width:\"100%\"},variant:\"pb2K3NDlC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+724+0+0+6804+0+440},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+5503.2+0+440}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px)`,y:(componentViewport?.y||0)+0+1120+0+0+5503.2+0+440,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g85lzb-container\",nodeId:\"HIgVpqQrk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{DK3QMHYdz:\"I maintain clear communication through weekly progress updates and regular check-in meetings. Using project management tools and responding to messages within 24 hours, I ensure you're always informed about project status. Whether via email or Slack, I adapt to your preferred communication methods.\",height:\"100%\",hNwAqP6O_:\"What is your communication style during projects?\",id:\"HIgVpqQrk\",layoutId:\"HIgVpqQrk\",style:{width:\"100%\"},variant:\"pb2K3NDlC\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ltmym7\",\"data-framer-name\":\"Call to Action\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g936a2\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",style:{\"--framer-text-alignment\":\"center\"},children:\"Are you ready to take the next step?\"})}),className:\"framer-1nk4fia\",\"data-framer-name\":\"Title\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ready to bring your digital vision to life? Whether it\u2019s a stunning website, a mobile app, or a full design system, let\u2019s create something exceptional together.\"})}),className:\"framer-12kvux8\",\"data-framer-name\":\"Subtitle\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined},{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined},{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+724+0+0+7396+0+0+40+206.4},xawIChTct:{y:(componentViewport?.y||0)+0+968+0+0+6135.2+0+0+64+206.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+1120+0+0+6135.2+0+0+64+206.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-znv4o5-container\",nodeId:\"sgLib0F3T\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{avSMDE5Ve:resolvedLinks6[2]},xawIChTct:{avSMDE5Ve:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(Button1,{avSMDE5Ve:resolvedLinks6[0],height:\"100%\",hwfLEpAJz:\"Let's talk\",id:\"sgLib0F3T\",kkkcdH9pG:false,layoutId:\"sgLib0F3T\",variant:\"EK09oMfl9\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:714.5,intrinsicWidth:798,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+724+0+0+7396+0+0+-373),pixelHeight:1429,pixelWidth:1596,sizes:\"981.6126px\",src:\"https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png?scale-down-to=512 512w,https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png 1596w\"}},xawIChTct:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:714.5,intrinsicWidth:798,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+968+0+0+6135.2+0+0+-373),pixelHeight:1429,pixelWidth:1596,sizes:\"1035.2221px\",src:\"https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png?scale-down-to=512 512w,https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png 1596w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__targetOpacity:.5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:714.5,intrinsicWidth:798,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1120+0+0+6135.2+0+0+-373),pixelHeight:1429,pixelWidth:1596,sizes:\"1035.2221px\",src:\"https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png?scale-down-to=512 512w,https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png 1596w\"},className:\"framer-1lf9dkb\",\"data-framer-name\":\"Blur\",draggable:\"false\"})})]})})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bf7Hh.framer-lux5qc, .framer-bf7Hh .framer-lux5qc { display: block; }\",\".framer-bf7Hh.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-bf7Hh .framer-27g9v2 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-1t4gex1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-rai5zq { aspect-ratio: 0.32866666666666666 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 870px); overflow: visible; position: relative; width: 286px; }\",\".framer-bf7Hh .framer-fnbjfc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bf7Hh .framer-1rhhnn8, .framer-bf7Hh .framer-xcsh12, .framer-bf7Hh .framer-853jm2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-1l4yl75 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bf7Hh .framer-1dkpdj2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-r01vwp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bf7Hh .framer-nlmvol-container, .framer-bf7Hh .framer-1is791x-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-bf7Hh .framer-4slwv7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 16px 160px 16px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-1c8e8vx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; max-width: 840px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bf7Hh .framer-tn5m7t, .framer-bf7Hh .framer-7005s6, .framer-bf7Hh .framer-168lux9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 840px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-yuid5k, .framer-bf7Hh .framer-8a6ef4, .framer-bf7Hh .framer-o3nd9q, .framer-bf7Hh .framer-zi3fax, .framer-bf7Hh .framer-7d6sjt, .framer-bf7Hh .framer-egl8nu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-11hylqy, .framer-bf7Hh .framer-175d4cq, .framer-bf7Hh .framer-1gjn23l, .framer-bf7Hh .framer-rpvdbv, .framer-bf7Hh .framer-1680q7y, .framer-bf7Hh .framer-1ki6ddm, .framer-bf7Hh .framer-tjer9u, .framer-bf7Hh .framer-1tdnitx, .framer-bf7Hh .framer-6qbay2 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-bf7Hh .framer-s5krou, .framer-bf7Hh .framer-1pvwojd, .framer-bf7Hh .framer-1k9jp86, .framer-bf7Hh .framer-j96ha7, .framer-bf7Hh .framer-b8zp7, .framer-bf7Hh .framer-1j4grdc { background-color: var(--token-534356b4-1a9b-444d-82a0-f898bbe1568e, rgba(255, 255, 255, 0.1)); flex: 1 0 0px; height: 2px; overflow: hidden; position: relative; width: 1px; }\",\".framer-bf7Hh .framer-1nxtky { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-1edl2w5-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-1tb0ldm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-1t8trbj, .framer-bf7Hh .framer-1rsp6ce { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-1dgjgo0, .framer-bf7Hh .framer-1ku4nxt, .framer-bf7Hh .framer-8qnz33, .framer-bf7Hh .framer-nvm0wg { --border-bottom-width: 1px; --border-color: var(--token-534356b4-1a9b-444d-82a0-f898bbe1568e, rgba(255, 255, 255, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #292929; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bf7Hh .framer-3v3sz3, .framer-bf7Hh .framer-1mjp8ow, .framer-bf7Hh .framer-qmp0xq, .framer-bf7Hh .framer-1sjgswb { align-content: center; align-items: center; background-color: var(--token-0f07f556-9e14-491d-9aef-f342061eaaa0, #141414); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bf7Hh .framer-ndchdm, .framer-bf7Hh .framer-1wl3idi, .framer-bf7Hh .framer-qj0d22, .framer-bf7Hh .framer-1lds7ge { align-content: center; align-items: center; background-color: #292929; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-bf7Hh .framer-2bl6ow, .framer-bf7Hh .framer-w4t224, .framer-bf7Hh .framer-s90hwe, .framer-bf7Hh .framer-182f0ev { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-bf7Hh .framer-1eqg73c, .framer-bf7Hh .framer-1r4wzsg, .framer-bf7Hh .framer-x5egoi, .framer-bf7Hh .framer-sj89e9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-1rl8djm, .framer-bf7Hh .framer-1e6akvs, .framer-bf7Hh .framer-gh5vtp, .framer-bf7Hh .framer-13lsoyr, .framer-bf7Hh .framer-9rz4a3, .framer-bf7Hh .framer-9xi0by, .framer-bf7Hh .framer-ir6lxy, .framer-bf7Hh .framer-1cke4ip, .framer-bf7Hh .framer-1n524bi, .framer-bf7Hh .framer-1t5xyfz, .framer-bf7Hh .framer-1uafv2d, .framer-bf7Hh .framer-1t7q57r, .framer-bf7Hh .framer-15d1k1o, .framer-bf7Hh .framer-14qqkp8, .framer-bf7Hh .framer-vtl57q, .framer-bf7Hh .framer-7h4mmy, .framer-bf7Hh .framer-yd61k9, .framer-bf7Hh .framer-1xwa4tk, .framer-bf7Hh .framer-13t8e9l, .framer-bf7Hh .framer-1cd3tx6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bf7Hh .framer-16jadjd { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-yxgj-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-uhe6fj-container { flex: none; height: 48px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-a8dryg-container { height: 48px; position: relative; width: 165px; }\",\".framer-bf7Hh .framer-xykld-container { height: 48px; position: relative; width: 140px; }\",\".framer-bf7Hh .framer-rij9co-container { height: 48px; position: relative; width: 130px; }\",\".framer-bf7Hh .framer-iaf7j-container { height: 48px; position: relative; width: 168px; }\",\".framer-bf7Hh .framer-1ozmejo-container { height: 48px; position: relative; width: 113px; }\",\".framer-bf7Hh .framer-h29b56 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-1s9vtir { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; list-style: none; margin: 0px; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-19eo0cd-container, .framer-bf7Hh .framer-1736l92-container, .framer-bf7Hh .framer-vdytie-container, .framer-bf7Hh .framer-8wn5he-container, .framer-bf7Hh .framer-ndgcm0-container, .framer-bf7Hh .framer-x2c0of-container, .framer-bf7Hh .framer-smhku8-container, .framer-bf7Hh .framer-ihlr63-container, .framer-bf7Hh .framer-dc3hj3-container, .framer-bf7Hh .framer-1j8t3p-container, .framer-bf7Hh .framer-1ga7k3h-container, .framer-bf7Hh .framer-bdqe37-container, .framer-bf7Hh .framer-1whrki5-container, .framer-bf7Hh .framer-1we9dbt-container, .framer-bf7Hh .framer-g85lzb-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-470q6r, .framer-bf7Hh .framer-1o27vwy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-1ch21qj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-1jp8bbt-container, .framer-bf7Hh .framer-g1ctsm-container { flex: 1 0 0px; height: 800px; position: relative; width: 1px; }\",\".framer-bf7Hh .framer-tsg5cc-container, .framer-bf7Hh .framer-axrzvc-container, .framer-bf7Hh .framer-1fknx3o-container, .framer-bf7Hh .framer-1yzdcw0-container, .framer-bf7Hh .framer-lone41-container, .framer-bf7Hh .framer-esxgun-container { height: auto; position: relative; width: 412px; }\",\".framer-bf7Hh .framer-l2nozu { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-111d5xc { flex: none; height: 240px; left: calc(50.00000000000002% - 640px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 240px / 2); width: 640px; z-index: 0; }\",\".framer-bf7Hh .framer-1ln7o3k { -webkit-filter: blur(15px); -webkit-mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0, 0, 0, 0) 100%) add; bottom: 0px; filter: blur(15px); flex: none; left: 0px; mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0, 0, 0, 0) 100%) add; opacity: 0.4; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-bf7Hh .framer-mg37j2, .framer-bf7Hh .framer-eyth8r { --border-bottom-width: 1px; --border-color: var(--token-534356b4-1a9b-444d-82a0-f898bbe1568e, rgba(255, 255, 255, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(30px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(30px); background-color: rgba(0, 0, 0, 0.04); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bf7Hh .framer-tvnkxz, .framer-bf7Hh .framer-1r0p8vs, .framer-bf7Hh .framer-17hlls2, .framer-bf7Hh .framer-1a4zv6l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-11fp0vd, .framer-bf7Hh .framer-1ltmym7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bf7Hh .framer-g936a2 { --border-bottom-width: 1px; --border-color: var(--token-534356b4-1a9b-444d-82a0-f898bbe1568e, rgba(255, 255, 255, 0.06)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bf7Hh .framer-1nk4fia, .framer-bf7Hh .framer-12kvux8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 5; }\",\".framer-bf7Hh .framer-znv4o5-container { flex: none; height: auto; position: relative; width: auto; z-index: 5; }\",\".framer-bf7Hh .framer-1lf9dkb { aspect-ratio: 1.1168649405178446 / 1; bottom: -171px; flex: none; left: -264px; opacity: 0.5; overflow: visible; position: absolute; top: -373px; width: var(--framer-aspect-ratio-supported, 955px); z-index: 0; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-bf7Hh[data-border=\"true\"]::after, .framer-bf7Hh [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-bf7Hh.framer-72rtr7 { width: 810px; } .framer-bf7Hh .framer-rai5zq { height: var(--framer-aspect-ratio-supported, 718px); width: 236px; } .framer-bf7Hh .framer-fnbjfc { gap: 30px; } .framer-bf7Hh .framer-r01vwp { gap: 24px; } .framer-bf7Hh .framer-4slwv7 { padding: 0px 16px 120px 16px; } .framer-bf7Hh .framer-1nk4fia, .framer-bf7Hh .framer-12kvux8 { max-width: 82%; } .framer-bf7Hh .framer-1lf9dkb { width: var(--framer-aspect-ratio-supported, 981px); }}\",\"@media (max-width: 809px) { .framer-bf7Hh.framer-72rtr7 { width: 390px; } .framer-bf7Hh .framer-1t4gex1 { padding: 150px 0px 100px 0px; } .framer-bf7Hh .framer-rai5zq { height: var(--framer-aspect-ratio-supported, 474px); width: 156px; } .framer-bf7Hh .framer-1rhhnn8 { padding: 10px; } .framer-bf7Hh .framer-r01vwp { flex-direction: column; gap: 10px; } .framer-bf7Hh .framer-4slwv7 { padding: 0px 16px 80px 16px; } .framer-bf7Hh .framer-1c8e8vx { gap: 80px; } .framer-bf7Hh .framer-tn5m7t, .framer-bf7Hh .framer-7005s6, .framer-bf7Hh .framer-168lux9, .framer-bf7Hh .framer-470q6r, .framer-bf7Hh .framer-1o27vwy, .framer-bf7Hh .framer-1ltmym7 { gap: 24px; } .framer-bf7Hh .framer-1t8trbj, .framer-bf7Hh .framer-1rsp6ce, .framer-bf7Hh .framer-1ch21qj, .framer-bf7Hh .framer-l2nozu { flex-direction: column; } .framer-bf7Hh .framer-1dgjgo0, .framer-bf7Hh .framer-1ku4nxt, .framer-bf7Hh .framer-8qnz33, .framer-bf7Hh .framer-nvm0wg, .framer-bf7Hh .framer-1jp8bbt-container, .framer-bf7Hh .framer-mg37j2, .framer-bf7Hh .framer-eyth8r { flex: none; width: 100%; } .framer-bf7Hh .framer-h29b56 { gap: 8px; } .framer-bf7Hh .framer-g936a2 { padding: 40px; } .framer-bf7Hh .framer-1lf9dkb { width: var(--framer-aspect-ratio-supported, 876px); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7761\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xawIChTct\":{\"layout\":[\"fixed\",\"auto\"]},\"G3ZrQu2Nb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-bf7Hh\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7761,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Playfair Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/playfairdisplay/v37/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDVZNLo_U2r.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/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 Display\",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/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",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/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",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/nCpxWS6DaPlPe0lHzStXAPCo3lw.woff2\",weight:\"400\"},{family:\"Inter Display\",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/vebZUMjGyKkYsfcY73iwWTzLNag.woff2\",weight:\"400\"}]},...Button2Fonts,...ButtonFonts,...ProductItemFonts,...WorkItemFonts,...BookingFonts,...SpotifyFonts,...NotionFonts,...MailchimpFonts,...DribbbleFonts,...TickerFonts,...BlogItemFonts,...TestimonialFonts,...Button1Fonts,...FeatureFonts,...FAQItemFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"7761\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xawIChTct\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"G3ZrQu2Nb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "enabledGestures", "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", "link", "newTab", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "hwfLEpAJz", "avSMDE5Ve", "kkkcdH9pG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerkIge2YdBH", "withCSS", "kIge2YdBH_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "SVG", "css", "FramerddP1ZGjCC", "withCSS", "ddP1ZGjCC_default", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "SVG", "css", "FramerF5FsYrOp_", "withCSS", "F5FsYrOp_default", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "SVG", "css", "FramerJy__ZHX01", "withCSS", "Jy_ZHX01_default", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "SVG", "css", "FramerKj7_uzx2q", "withCSS", "Kj7_uzx2q_default", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "SVG", "css", "FramermLLDk_sM1", "withCSS", "mLLDk_sM1_default", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "DQPLNF5gS", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "RichText2", "css", "Framernl1FFRjX8", "withCSS", "nl1FFRjX8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "function1", "height", "id", "link", "name1", "photo", "testimonialText", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "jhbzeUGWy", "sbXn9nBiI", "zNTrZkuSB", "r0tUIN2cH", "jbEdan8Mc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "SVG", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerS0FWhyfg9", "withCSS", "S0FWhyfg9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "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", "link", "newTab", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "hwfLEpAJz", "avSMDE5Ve", "kkkcdH9pG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerzqI6pP98V", "withCSS", "zqI6pP98V_default", "addPropertyControls", "ControlType", "addFonts", "Button2Fonts", "getFonts", "zqI6pP98V_default", "ContainerWithFX", "withFX", "Container", "ButtonFonts", "kIge2YdBH_default", "ProductItemFonts", "bXxL_ulUc_default", "MotionDivWithFX", "motion", "WorkItemFonts", "n_KCRw5fi_default", "BookingFonts", "ddP1ZGjCC_default", "SpotifyFonts", "Kj7_uzx2q_default", "NotionFonts", "F5FsYrOp_default", "MailchimpFonts", "mLLDk_sM1_default", "DribbbleFonts", "Jy_ZHX01_default", "TickerFonts", "Ticker", "BlogItemFonts", "pXrxHY97w_default", "TestimonialFonts", "S0FWhyfg9_default", "Button1Fonts", "FeatureFonts", "nl1FFRjX8_default", "FAQItemFonts", "gzC090QB_default", "ImageWithFX", "Image2", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "animation5", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "addImageAlt", "image", "alt", "transition4", "textEffect1", "transition5", "animation6", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "s9B_hbmyCDx8pLQxS6", "y62fq8pIpDx8pLQxS6", "TbvNyHeAYDx8pLQxS6", "tKSWt1rfBDx8pLQxS6", "Wlio9sg6mDx8pLQxS6", "idDx8pLQxS6", "Vw8sETrE7bplvpDPwX", "YWhGaTO19bplvpDPwX", "ZjwaZoOB8bplvpDPwX", "PTI3Fw1rgbplvpDPwX", "idbplvpDPwX", "SsFcRNaX1JunkpIXKz", "VAF3x_YTkJunkpIXKz", "qTQhUgahpJunkpIXKz", "ZXlUncUWpJunkpIXKz", "idJunkpIXKz", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "RichText2", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "Link", "ChildrenCanSuspend", "mlonwwwCp_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks1", "SVG", "eDHm1sab3_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks2", "UYgssMU2c_default", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
