{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/tOEiUUGiLRghtsAlepMH/tqKYKeYVwCyVBIkAnF7K/j2ZQl1KDw.js", "ssg:https://framerusercontent.com/modules/nKVUaB9QJcqRxKjTsBGZ/h8qV5ZObF34CeeRqnO8P/tDwviVcYE.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,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)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\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 isCanvas=RenderTarget.current()===RenderTarget.canvas;// 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[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];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);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"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_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.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){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){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]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* 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,MozMaskImage: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?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},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\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"bv02HCQAh\",\"kRYW3nXRI\",\"A_rKg3oOE\",\"Wgyu9rwK5\",\"dUIYiJJNh\",\"Jwsin31Mt\",\"ZvBv0gcOX\",\"QnhORxm6i\",\"eRhsp7tyW\",\"xT8zVFVkl\",\"mzNXgFFYC\",\"cRGidSXud\"];const serializationHash=\"framer-Vu3Ux\";const variantClassNames={A_rKg3oOE:\"framer-v-swi1nj\",bv02HCQAh:\"framer-v-ev2u2m\",cRGidSXud:\"framer-v-1v5f0x2\",dUIYiJJNh:\"framer-v-1v2whmj\",eRhsp7tyW:\"framer-v-9ynqye\",Jwsin31Mt:\"framer-v-191b9i7\",kRYW3nXRI:\"framer-v-h8sbpz\",mzNXgFFYC:\"framer-v-1fjvo32\",QnhORxm6i:\"framer-v-w3gk0m\",Wgyu9rwK5:\"framer-v-liu0np\",xT8zVFVkl:\"framer-v-1eavr4v\",ZvBv0gcOX:\"framer-v-1nul3gx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:950,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1\":\"kRYW3nXRI\",\"10\":\"mzNXgFFYC\",\"11\":\"cRGidSXud\",\"2\":\"A_rKg3oOE\",\"3\":\"Wgyu9rwK5\",\"4\":\"dUIYiJJNh\",\"5\":\"Jwsin31Mt\",\"6\":\"ZvBv0gcOX\",\"7\":\"QnhORxm6i\",\"8\":\"eRhsp7tyW\",\"9\":\"xT8zVFVkl\",Default:\"bv02HCQAh\"};const getProps=({answer1,answer2,answer3,answer4,answer5,answer6,height,id,question1,question2,question3,question4,question5,question6,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_ref8,_ref9,_ref10,_ref11,_humanReadableVariantMap_props_variant,_ref12;return{...props,F6lM4exSR:(_ref=answer5!==null&&answer5!==void 0?answer5:props.F6lM4exSR)!==null&&_ref!==void 0?_ref:\"It\u2019s a one-time setup fee + pay per booked appointment \u200DHere\u2019s the justification:- We don\u2019t outsource, there\u2019s no shortcuts here. \u2013 It\u2019s not expensive compared to an agency (go try!). \u2013 It\u2019s also cheaper than hiring someone. \u2013 You could very well go find freelancers to do all this, but that\u2019s a lot of time as well and there won\u2019t be much savings. Also, what if they suck at it? \u2013 The major problem with each of these is that they\u2019re things you have to manage. You don\u2019t have to manage us.\",IFjQjdWql:(_ref1=question4!==null&&question4!==void 0?question4:props.IFjQjdWql)!==null&&_ref1!==void 0?_ref1:\"How Good Are Your Prospect Lists?\",JuxOgtiro:(_ref2=answer4!==null&&answer4!==void 0?answer4:props.JuxOgtiro)!==null&&_ref2!==void 0?_ref2:\"Insane. E.g. We built a list of \u201Cpersonal injury lawyers that have been featured on podcasts\u201D. Also, we built a list of \u201CProduct Managers at companies that have the words \u2018slow customer support\u2019 mentioned in their product review.\u201D\",kao3Z3l7k:(_ref3=answer6!==null&&answer6!==void 0?answer6:props.kao3Z3l7k)!==null&&_ref3!==void 0?_ref3:\"We follow up. If the prospect gives us an outright no, we may follow up to try to overcome the objections or simply thank them for responding. Our goals is to give you zero work until a meeting is booked\",KjHOx49kL:(_ref4=answer1!==null&&answer1!==void 0?answer1:props.KjHOx49kL)!==null&&_ref4!==void 0?_ref4:\"We use a combination of sources including linkedin sales navigator to manually collect relevant target customers.\",mDV6PtA6K:(_ref5=question5!==null&&question5!==void 0?question5:props.mDV6PtA6K)!==null&&_ref5!==void 0?_ref5:\"How much is it?\",oRIOycR3Y:(_ref6=answer2!==null&&answer2!==void 0?answer2:props.oRIOycR3Y)!==null&&_ref6!==void 0?_ref6:\"Expect your first lead to come in within 24 hours of launching our campaign. Then more leads every working day after that.\",pj8TaM0YQ:(_ref7=question3!==null&&question3!==void 0?question3:props.pj8TaM0YQ)!==null&&_ref7!==void 0?_ref7:\"How do you identify which customers to go after?\",pOWJFdPGf:(_ref8=question6!==null&&question6!==void 0?question6:props.pOWJFdPGf)!==null&&_ref8!==void 0?_ref8:\"Do you respond to the emails or do we do that?\",rawvYUUzX:(_ref9=question1!==null&&question1!==void 0?question1:props.rawvYUUzX)!==null&&_ref9!==void 0?_ref9:\"How do you find leads?\",Tiiziaej8:(_ref10=answer3!==null&&answer3!==void 0?answer3:props.Tiiziaej8)!==null&&_ref10!==void 0?_ref10:\"There\u2019s no magic here. We spend time learning about your business. Our background in venture helps us take what we know about similar companies and get up to speed quickly. We then work with you to make some educated guesses taking in information based on your current customers or past sales efforts.\",tvNxOx7cw:(_ref11=question2!==null&&question2!==void 0?question2:props.tvNxOx7cw)!==null&&_ref11!==void 0?_ref11:\"How Long Does It Take To See Results?\",variant:(_ref12=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref12!==void 0?_ref12:\"bv02HCQAh\"};};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,rawvYUUzX,KjHOx49kL,tvNxOx7cw,oRIOycR3Y,pj8TaM0YQ,Tiiziaej8,IFjQjdWql,JuxOgtiro,mDV6PtA6K,F6lM4exSR,pOWJFdPGf,kao3Z3l7k,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bv02HCQAh\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapmjmwi1=activeVariantCallback(async(...args)=>{setVariant(\"Jwsin31Mt\");});const onTapfyzsnn=activeVariantCallback(async(...args)=>{setVariant(\"bv02HCQAh\");});const onTapcr99yb=activeVariantCallback(async(...args)=>{setVariant(\"kRYW3nXRI\");});const onTaprbk6bm=activeVariantCallback(async(...args)=>{setVariant(\"A_rKg3oOE\");});const onTapg8blzf=activeVariantCallback(async(...args)=>{setVariant(\"Wgyu9rwK5\");});const onTapbqlv45=activeVariantCallback(async(...args)=>{setVariant(\"dUIYiJJNh\");});const onTapcgybtj=activeVariantCallback(async(...args)=>{setVariant(\"ZvBv0gcOX\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Jwsin31Mt\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"kRYW3nXRI\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"A_rKg3oOE\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"Wgyu9rwK5\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"dUIYiJJNh\")return true;return false;};const isDisplayed5=()=>{if([\"QnhORxm6i\",\"eRhsp7tyW\",\"xT8zVFVkl\",\"mzNXgFFYC\",\"cRGidSXud\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if([\"QnhORxm6i\",\"eRhsp7tyW\",\"xT8zVFVkl\",\"mzNXgFFYC\",\"cRGidSXud\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"ZvBv0gcOX\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.footer,{...restProps,...gestureHandlers,\"aria-label\":\"Footer\",className:cx(serializationHash,...sharedStyleClassNames,\"framer-ev2u2m\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"bv02HCQAh\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({A_rKg3oOE:{\"data-framer-name\":\"2\"},cRGidSXud:{\"data-framer-name\":\"11\"},dUIYiJJNh:{\"data-framer-name\":\"4\"},eRhsp7tyW:{\"data-framer-name\":\"8\"},Jwsin31Mt:{\"data-framer-name\":\"5\"},kRYW3nXRI:{\"data-framer-name\":\"1\"},mzNXgFFYC:{\"data-framer-name\":\"10\"},QnhORxm6i:{\"data-framer-name\":\"7\"},Wgyu9rwK5:{\"data-framer-name\":\"3\"},xT8zVFVkl:{\"data-framer-name\":\"9\"},ZvBv0gcOX:{\"data-framer-name\":\"6\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zap2qm\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"HlA1ehN4j\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ejgg9n\",\"data-border\":true,\"data-framer-name\":\"Question 5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"k0BbToEgz\",onTap:onTapmjmwi1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-0412433a-5882-4fae-9632-beb8eb5b7b5b, rgb(13, 13, 13))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(10px)\"},...addPropertyOverrides({Jwsin31Mt:{onTap:onTapfyzsnn}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d9awpx\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"S23gf_3Qw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))\"},children:\"What if I don't like the design?\"})}),className:\"framer-1kvfj6a\",\"data-framer-name\":\"Question\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"OutwnfIgf\",style:{\"--extracted-r6o4lv\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:mDV6PtA6K,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7cbzmw\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"W6om4IXAa\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-tnre6u\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"FtVk8LTE1\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90},variants:{Jwsin31Mt:{rotate:90}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f8qw7a\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"YK9wcCVid\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180},variants:{Jwsin31Mt:{rotate:90}}})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"No worries! We'll continue to revise the design until you're 100% satisfied. \"})}),className:\"framer-165ddde\",\"data-framer-name\":\"Answer\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"g5Fz1JFp8\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:F6lM4exSR,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xs3e24\",\"data-border\":true,\"data-framer-name\":\"Question 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"JcNMmKoCE\",onTap:onTapcr99yb,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-0412433a-5882-4fae-9632-beb8eb5b7b5b, rgb(13, 13, 13))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},...addPropertyOverrides({kRYW3nXRI:{onTap:onTapfyzsnn}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1btnz4u\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"ATBHa4FWL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))\"},children:\"Why wouldn't I just hire a full-time designer?\"})}),className:\"framer-10xp4v\",\"data-framer-name\":\"Question\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"n6j14OMkk\",style:{\"--extracted-r6o4lv\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:rawvYUUzX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15gdhbh\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"uuSwsIVCN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-k0h9yn\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"F4ISJA32E\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90},variants:{kRYW3nXRI:{rotate:90}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c54kew\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"t2PST88Oh\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180},variants:{kRYW3nXRI:{rotate:90}}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"Good question. For starters, the annual cost of a full-time senior-level designer is around $100,000 plus benefits. (And trying to find one available is a hassle in itself.) Aside from that, you may not always have enough work to keep them busy all the time, so you;re stuck paying for time you aren't able to utilize.   With the monthly plan, you can pause and resume your subscription as often as you need to ensure you're only paying your designer when you have work available for them.  \"})}),className:\"framer-1srlh39\",\"data-framer-name\":\"Answer\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"N0ZabXLDg\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:KjHOx49kL,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lkj3hf\",\"data-border\":true,\"data-framer-name\":\"Question 2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"JyJHPHJfC\",onTap:onTaprbk6bm,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-0412433a-5882-4fae-9632-beb8eb5b7b5b, rgb(13, 13, 13))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(10px)\"},...addPropertyOverrides({A_rKg3oOE:{onTap:onTapfyzsnn}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-89oini\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"nXiEnCsiD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))\"},children:\"Is there a limit to how many requests I can have?\"})}),className:\"framer-bas2bi\",\"data-framer-name\":\"Question\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"vPcVqOgDp\",style:{\"--extracted-r6o4lv\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:tvNxOx7cw,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19so7ad\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"WdDpquRyf\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ioxu\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"tgfz7p6YG\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90},variants:{A_rKg3oOE:{rotate:90}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ekwz9u\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"hrc3HENRd\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180},variants:{A_rKg3oOE:{rotate:90}}})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"Nope! When we say unlimited, we mean unlimited. Once you've susbcribed, you can add as many design requests to your queue as you'd like and they'll be delivered one by one. \"})}),className:\"framer-msjsnp\",\"data-framer-name\":\"Answer\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"PpnOtlaht\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-paragraph-spacing\":\"0px\"},text:oRIOycR3Y,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cymlgx\",\"data-border\":true,\"data-framer-name\":\"Question 3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"LKTpdn3_4\",onTap:onTapg8blzf,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-0412433a-5882-4fae-9632-beb8eb5b7b5b, rgb(13, 13, 13))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(10px)\"},...addPropertyOverrides({Wgyu9rwK5:{onTap:onTapfyzsnn}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-585x6l\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"KoDE3JFgI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))\"},children:\"How fast will I receive my designs?\"})}),className:\"framer-11bd49v\",\"data-framer-name\":\"Question\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"ygmkYFAS4\",style:{\"--extracted-r6o4lv\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:pj8TaM0YQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2qc62y\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"VUwoxqAVn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dedaql\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"s9MxSd6FI\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90},variants:{Wgyu9rwK5:{rotate:90}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eyk7rp\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"EiXOmDW5m\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180},variants:{Wgyu9rwK5:{rotate:90}}})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"On average, most requests are completed in 2-3 days. However, mroe complex requests can take longer. \"})}),className:\"framer-1r4ahi1\",\"data-framer-name\":\"Answer\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"kS16d27XH\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:Tiiziaej8,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1orbh64\",\"data-border\":true,\"data-framer-name\":\"Question 4\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tDo2hF_8x\",onTap:onTapbqlv45,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-0412433a-5882-4fae-9632-beb8eb5b7b5b, rgb(13, 13, 13))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(10px)\"},...addPropertyOverrides({dUIYiJJNh:{onTap:onTapfyzsnn}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e4bklb\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"owFU5t5di\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))\"},children:\"Who are the designers?\"})}),className:\"framer-1m7jfll\",\"data-framer-name\":\"Question\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"Z6flk5zJp\",style:{\"--extracted-r6o4lv\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:IFjQjdWql,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-no0hag\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"naGMC6vyQ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wjqhhj\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"dGA5JzjFm\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90},variants:{dUIYiJJNh:{rotate:90}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bn5yzy\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"jkeGKmZgJ\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180},variants:{dUIYiJJNh:{rotate:90}}})]})]}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"You'll be working directly with me, Hamza Ehsan, founder of Productize. However, special requests such as animations or custom illustrations are provided by partner designers. \"})}),className:\"framer-1tb881e\",\"data-framer-name\":\"Answer\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"ks8n11NVd\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:JuxOgtiro,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tv0o2p\",\"data-border\":true,\"data-framer-name\":\"Question 6\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gNIJrkZQB\",onTap:onTapcgybtj,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-0412433a-5882-4fae-9632-beb8eb5b7b5b, rgb(13, 13, 13))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(10px)\"},...addPropertyOverrides({ZvBv0gcOX:{onTap:onTapfyzsnn}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s6ugvw\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"gqSpYeNkp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))\"},children:\"Are there any refunds if I don't like the service?\"})}),className:\"framer-12e7ac9\",\"data-framer-name\":\"Question\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"xU1znfCgF\",style:{\"--extracted-r6o4lv\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:pOWJFdPGf,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hs095r\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Cgp1m0R4f\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vijb54\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"zrOZWdUXD\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90},variants:{ZvBv0gcOX:{rotate:90}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17z7z09\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"xUGlh8LIY\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180},variants:{ZvBv0gcOX:{rotate:90}}})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9rviwz\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"zhXRAtrjy\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13ijty8\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"wuHasIKnD\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oa6z6r\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"TBfFW451D\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180}})]})]}),isDisplayed7()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"Due to the high-quality nature of the work, there will be no refunds issued. \"})}),className:\"framer-10o7z6q\",\"data-framer-name\":\"Answer\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"R_cUm5KXM\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:kao3Z3l7k,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Vu3Ux.framer-1nzvyt9, .framer-Vu3Ux .framer-1nzvyt9 { display: block; }\",\".framer-Vu3Ux.framer-ev2u2m { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 1100px; }\",\".framer-Vu3Ux .framer-zap2qm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Vu3Ux .framer-ejgg9n, .framer-Vu3Ux .framer-1xs3e24, .framer-Vu3Ux .framer-1lkj3hf, .framer-Vu3Ux .framer-1cymlgx, .framer-Vu3Ux .framer-1orbh64, .framer-Vu3Ux .framer-tv0o2p { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 18px 20px 18px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-Vu3Ux .framer-d9awpx, .framer-Vu3Ux .framer-1btnz4u, .framer-Vu3Ux .framer-89oini, .framer-Vu3Ux .framer-585x6l, .framer-Vu3Ux .framer-1e4bklb, .framer-Vu3Ux .framer-1s6ugvw { 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-Vu3Ux .framer-1kvfj6a, .framer-Vu3Ux .framer-10xp4v, .framer-Vu3Ux .framer-bas2bi, .framer-Vu3Ux .framer-11bd49v, .framer-Vu3Ux .framer-1m7jfll, .framer-Vu3Ux .framer-12e7ac9 { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Vu3Ux .framer-7cbzmw, .framer-Vu3Ux .framer-15gdhbh, .framer-Vu3Ux .framer-19so7ad, .framer-Vu3Ux .framer-2qc62y, .framer-Vu3Ux .framer-no0hag, .framer-Vu3Ux .framer-hs095r, .framer-Vu3Ux .framer-9rviwz { flex: none; height: 12px; overflow: hidden; position: relative; width: 12px; }\",\".framer-Vu3Ux .framer-tnre6u, .framer-Vu3Ux .framer-1f8qw7a, .framer-Vu3Ux .framer-k0h9yn, .framer-Vu3Ux .framer-1c54kew, .framer-Vu3Ux .framer-5ioxu, .framer-Vu3Ux .framer-1ekwz9u, .framer-Vu3Ux .framer-1dedaql, .framer-Vu3Ux .framer-1eyk7rp, .framer-Vu3Ux .framer-1wjqhhj, .framer-Vu3Ux .framer-bn5yzy, .framer-Vu3Ux .framer-1vijb54, .framer-Vu3Ux .framer-17z7z09, .framer-Vu3Ux .framer-13ijty8, .framer-Vu3Ux .framer-oa6z6r { bottom: 0px; flex: none; left: calc(50.00000000000002% - 2px / 2); overflow: hidden; position: absolute; top: 0px; width: 2px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Vu3Ux .framer-165ddde, .framer-Vu3Ux .framer-1srlh39, .framer-Vu3Ux .framer-msjsnp, .framer-Vu3Ux .framer-1r4ahi1, .framer-Vu3Ux .framer-1tb881e, .framer-Vu3Ux .framer-10o7z6q { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vu3Ux.framer-ev2u2m, .framer-Vu3Ux .framer-zap2qm, .framer-Vu3Ux .framer-ejgg9n, .framer-Vu3Ux .framer-d9awpx, .framer-Vu3Ux .framer-1xs3e24, .framer-Vu3Ux .framer-1btnz4u, .framer-Vu3Ux .framer-1lkj3hf, .framer-Vu3Ux .framer-89oini, .framer-Vu3Ux .framer-1cymlgx, .framer-Vu3Ux .framer-585x6l, .framer-Vu3Ux .framer-1orbh64, .framer-Vu3Ux .framer-1e4bklb, .framer-Vu3Ux .framer-tv0o2p, .framer-Vu3Ux .framer-1s6ugvw { gap: 0px; } .framer-Vu3Ux.framer-ev2u2m > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-Vu3Ux.framer-ev2u2m > :first-child, .framer-Vu3Ux .framer-zap2qm > :first-child, .framer-Vu3Ux .framer-ejgg9n > :first-child, .framer-Vu3Ux .framer-1xs3e24 > :first-child, .framer-Vu3Ux .framer-1lkj3hf > :first-child, .framer-Vu3Ux .framer-1cymlgx > :first-child, .framer-Vu3Ux .framer-1orbh64 > :first-child, .framer-Vu3Ux .framer-tv0o2p > :first-child { margin-top: 0px; } .framer-Vu3Ux.framer-ev2u2m > :last-child, .framer-Vu3Ux .framer-zap2qm > :last-child, .framer-Vu3Ux .framer-ejgg9n > :last-child, .framer-Vu3Ux .framer-1xs3e24 > :last-child, .framer-Vu3Ux .framer-1lkj3hf > :last-child, .framer-Vu3Ux .framer-1cymlgx > :last-child, .framer-Vu3Ux .framer-1orbh64 > :last-child, .framer-Vu3Ux .framer-tv0o2p > :last-child { margin-bottom: 0px; } .framer-Vu3Ux .framer-zap2qm > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Vu3Ux .framer-ejgg9n > *, .framer-Vu3Ux .framer-1xs3e24 > *, .framer-Vu3Ux .framer-1lkj3hf > *, .framer-Vu3Ux .framer-1cymlgx > *, .framer-Vu3Ux .framer-1orbh64 > *, .framer-Vu3Ux .framer-tv0o2p > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Vu3Ux .framer-d9awpx > *, .framer-Vu3Ux .framer-1btnz4u > *, .framer-Vu3Ux .framer-89oini > *, .framer-Vu3Ux .framer-585x6l > *, .framer-Vu3Ux .framer-1e4bklb > *, .framer-Vu3Ux .framer-1s6ugvw > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Vu3Ux .framer-d9awpx > :first-child, .framer-Vu3Ux .framer-1btnz4u > :first-child, .framer-Vu3Ux .framer-89oini > :first-child, .framer-Vu3Ux .framer-585x6l > :first-child, .framer-Vu3Ux .framer-1e4bklb > :first-child, .framer-Vu3Ux .framer-1s6ugvw > :first-child { margin-left: 0px; } .framer-Vu3Ux .framer-d9awpx > :last-child, .framer-Vu3Ux .framer-1btnz4u > :last-child, .framer-Vu3Ux .framer-89oini > :last-child, .framer-Vu3Ux .framer-585x6l > :last-child, .framer-Vu3Ux .framer-1e4bklb > :last-child, .framer-Vu3Ux .framer-1s6ugvw > :last-child { margin-right: 0px; } }\",'.framer-Vu3Ux[data-border=\"true\"]::after, .framer-Vu3Ux [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 458\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"kRYW3nXRI\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"A_rKg3oOE\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"Wgyu9rwK5\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"dUIYiJJNh\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"Jwsin31Mt\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"ZvBv0gcOX\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"QnhORxm6i\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"eRhsp7tyW\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"xT8zVFVkl\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"mzNXgFFYC\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"cRGidSXud\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]}}}\n * @framerVariables {\"rawvYUUzX\":\"question1\",\"KjHOx49kL\":\"answer1\",\"tvNxOx7cw\":\"question2\",\"oRIOycR3Y\":\"answer2\",\"pj8TaM0YQ\":\"question3\",\"Tiiziaej8\":\"answer3\",\"IFjQjdWql\":\"question4\",\"JuxOgtiro\":\"answer4\",\"mDV6PtA6K\":\"question5\",\"F6lM4exSR\":\"answer5\",\"pOWJFdPGf\":\"question6\",\"kao3Z3l7k\":\"answer6\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerj2ZQl1KDw=withCSS(Component,css,\"framer-Vu3Ux\");export default Framerj2ZQl1KDw;Framerj2ZQl1KDw.displayName=\"Elements/FAQ\";Framerj2ZQl1KDw.defaultProps={height:458,width:1100};addPropertyControls(Framerj2ZQl1KDw,{variant:{options:[\"bv02HCQAh\",\"kRYW3nXRI\",\"A_rKg3oOE\",\"Wgyu9rwK5\",\"dUIYiJJNh\",\"Jwsin31Mt\",\"ZvBv0gcOX\",\"QnhORxm6i\",\"eRhsp7tyW\",\"xT8zVFVkl\",\"mzNXgFFYC\",\"cRGidSXud\"],optionTitles:[\"Default\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\"],title:\"Variant\",type:ControlType.Enum},rawvYUUzX:{defaultValue:\"How do you find leads?\",displayTextArea:false,title:\"Question 1\",type:ControlType.String},KjHOx49kL:{defaultValue:\"We use a combination of sources including linkedin sales navigator to manually collect relevant target customers.\",displayTextArea:false,title:\"Answer 1\",type:ControlType.String},tvNxOx7cw:{defaultValue:\"How Long Does It Take To See Results?\",displayTextArea:false,title:\"Question 2\",type:ControlType.String},oRIOycR3Y:{defaultValue:\"Expect your first lead to come in within 24 hours of launching our campaign. Then more leads every working day after that.\",displayTextArea:false,title:\"Answer 2\",type:ControlType.String},pj8TaM0YQ:{defaultValue:\"How do you identify which customers to go after?\",displayTextArea:false,title:\"Question 3\",type:ControlType.String},Tiiziaej8:{defaultValue:\"There\u2019s no magic here. We spend time learning about your business. Our background in venture helps us take what we know about similar companies and get up to speed quickly. We then work with you to make some educated guesses taking in information based on your current customers or past sales efforts.\",displayTextArea:false,title:\"Answer 3\",type:ControlType.String},IFjQjdWql:{defaultValue:\"How Good Are Your Prospect Lists?\",displayTextArea:false,title:\"Question 4\",type:ControlType.String},JuxOgtiro:{defaultValue:\"Insane. E.g. We built a list of \u201Cpersonal injury lawyers that have been featured on podcasts\u201D. Also, we built a list of \u201CProduct Managers at companies that have the words \u2018slow customer support\u2019 mentioned in their product review.\u201D\",displayTextArea:false,title:\"Answer 4\",type:ControlType.String},mDV6PtA6K:{defaultValue:\"How much is it?\",displayTextArea:false,title:\"Question 5\",type:ControlType.String},F6lM4exSR:{defaultValue:\"It\u2019s a one-time setup fee + pay per booked appointment \u200DHere\u2019s the justification:- We don\u2019t outsource, there\u2019s no shortcuts here. \u2013 It\u2019s not expensive compared to an agency (go try!). \u2013 It\u2019s also cheaper than hiring someone. \u2013 You could very well go find freelancers to do all this, but that\u2019s a lot of time as well and there won\u2019t be much savings. Also, what if they suck at it? \u2013 The major problem with each of these is that they\u2019re things you have to manage. You don\u2019t have to manage us.\",displayTextArea:false,title:\"Answer 5\",type:ControlType.String},pOWJFdPGf:{defaultValue:\"Do you respond to the emails or do we do that?\",displayTextArea:false,title:\"Question 6\",type:ControlType.String},kao3Z3l7k:{defaultValue:\"We follow up. If the prospect gives us an outright no, we may follow up to try to overcome the objections or simply thank them for responding. Our goals is to give you zero work until a meeting is booked\",displayTextArea:false,title:\"Answer 6\",type:ControlType.String}});addFonts(Framerj2ZQl1KDw,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerj2ZQl1KDw\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1100\",\"framerIntrinsicHeight\":\"458\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"rawvYUUzX\\\":\\\"question1\\\",\\\"KjHOx49kL\\\":\\\"answer1\\\",\\\"tvNxOx7cw\\\":\\\"question2\\\",\\\"oRIOycR3Y\\\":\\\"answer2\\\",\\\"pj8TaM0YQ\\\":\\\"question3\\\",\\\"Tiiziaej8\\\":\\\"answer3\\\",\\\"IFjQjdWql\\\":\\\"question4\\\",\\\"JuxOgtiro\\\":\\\"answer4\\\",\\\"mDV6PtA6K\\\":\\\"question5\\\",\\\"F6lM4exSR\\\":\\\"answer5\\\",\\\"pOWJFdPGf\\\":\\\"question6\\\",\\\"kao3Z3l7k\\\":\\\"answer6\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"kRYW3nXRI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"A_rKg3oOE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"Wgyu9rwK5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"dUIYiJJNh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"Jwsin31Mt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"ZvBv0gcOX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"QnhORxm6i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"eRhsp7tyW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"xT8zVFVkl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"mzNXgFFYC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"cRGidSXud\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./j2ZQl1KDw.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-SN6Xy\";const variantClassNames={lMhMsvkN5:\"framer-v-dvh1m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,text,width,...props})=>{var _ref;return{...props,d3gQPnp79:(_ref=text!==null&&text!==void 0?text:props.d3gQPnp79)!==null&&_ref!==void 0?_ref:\"9.8% Reply Rate dkhdks\"};};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,d3gQPnp79,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"lMhMsvkN5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-dvh1m\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"lMhMsvkN5\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,WebkitBackdropFilter:\"blur(5px)\",...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2f400aab-d904-468b-9527-edc58df7e785, rgb(0, 0, 0)))\"},children:\"9.8% Reply Rate\"})}),className:\"framer-wwt411\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"kFP81n9o3\",style:{\"--extracted-r6o4lv\":\"var(--token-2f400aab-d904-468b-9527-edc58df7e785, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:d3gQPnp79,verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SN6Xy.framer-g2c3vi, .framer-SN6Xy .framer-g2c3vi { display: block; }\",\".framer-SN6Xy.framer-dvh1m { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 3px 12px 3px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-SN6Xy .framer-wwt411 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SN6Xy.framer-dvh1m { gap: 0px; } .framer-SN6Xy.framer-dvh1m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SN6Xy.framer-dvh1m > :first-child { margin-top: 0px; } .framer-SN6Xy.framer-dvh1m > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 18\n * @framerIntrinsicWidth 134\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"d3gQPnp79\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertDwviVcYE=withCSS(Component,css,\"framer-SN6Xy\");export default FramertDwviVcYE;FramertDwviVcYE.displayName=\"Stats Tag\";FramertDwviVcYE.defaultProps={height:18,width:134};addPropertyControls(FramertDwviVcYE,{d3gQPnp79:{defaultValue:\"9.8% Reply Rate dkhdks\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramertDwviVcYE,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertDwviVcYE\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"d3gQPnp79\\\":\\\"text\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"18\",\"framerIntrinsicWidth\":\"134\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tDwviVcYE.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "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", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer1", "answer2", "answer3", "answer4", "answer5", "answer6", "height", "id", "question1", "question2", "question3", "question4", "question5", "question6", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_ref9", "_ref10", "_ref11", "_humanReadableVariantMap_props_variant", "_ref12", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "rawvYUUzX", "KjHOx49kL", "tvNxOx7cw", "oRIOycR3Y", "pj8TaM0YQ", "Tiiziaej8", "IFjQjdWql", "JuxOgtiro", "mDV6PtA6K", "F6lM4exSR", "pOWJFdPGf", "kao3Z3l7k", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapmjmwi1", "args", "onTapfyzsnn", "onTapcr99yb", "onTaprbk6bm", "onTapg8blzf", "onTapbqlv45", "onTapcgybtj", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "css", "Framerj2ZQl1KDw", "withCSS", "j2ZQl1KDw_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "text", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "d3gQPnp79", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "RichText2", "css", "FramertDwviVcYE", "withCSS", "tDwviVcYE_default", "addPropertyControls", "ControlType", "addFonts", "clamp", "t", "e", "n", "progress", "t", "e", "n"]
}
