{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/9Utm1i17lc4epzKrGohm/6hlvvHhtDnTvfKnremyK/SquiggleEffect.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js", "ssg:https://framerusercontent.com/modules/PZ7vo7BvNQFqVj5NktGf/jooZY89O4jQn462ghnyN/aBXvQSjrZ.js", "ssg:https://framerusercontent.com/modules/EbovgMaNuADqRDK7ZPg8/MpDsgzimboMqciaAcF3k/DmAajn4AD.js", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.53", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js", "ssg:https://framerusercontent.com/modules/5hdQZSi0pgN97JMIzuTM/kByglCUyHPqDiURFWjg3/mdRp2pqei.js", "ssg:https://framerusercontent.com/modules/msGwlv3YI86xg4BA68hF/hryiXDdDZPU4waDM5UVi/dXoXXN5g9.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/cvT8C81DvmE6nvEOGnIP/RptwyyHqeK03HhqoNqj7/h8ddtVEdi.js", "ssg:https://framerusercontent.com/modules/h8yjcjvWgOfp6Gx4J0sy/mcDwTHWzN8BoCem8A5Mk/rDs5YgLI6.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-auto\n * @framerSupportedLayoutHeight any-prefer-auto\n */export default function TurbulentDisplace(props){const{text,font,fontColor,frequency,octaves,scale,animation,mode}=props;const[seed,setSeed]=React.useState(Math.floor(Math.random()*1e3));const[currentScale,setCurrentScale]=React.useState(scale);const[filterKey,setFilterKey]=React.useState(0);const turbulenceRef=React.useRef(null);const displacementMapRef=React.useRef(null);const overlayRef=React.useRef(null);// Use a ref to store a stable filter ID\nconst filterIdRef=`framer-university-${Math.random().toString(36).substr(2,9)}`;React.useEffect(()=>{setCurrentScale(scale);},[scale]);React.useEffect(()=>{setFilterKey(prevKey=>prevKey+1);},[frequency,octaves,scale]);React.useEffect(()=>{if(animation.animate){const interval=setInterval(()=>{const newSeed=Math.floor(Math.random()*1e3);const strengthPercentage=animation.strength/100;const maxDeviation=scale*strengthPercentage;const newScale=scale+(Math.random()*2-1)*maxDeviation;setSeed(newSeed);setCurrentScale(newScale);if(turbulenceRef.current){turbulenceRef.current.setAttribute(\"seed\",newSeed.toString());}if(displacementMapRef.current){displacementMapRef.current.setAttribute(\"scale\",newScale.toString());}if(overlayRef.current){overlayRef.current.style.filter=`url(#${filterIdRef})`;overlayRef.current.style.backdropFilter=`url(#${filterIdRef})`;}},animation.delay);return()=>clearInterval(interval);}},[animation,scale]);const baseFrequency=frequency/100*Math.pow(1.1,octaves-1);const filterSvg=/*#__PURE__*/_jsx(\"svg\",{style:{width:0,height:0,position:\"absolute\"},\"aria-hidden\":\"true\",focusable:\"false\",children:/*#__PURE__*/_jsx(\"defs\",{children:/*#__PURE__*/_jsxs(\"filter\",{id:filterIdRef,\"color-interpolation-filters\":\"sRGB\",children:[/*#__PURE__*/_jsx(\"feTurbulence\",{ref:turbulenceRef,type:\"fractalNoise\",baseFrequency:baseFrequency,numOctaves:octaves,seed:seed,stitchTiles:\"stitch\"}),/*#__PURE__*/_jsx(\"feDisplacementMap\",{ref:displacementMapRef,in:\"SourceGraphic\",scale:currentScale,xChannelSelector:\"R\",yChannelSelector:\"G\"})]})})});const contentStyle={family:\"Inter\",weight:800,fontSize:56,lineHeight:1.2,letterSpacing:\"-0.03em\",...font,color:fontColor,width:\"100%\",height:\"100%\",display:\"flex\",alignItems:\"center\",justifyContent:font.textAlign===\"center\"?\"center\":font.textAlign===\"right\"?\"flex-end\":\"flex-start\"};const overlayStyle={position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",pointerEvents:\"none\",backdropFilter:`url(#${filterIdRef})`,WebkitBackdropFilter:`url(#${filterIdRef})`,filter:`url(#${filterIdRef})`};return /*#__PURE__*/_jsxs(React.Fragment,{children:[filterSvg,mode===\"overlay\"?/*#__PURE__*/_jsx(\"div\",{ref:overlayRef,style:overlayStyle},filterKey):/*#__PURE__*/_jsx(motion.div,{style:{...contentStyle,filter:`url(#${filterIdRef})`},children:text})]});}TurbulentDisplace.displayName=\"Squiggle Effect\";TurbulentDisplace.defaultProps={mode:\"text\",text:\"Squiggle Effect\",font:{family:\"Inter\",style:\"normal\",weight:800,fontSize:44,lineHeight:1.5,letterSpacing:0,textAlign:\"center\",textTransform:\"none\"},fontColor:\"#fff\",frequency:2,octaves:2,scale:5,animation:{animate:true,strength:5,delay:100}};addPropertyControls(TurbulentDisplace,{mode:{type:ControlType.Enum,title:\"Mode\",options:[\"text\",\"overlay\"],optionTitles:[\"Text\",\"Overlay\"],description:\"Apply 'pointer-events: none' style on the component when using it in overlay mode.\",defaultValue:\"text\",displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},text:{type:ControlType.String,title:\"Text\",hidden:props=>props.mode===\"overlay\"},font:{type:ControlType.Font,controls:\"extended\",title:\"Font\",hidden:props=>props.mode===\"overlay\"},fontColor:{type:ControlType.Color,title:\"Font Color\",hidden:props=>props.mode===\"overlay\"},frequency:{type:ControlType.Number,title:\"Frequency\",min:0,max:100,step:1},octaves:{type:ControlType.Number,title:\"Octaves\",min:1,max:10,step:1},scale:{type:ControlType.Number,title:\"Scale\",min:1,max:500,step:1},animation:{type:ControlType.Object,description:\"More components at [Framer University](https://framer.university?utm_source=component).\",controls:{animate:{type:ControlType.Boolean,title:\"Animate\"},strength:{type:ControlType.Number,title:\"Flux\",description:\"Controls how much the 'Scale' property fluctuates during the animation, as a percentage of the Scale value.\",min:0,max:100,step:1,unit:\"%\",hidden:props=>!props.animate},delay:{type:ControlType.Number,title:\"Delay\",min:0,max:1e4,step:10,unit:\"ms\",hidden:props=>!props.animate}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TurbulentDisplace\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-auto\",\"framerSupportedLayoutWidth\":\"any-prefer-auto\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SquiggleEffect.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", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){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 swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (5ec741e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const RichTextWithFX=withFX(RichText);const cycleOrder=[\"ZAalQYXbX\",\"focZPsGeT\"];const serializationHash=\"framer-iy8L6\";const variantClassNames={focZPsGeT:\"framer-v-1u6m13k\",ZAalQYXbX:\"framer-v-3dlcqw\"};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:205,type:\"spring\"};const animation={opacity:.15,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Active:\"focZPsGeT\",Default:\"ZAalQYXbX\"};const getProps=({height,id,scrollSection,stepNumber,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,k3ls6uLAp:(_ref=stepNumber!==null&&stepNumber!==void 0?stepNumber:props.k3ls6uLAp)!==null&&_ref!==void 0?_ref:\"01\",kWjVhf9Ee:scrollSection!==null&&scrollSection!==void 0?scrollSection:props.kWjVhf9Ee,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"ZAalQYXbX\"};};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,kWjVhf9Ee,k3ls6uLAp,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZAalQYXbX\",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-3dlcqw\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"ZAalQYXbX\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({focZPsGeT:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:kWjVhf9Ee,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"66px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"0.7em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36)))\",\"--framer-text-transform\":\"uppercase\"},children:\"01\"})}),className:\"framer-475bol\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"lScUsooGY\",style:{\"--extracted-r6o4lv\":\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 0px 0px rgba(255, 221, 0, 0)\",transformPerspective:1200},text:k3ls6uLAp,transformTemplate:transformTemplate1,variants:{focZPsGeT:{textShadow:\"none\"}},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iy8L6.framer-1t73pqa, .framer-iy8L6 .framer-1t73pqa { display: block; }\",\".framer-iy8L6.framer-3dlcqw { height: 58px; overflow: visible; position: relative; width: 64px; }\",\".framer-iy8L6 .framer-475bol { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 58\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"focZPsGeT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"kWjVhf9Ee\":\"scrollSection\",\"k3ls6uLAp\":\"stepNumber\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraBXvQSjrZ=withCSS(Component,css,\"framer-iy8L6\");export default FrameraBXvQSjrZ;FrameraBXvQSjrZ.displayName=\"Timeline - Number 2\";FrameraBXvQSjrZ.defaultProps={height:58,width:64};addPropertyControls(FrameraBXvQSjrZ,{variant:{options:[\"ZAalQYXbX\",\"focZPsGeT\"],optionTitles:[\"Default\",\"Active\"],title:\"Variant\",type:ControlType.Enum},kWjVhf9Ee:{title:\"Scroll Section\",type:ControlType.ScrollSectionRef},k3ls6uLAp:{defaultValue:\"01\",displayTextArea:false,title:\"Step Number\",type:ControlType.String}});addFonts(FrameraBXvQSjrZ,[{explicitInter:true,fonts:[{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\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraBXvQSjrZ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"58\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"kWjVhf9Ee\\\":\\\"scrollSection\\\",\\\"k3ls6uLAp\\\":\\\"stepNumber\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"focZPsGeT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"64\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aBXvQSjrZ.map", "// Generated by Framer (56d1180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import TimelineNumber2 from\"https://framerusercontent.com/modules/PZ7vo7BvNQFqVj5NktGf/jooZY89O4jQn462ghnyN/aBXvQSjrZ.js\";const TimelineNumber2Fonts=getFonts(TimelineNumber2);const TimelineNumber2WithVariantAppearEffect=withVariantAppearEffect(TimelineNumber2);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"GE20RMVR7\",\"PN4zB7pEF\"];const serializationHash=\"framer-qVrSd\";const variantClassNames={GE20RMVR7:\"framer-v-2etyji\",PN4zB7pEF:\"framer-v-142g2v1\"};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:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:0,duration:.1,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"GE20RMVR7\",\"Variant 2\":\"PN4zB7pEF\"};const getProps=({height,id,pill,progressBar,scrollSection,stepDescription,stepNumber,stepTitle,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,AKZK3QP_R:(_ref=pill!==null&&pill!==void 0?pill:props.AKZK3QP_R)!==null&&_ref!==void 0?_ref:\"Step\",Hia1LsgDC:scrollSection!==null&&scrollSection!==void 0?scrollSection:props.Hia1LsgDC,Iltzd6lgG:(_ref1=progressBar!==null&&progressBar!==void 0?progressBar:props.Iltzd6lgG)!==null&&_ref1!==void 0?_ref1:true,QGZG2jrpt:(_ref2=stepTitle!==null&&stepTitle!==void 0?stepTitle:props.QGZG2jrpt)!==null&&_ref2!==void 0?_ref2:\"Discovery Phase\",SFGHsTrJN:(_ref3=stepDescription!==null&&stepDescription!==void 0?stepDescription:props.SFGHsTrJN)!==null&&_ref3!==void 0?_ref3:\"During this initial stage, we delve deep into understanding your business goals, target audience, and market landscape. We conduct thorough research and analysis to identify opportunities and challenges, laying the foundation for a successful campaign.\",UJyQQ0kc1:(_ref4=stepNumber!==null&&stepNumber!==void 0?stepNumber:props.UJyQQ0kc1)!==null&&_ref4!==void 0?_ref4:\"01\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"GE20RMVR7\"};};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,UJyQQ0kc1,QGZG2jrpt,SFGHsTrJN,Hia1LsgDC,Iltzd6lgG,AKZK3QP_R,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GE20RMVR7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"PN4zB7pEF\")return false;return true;};const isDisplayed1=value=>{if(baseVariant===\"PN4zB7pEF\")return false;return value;};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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-2etyji\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"GE20RMVR7\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({PN4zB7pEF:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wdayhu\",\"data-framer-name\":\"Timeline Wrapper\",layoutDependency:layoutDependency,layoutId:\"ubm7rKrlE\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:\"64px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+20+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d4k0zs-container\",layoutDependency:layoutDependency,layoutId:\"fm4Uk2_QE-container\",children:/*#__PURE__*/_jsx(TimelineNumber2WithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:Hia1LsgDC,target:\"focZPsGeT\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"fm4Uk2_QE\",k3ls6uLAp:UJyQQ0kc1,kWjVhf9Ee:Hia1LsgDC,layoutId:\"fm4Uk2_QE\",style:{height:\"100%\",width:\"100%\"},variant:\"ZAalQYXbX\",width:\"100%\"})})}),Iltzd6lgG&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y8kwhq\",\"data-framer-name\":\"Progress bar\",layoutDependency:layoutDependency,layoutId:\"GBpCyePm3\",style:{backgroundColor:\"rgba(255, 255, 255, 0.05)\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__spring:{damping:41,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:258,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__targets:[{ref:Hia1LsgDC,target:\"animate\"}],__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-410}},{ref:Hia1LsgDC,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-yuw1z5\",\"data-framer-name\":\"Light\",layoutDependency:layoutDependency,layoutId:\"TLxIOUsX2\",style:{background:'linear-gradient(180deg, rgba(84, 84, 84, 0) 70.44724801060994%, var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36)) /* {\"name\":\"Red\"} */ 100%)',transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:362,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:200}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-r6r9z2\",\"data-framer-name\":\"Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"jfNXrGHpe\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19chp75\",\"data-border\":true,\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"BZW4JNSYy\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 226, 168)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 250, 240)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qau0q9\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"A2uVzvmz5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5zj4im\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"SP8cL5zRr\",style:{backgroundColor:\"rgb(255, 240, 209)\",borderBottomLeftRadius:39,borderBottomRightRadius:39,borderTopLeftRadius:39,borderTopRightRadius:39},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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18)))\",\"--framer-text-transform\":\"inherit\"},children:\"Step\"})}),className:\"framer-pi975a\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"WVOxHqEqa\",style:{\"--extracted-r6o4lv\":\"var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AKZK3QP_R,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18)))\"},children:\"Discovery Phase\"})}),className:\"framer-w0dmc0\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"JMVi015vR\",style:{\"--extracted-a0htzi\":\"var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:QGZG2jrpt,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18)))\"},children:\"During this initial stage, we delve deep into understanding your business goals, target audience, and market landscape. We conduct thorough research and analysis to identify opportunities and challenges, laying the foundation for a successful campaign.\"})}),className:\"framer-obi65j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UJck117z2\",style:{\"--extracted-r6o4lv\":\"var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.7},text:SFGHsTrJN,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1(Iltzd6lgG)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gdqrlf\",layoutDependency:layoutDependency,layoutId:\"i10Svta2S\"})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qVrSd.framer-1g7lz6z, .framer-qVrSd .framer-1g7lz6z { display: block; }\",\".framer-qVrSd.framer-2etyji { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 0px 0px; position: relative; width: 1600px; }\",\".framer-qVrSd .framer-wdayhu { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100px; }\",\".framer-qVrSd .framer-1d4k0zs-container { flex: none; height: 58px; position: relative; width: 64px; }\",\".framer-qVrSd .framer-1y8kwhq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 3px; z-index: 0; }\",\".framer-qVrSd .framer-yuw1z5 { flex: none; height: calc(var(--framer-viewport-height, 100vh) * 0.5); overflow: hidden; position: relative; width: 100%; }\",\".framer-qVrSd .framer-r6r9z2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-qVrSd .framer-19chp75 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 24px 24px 48px 24px; position: relative; width: 100%; }\",\".framer-qVrSd .framer-qau0q9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qVrSd .framer-5zj4im { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 3px 12px 3px 12px; position: relative; width: min-content; }\",\".framer-qVrSd .framer-pi975a { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qVrSd .framer-w0dmc0, .framer-qVrSd .framer-obi65j { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-qVrSd .framer-1gdqrlf { flex: none; height: 180px; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qVrSd.framer-2etyji, .framer-qVrSd .framer-wdayhu, .framer-qVrSd .framer-1y8kwhq, .framer-qVrSd .framer-r6r9z2, .framer-qVrSd .framer-19chp75, .framer-qVrSd .framer-qau0q9, .framer-qVrSd .framer-5zj4im { gap: 0px; } .framer-qVrSd.framer-2etyji > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-qVrSd.framer-2etyji > :first-child, .framer-qVrSd .framer-5zj4im > :first-child { margin-left: 0px; } .framer-qVrSd.framer-2etyji > :last-child, .framer-qVrSd .framer-5zj4im > :last-child { margin-right: 0px; } .framer-qVrSd .framer-wdayhu > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-qVrSd .framer-wdayhu > :first-child, .framer-qVrSd .framer-1y8kwhq > :first-child, .framer-qVrSd .framer-r6r9z2 > :first-child, .framer-qVrSd .framer-19chp75 > :first-child, .framer-qVrSd .framer-qau0q9 > :first-child { margin-top: 0px; } .framer-qVrSd .framer-wdayhu > :last-child, .framer-qVrSd .framer-1y8kwhq > :last-child, .framer-qVrSd .framer-r6r9z2 > :last-child, .framer-qVrSd .framer-19chp75 > :last-child, .framer-qVrSd .framer-qau0q9 > :last-child { margin-bottom: 0px; } .framer-qVrSd .framer-1y8kwhq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-qVrSd .framer-r6r9z2 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-qVrSd .framer-19chp75 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-qVrSd .framer-qau0q9 > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-qVrSd .framer-5zj4im > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } }\",\".framer-qVrSd.framer-v-142g2v1.framer-2etyji { padding: 0px; width: 390px; }\",\".framer-qVrSd.framer-v-142g2v1 .framer-r6r9z2 { padding: 0px 0px 48px 0px; }\",\".framer-qVrSd.framer-v-142g2v1 .framer-19chp75 { padding: 24px 20px 48px 20px; }\",'.framer-qVrSd[data-border=\"true\"]::after, .framer-qVrSd [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 471\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PN4zB7pEF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"UJyQQ0kc1\":\"stepNumber\",\"QGZG2jrpt\":\"stepTitle\",\"SFGHsTrJN\":\"stepDescription\",\"Hia1LsgDC\":\"scrollSection\",\"Iltzd6lgG\":\"progressBar\",\"AKZK3QP_R\":\"pill\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDmAajn4AD=withCSS(Component,css,\"framer-qVrSd\");export default FramerDmAajn4AD;FramerDmAajn4AD.displayName=\"Timeline - Item 2\";FramerDmAajn4AD.defaultProps={height:471,width:1600};addPropertyControls(FramerDmAajn4AD,{variant:{options:[\"GE20RMVR7\",\"PN4zB7pEF\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},UJyQQ0kc1:{defaultValue:\"01\",displayTextArea:false,title:\"Step Number\",type:ControlType.String},QGZG2jrpt:{defaultValue:\"Discovery Phase\",displayTextArea:true,title:\"Step Title\",type:ControlType.String},SFGHsTrJN:{defaultValue:\"During this initial stage, we delve deep into understanding your business goals, target audience, and market landscape. We conduct thorough research and analysis to identify opportunities and challenges, laying the foundation for a successful campaign.\",displayTextArea:true,title:\"Step Description\",type:ControlType.String},Hia1LsgDC:{title:\"Scroll Section\",type:ControlType.ScrollSectionRef},Iltzd6lgG:{defaultValue:true,title:\"Progress Bar\",type:ControlType.Boolean},AKZK3QP_R:{defaultValue:\"Step\",displayTextArea:false,title:\"Pill\",type:ControlType.String}});addFonts(FramerDmAajn4AD,[{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:\"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\"}]},...TimelineNumber2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDmAajn4AD\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"UJyQQ0kc1\\\":\\\"stepNumber\\\",\\\"QGZG2jrpt\\\":\\\"stepTitle\\\",\\\"SFGHsTrJN\\\":\\\"stepDescription\\\",\\\"Hia1LsgDC\\\":\\\"scrollSection\\\",\\\"Iltzd6lgG\\\":\\\"progressBar\\\",\\\"AKZK3QP_R\\\":\\\"pill\\\"}\",\"framerIntrinsicHeight\":\"471\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PN4zB7pEF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DmAajn4AD.map", "let Component;\nvar House_default = (React) => {\n  if (!Component) {\n    const weights = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M221.56,100.85,141.61,25.38l-.16-.15a19.93,19.93,0,0,0-26.91,0l-.17.15L34.44,100.85A20.07,20.07,0,0,0,28,115.55V208a20,20,0,0,0,20,20H96a20,20,0,0,0,20-20V164h24v44a20,20,0,0,0,20,20h48a20,20,0,0,0,20-20V115.55A20.07,20.07,0,0,0,221.56,100.85ZM204,204H164V160a20,20,0,0,0-20-20H112a20,20,0,0,0-20,20v44H52V117.28l76-71.75,76,71.75Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,115.54V208a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.54a8,8,0,0,1,2.62-5.92l80-75.54a8,8,0,0,1,10.77,0l80,75.54A8,8,0,0,1,216,115.54Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,115.55V208a16,16,0,0,1-16,16H168a16,16,0,0,1-16-16V168a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v40a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V115.55a16,16,0,0,1,5.17-11.78l80-75.48.11-.11a16,16,0,0,1,21.53,0,1.14,1.14,0,0,0,.11.11l80,75.48A16,16,0,0,1,224,115.55Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.47,105.24l-80-75.5-.09-.08a13.94,13.94,0,0,0-18.83,0l-.09.08-80,75.5A14,14,0,0,0,34,115.55V208a14,14,0,0,0,14,14H96a14,14,0,0,0,14-14V160a2,2,0,0,1,2-2h32a2,2,0,0,1,2,2v48a14,14,0,0,0,14,14h48a14,14,0,0,0,14-14V115.55A14,14,0,0,0,217.47,105.24ZM210,208a2,2,0,0,1-2,2H160a2,2,0,0,1-2-2V160a14,14,0,0,0-14-14H112a14,14,0,0,0-14,14v48a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V115.55a2,2,0,0,1,.65-1.48l.09-.08,79.94-75.48a2,2,0,0,1,2.63,0L209.26,114l.08.08a2,2,0,0,1,.66,1.48Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.13,106.72,136.07,31.13a12,12,0,0,0-16.2.05L39.93,106.67A12,12,0,0,0,36,115.54V208a12,12,0,0,0,12,12H96a12,12,0,0,0,12-12V160a4,4,0,0,1,4-4h32a4,4,0,0,1,4,4v48a12,12,0,0,0,12,12h48a12,12,0,0,0,12-12V115.54A12,12,0,0,0,216.13,106.72ZM212,208a4,4,0,0,1-4,4H160a4,4,0,0,1-4-4V160a12,12,0,0,0-12-12H112a12,12,0,0,0-12,12v48a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V115.54a4.09,4.09,0,0,1,1.36-3L125.3,37.05a4,4,0,0,1,5.33,0l80.06,75.58a4,4,0,0,1,1.31,3Z\" }))\n      ]\n    ]);\n    const House = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, weights.get(props.weight)));\n    House.displayName = \"House\";\n    Component = House;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.53\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"AddressBook\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"BoundingBox\",\"BowlFood\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Church\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCounterClockwise\",\"ClockCountdown\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"Cpu\",\"CreditCard\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"Fan\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"Footprints\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"Goggles\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GridFour\",\"GridNine\",\"Guitar\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandCoins\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighHeel\",\"HighlighterCircle\",\"Hoodie\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"MetaLogo\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Option\",\"OrangeSlice\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleRun\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhonePlus\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Scooter\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealQuestion\",\"SealWarning\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stairs\",\"Stamp\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Subtitles\",\"Subtract\",\"SubtractSquare\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Timer\",\"Tipi\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tote\",\"ToteSimple\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"YinYang\",\"YoutubeLogo\",];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\",];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.53\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/ _jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (4ba8877)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={wTFo9O8Uj:{hover:true}};const cycleOrder=[\"q7Jw9JyVV\",\"wTFo9O8Uj\"];const serializationHash=\"framer-p3Sir\";const variantClassNames={q7Jw9JyVV:\"framer-v-9xkda4\",wTFo9O8Uj:\"framer-v-18duyvw\"};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:40,delay:0,mass:1,stiffness:400,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={Close:\"wTFo9O8Uj\",Open:\"q7Jw9JyVV\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,UkcAZJv33:(_ref=answer!==null&&answer!==void 0?answer:props.UkcAZJv33)!==null&&_ref!==void 0?_ref:\"AI-driven analysis uses advanced algorithms to process your data in real-time, identifying trends, patterns, and opportunities. This helps you make informed decisions quickly, optimize your strategies, and stay ahead of the competition.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"q7Jw9JyVV\",zNMII1rLe:(_ref2=question!==null&&question!==void 0?question:props.zNMII1rLe)!==null&&_ref2!==void 0?_ref2:\"What is AI-driven analysis, and how can it benefit my business?\"};};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,zNMII1rLe,UkcAZJv33,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"q7Jw9JyVV\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap11h27wl=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"wTFo9O8Uj\");});const onTapjdu5b2=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"q7Jw9JyVV\");});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-9xkda4\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"q7Jw9JyVV\",onTap:onTap11h27wl,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 226, 168)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 250, 240)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,opacity:1,...style},variants:{\"wTFo9O8Uj-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",opacity:.9},wTFo9O8Uj:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({\"wTFo9O8Uj-hover\":{\"data-framer-name\":undefined},wTFo9O8Uj:{\"data-framer-name\":\"Close\",onTap:onTapjdu5b2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1880zle\",\"data-framer-name\":\"Question Wrapper\",layoutDependency:layoutDependency,layoutId:\"ts2wXorfv\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 243, 217)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},variants:{wTFo9O8Uj:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 226, 168)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 250, 240)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}},...addPropertyOverrides({wTFo9O8Uj:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f11b5aeb-a8c6-4995-a9a0-b82221d34a1b, rgb(35, 31, 32)))\"},children:\"What is AI-driven analysis, and how can it benefit my business?\"})}),className:\"framer-4pgqxl\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"ggZXGOSN4\",style:{\"--extracted-a0htzi\":\"var(--token-f11b5aeb-a8c6-4995-a9a0-b82221d34a1b, rgb(35, 31, 32))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:zNMII1rLe,variants:{wTFo9O8Uj:{\"--extracted-a0htzi\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(15, 15, 15))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({wTFo9O8Uj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(15, 15, 15)))\"},children:\"What is AI-driven analysis, and how can it benefit my business?\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rc07yj\",\"data-framer-name\":\"Icon Wrapper\",layoutDependency:layoutDependency,layoutId:\"Rtip7jAef\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:13,borderBottomRightRadius:13,borderTopLeftRadius:13,borderTopRightRadius:13},variants:{\"wTFo9O8Uj-hover\":{backgroundColor:\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w2hccf-container\",layoutDependency:layoutDependency,layoutId:\"jJjLFfiCk-container\",style:{rotate:-180},variants:{wTFo9O8Uj:{rotate:-225}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f11b5aeb-a8c6-4995-a9a0-b82221d34a1b, rgb(35, 31, 32))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"jJjLFfiCk\",layoutId:\"jJjLFfiCk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({\"wTFo9O8Uj-hover\":{color:\"var(--token-a5406973-98cb-4d38-a86d-12082f17dbcc, rgb(255, 255, 255))\"},wTFo9O8Uj:{color:\"var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10))\"}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mvmu\",\"data-framer-name\":\"Answer Wrapper\",layoutDependency:layoutDependency,layoutId:\"IUTpLqsHU\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18)))\"},children:\"AI-driven analysis uses advanced algorithms to process your data in real-time, identifying trends, patterns, and opportunities. This helps you make informed decisions quickly, optimize your strategies, and stay ahead of the competition.\"})}),className:\"framer-j8sxgy\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"jftGBk4qc\",style:{\"--extracted-r6o4lv\":\"var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},text:UkcAZJv33,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-p3Sir.framer-h71qlv, .framer-p3Sir .framer-h71qlv { display: block; }\",\".framer-p3Sir.framer-9xkda4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 4px; position: relative; width: 800px; will-change: var(--framer-will-change-override, transform); }\",\".framer-p3Sir .framer-1880zle { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 16px 20px 16px 20px; position: relative; width: 100%; z-index: 4; }\",\".framer-p3Sir .framer-4pgqxl, .framer-p3Sir .framer-j8sxgy { -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-p3Sir .framer-1rc07yj { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 42px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 42px; }\",\".framer-p3Sir .framer-w2hccf-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-p3Sir .framer-1mvmu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-p3Sir.framer-9xkda4, .framer-p3Sir .framer-1rc07yj, .framer-p3Sir .framer-1mvmu { gap: 0px; } .framer-p3Sir.framer-9xkda4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-p3Sir.framer-9xkda4 > :first-child { margin-top: 0px; } .framer-p3Sir.framer-9xkda4 > :last-child { margin-bottom: 0px; } .framer-p3Sir .framer-1rc07yj > *, .framer-p3Sir .framer-1mvmu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-p3Sir .framer-1rc07yj > :first-child, .framer-p3Sir .framer-1mvmu > :first-child { margin-left: 0px; } .framer-p3Sir .framer-1rc07yj > :last-child, .framer-p3Sir .framer-1mvmu > :last-child { margin-right: 0px; } }\",\".framer-p3Sir.framer-v-18duyvw.framer-9xkda4 { padding: 0px; }\",\".framer-p3Sir.framer-v-18duyvw .framer-1mvmu { bottom: 0px; left: 0px; position: absolute; right: 0px; width: unset; z-index: 1; }\",\".framer-p3Sir.framer-v-18duyvw.hover .framer-1mvmu { width: unset; }\",'.framer-p3Sir[data-border=\"true\"]::after, .framer-p3Sir [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 190\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wTFo9O8Uj\":{\"layout\":[\"fixed\",\"auto\"]},\"lbk9GsRxe\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zNMII1rLe\":\"question\",\"UkcAZJv33\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermdRp2pqei=withCSS(Component,css,\"framer-p3Sir\");export default FramermdRp2pqei;FramermdRp2pqei.displayName=\"Component / FAQ - Single\";FramermdRp2pqei.defaultProps={height:190,width:800};addPropertyControls(FramermdRp2pqei,{variant:{options:[\"q7Jw9JyVV\",\"wTFo9O8Uj\"],optionTitles:[\"Open\",\"Close\"],title:\"Variant\",type:ControlType.Enum},zNMII1rLe:{defaultValue:\"What is AI-driven analysis, and how can it benefit my business?\",displayTextArea:true,title:\"Question\",type:ControlType.String},UkcAZJv33:{defaultValue:\"AI-driven analysis uses advanced algorithms to process your data in real-time, identifying trends, patterns, and opportunities. This helps you make informed decisions quickly, optimize your strategies, and stay ahead of the competition.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramermdRp2pqei,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermdRp2pqei\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"zNMII1rLe\\\":\\\"question\\\",\\\"UkcAZJv33\\\":\\\"answer\\\"}\",\"framerIntrinsicWidth\":\"800\",\"framerIntrinsicHeight\":\"190\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wTFo9O8Uj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lbk9GsRxe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mdRp2pqei.map", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ComponentFAQSingle from\"https://framerusercontent.com/modules/5hdQZSi0pgN97JMIzuTM/kByglCUyHPqDiURFWjg3/mdRp2pqei.js\";const ComponentFAQSingleFonts=getFonts(ComponentFAQSingle);const serializationHash=\"framer-CO0su\";const variantClassNames={Dd6f19Lx3:\"framer-v-1netwo0\"};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 fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Dd6f19Lx3\",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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1netwo0\",className,classNames),\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"Dd6f19Lx3\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:190,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||434)-0-1014)/2+0+0),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x3zqwj-container\",layoutDependency:layoutDependency,layoutId:\"MIvJB7Hy_-container\",nodeId:\"MIvJB7Hy_\",rendersWithMotion:true,scopeId:\"dXoXXN5g9\",children:/*#__PURE__*/_jsx(ComponentFAQSingle,{height:\"100%\",id:\"MIvJB7Hy_\",layoutId:\"MIvJB7Hy_\",style:{width:\"100%\"},UkcAZJv33:\"Yes, the same typical vague answer.\\n\\nOur pricing is mostly based on results. We promise that our services will be less expensive than both an in-house SDR or a lead generation company. To give you an accurate indication of the figures, we would need to know precisely what you are looking for. The team will walk you over our plans if you schedule a call.\",variant:\"wTFo9O8Uj\",width:\"100%\",zNMII1rLe:\"What's the price?\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:190,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||434)-0-1014)/2+190+16),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kyz1qe-container\",layoutDependency:layoutDependency,layoutId:\"ps8w881MY-container\",nodeId:\"ps8w881MY\",rendersWithMotion:true,scopeId:\"dXoXXN5g9\",children:/*#__PURE__*/_jsx(ComponentFAQSingle,{height:\"100%\",id:\"ps8w881MY\",layoutId:\"ps8w881MY\",style:{width:\"100%\"},UkcAZJv33:\"We work exclusively with one NEW partner each month. We are highly selective with the partners we work with and only partner up with companies we know we can deliver 100% of the time. Furthermore, we are a firm that is completely confident in the results of our growth partnerships. We offer free work until agreed guarantees have been hit.\",variant:\"wTFo9O8Uj\",width:\"100%\",zNMII1rLe:\"How do you guarantee results?\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:190,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||434)-0-1014)/2+380+32),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vnuihp-container\",layoutDependency:layoutDependency,layoutId:\"QsxT7PxdM-container\",nodeId:\"QsxT7PxdM\",rendersWithMotion:true,scopeId:\"dXoXXN5g9\",children:/*#__PURE__*/_jsx(ComponentFAQSingle,{height:\"100%\",id:\"QsxT7PxdM\",layoutId:\"QsxT7PxdM\",style:{width:\"100%\"},UkcAZJv33:\"All of our clients get to decide for themselves whether the calls are qualified or not. Not a single one of our clients has ever complained about lead quality. These calls are extensively qualified as we focus on sophisticated buyers who genuinely express interest in your product/service and are willing to engage in a call. We reach out to a lead list that you have approved, using highly personalized messages and efficiently managing their responses to convert them into calls.\",variant:\"wTFo9O8Uj\",width:\"100%\",zNMII1rLe:\"What if the calls aren't qualified?\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:190,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||434)-0-1014)/2+570+48),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iuhlwe-container\",layoutDependency:layoutDependency,layoutId:\"qcYmHxjTN-container\",nodeId:\"qcYmHxjTN\",rendersWithMotion:true,scopeId:\"dXoXXN5g9\",children:/*#__PURE__*/_jsx(ComponentFAQSingle,{height:\"100%\",id:\"qcYmHxjTN\",layoutId:\"qcYmHxjTN\",style:{width:\"100%\"},UkcAZJv33:\"Our team handles it all: inbox setup, lead list building, copywriting, campaign management, and response handling. From you, we simply require you to fill out a form and jump on a couple of calls so we can understand the ins and outs of your business. With some clients, we work closely, and with others, we handle everything from A-Z. So, it's all up to you.\",variant:\"wTFo9O8Uj\",width:\"100%\",zNMII1rLe:\"What will be needed from us?\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z5k0hh\",layoutDependency:layoutDependency,layoutId:\"DLc0li_Gz\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:190,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||434)-0-1014)/2+760+64)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yrp6xb-container\",layoutDependency:layoutDependency,layoutId:\"AcEuIIUco-container\",nodeId:\"AcEuIIUco\",rendersWithMotion:true,scopeId:\"dXoXXN5g9\",children:/*#__PURE__*/_jsx(ComponentFAQSingle,{height:\"100%\",id:\"AcEuIIUco\",layoutId:\"AcEuIIUco\",style:{width:\"100%\"},UkcAZJv33:\"We can launch our client acquisition system in 2-3 weeks, and you'll start seeing results in just 3-5 days! Most of our clients experience positive ROI within a month.\",variant:\"wTFo9O8Uj\",width:\"100%\",zNMII1rLe:\"How quickly do we see results?\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CO0su.framer-1pta647, .framer-CO0su .framer-1pta647 { display: block; }\",\".framer-CO0su.framer-1netwo0 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-CO0su .framer-x3zqwj-container, .framer-CO0su .framer-1kyz1qe-container, .framer-CO0su .framer-vnuihp-container, .framer-CO0su .framer-iuhlwe-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-CO0su .framer-z5k0hh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CO0su .framer-1yrp6xb-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CO0su.framer-1netwo0, .framer-CO0su .framer-z5k0hh { gap: 0px; } .framer-CO0su.framer-1netwo0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-CO0su.framer-1netwo0 > :first-child { margin-top: 0px; } .framer-CO0su.framer-1netwo0 > :last-child { margin-bottom: 0px; } .framer-CO0su .framer-z5k0hh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CO0su .framer-z5k0hh > :first-child { margin-left: 0px; } .framer-CO0su .framer-z5k0hh > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 434\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerdXoXXN5g9=withCSS(Component,css,\"framer-CO0su\");export default FramerdXoXXN5g9;FramerdXoXXN5g9.displayName=\"Component / FAQ List\";FramerdXoXXN5g9.defaultProps={height:434,width:800};addFonts(FramerdXoXXN5g9,[{explicitInter:true,fonts:[]},...ComponentFAQSingleFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdXoXXN5g9\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"800\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"434\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dXoXXN5g9.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (56d1180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";const VideoFonts=getFonts(Video);const Video1Controls=getPropertyControls(Video1);const enabledGestures={gncFsR4r4:{hover:true}};const cycleOrder=[\"vIVVoUsUN\",\"gncFsR4r4\"];const serializationHash=\"framer-3gqTQ\";const variantClassNames={gncFsR4r4:\"framer-v-1783gl9\",vIVVoUsUN:\"framer-v-1ecvzwg\"};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 toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"vIVVoUsUN\",\"Variant 2\":\"gncFsR4r4\"};const getProps=({designation,founder,height,id,link,logo,poster,testiImage,video,width,words,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5,_ref6;return{...props,FCmsvljEF:(_ref=founder!==null&&founder!==void 0?founder:props.FCmsvljEF)!==null&&_ref!==void 0?_ref:\"Malik Shkraba\",HcZeYfXkg:poster!==null&&poster!==void 0?poster:props.HcZeYfXkg,LHU8SCGl9:(_ref1=logo!==null&&logo!==void 0?logo:props.LHU8SCGl9)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/FpEQH1WvaGM5sHuQKezrdHOmfc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FpEQH1WvaGM5sHuQKezrdHOmfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/FpEQH1WvaGM5sHuQKezrdHOmfc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FpEQH1WvaGM5sHuQKezrdHOmfc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FpEQH1WvaGM5sHuQKezrdHOmfc.png 4000w\"},pPQAQDUzL:(_ref2=video!==null&&video!==void 0?video:props.pPQAQDUzL)!==null&&_ref2!==void 0?_ref2:\"https://framerusercontent.com/assets/YlqzyWa3njNh8nbGliLGF8fztFM.mp4\",QNj2Iom49:link!==null&&link!==void 0?link:props.QNj2Iom49,ugOuWLXeo:(_ref3=testiImage!==null&&testiImage!==void 0?testiImage:props.ugOuWLXeo)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/ve1dPVerBDr7qJ1yNVCN9qkw4XY.jpg\",srcSet:\"https://framerusercontent.com/images/ve1dPVerBDr7qJ1yNVCN9qkw4XY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ve1dPVerBDr7qJ1yNVCN9qkw4XY.jpg 626w\"},variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"vIVVoUsUN\",VrgpnRbO3:(_ref5=designation!==null&&designation!==void 0?designation:props.VrgpnRbO3)!==null&&_ref5!==void 0?_ref5:\"COO of Friday\",YgrzGbEnr:(_ref6=words!==null&&words!==void 0?words:props.YgrzGbEnr)!==null&&_ref6!==void 0?_ref6:\"Our results and online presence went through the roof more or less overnight, mind-blowing\"};};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,pPQAQDUzL,LHU8SCGl9,YgrzGbEnr,FCmsvljEF,VrgpnRbO3,ugOuWLXeo,QNj2Iom49,HcZeYfXkg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vIVVoUsUN\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"gncFsR4r4-hover\")return false;if(baseVariant===\"gncFsR4r4\")return false;return true;};const textContent=suffix(prefix(YgrzGbEnr,'\"'),'\"');const isDisplayed1=()=>{if(gestureVariant===\"gncFsR4r4-hover\")return true;if(baseVariant===\"gncFsR4r4\")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(Link,{...addPropertyOverrides({gncFsR4r4:{href:QNj2Iom49,openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1ecvzwg\",className,classNames)} framer-1tzojyz`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"vIVVoUsUN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 226, 168)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 250, 240)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{\"gncFsR4r4-hover\":{\"--border-color\":\"rgb(255, 197, 82)\",backgroundColor:\"rgb(252, 243, 225)\"}},...addPropertyOverrides({\"gncFsR4r4-hover\":{\"data-framer-name\":undefined},gncFsR4r4:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10zotco-container\",layoutDependency:layoutDependency,layoutId:\"PXRvyiVnh-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:true,height:\"100%\",id:\"PXRvyiVnh\",isMixedBorderRadius:false,layoutId:\"PXRvyiVnh\",loop:false,muted:false,objectFit:\"cover\",playing:false,poster:toImageSrc(HcZeYfXkg),posterEnabled:true,srcFile:pPQAQDUzL,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:75,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-82bvtb\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"H2C5sUgMn\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||614)-48-629.4900009274482)/2+371+20)+0+0),sizes:\"166.8px\",...toResponsiveImage(LHU8SCGl9),...{positionX:\"left\",positionY:\"top\"}},className:\"framer-1rs74gk\",layoutDependency:layoutDependency,layoutId:\"LgnTj5X4j\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.32px\",\"--framer-line-height\":\"22.4px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18)))\"},children:'\"Our results and online presence went '}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.32px\",\"--framer-line-height\":\"22.4px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18)))\"},children:\"through the roof more or less overnight, \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.32px\",\"--framer-line-height\":\"22.4px\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18)))\"},children:'mind-blowing!\"'})]}),className:\"framer-13vj15z\",\"data-framer-name\":'\"Our results and online presence went through the roof more or less overnight, mind-blowing!\"',fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"bhXFaqs2o\",style:{\"--extracted-1iakedh\":\"var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18))\",\"--extracted-2gxw0f\":\"var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18))\",\"--extracted-r6o4lv\":\"var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18))\",\"--framer-paragraph-spacing\":\"0px\"},text:textContent,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"gncFsR4r4-hover\":{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.32px\",\"--framer-line-height\":\"22.4px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18)))\"},children:'\"Our results and online presence went through the roof more or less overnight, mind-blowing\"'})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-reuv9u\",layoutDependency:layoutDependency,layoutId:\"L3uANhFbS\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wzgpme\",\"data-framer-name\":\"Paragraph\",layoutDependency:layoutDependency,layoutId:\"T6E4opIXI\",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-weight\":\"500\",\"--framer-letter-spacing\":\"-0.28px\",\"--framer-line-height\":\"19.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(92, 92, 92))\"},children:\"Malik Shkraba\"})}),className:\"framer-15hsqpj\",\"data-framer-name\":\"Malik Shkraba\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"kVM8GkQbq\",style:{\"--extracted-r6o4lv\":\"rgb(92, 92, 92)\",\"--framer-paragraph-spacing\":\"0px\"},text:FCmsvljEF,verticalAlignment:\"center\",withExternalLayout:true}),/*#__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-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.24px\",\"--framer-line-height\":\"16.8px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(92, 92, 92))\"},children:\"COO of Friday\"})}),className:\"framer-iekz6j\",\"data-framer-name\":\"COO of Friday\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"iO3CiUGcK\",style:{\"--extracted-r6o4lv\":\"rgb(92, 92, 92)\",\"--framer-paragraph-spacing\":\"0px\"},text:VrgpnRbO3,verticalAlignment:\"center\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(ugOuWLXeo),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-ewqjc5\",layoutDependency:layoutDependency,layoutId:\"rgYmBwXQZ\",style:{borderBottomLeftRadius:27,borderBottomRightRadius:27,borderTopLeftRadius:27,borderTopRightRadius:27},...addPropertyOverrides({gncFsR4r4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||172)-48-169)/2+112+20)+0),sizes:\"24px\",...toResponsiveImage(ugOuWLXeo),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3gqTQ.framer-1tzojyz, .framer-3gqTQ .framer-1tzojyz { display: block; }\",\".framer-3gqTQ.framer-1ecvzwg { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-3gqTQ .framer-10zotco-container { align-self: stretch; flex: none; height: 371px; position: relative; width: auto; }\",\".framer-3gqTQ .framer-82bvtb { 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: 278px; }\",\".framer-3gqTQ .framer-1rs74gk { aspect-ratio: 6.043478260869565 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 60%; }\",\".framer-3gqTQ .framer-13vj15z { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3gqTQ .framer-reuv9u { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-3gqTQ .framer-1wzgpme { align-content: flex-start; align-items: flex-start; 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: 278px; }\",\".framer-3gqTQ .framer-15hsqpj, .framer-3gqTQ .framer-iekz6j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3gqTQ .framer-ewqjc5 { aspect-ratio: 1 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 200px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3gqTQ.framer-1ecvzwg, .framer-3gqTQ .framer-82bvtb, .framer-3gqTQ .framer-reuv9u, .framer-3gqTQ .framer-1wzgpme { gap: 0px; } .framer-3gqTQ.framer-1ecvzwg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-3gqTQ.framer-1ecvzwg > :first-child, .framer-3gqTQ .framer-82bvtb > :first-child, .framer-3gqTQ .framer-1wzgpme > :first-child { margin-top: 0px; } .framer-3gqTQ.framer-1ecvzwg > :last-child, .framer-3gqTQ .framer-82bvtb > :last-child, .framer-3gqTQ .framer-1wzgpme > :last-child { margin-bottom: 0px; } .framer-3gqTQ .framer-82bvtb > * { margin: 0px; margin-bottom: calc(23.790000915527344px / 2); margin-top: calc(23.790000915527344px / 2); } .framer-3gqTQ .framer-reuv9u > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3gqTQ .framer-reuv9u > :first-child { margin-left: 0px; } .framer-3gqTQ .framer-reuv9u > :last-child { margin-right: 0px; } .framer-3gqTQ .framer-1wzgpme > * { margin: 0px; margin-bottom: calc(0.30000001192092896px / 2); margin-top: calc(0.30000001192092896px / 2); } }\",\".framer-3gqTQ.framer-v-1783gl9.framer-1ecvzwg { cursor: pointer; text-decoration: none; }\",\".framer-3gqTQ.framer-v-1783gl9 .framer-reuv9u { height: 37px; }\",\".framer-3gqTQ.framer-v-1783gl9 .framer-1wzgpme { flex: 1 0 0px; order: 1; width: 1px; }\",\".framer-3gqTQ.framer-v-1783gl9 .framer-ewqjc5 { order: 0; width: var(--framer-aspect-ratio-supported, 37px); }\",'.framer-3gqTQ[data-border=\"true\"]::after, .framer-3gqTQ [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 614\n * @framerIntrinsicWidth 326\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"gncFsR4r4\":{\"layout\":[\"auto\",\"auto\"]},\"H70_ATL0Q\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"pPQAQDUzL\":\"video\",\"LHU8SCGl9\":\"logo\",\"YgrzGbEnr\":\"words\",\"FCmsvljEF\":\"founder\",\"VrgpnRbO3\":\"designation\",\"ugOuWLXeo\":\"testiImage\",\"QNj2Iom49\":\"link\",\"HcZeYfXkg\":\"poster\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerh8ddtVEdi=withCSS(Component,css,\"framer-3gqTQ\");export default Framerh8ddtVEdi;Framerh8ddtVEdi.displayName=\"video testimonials\";Framerh8ddtVEdi.defaultProps={height:614,width:326};addPropertyControls(Framerh8ddtVEdi,{variant:{options:[\"vIVVoUsUN\",\"gncFsR4r4\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},pPQAQDUzL:(Video1Controls===null||Video1Controls===void 0?void 0:Video1Controls[\"srcFile\"])&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,YlqzyWa3njNh8nbGliLGF8fztFM.mp4?originalFilename=Valorant+2024.07.18+-+04.18.07.02.mp4\",description:undefined,hidden:undefined,title:\"Video\"},LHU8SCGl9:{__defaultAssetReference:\"data:framer/asset-reference,FpEQH1WvaGM5sHuQKezrdHOmfc.png?originalFilename=endy+black+now.png&preferredSize=auto\",title:\"Logo\",type:ControlType.ResponsiveImage},YgrzGbEnr:{defaultValue:\"Our results and online presence went through the roof more or less overnight, mind-blowing\",displayTextArea:false,title:\"Words\",type:ControlType.String},FCmsvljEF:{defaultValue:\"Malik Shkraba\",displayTextArea:false,title:\"Founder\",type:ControlType.String},VrgpnRbO3:{defaultValue:\"COO of Friday\",displayTextArea:false,title:\"Designation\",type:ControlType.String},ugOuWLXeo:{__defaultAssetReference:\"data:framer/asset-reference,ve1dPVerBDr7qJ1yNVCN9qkw4XY.jpg?originalFilename=c5a3904b38eb241dd03dd30889599dc4.jpg&preferredSize=auto\",title:\"Testi image\",type:ControlType.ResponsiveImage},QNj2Iom49:{title:\"Link\",type:ControlType.Link},HcZeYfXkg:{title:\"Poster\",type:ControlType.ResponsiveImage}});addFonts(Framerh8ddtVEdi,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerh8ddtVEdi\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"614\",\"framerVariables\":\"{\\\"pPQAQDUzL\\\":\\\"video\\\",\\\"LHU8SCGl9\\\":\\\"logo\\\",\\\"YgrzGbEnr\\\":\\\"words\\\",\\\"FCmsvljEF\\\":\\\"founder\\\",\\\"VrgpnRbO3\\\":\\\"designation\\\",\\\"ugOuWLXeo\\\":\\\"testiImage\\\",\\\"QNj2Iom49\\\":\\\"link\\\",\\\"HcZeYfXkg\\\":\\\"poster\\\"}\",\"framerIntrinsicWidth\":\"326\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gncFsR4r4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"H70_ATL0Q\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./h8ddtVEdi.map", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SquiggleEffect from\"https://framerusercontent.com/modules/9Utm1i17lc4epzKrGohm/6hlvvHhtDnTvfKnremyK/SquiggleEffect.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import Footer2 from\"#framer/local/canvasComponent/B3PAZe5x6/B3PAZe5x6.js\";import TimelineItem2 from\"#framer/local/canvasComponent/DmAajn4AD/DmAajn4AD.js\";import ComponentFAQList from\"#framer/local/canvasComponent/dXoXXN5g9/dXoXXN5g9.js\";import Circle from\"#framer/local/canvasComponent/dYSifP6Ta/dYSifP6Ta.js\";import Pill from\"#framer/local/canvasComponent/G1SfURbn7/G1SfURbn7.js\";import NavigationNavigationBar from\"#framer/local/canvasComponent/GrzGrX1vd/GrzGrX1vd.js\";import VideoTestimonials from\"#framer/local/canvasComponent/h8ddtVEdi/h8ddtVEdi.js\";import ButtonNew from\"#framer/local/canvasComponent/SmD8M1vi4/SmD8M1vi4.js\";import metadataProvider from\"#framer/local/webPageMetadata/rDs5YgLI6/rDs5YgLI6.js\";const NavigationNavigationBarFonts=getFonts(NavigationNavigationBar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ButtonNewFonts=getFonts(ButtonNew);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const SquiggleEffectFonts=getFonts(SquiggleEffect);const PillFonts=getFonts(Pill);const MotionDivWithFX=withFX(motion.div);const VideoTestimonialsFonts=getFonts(VideoTestimonials);const CarouselFonts=getFonts(Carousel);const ContainerWithFX=withFX(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const TimelineItem2Fonts=getFonts(TimelineItem2);const ImageWithFX=withFX(Image);const ComponentFAQListFonts=getFonts(ComponentFAQList);const Footer2Fonts=getFonts(Footer2);const CircleFonts=getFonts(Circle);const breakpoints={oevY0Ju4Q:\"(min-width: 1200px)\",t3Q4nATC7:\"(max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-a1349\";const variantClassNames={oevY0Ju4Q:\"framer-v-gy5cfx\",t3Q4nATC7:\"framer-v-7v9u6c\"};const transition1={damping:30,delay:0,mass:1,stiffness:140,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-80};const transition2={damping:43,delay:.4,mass:1,stiffness:243,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition3={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:15,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:10,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-14,y:-20};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition4={damping:43,delay:0,mass:1,stiffness:243,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:120};const transition5={damping:60,delay:0,mass:1,stiffness:250,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transition6={damping:44,delay:0,mass:1,stiffness:197,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:36};const transition7={damping:44,delay:.3,mass:1,stiffness:197,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition8={damping:54,delay:.1,mass:1,stiffness:197,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"oevY0Ju4Q\",Phone:\"t3Q4nATC7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"oevY0Ju4Q\"};};const transition9={damping:38,delay:0,mass:1,stiffness:500,type:\"spring\"};const cursor={alignment:\"center\",component:Circle,offset:{x:0,y:0},placement:\"bottom\",transition:transition9,variant:\"B_if1zgyq\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);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=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"t3Q4nATC7\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"t3Q4nATC7\")return true;return false;};const elementId=useRouteElementId(\"z7fVIO8m4\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"sTtys7pcr\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"ZzbML8NQ4\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"tk1PB9EmI\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"tzq1_n8TX\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"TEH9u_ubT\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"s66tOKW8M\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"x2ZsMqaAN\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"XZ4hP2uIN\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"CUvvj_w43\");const ref10=React.useRef(null);const router=useRouter();useCustomCursors({\"1x0ojfq\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"oevY0Ju4Q\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-gy5cfx\",className),\"data-framer-cursor\":\"1x0ojfq\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:92,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-i0feli-container\",\"data-framer-appear-id\":\"i0feli\",initial:animation1,layoutScroll:true,nodeId:\"aZT1lxqN_\",optimized:true,rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{variant:\"jbe4Id8a9\"}},children:/*#__PURE__*/_jsx(NavigationNavigationBar,{height:\"100%\",id:\"aZT1lxqN_\",layoutId:\"aZT1lxqN_\",style:{width:\"100%\"},variant:\"g4Cn8vvSr\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q1u05s\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wgffhc\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-17idklu\",\"data-framer-appear-id\":\"17idklu\",initial:animation3,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-157h5if\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1078j7b\",\"data-framer-name\":\"hero text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodA==\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"We Book \"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(236, 28, 36)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"20-25\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" Calls\"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"Monthly For Marketing Companies\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodA==\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"We Book \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(236, 28, 36)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"20-25\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" Calls Monthly For \"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"Marketing Companies\"})]})}),className:\"framer-5gnwvp\",fonts:[\"FS;Satoshi-light\",\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 92, 92)\"},children:\"We handle the grind of cold outreach, filling your calendar with calls using cold \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 92, 92)\"},children:\"emails. You only pay us for the \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 92, 92)\"},children:\"ones that actually\\xa0show\\xa0up.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 92, 92)\"},children:\"We handle the grind of cold outreach, filling your calendar with calls using cold emails. You only pay us for the ones that actually\\xa0show\\xa0up.\"})}),className:\"framer-7d3wpi\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{y:(componentViewport?.y||0)+0+0+0+27+0+0+61+0+0+424}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+172.2+0+0+48+0+0+127.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eobqtc-container\",nodeId:\"ibYRYUv1X\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(ButtonNew,{height:\"100%\",id:\"ibYRYUv1X\",layoutId:\"ibYRYUv1X\",LdUTnDrRk:\"Book a Call\",variant:\"Adky6EWRt\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wcex7r\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1txoeoo\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+27+0+0+61+516+6+16),pixelHeight:450,pixelWidth:450,src:\"https://framerusercontent.com/images/fxh10tbPXI5so8n9o96MVbdRb8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+172.2+0+0+48+203.6+6+101),pixelHeight:450,pixelWidth:450,src:\"https://framerusercontent.com/images/fxh10tbPXI5so8n9o96MVbdRb8.png\"},className:\"framer-16a3j4r\",\"data-framer-name\":\"Tije3ebpm6fhor06hubb[1]\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(92, 92, 92)\"},children:\"Inc. Verified \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(92, 92, 92)\"},children:\"Profile\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(92, 92, 92)\"},children:\"Inc. Verified \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(92, 92, 92)\"},children:\"Profile\"})]}),className:\"framer-14x13x2\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ki96u\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"7500+\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"7500+\"})})}),className:\"framer-x6y6us\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(92, 92, 92)\"},children:\"Calls Booked\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(92, 92, 92)\"},children:\"Calls Booked\"})}),className:\"framer-1lql90\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1nbzgc6\",\"data-framer-appear-id\":\"1nbzgc6\",initial:animation3,optimized:true,transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 92, 92)\"},children:\"Get on calls with brands like\"})}),className:\"framer-uibbio\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-idnqw2-container hidden-7v9u6c\",\"data-framer-name\":\"Desktop Ticker\",isAuthoredByUser:true,isModuleExternal:true,name:\"Desktop Ticker\",nodeId:\"mjwfrD3oE\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:10,fadeWidth:0,overflow:false},gap:120,height:\"100%\",hoverFactor:1,id:\"mjwfrD3oE\",layoutId:\"mjwfrD3oE\",name:\"Desktop Ticker\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,pixelHeight:184,pixelWidth:800,sizes:\"82px\",src:\"https://framerusercontent.com/images/lyQIdqTfXX7lHiRkchBtXZk3Y4g.png\",srcSet:\"https://framerusercontent.com/images/lyQIdqTfXX7lHiRkchBtXZk3Y4g.png?scale-down-to=512 512w,https://framerusercontent.com/images/lyQIdqTfXX7lHiRkchBtXZk3Y4g.png 800w\"},className:\"framer-1h9jx5b\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:\"128px\",src:\"https://framerusercontent.com/images/gVDslwBLb7jKpxuHTHeUGfjAGoc.png\",srcSet:\"https://framerusercontent.com/images/gVDslwBLb7jKpxuHTHeUGfjAGoc.png?scale-down-to=512 512w,https://framerusercontent.com/images/gVDslwBLb7jKpxuHTHeUGfjAGoc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gVDslwBLb7jKpxuHTHeUGfjAGoc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gVDslwBLb7jKpxuHTHeUGfjAGoc.png 3840w\"},className:\"framer-1arriv6\",\"data-framer-name\":\"OnlyFans-Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:149.6,intrinsicWidth:512,pixelHeight:187,pixelWidth:640,sizes:\"79px\",src:\"https://framerusercontent.com/images/0aRKo30Y1aAf2VJuEpKsuKj6dbM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0aRKo30Y1aAf2VJuEpKsuKj6dbM.png?scale-down-to=512 512w,https://framerusercontent.com/images/0aRKo30Y1aAf2VJuEpKsuKj6dbM.png 640w\"},className:\"framer-1lm4r6y\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:209,pixelWidth:500,src:\"https://framerusercontent.com/images/IrFoA46TAKb6SiVSJoNwZA03QA.png\"},className:\"framer-13lagas\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:245.6,intrinsicWidth:1024,pixelHeight:307,pixelWidth:1280,sizes:\"100px\",src:\"https://framerusercontent.com/images/9cltb7hqxsUW6aNoTdYmaez0Sk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9cltb7hqxsUW6aNoTdYmaez0Sk.png?scale-down-to=512 512w,https://framerusercontent.com/images/9cltb7hqxsUW6aNoTdYmaez0Sk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9cltb7hqxsUW6aNoTdYmaez0Sk.png 1280w\"},className:\"framer-bbfuh8\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:726.4,intrinsicWidth:2048,pixelHeight:908,pixelWidth:2560,sizes:\"62px\",src:\"https://framerusercontent.com/images/QgziJObhc1VtN6TKgEBxgWVWQ4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/QgziJObhc1VtN6TKgEBxgWVWQ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/QgziJObhc1VtN6TKgEBxgWVWQ4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QgziJObhc1VtN6TKgEBxgWVWQ4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QgziJObhc1VtN6TKgEBxgWVWQ4.png 2560w\"},className:\"framer-f6r8l8\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1728,intrinsicWidth:3072,pixelHeight:810,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:\"98px\",src:\"https://framerusercontent.com/images/5ytDWxLCANcIePraILU1ImU3k.png\",srcSet:\"https://framerusercontent.com/images/5ytDWxLCANcIePraILU1ImU3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/5ytDWxLCANcIePraILU1ImU3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5ytDWxLCANcIePraILU1ImU3k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5ytDWxLCANcIePraILU1ImU3k.png 3840w\"},className:\"framer-10ohvlx\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:321.6,intrinsicWidth:1024,pixelHeight:402,pixelWidth:1280,sizes:\"76px\",src:\"https://framerusercontent.com/images/ODn1QKFxKz4jSm8z4nuC1ZYY6s.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ODn1QKFxKz4jSm8z4nuC1ZYY6s.png?scale-down-to=512 512w,https://framerusercontent.com/images/ODn1QKFxKz4jSm8z4nuC1ZYY6s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ODn1QKFxKz4jSm8z4nuC1ZYY6s.png 1280w\"},className:\"framer-d7q5im\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,pixelHeight:330,pixelWidth:800,sizes:\"54px\",src:\"https://framerusercontent.com/images/5YwrmiiNiUQ2zvFbpaF6c7EAUU.png\",srcSet:\"https://framerusercontent.com/images/5YwrmiiNiUQ2zvFbpaF6c7EAUU.png?scale-down-to=512 512w,https://framerusercontent.com/images/5YwrmiiNiUQ2zvFbpaF6c7EAUU.png 800w\"},className:\"framer-g0bs4l\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:400,pixelHeight:160,pixelWidth:500,src:\"https://framerusercontent.com/images/XfH5e06adFSkRoolpbQar6yVcE.png\"},className:\"framer-1k9vo30\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1280,pixelWidth:1200,sizes:\"156px\",src:\"https://framerusercontent.com/images/KlAUaai3o8Sh1TfOlq1jeq3iRE0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KlAUaai3o8Sh1TfOlq1jeq3iRE0.png?scale-down-to=1024 960w,https://framerusercontent.com/images/KlAUaai3o8Sh1TfOlq1jeq3iRE0.png 1200w\"},className:\"framer-1d64ggr\",\"data-framer-name\":\"Harman Kardon_Logo[1]\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1190.4,intrinsicWidth:2048,pixelHeight:929,pixelWidth:1776,sizes:\"46.0588px\",src:\"https://framerusercontent.com/images/TgHmXpBpcTYNUHCJFqcRDtEp9CE.png\",srcSet:\"https://framerusercontent.com/images/TgHmXpBpcTYNUHCJFqcRDtEp9CE.png?scale-down-to=512 512w,https://framerusercontent.com/images/TgHmXpBpcTYNUHCJFqcRDtEp9CE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TgHmXpBpcTYNUHCJFqcRDtEp9CE.png 1776w\"},className:\"framer-1p4wztl\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"97.7778px\",src:\"https://framerusercontent.com/images/85LdGh57wvskKO9RZNizJOIriaQ.png\",srcSet:\"https://framerusercontent.com/images/85LdGh57wvskKO9RZNizJOIriaQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/85LdGh57wvskKO9RZNizJOIriaQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/85LdGh57wvskKO9RZNizJOIriaQ.png 1920w\"},className:\"framer-1d3sb5j\",\"data-framer-name\":\"Brooks-Brothers-Logo@1x 1-1\"})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d7htxd-container hidden-gy5cfx\",\"data-framer-name\":\"Mobile Ticker\",isAuthoredByUser:true,isModuleExternal:true,name:\"Mobile Ticker\",nodeId:\"WQ2VH25Fq\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:10,fadeWidth:0,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"WQ2VH25Fq\",layoutId:\"WQ2VH25Fq\",name:\"Mobile Ticker\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,pixelHeight:184,pixelWidth:800,sizes:\"82px\",src:\"https://framerusercontent.com/images/lyQIdqTfXX7lHiRkchBtXZk3Y4g.png\",srcSet:\"https://framerusercontent.com/images/lyQIdqTfXX7lHiRkchBtXZk3Y4g.png?scale-down-to=512 512w,https://framerusercontent.com/images/lyQIdqTfXX7lHiRkchBtXZk3Y4g.png 800w\"},className:\"framer-1h9jx5b\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:149.6,intrinsicWidth:512,pixelHeight:187,pixelWidth:640,sizes:\"79px\",src:\"https://framerusercontent.com/images/0aRKo30Y1aAf2VJuEpKsuKj6dbM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0aRKo30Y1aAf2VJuEpKsuKj6dbM.png?scale-down-to=512 512w,https://framerusercontent.com/images/0aRKo30Y1aAf2VJuEpKsuKj6dbM.png 640w\"},className:\"framer-1lm4r6y\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:209,pixelWidth:500,src:\"https://framerusercontent.com/images/IrFoA46TAKb6SiVSJoNwZA03QA.png\"},className:\"framer-13lagas\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:245.6,intrinsicWidth:1024,pixelHeight:307,pixelWidth:1280,sizes:\"100px\",src:\"https://framerusercontent.com/images/9cltb7hqxsUW6aNoTdYmaez0Sk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9cltb7hqxsUW6aNoTdYmaez0Sk.png?scale-down-to=512 512w,https://framerusercontent.com/images/9cltb7hqxsUW6aNoTdYmaez0Sk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9cltb7hqxsUW6aNoTdYmaez0Sk.png 1280w\"},className:\"framer-bbfuh8\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:726.4,intrinsicWidth:2048,pixelHeight:908,pixelWidth:2560,sizes:\"62px\",src:\"https://framerusercontent.com/images/QgziJObhc1VtN6TKgEBxgWVWQ4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/QgziJObhc1VtN6TKgEBxgWVWQ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/QgziJObhc1VtN6TKgEBxgWVWQ4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QgziJObhc1VtN6TKgEBxgWVWQ4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QgziJObhc1VtN6TKgEBxgWVWQ4.png 2560w\"},className:\"framer-f6r8l8\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1728,intrinsicWidth:3072,pixelHeight:810,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:\"98px\",src:\"https://framerusercontent.com/images/5ytDWxLCANcIePraILU1ImU3k.png\",srcSet:\"https://framerusercontent.com/images/5ytDWxLCANcIePraILU1ImU3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/5ytDWxLCANcIePraILU1ImU3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5ytDWxLCANcIePraILU1ImU3k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5ytDWxLCANcIePraILU1ImU3k.png 3840w\"},className:\"framer-10ohvlx\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:400,pixelHeight:160,pixelWidth:500,src:\"https://framerusercontent.com/images/XfH5e06adFSkRoolpbQar6yVcE.png\"},className:\"framer-1k9vo30\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:321.6,intrinsicWidth:1024,pixelHeight:402,pixelWidth:1280,sizes:\"76px\",src:\"https://framerusercontent.com/images/ODn1QKFxKz4jSm8z4nuC1ZYY6s.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ODn1QKFxKz4jSm8z4nuC1ZYY6s.png?scale-down-to=512 512w,https://framerusercontent.com/images/ODn1QKFxKz4jSm8z4nuC1ZYY6s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ODn1QKFxKz4jSm8z4nuC1ZYY6s.png 1280w\"},className:\"framer-d7q5im\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,pixelHeight:330,pixelWidth:800,sizes:\"54px\",src:\"https://framerusercontent.com/images/5YwrmiiNiUQ2zvFbpaF6c7EAUU.png\",srcSet:\"https://framerusercontent.com/images/5YwrmiiNiUQ2zvFbpaF6c7EAUU.png?scale-down-to=512 512w,https://framerusercontent.com/images/5YwrmiiNiUQ2zvFbpaF6c7EAUU.png 800w\"},className:\"framer-g0bs4l\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1280,pixelWidth:1200,sizes:\"156px\",src:\"https://framerusercontent.com/images/KlAUaai3o8Sh1TfOlq1jeq3iRE0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KlAUaai3o8Sh1TfOlq1jeq3iRE0.png?scale-down-to=1024 960w,https://framerusercontent.com/images/KlAUaai3o8Sh1TfOlq1jeq3iRE0.png 1200w\"},className:\"framer-1d64ggr\",\"data-framer-name\":\"Harman Kardon_Logo[1]\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1190.4,intrinsicWidth:2048,pixelHeight:929,pixelWidth:1776,sizes:\"46.0588px\",src:\"https://framerusercontent.com/images/TgHmXpBpcTYNUHCJFqcRDtEp9CE.png\",srcSet:\"https://framerusercontent.com/images/TgHmXpBpcTYNUHCJFqcRDtEp9CE.png?scale-down-to=512 512w,https://framerusercontent.com/images/TgHmXpBpcTYNUHCJFqcRDtEp9CE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TgHmXpBpcTYNUHCJFqcRDtEp9CE.png 1776w\"},className:\"framer-1p4wztl\",\"data-framer-name\":\"Image\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-becji1\",\"data-framer-name\":\"Pattern\"}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-9amjsz\",\"data-framer-appear-id\":\"9amjsz\",\"data-framer-name\":\"Scribble\",initial:animation5,optimized:true,style:{rotate:15},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i2wrjo\",\"data-framer-name\":\"Glow\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-htxl2g\",\"data-framer-name\":\"SVG\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 43 76\"><path d=\"M 23.998 4.627 C 23.847 5.383 23.125 5.841 22.688 6.435 C 21.525 8.013 20.539 9.831 19.546 11.521 C 16.6 16.527 13.384 21.361 10.392 26.347 C 7.56 31.067 5.884 35.941 3.567 40.834 C 3.367 41.254 2.467 42.806 3.454 42.258 C 5.204 41.285 9.013 42.054 10.957 42.054 C 11.624 42.054 19.877 41.554 19.93 42.461 C 20.196 46.993 18.4 52.161 17.896 56.7 C 17.529 60 16.816 63.296 16.178 66.553 C 15.793 68.523 15.923 70.703 15.138 72.565 C 14.64 73.75 15.371 72.435 15.478 71.955 C 15.96 69.785 17.076 67.476 17.918 65.423 C 21.141 57.568 26.116 50.725 30.078 43.297 C 33.086 37.657 36.678 32.167 39.66 26.799 C 39.904 26.359 40.936 25.086 40.18 25.691 C 39.42 26.299 37.307 26.542 36.383 26.595 C 31.504 26.874 26.513 29.178 21.76 30.234 C 20.942 30.416 17.464 32.464 18.393 30.256 C 19.756 27.019 19.838 23.254 20.743 19.86 C 21.712 16.229 21.955 12.328 23.093 8.786 C 23.41 7.805 24.212 3.3 24.813 3\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(237, 224, 83)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10247461215,withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tkjxsu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nkJLkwSCt\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(SquiggleEffect,{animation:{animate:true,delay:100,strength:5},font:{fontFamily:'\"Amatic SC\", sans-serif',fontSize:\"36px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"},fontColor:\"rgb(255, 255, 255)\",frequency:70,height:\"100%\",id:\"nkJLkwSCt\",layoutId:\"nkJLkwSCt\",mode:\"overlay\",octaves:5,scale:20,style:{height:\"100%\",width:\"100%\"},text:\"(even layers, graphics, elements, divs, anything)\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e3cpld\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-2ht2xp\",\"data-framer-name\":\"SVG\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 43 76\"><path d=\"M 23.998 4.627 C 23.847 5.383 23.125 5.841 22.688 6.435 C 21.525 8.013 20.539 9.831 19.546 11.521 C 16.6 16.527 13.384 21.361 10.392 26.347 C 7.56 31.067 5.884 35.941 3.567 40.834 C 3.367 41.254 2.467 42.806 3.454 42.258 C 5.204 41.285 9.013 42.054 10.957 42.054 C 11.624 42.054 19.877 41.554 19.93 42.461 C 20.196 46.993 18.4 52.161 17.896 56.7 C 17.529 60 16.816 63.296 16.178 66.553 C 15.793 68.523 15.923 70.703 15.138 72.565 C 14.64 73.75 15.371 72.435 15.478 71.955 C 15.96 69.785 17.076 67.476 17.918 65.423 C 21.141 57.568 26.116 50.725 30.078 43.297 C 33.086 37.657 36.678 32.167 39.66 26.799 C 39.904 26.359 40.936 25.086 40.18 25.691 C 39.42 26.299 37.307 26.542 36.383 26.595 C 31.504 26.874 26.513 29.178 21.76 30.234 C 20.942 30.416 17.464 32.464 18.393 30.256 C 19.756 27.019 19.838 23.254 20.743 19.86 C 21.712 16.229 21.955 12.328 23.093 8.786 C 23.41 7.805 24.212 3.3 24.813 3\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(237, 224, 83)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11324585088,withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7yvcuf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pcjED5n0i\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(SquiggleEffect,{animation:{animate:true,delay:100,strength:100},font:{fontFamily:'\"Amatic SC\", sans-serif',fontSize:\"36px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"},fontColor:\"rgb(255, 255, 255)\",frequency:34,height:\"100%\",id:\"pcjED5n0i\",layoutId:\"pcjED5n0i\",mode:\"overlay\",octaves:5,scale:4,style:{height:\"100%\",width:\"100%\"},text:\"(even layers, graphics, elements, divs, anything)\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a24egc\",\"data-framer-name\":\"hero text\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4gipum\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+1e3+96+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fjr8m6-container\",nodeId:\"KRAaGjOf6\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"KRAaGjOf6\",layoutId:\"KRAaGjOf6\",pEtS4xnDW:\"Our Clients\",variant:\"lH9QQ0DiD\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodA==\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Don\u2019t take our word for It, \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"take theirs\"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodA==\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Don\u2019t take our word for It, \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"take theirs\"})})]})}),className:\"framer-1lzun5l\",fonts:[\"FS;Satoshi-light\",\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 92, 92)\"},children:\"See how companies just like yours ditched the hustle and started closing more deals without lifting a finger.\"})}),className:\"framer-sh5mj7\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-icef1f-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xAwqQ1WyD\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{arrowObject:{arrowFill:\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\",arrowPadding:0,arrowRadius:8,arrowSize:40,showMouseControls:true},fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:0}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\",arrowPadding:20,arrowRadius:8,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:10},gap:36,height:\"100%\",id:\"xAwqQ1WyD\",layoutId:\"xAwqQ1WyD\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1agi7k0-container\",\"data-framer-name\":\"video 1\",inComponentSlot:true,name:\"video 1\",nodeId:\"g3a_TrSnv\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Ryan Allen\",HcZeYfXkg:addImageAlt({pixelHeight:1113,pixelWidth:834,src:\"https://framerusercontent.com/images/Ja24TvqnkyRWc7Off8KVO7UmKko.jpg\",srcSet:\"https://framerusercontent.com/images/Ja24TvqnkyRWc7Off8KVO7UmKko.jpg?scale-down-to=1024 767w,https://framerusercontent.com/images/Ja24TvqnkyRWc7Off8KVO7UmKko.jpg 834w\"},\"\"),height:\"100%\",id:\"g3a_TrSnv\",layoutId:\"g3a_TrSnv\",LHU8SCGl9:addImageAlt({pixelHeight:456,pixelWidth:2984,src:\"https://framerusercontent.com/images/ErzeV8sJ7DP05xKjI14dkxF9c.png\",srcSet:\"https://framerusercontent.com/images/ErzeV8sJ7DP05xKjI14dkxF9c.png?scale-down-to=512 512w,https://framerusercontent.com/images/ErzeV8sJ7DP05xKjI14dkxF9c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ErzeV8sJ7DP05xKjI14dkxF9c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ErzeV8sJ7DP05xKjI14dkxF9c.png 2984w\"},\"\"),name:\"video 1\",pPQAQDUzL:\"https://framerusercontent.com/assets/1fpIS1Fe8hxELIMBNAc5tn0tEw.mp4\",ugOuWLXeo:addImageAlt({pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/I0XiYqGaCaujvKR4fAgv3f6Vns.png\"},\"\"),variant:\"vIVVoUsUN\",VrgpnRbO3:\"Director, That Random Agency\",width:\"100%\",YgrzGbEnr:\"Endy Media filled our pipeline with qualified demos and we can't say enough good things about them.\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rqbhgj-container\",\"data-framer-name\":\"video 2\",inComponentSlot:true,name:\"video 2\",nodeId:\"b9whSppqM\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Eric Seifert\",HcZeYfXkg:addImageAlt({pixelHeight:1113,pixelWidth:834,src:\"https://framerusercontent.com/images/fHWUkFdaAlDy2236sJJrZ2e8g5I.jpg\",srcSet:\"https://framerusercontent.com/images/fHWUkFdaAlDy2236sJJrZ2e8g5I.jpg?scale-down-to=1024 767w,https://framerusercontent.com/images/fHWUkFdaAlDy2236sJJrZ2e8g5I.jpg 834w\"},\"\"),height:\"100%\",id:\"b9whSppqM\",layoutId:\"b9whSppqM\",LHU8SCGl9:addImageAlt({pixelHeight:645,pixelWidth:1e3,src:\"https://framerusercontent.com/images/8H84g1WKhbqdiJs3WlCb049Nq0.png\",srcSet:\"https://framerusercontent.com/images/8H84g1WKhbqdiJs3WlCb049Nq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8H84g1WKhbqdiJs3WlCb049Nq0.png 1000w\"},\"\"),name:\"video 2\",pPQAQDUzL:\"https://framerusercontent.com/assets/oDhI4mNRDkGLi1PcTWIsG0VUk.mp4\",variant:\"vIVVoUsUN\",VrgpnRbO3:\"Co-Founder, Good Hope Advisors\",width:\"100%\",YgrzGbEnr:\"We've worked with a lot of companies that claim to be bigger than Endy but these guys have blown them away.\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ev7e1l-container\",\"data-framer-name\":\"video 3\",inComponentSlot:true,name:\"video 3\",nodeId:\"m2WrgN7RO\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"David Jaffin\",HcZeYfXkg:addImageAlt({pixelHeight:1113,pixelWidth:834,src:\"https://framerusercontent.com/images/TQjH8g3wAnLLBdHnoQVI6agdfC8.jpg\",srcSet:\"https://framerusercontent.com/images/TQjH8g3wAnLLBdHnoQVI6agdfC8.jpg?scale-down-to=1024 767w,https://framerusercontent.com/images/TQjH8g3wAnLLBdHnoQVI6agdfC8.jpg 834w\"},\"\"),height:\"100%\",id:\"m2WrgN7RO\",layoutId:\"m2WrgN7RO\",LHU8SCGl9:addImageAlt({pixelHeight:432,pixelWidth:2092,src:\"https://framerusercontent.com/images/sfP2cg6hbUY5gqYgE3QmMQkwrvo.png\",srcSet:\"https://framerusercontent.com/images/sfP2cg6hbUY5gqYgE3QmMQkwrvo.png?scale-down-to=512 512w,https://framerusercontent.com/images/sfP2cg6hbUY5gqYgE3QmMQkwrvo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sfP2cg6hbUY5gqYgE3QmMQkwrvo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/sfP2cg6hbUY5gqYgE3QmMQkwrvo.png 2092w\"},\"\"),name:\"video 3\",pPQAQDUzL:\"https://framerusercontent.com/assets/I6BFNu6MjhyETuuRMMwrG52aEM.mp4\",variant:\"vIVVoUsUN\",VrgpnRbO3:\"CMO, Open Fortune\",width:\"100%\",YgrzGbEnr:\"After working with many BDR firms, I nearly gave up\u2014until Endy. They've been the best,\\xa0hands\\xa0down.\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19qohps-container\",\"data-framer-name\":\"video 4\",inComponentSlot:true,name:\"video 4\",nodeId:\"IJ_Vxjh5Q\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Vikram Rajan\",HcZeYfXkg:addImageAlt({pixelHeight:1113,pixelWidth:834,src:\"https://framerusercontent.com/images/Ixi5fVgLqJ8FnKixQGtCsblDPe0.jpg\",srcSet:\"https://framerusercontent.com/images/Ixi5fVgLqJ8FnKixQGtCsblDPe0.jpg?scale-down-to=1024 767w,https://framerusercontent.com/images/Ixi5fVgLqJ8FnKixQGtCsblDPe0.jpg 834w\"},\"\"),height:\"100%\",id:\"IJ_Vxjh5Q\",layoutId:\"IJ_Vxjh5Q\",LHU8SCGl9:addImageAlt({pixelHeight:188,pixelWidth:1316,src:\"https://framerusercontent.com/images/OTyRyFVAb9OJqmH8prJZ2oeLg8.png\",srcSet:\"https://framerusercontent.com/images/OTyRyFVAb9OJqmH8prJZ2oeLg8.png?scale-down-to=512 512w,https://framerusercontent.com/images/OTyRyFVAb9OJqmH8prJZ2oeLg8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OTyRyFVAb9OJqmH8prJZ2oeLg8.png 1316w\"},\"\"),name:\"video 4\",pPQAQDUzL:\"https://framerusercontent.com/assets/rkUj79t3aMlIkcmSM0bfwbjeTY.mp4\",variant:\"vIVVoUsUN\",VrgpnRbO3:\"Co-Founder, Videosocials VIP\",width:\"100%\",YgrzGbEnr:\"Endy Media has been scheduling qualified prospects on our calendar and the ROI has been spectacular.\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z811lc-container\",\"data-framer-name\":\"video 5\",inComponentSlot:true,name:\"video 5\",nodeId:\"F_bmg4yw4\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Logan\",HcZeYfXkg:addImageAlt({pixelHeight:1113,pixelWidth:834,src:\"https://framerusercontent.com/images/EAwh4izIg1L5lMGt68KrnO05Y.jpg\",srcSet:\"https://framerusercontent.com/images/EAwh4izIg1L5lMGt68KrnO05Y.jpg?scale-down-to=1024 767w,https://framerusercontent.com/images/EAwh4izIg1L5lMGt68KrnO05Y.jpg 834w\"},\"\"),height:\"100%\",id:\"F_bmg4yw4\",layoutId:\"F_bmg4yw4\",LHU8SCGl9:addImageAlt({pixelHeight:37,pixelWidth:220,src:\"https://framerusercontent.com/images/HibjEesCzQQGo5sWUAvL8yYN9rg.webp\"},\"\"),name:\"video 5\",pPQAQDUzL:\"https://framerusercontent.com/assets/BWlJ2gsPvfus2hA0b3Tl8nWmjo.mp4\",variant:\"vIVVoUsUN\",VrgpnRbO3:\"Director of Marketing, Get More reviews\",width:\"100%\",YgrzGbEnr:\"We've tried every BDR firm under the sun and nothing comes close to Endy Media!\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vusxq4-container\",\"data-framer-name\":\"video 8\",inComponentSlot:true,name:\"video 8\",nodeId:\"zYmpoYxUP\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Jonathan Lindsay\",HcZeYfXkg:addImageAlt({pixelHeight:712,pixelWidth:406,src:\"https://framerusercontent.com/images/cJpOpugVmRpOYfzcZag7WdzkAQ.png\",srcSet:\"https://framerusercontent.com/images/cJpOpugVmRpOYfzcZag7WdzkAQ.png 406w\"},\"\"),height:\"100%\",id:\"zYmpoYxUP\",layoutId:\"zYmpoYxUP\",LHU8SCGl9:addImageAlt({pixelHeight:100,pixelWidth:600,src:\"https://framerusercontent.com/images/wBAUMOuI8jeXYEJNHmjC83LVyQ.webp\",srcSet:\"https://framerusercontent.com/images/wBAUMOuI8jeXYEJNHmjC83LVyQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/wBAUMOuI8jeXYEJNHmjC83LVyQ.webp 600w\"},\"\"),name:\"video 8\",pPQAQDUzL:\"https://framerusercontent.com/assets/PQri92L1P8ArPhnhHCeDlavSwY.mp4\",variant:\"vIVVoUsUN\",VrgpnRbO3:\"CEO, Quantum Qube\",width:\"100%\",YgrzGbEnr:\"Endy has been of special help for us. They've set up our mailboxes and I'm very happy with what I've got from them.\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y4f7ds-container\",\"data-framer-name\":\"video 9\",inComponentSlot:true,name:\"video 9\",nodeId:\"t6Hh1z5BG\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Louis Suggett\",HcZeYfXkg:addImageAlt({pixelHeight:715,pixelWidth:400,src:\"https://framerusercontent.com/images/UX0sqIymsjRnIWTzlxIqpMxwc.png\",srcSet:\"https://framerusercontent.com/images/UX0sqIymsjRnIWTzlxIqpMxwc.png 400w\"},\"\"),height:\"100%\",id:\"t6Hh1z5BG\",layoutId:\"t6Hh1z5BG\",LHU8SCGl9:addImageAlt({pixelHeight:118,pixelWidth:200,src:\"https://framerusercontent.com/images/gOk0nCgwmaaeTEWRLVi60Fg8PWY.png\"},\"\"),name:\"video 9\",pPQAQDUzL:\"https://framerusercontent.com/assets/Bu14ZOZkvCQmLL6h3C148j0YdQ.mp4\",variant:\"vIVVoUsUN\",VrgpnRbO3:\"Co-Founder, Bounce\",width:\"100%\",YgrzGbEnr:\"We've used Endy for months, and their prompt responses at any time are unmatched. Highly recommend them!\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qj4rk3-container\",\"data-framer-name\":\"video 11\",inComponentSlot:true,name:\"video 11\",nodeId:\"hpTK1zHjz\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Marcus Lewis\",HcZeYfXkg:addImageAlt({pixelHeight:521,pixelWidth:392,src:\"https://framerusercontent.com/images/hKsUqmuiwMnK6aAnAP22TPVcbk.png\",srcSet:\"https://framerusercontent.com/images/hKsUqmuiwMnK6aAnAP22TPVcbk.png 392w\"},\"\"),height:\"100%\",id:\"hpTK1zHjz\",layoutId:\"hpTK1zHjz\",LHU8SCGl9:addImageAlt({pixelHeight:105,pixelWidth:320,src:\"https://framerusercontent.com/images/oOYNZfJtqexpCoLAcxMVpn66PVo.png\"},\"\"),name:\"video 11\",pPQAQDUzL:\"https://framerusercontent.com/assets/pWeDdCzf10eN8HuYNlJopuCkk.mp4\",variant:\"vIVVoUsUN\",VrgpnRbO3:\"President, InspireAI Consulting\",width:\"100%\",YgrzGbEnr:\"The boys at Endy are so helpful, I can reach out to them at any time of the day and they're always there.\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16lvnjh-container\",\"data-framer-name\":\"video 6\",inComponentSlot:true,name:\"video 6\",nodeId:\"aOEkKwmKO\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Stuti Agarwal\",HcZeYfXkg:addImageAlt({pixelHeight:1113,pixelWidth:834,src:\"https://framerusercontent.com/images/9GREoIzAtcO6d5Ogf0k8yfemE.jpg\",srcSet:\"https://framerusercontent.com/images/9GREoIzAtcO6d5Ogf0k8yfemE.jpg?scale-down-to=1024 767w,https://framerusercontent.com/images/9GREoIzAtcO6d5Ogf0k8yfemE.jpg 834w\"},\"\"),height:\"100%\",id:\"aOEkKwmKO\",layoutId:\"aOEkKwmKO\",LHU8SCGl9:addImageAlt({pixelHeight:122,pixelWidth:738,src:\"https://framerusercontent.com/images/Qt3lizAzyZaKQA6vH5vqpaJXQ.png\",srcSet:\"https://framerusercontent.com/images/Qt3lizAzyZaKQA6vH5vqpaJXQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Qt3lizAzyZaKQA6vH5vqpaJXQ.png 738w\"},\"\"),name:\"video 6\",pPQAQDUzL:\"https://framerusercontent.com/assets/sPAMe0L6btJJS3vQelo9jLA998w.mp4\",variant:\"vIVVoUsUN\",VrgpnRbO3:\"B2B Marketer, Voxturr\",width:\"100%\",YgrzGbEnr:\"After a few months with Endy, we've seen not just more demos, but also a significant improvement in\\xa0their\\xa0quality.\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bvcaef-container\",\"data-framer-name\":\"video 10\",inComponentSlot:true,name:\"video 10\",nodeId:\"HNp9ZQ1JX\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Tyler\",HcZeYfXkg:addImageAlt({pixelHeight:710,pixelWidth:555,src:\"https://framerusercontent.com/images/4f9BQw5rqq68nxYMnuOqpz1Kkmk.png\",srcSet:\"https://framerusercontent.com/images/4f9BQw5rqq68nxYMnuOqpz1Kkmk.png 555w\"},\"\"),height:\"100%\",id:\"HNp9ZQ1JX\",layoutId:\"HNp9ZQ1JX\",LHU8SCGl9:addImageAlt({pixelHeight:410,pixelWidth:2e3,src:\"https://framerusercontent.com/images/5eZVuB6xIt6MgNEBOmEdKMXQyM.png\",srcSet:\"https://framerusercontent.com/images/5eZVuB6xIt6MgNEBOmEdKMXQyM.png?scale-down-to=512 512w,https://framerusercontent.com/images/5eZVuB6xIt6MgNEBOmEdKMXQyM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5eZVuB6xIt6MgNEBOmEdKMXQyM.png 2000w\"},\"\"),name:\"video 10\",pPQAQDUzL:\"https://framerusercontent.com/assets/OvFyMDfttf9aJV3xNZn0GpUbxHg.mp4\",variant:\"vIVVoUsUN\",VrgpnRbO3:\"Owner, AMPLIS\",width:\"100%\",YgrzGbEnr:\"Need inboxes for outreach? Use Endy\u2014they handle everything. Just fill out a form, and you're good to go!\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13xns4m-container\",\"data-framer-name\":\"video 7\",inComponentSlot:true,name:\"video 7\",nodeId:\"P_BiJvIuI\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Aseem Asthana\",HcZeYfXkg:addImageAlt({pixelHeight:1113,pixelWidth:834,src:\"https://framerusercontent.com/images/ef6Wq0Flszcj0EU0wFvvY0xDAdM.jpg\",srcSet:\"https://framerusercontent.com/images/ef6Wq0Flszcj0EU0wFvvY0xDAdM.jpg?scale-down-to=1024 767w,https://framerusercontent.com/images/ef6Wq0Flszcj0EU0wFvvY0xDAdM.jpg 834w\"},\"\"),height:\"100%\",id:\"P_BiJvIuI\",layoutId:\"P_BiJvIuI\",LHU8SCGl9:addImageAlt({pixelHeight:64,pixelWidth:309,src:\"https://framerusercontent.com/images/4WxoPefdZHymt5d0aKKR6xbCuw.png\"},\"\"),name:\"video 7\",pPQAQDUzL:\"https://framerusercontent.com/assets/ifjSZ0Wf3MWutLYz2Z1CDMm77M.mp4\",variant:\"vIVVoUsUN\",VrgpnRbO3:\"CEO, Amolino AI\",width:\"100%\",YgrzGbEnr:\"The boys at Endy are very communicative and extremely proficient at what they do. Highly recommended\"})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5k14q4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1adf9av\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss04' on, 'ss05' on\",\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"37px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18))\"},children:[\"We focus on ROI by booking calls with brands you want to work with through cold \",/*#__PURE__*/_jsx(\"br\",{}),\"emails. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\"},children:\"You only pay for the ones that show up\"}),\". \",/*#__PURE__*/_jsx(\"br\",{}),\"We create, manage and run everything \",/*#__PURE__*/_jsx(\"br\",{}),\"with 0 effort\\xa0on\\xa0your\\xa0part.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss04' on, 'ss05' on\",\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"37px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, rgb(18, 18, 18))\"},children:[\"We focus on ROI by booking calls with brands you want to work \",/*#__PURE__*/_jsx(\"br\",{}),\"with through cold emails. \",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\"},children:[\"You only pay for the ones that \",/*#__PURE__*/_jsx(\"br\",{}),\"show up\"]}),\". We create, manage and run everything \",/*#__PURE__*/_jsx(\"br\",{}),\"with 0 effort\\xa0on\\xa0your\\xa0part.\"]})}),className:\"framer-1qdl5t4\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{y:(componentViewport?.y||0)+0+1514.6+160+101}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+1568.6+96+101,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qmcbfx-container\",nodeId:\"aRc_KqbdF\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(ButtonNew,{height:\"100%\",id:\"aRc_KqbdF\",layoutId:\"aRc_KqbdF\",LdUTnDrRk:\"Book a Call\",variant:\"Adky6EWRt\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bitg8r\",\"data-framer-name\":\"Our Process\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kso25u\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{y:(componentViewport?.y||0)+0+1979.6+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+1905.6+96+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n2u13c-container\",nodeId:\"pLI1o2Ex5\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"pLI1o2Ex5\",layoutId:\"pLI1o2Ex5\",pEtS4xnDW:\"Our Process\",variant:\"lH9QQ0DiD\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:[\"How do we connect you with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\"},children:\"brands\"}),\"?\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:[\"How do we connect you with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\"},children:\"brands\"}),\"?\"]})}),className:\"framer-373gh6\",\"data-framer-appear-id\":\"373gh6\",fonts:[\"FS;Satoshi-regular\"],initial:animation10,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation11,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 92, 92)\"},children:\"Simple, proven steps that take the heavy lifting off your shoulders and books \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 92, 92)\"},children:\"calls that are ready to be closed.\"})]}),className:\"framer-c7wvx5\",\"data-framer-appear-id\":\"c7wvx5\",fonts:[\"FS;Satoshi-regular\"],initial:animation10,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-upw0hq\",\"data-framer-name\":\"steps\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+1979.6+0+216.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:471,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1905.6+96+222.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-do2po7-container\",id:elementId2,nodeId:\"ZzbML8NQ4\",ref:ref3,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{variant:\"PN4zB7pEF\"}},children:/*#__PURE__*/_jsx(TimelineItem2,{AKZK3QP_R:\"Getting Started\",height:\"100%\",Hia1LsgDC:ref3,id:\"ZzbML8NQ4\",Iltzd6lgG:true,layoutId:\"ZzbML8NQ4\",QGZG2jrpt:\"Quick Kickoff\",SFGHsTrJN:\"We hop on a quick call where you tell us what you offer and what brands you want to target.\",style:{width:\"100%\"},UJyQQ0kc1:\"01\",variant:\"GE20RMVR7\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+1979.6+0+216.2+0+471}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:471,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1905.6+96+222.2+0+471,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cakmh-container\",id:elementId3,nodeId:\"tk1PB9EmI\",ref:ref4,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{variant:\"PN4zB7pEF\"}},children:/*#__PURE__*/_jsx(TimelineItem2,{AKZK3QP_R:\"We Handle Everything\",height:\"100%\",Hia1LsgDC:ref4,id:\"tk1PB9EmI\",Iltzd6lgG:true,layoutId:\"tk1PB9EmI\",QGZG2jrpt:\"Infrastructure Setup\",SFGHsTrJN:\"We set everything up \u2014 Inboxes, domains, sending \u2014 all done for you.\",style:{width:\"100%\"},UJyQQ0kc1:\"02\",variant:\"GE20RMVR7\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+1979.6+0+216.2+0+942}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:471,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1905.6+96+222.2+0+942,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jp76pv-container\",id:elementId4,nodeId:\"tzq1_n8TX\",ref:ref5,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{variant:\"PN4zB7pEF\"}},children:/*#__PURE__*/_jsx(TimelineItem2,{AKZK3QP_R:\"Finding the Right People\",height:\"100%\",Hia1LsgDC:ref5,id:\"tzq1_n8TX\",Iltzd6lgG:true,layoutId:\"tzq1_n8TX\",QGZG2jrpt:\"ICP Mapping\",SFGHsTrJN:\"We find the decision-makers at the right brands who're actually interested.\",style:{width:\"100%\"},UJyQQ0kc1:\"03\",variant:\"GE20RMVR7\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+1979.6+0+216.2+0+1413}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:471,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1905.6+96+222.2+0+1413,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hvvdhl-container\",id:elementId5,nodeId:\"TEH9u_ubT\",ref:ref6,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{variant:\"PN4zB7pEF\"}},children:/*#__PURE__*/_jsx(TimelineItem2,{AKZK3QP_R:\"Writing to Get Replies\",height:\"100%\",Hia1LsgDC:ref6,id:\"TEH9u_ubT\",Iltzd6lgG:true,layoutId:\"TEH9u_ubT\",QGZG2jrpt:\"Crafting Copies\",SFGHsTrJN:\"We write cold emails that don\u2019t feel cold. They're personalized, punchy, and built to get replies.\",style:{width:\"100%\"},UJyQQ0kc1:\"04\",variant:\"GE20RMVR7\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+1979.6+0+216.2+0+1884}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:471,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1905.6+96+222.2+0+1884,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12y28l6-container\",id:elementId6,nodeId:\"s66tOKW8M\",ref:ref7,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{variant:\"PN4zB7pEF\"}},children:/*#__PURE__*/_jsx(TimelineItem2,{AKZK3QP_R:\"Going Live\",height:\"100%\",Hia1LsgDC:ref7,id:\"s66tOKW8M\",Iltzd6lgG:true,layoutId:\"s66tOKW8M\",QGZG2jrpt:\"Campaign Launch\",SFGHsTrJN:\"You review everything, approve/tweak it, campaigns go live and we start getting positive leads.\",style:{width:\"100%\"},UJyQQ0kc1:\"05\",variant:\"GE20RMVR7\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+1979.6+0+216.2+0+2355}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:471,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1905.6+96+222.2+0+2355,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zj3hal-container\",id:elementId7,nodeId:\"x2ZsMqaAN\",ref:ref8,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{variant:\"PN4zB7pEF\"}},children:/*#__PURE__*/_jsx(TimelineItem2,{AKZK3QP_R:\"Achieving ROI\",height:\"100%\",Hia1LsgDC:ref8,id:\"x2ZsMqaAN\",Iltzd6lgG:false,layoutId:\"x2ZsMqaAN\",QGZG2jrpt:\"Booking Calls\",SFGHsTrJN:\"We start booking calls. You just show up and close deals. We tweak and scale what\u2019s working.\",style:{width:\"100%\"},UJyQQ0kc1:\"06\",variant:\"GE20RMVR7\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m69fby\",\"data-framer-name\":\"hero text\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xfiaob\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{y:(componentViewport?.y||0)+0+5069.8+48+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+5209.8+96+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-156q0x3-container\",nodeId:\"L4NeKJpQi\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"L4NeKJpQi\",layoutId:\"L4NeKJpQi\",pEtS4xnDW:\"Our Reach\",variant:\"lH9QQ0DiD\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:[\"Clients in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\"},children:\"26+ \"}),\"countries\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:[\"Clients in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\"},children:\"26+ \"}),\"countries\"]})}),className:\"framer-qt1ztp\",\"data-framer-appear-id\":\"qt1ztp\",fonts:[\"FS;Satoshi-regular\"],initial:animation10,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation11,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 92, 92)\"},children:\"We\u2019ve helped marketing companies across 26+ countries automate their client acquisition, book more calls, and sign better brands\u2014all they had to do was fill a form :)\"})}),className:\"framer-1w6bznr\",\"data-framer-appear-id\":\"1w6bznr\",fonts:[\"FS;Satoshi-regular\"],initial:animation10,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ekycql\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5069.8+48+378.6+0),pixelHeight:2592,pixelWidth:3744,positionX:\"center\",positionY:\"center\",sizes:\"1248px\",src:\"https://framerusercontent.com/images/tX77Xsxc43iAvhEvjKcrEvFdxk.png\",srcSet:\"https://framerusercontent.com/images/tX77Xsxc43iAvhEvjKcrEvFdxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/tX77Xsxc43iAvhEvjKcrEvFdxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tX77Xsxc43iAvhEvjKcrEvFdxk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tX77Xsxc43iAvhEvjKcrEvFdxk.png 3744w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5209.8+96+408.6+0),pixelHeight:2592,pixelWidth:3744,positionX:\"center\",positionY:\"center\",sizes:\"1248px\",src:\"https://framerusercontent.com/images/tX77Xsxc43iAvhEvjKcrEvFdxk.png\",srcSet:\"https://framerusercontent.com/images/tX77Xsxc43iAvhEvjKcrEvFdxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/tX77Xsxc43iAvhEvjKcrEvFdxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tX77Xsxc43iAvhEvjKcrEvFdxk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tX77Xsxc43iAvhEvjKcrEvFdxk.png 3744w\"},className:\"framer-l5ew2l\",\"data-framer-name\":\"World Map without bg 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5069.8+48+378.6+0),pixelHeight:1875,pixelWidth:2708,sizes:\"1248px\",src:\"https://framerusercontent.com/images/g3Xk6rt8vhGQptijTf0y1XWbQ.png\",srcSet:\"https://framerusercontent.com/images/g3Xk6rt8vhGQptijTf0y1XWbQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/g3Xk6rt8vhGQptijTf0y1XWbQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g3Xk6rt8vhGQptijTf0y1XWbQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/g3Xk6rt8vhGQptijTf0y1XWbQ.png 2708w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation12,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5209.8+96+408.6+0),pixelHeight:1875,pixelWidth:2708,sizes:\"1248px\",src:\"https://framerusercontent.com/images/g3Xk6rt8vhGQptijTf0y1XWbQ.png\",srcSet:\"https://framerusercontent.com/images/g3Xk6rt8vhGQptijTf0y1XWbQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/g3Xk6rt8vhGQptijTf0y1XWbQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g3Xk6rt8vhGQptijTf0y1XWbQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/g3Xk6rt8vhGQptijTf0y1XWbQ.png 2708w\"},className:\"framer-1ji8eon\",\"data-framer-name\":\"Our clients without bg 1\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g641hi\",\"data-framer-name\":\"hero text\",id:elementId9,ref:ref10,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nis3uy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{y:(componentViewport?.y||0)+0+6408.4+48+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+6626.4+96+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3711rv-container\",nodeId:\"NezvozAHd\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"NezvozAHd\",layoutId:\"NezvozAHd\",pEtS4xnDW:\"Testimonials\",variant:\"lH9QQ0DiD\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:[\"There's a reason people are \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\"},children:\"raving\"}),\" about us.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:[\"There's a reason people are \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-41904754-490e-4543-be1e-014674ea287a, rgb(236, 28, 36))\"},children:\"raving\"}),\" about us.\"]})}),className:\"framer-16urmr5\",\"data-framer-appear-id\":\"16urmr5\",fonts:[\"FS;Satoshi-regular\"],initial:animation10,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1s62ruy\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5axudh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WymoHP3qy\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"WymoHP3qy\",layoutId:\"WymoHP3qy\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c3436c-container\",inComponentSlot:true,nodeId:\"TNcmVRmYl\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Tyler\",height:\"100%\",id:\"TNcmVRmYl\",layoutId:\"TNcmVRmYl\",QNj2Iom49:\"https://endymedia.com/case-study/amplis\",ugOuWLXeo:addImageAlt({pixelHeight:263,pixelWidth:203,src:\"https://framerusercontent.com/images/vNzXyOeE9dpPijiPg3ux7eslds.png\"},\"\"),variant:\"gncFsR4r4\",VrgpnRbO3:\"Owner | AMPLIS\",width:\"100%\",YgrzGbEnr:\"Need automated appointments for your business? Use Endy\u2014they handle everything. Just fill out a form, and you're good to go!\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fAbUFNOLo:\"voxturr\"},unresolvedPathSlugs:{fAbUFNOLo:{collectionId:\"HWN6ioU8T\",collectionItemId:\"B3I0FuhFg\"}},webPageId:\"RzrBGwCPn\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18q5wc8-container\",inComponentSlot:true,nodeId:\"FLoyNzTPA\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Manish Tahiliani\",height:\"100%\",id:\"FLoyNzTPA\",layoutId:\"FLoyNzTPA\",QNj2Iom49:resolvedLinks[0],ugOuWLXeo:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/AhRUJhio6Cb6SS5meBWczmoYNU.jpg\",srcSet:\"https://framerusercontent.com/images/AhRUJhio6Cb6SS5meBWczmoYNU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AhRUJhio6Cb6SS5meBWczmoYNU.jpg 800w\"},\"\"),variant:\"gncFsR4r4\",VrgpnRbO3:\"CEO | Voxturr\",width:\"100%\",YgrzGbEnr:\"Partnering with Endy transformed our outreach. Their cold email setup streamlined our workflow, enabling us to scale and connect with high-potential clients we hadn\u2019t reached before.\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fAbUFNOLo:\"that-random-agency\"},unresolvedPathSlugs:{fAbUFNOLo:{collectionId:\"HWN6ioU8T\",collectionItemId:\"oOGM07SFZ\"}},webPageId:\"RzrBGwCPn\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uig40b-container\",inComponentSlot:true,nodeId:\"vT1LMXpzk\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Ryan Allen\",height:\"100%\",id:\"vT1LMXpzk\",layoutId:\"vT1LMXpzk\",LHU8SCGl9:addImageAlt({pixelHeight:252,pixelWidth:258,src:\"https://framerusercontent.com/images/L9LMG9lonVC0YvLVT051FyzWRc.jpg\"},\"\"),QNj2Iom49:resolvedLinks1[0],ugOuWLXeo:addImageAlt({pixelHeight:275,pixelWidth:253,src:\"https://framerusercontent.com/images/isj6psb87SeQKzPOEMoNWnsk.jpg\"},\"\"),variant:\"gncFsR4r4\",VrgpnRbO3:\"Director | That Random Agency\",width:\"100%\",YgrzGbEnr:\"In just two months, Endy booked 66 perfectly aligned meetings, redefining our lead generation. Their precision allowed us to focus fully on scaling without compromising on quality.\"})})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4pfgq6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qH33V2Y7r\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"qH33V2Y7r\",layoutId:\"qH33V2Y7r\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fAbUFNOLo:\"video-socials\"},unresolvedPathSlugs:{fAbUFNOLo:{collectionId:\"HWN6ioU8T\",collectionItemId:\"HD0ebvOeK\"}},webPageId:\"RzrBGwCPn\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v37edz-container\",inComponentSlot:true,nodeId:\"e0c5kR24k\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Vikram Rajan\",height:\"100%\",id:\"e0c5kR24k\",layoutId:\"e0c5kR24k\",QNj2Iom49:resolvedLinks2[0],ugOuWLXeo:addImageAlt({pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/oS49Zrrr7002MmdPYmva94R2xQ.jpg\"},\"\"),variant:\"gncFsR4r4\",VrgpnRbO3:\"Founder | Video Socials\",width:\"100%\",YgrzGbEnr:\"Endy Media\u2019s expertise brought us 231 valuable meetings in 8 months. Their insights helped refine our campaigns, maximizing engagement and delivering impressive outreach results.\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fAbUFNOLo:\"sirfred-group\"},unresolvedPathSlugs:{fAbUFNOLo:{collectionId:\"HWN6ioU8T\",collectionItemId:\"i7m93NvBj\"}},webPageId:\"RzrBGwCPn\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dkryu9-container\",inComponentSlot:true,nodeId:\"R7w_9LL4R\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Francesca Rossi\",height:\"100%\",id:\"R7w_9LL4R\",layoutId:\"R7w_9LL4R\",QNj2Iom49:resolvedLinks3[0],ugOuWLXeo:addImageAlt({pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/Zpr5chTdtGgLiYFaOpqotn0NLU.jpg\"},\"\"),variant:\"gncFsR4r4\",VrgpnRbO3:\"Director | SirFred Group\",width:\"100%\",YgrzGbEnr:\"Endy\u2019s strategic outreach was transformative, delivering 70+ meetings in sectors we hadn\u2019t previously tapped. Their personalized approach gave us a unique edge with high-value clients.\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fAbUFNOLo:\"open-fortune\"},unresolvedPathSlugs:{fAbUFNOLo:{collectionId:\"HWN6ioU8T\",collectionItemId:\"dE0pzIOxL\"}},webPageId:\"RzrBGwCPn\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l6phoh-container\",inComponentSlot:true,nodeId:\"Uewp237NI\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"David Jaffin\",height:\"100%\",id:\"Uewp237NI\",layoutId:\"Uewp237NI\",QNj2Iom49:resolvedLinks4[0],ugOuWLXeo:addImageAlt({pixelHeight:319,pixelWidth:404,src:\"https://framerusercontent.com/images/7vLYIVZE8qOF9Vaw0KtgQ8cNUWQ.jpg\"},\"\"),variant:\"gncFsR4r4\",VrgpnRbO3:\"CMO | Open Fortune\",width:\"100%\",YgrzGbEnr:\"Endy helped us lock in 32 top-tier meetings in one month, focusing on prospects that truly fit. Their targeted strategy saved resources and improved our outreach efficiency tremendously.\"})})})})],speed:45,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1isbipi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"v22i1UK9Y\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"v22i1UK9Y\",layoutId:\"v22i1UK9Y\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fAbUFNOLo:\"good-hope-advisors\"},unresolvedPathSlugs:{fAbUFNOLo:{collectionId:\"HWN6ioU8T\",collectionItemId:\"RtEWUytpS\"}},webPageId:\"RzrBGwCPn\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yclnx8-container\",inComponentSlot:true,nodeId:\"zzs_edMNZ\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Josh Gladke\",height:\"100%\",id:\"zzs_edMNZ\",layoutId:\"zzs_edMNZ\",QNj2Iom49:resolvedLinks5[0],ugOuWLXeo:addImageAlt({pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/SaRxp5LRYMgUrSTLIEcwyhbxz8.jpg\"},\"\"),variant:\"gncFsR4r4\",VrgpnRbO3:\"Owner | Good Hope Advisors\",width:\"100%\",YgrzGbEnr:\"Endy\u2019s customized strategies secured 27 productive meetings in two weeks, optimizing our time and driving client growth through engaging, effective outreach.\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fAbUFNOLo:\"algofy\"},unresolvedPathSlugs:{fAbUFNOLo:{collectionId:\"HWN6ioU8T\",collectionItemId:\"eFoxsxhdg\"}},webPageId:\"RzrBGwCPn\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ca2t76-container\",inComponentSlot:true,nodeId:\"MRX3cZe3v\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Marti\",height:\"100%\",id:\"MRX3cZe3v\",layoutId:\"MRX3cZe3v\",QNj2Iom49:resolvedLinks6[0],ugOuWLXeo:addImageAlt({pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/Y0DV85L19fRsepcdBnr5BrttuE.jpg\"},\"\"),variant:\"gncFsR4r4\",VrgpnRbO3:\"Partner | Algofy\",width:\"100%\",YgrzGbEnr:\"Endy\u2019s approach delivered 39 impactful meetings within a month. Their insights into client behavior helped us refine targeting, making each outreach effort highly effective.\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fAbUFNOLo:\"amolino-ai\"},unresolvedPathSlugs:{fAbUFNOLo:{collectionId:\"HWN6ioU8T\",collectionItemId:\"NYZ03RvLM\"}},webPageId:\"RzrBGwCPn\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p81l59-container\",inComponentSlot:true,nodeId:\"Ljy6XGNLW\",rendersWithMotion:true,scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(VideoTestimonials,{FCmsvljEF:\"Aseem Asthana\",height:\"100%\",id:\"Ljy6XGNLW\",layoutId:\"Ljy6XGNLW\",QNj2Iom49:resolvedLinks7[0],ugOuWLXeo:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/6x9JkfF8C5LGKhZgRYdW8uF7Eq0.jpg\",srcSet:\"https://framerusercontent.com/images/6x9JkfF8C5LGKhZgRYdW8uF7Eq0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6x9JkfF8C5LGKhZgRYdW8uF7Eq0.jpg 800w\"},\"\"),variant:\"gncFsR4r4\",VrgpnRbO3:\"CEO | Amolino AI\",width:\"100%\",YgrzGbEnr:\"Working with Endy was a turning point. They refined our messaging, reached key decision-makers, and their follow-up strategy kept us front-of-mind, leading to valuable new connections.\"})})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-p4zl12\",\"data-framer-name\":\"hero text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 800px)`,y:(componentViewport?.y||0)+0+7605.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:434,width:`min(${componentViewport?.width||\"100vw\"}, 800px)`,y:(componentViewport?.y||0)+0+7738.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ewxu90-container\",nodeId:\"TPaCTO82A\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(ComponentFAQList,{height:\"100%\",id:\"TPaCTO82A\",layoutId:\"TPaCTO82A\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-srs4ba\",\"data-border\":true,\"data-framer-name\":\"CTA\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-i523u1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ywdf1\",\"data-framer-name\":\"Banner\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2eusl5\",\"data-framer-name\":\"Pattern\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13bf59m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(250, 245, 234)\"},children:\"Still wondering if we\u2019re the real deal? Let us prove it.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(250, 245, 234)\"},children:\"Still wondering if we\u2019re the real deal? Let us prove it.\"})}),className:\"framer-grx9c2\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(250, 245, 234)\"},children:\"Stop losing out on sales because of outdated cold outreach tactics. Automate your lead flow and start filling your calendar with qualified meetings \u2013 guaranteed.\"})}),className:\"framer-uo19tb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{y:(componentViewport?.y||0)+0+8135.4+96+0+0+160+187.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+8268.4+96+0+0+100+198,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1saytxp-container\",nodeId:\"BDPTl6iQ7\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(ButtonNew,{height:\"100%\",id:\"BDPTl6iQ7\",layoutId:\"BDPTl6iQ7\",LdUTnDrRk:\"Book a Call\",variant:\"Adky6EWRt\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{y:(componentViewport?.y||0)+0+8135.4+96+615.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:488,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8268.4+96+506,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ar4grk-container\",nodeId:\"lcA5kynuk\",scopeId:\"rDs5YgLI6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t3Q4nATC7:{variant:\"pWrzxmDrT\"}},children:/*#__PURE__*/_jsx(Footer2,{height:\"100%\",id:\"lcA5kynuk\",layoutId:\"lcA5kynuk\",style:{width:\"100%\"},variant:\"FB9TPCUq_\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-a1349.framer-w2htg6, .framer-a1349 .framer-w2htg6 { display: block; }\",\".framer-a1349.framer-gy5cfx { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-a1349 .framer-i0feli-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 8; }\",\".framer-a1349 .framer-1q1u05s { align-content: center; align-items: center; background: linear-gradient(0deg, #ffffff 0%, rgb(250, 245, 234) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-a1349 .framer-wgffhc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 150px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-a1349 .framer-17idklu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 0px 48px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-a1349 .framer-157h5if { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-a1349 .framer-1078j7b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-a1349 .framer-5gnwvp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 900px; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-a1349 .framer-7d3wpi, .framer-a1349 .framer-uibbio, .framer-a1349 .framer-sh5mj7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-a1349 .framer-eobqtc-container, .framer-a1349 .framer-fjr8m6-container, .framer-a1349 .framer-1qmcbfx-container, .framer-a1349 .framer-1n2u13c-container, .framer-a1349 .framer-156q0x3-container, .framer-a1349 .framer-3711rv-container, .framer-a1349 .framer-1saytxp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-a1349 .framer-wcex7r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-a1349 .framer-1txoeoo { --border-bottom-width: 1px; --border-color: #ffe2a8; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #fffaf0; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-a1349 .framer-16a3j4r { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 46px; }\",\".framer-a1349 .framer-14x13x2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: 98px; word-break: break-word; word-wrap: break-word; }\",\".framer-a1349 .framer-7ki96u { --border-bottom-width: 1px; --border-color: #ffe2a8; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #fffaf0; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 13px 16px 13px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-a1349 .framer-x6y6us { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: 64px; word-break: break-word; word-wrap: break-word; }\",\".framer-a1349 .framer-1lql90 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: 165px; word-break: break-word; word-wrap: break-word; }\",\".framer-a1349 .framer-1nbzgc6 { align-content: center; align-items: center; bottom: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-a1349 .framer-idnqw2-container, .framer-a1349 .framer-1d7htxd-container { flex: none; height: 93px; position: relative; width: 100%; }\",\".framer-a1349 .framer-1h9jx5b { -webkit-filter: grayscale(1); aspect-ratio: 3.548076923076923 / 1; filter: grayscale(1); height: var(--framer-aspect-ratio-supported, 23px); opacity: 0.45; overflow: visible; position: relative; width: 82px; }\",\".framer-a1349 .framer-1arriv6 { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 72px); overflow: visible; position: relative; width: 128px; }\",\".framer-a1349 .framer-1lm4r6y { -webkit-filter: grayscale(1); aspect-ratio: 3.4224598930481283 / 1; filter: grayscale(1); height: var(--framer-aspect-ratio-supported, 23px); opacity: 0.48; overflow: visible; position: relative; width: 79px; }\",\".framer-a1349 .framer-13lagas { -webkit-filter: grayscale(1); aspect-ratio: 2.395209580838323 / 1; filter: grayscale(1); height: var(--framer-aspect-ratio-supported, 21px); opacity: 0.45; overflow: visible; position: relative; width: 50px; }\",\".framer-a1349 .framer-bbfuh8 { -webkit-filter: grayscale(1); aspect-ratio: 4.169381107491857 / 1; filter: grayscale(1); height: var(--framer-aspect-ratio-supported, 24px); opacity: 0.77; overflow: visible; position: relative; width: 100px; }\",\".framer-a1349 .framer-f6r8l8 { -webkit-filter: grayscale(1); aspect-ratio: 2.8193832599118944 / 1; filter: grayscale(1); height: var(--framer-aspect-ratio-supported, 22px); overflow: visible; position: relative; width: 62px; }\",\".framer-a1349 .framer-10ohvlx { -webkit-filter: grayscale(1); aspect-ratio: 4.096153846153846 / 1; filter: grayscale(1); height: var(--framer-aspect-ratio-supported, 24px); opacity: 0.6; overflow: visible; position: relative; width: 98px; }\",\".framer-a1349 .framer-d7q5im { -webkit-filter: grayscale(1); aspect-ratio: 3.1840796019900495 / 1; filter: grayscale(1); height: var(--framer-aspect-ratio-supported, 24px); opacity: 0.6; overflow: visible; position: relative; width: 76px; }\",\".framer-a1349 .framer-g0bs4l { -webkit-filter: grayscale(1); aspect-ratio: 1.797752808988764 / 1; filter: grayscale(1); height: var(--framer-aspect-ratio-supported, 30px); opacity: 0.77; overflow: visible; position: relative; width: 54px; }\",\".framer-a1349 .framer-1k9vo30 { -webkit-filter: grayscale(1); aspect-ratio: 3.125 / 1; filter: grayscale(1); height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; width: 78px; }\",\".framer-a1349 .framer-1d64ggr { -webkit-filter: contrast(0); filter: contrast(0); height: 28px; overflow: visible; position: relative; width: 156px; }\",\".framer-a1349 .framer-1p4wztl { -webkit-filter: contrast(0) grayscale(1); aspect-ratio: 1.7058823529411764 / 1; filter: contrast(0) grayscale(1); height: var(--framer-aspect-ratio-supported, 27px); overflow: visible; position: relative; width: 46px; }\",\".framer-a1349 .framer-1d3sb5j { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 55px); overflow: visible; position: relative; width: 97px; }\",\".framer-a1349 .framer-becji1 { -webkit-mask: url('https://framerusercontent.com/images/0RjNkZYilrHi1gaLamPLmApzh4.svg') alpha repeat top left / 71px 71px add; background-color: #fffaf0; bottom: 0px; flex: none; left: 0px; mask: url('https://framerusercontent.com/images/0RjNkZYilrHi1gaLamPLmApzh4.svg') alpha repeat top left / 71px 71px add; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-a1349 .framer-9amjsz { flex: none; height: 76px; left: -331px; overflow: visible; position: absolute; top: 275px; width: 43px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-a1349 .framer-1i2wrjo { bottom: -12px; flex: none; left: -8px; opacity: 0.6; overflow: hidden; position: absolute; right: -7px; top: -12px; }\",\".framer-a1349 .framer-htxl2g { flex: none; height: 76px; left: calc(50.00000000000002% - 43px / 2); position: absolute; top: calc(50.00000000000002% - 76px / 2); width: 43px; }\",\".framer-a1349 .framer-1tkjxsu-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-a1349 .framer-e3cpld { bottom: 0px; flex: none; left: -1px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-a1349 .framer-2ht2xp { flex: none; height: 76px; left: calc(50.00000000000002% - 43px / 2); position: absolute; top: 0px; width: 43px; }\",\".framer-a1349 .framer-7yvcuf-container { flex: none; height: 76px; position: absolute; right: 0px; top: 0px; width: 43px; z-index: 1; }\",\".framer-a1349 .framer-a24egc { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, rgb(255, 251, 242) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-a1349 .framer-4gipum, .framer-a1349 .framer-kso25u, .framer-a1349 .framer-13bf59m { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-a1349 .framer-1lzun5l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 60%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-a1349 .framer-icef1f-container { flex: none; height: auto; position: relative; width: 80%; }\",\".framer-a1349 .framer-1agi7k0-container, .framer-a1349 .framer-rqbhgj-container, .framer-a1349 .framer-1ev7e1l-container, .framer-a1349 .framer-19qohps-container, .framer-a1349 .framer-z811lc-container, .framer-a1349 .framer-vusxq4-container, .framer-a1349 .framer-1y4f7ds-container, .framer-a1349 .framer-1qj4rk3-container, .framer-a1349 .framer-16lvnjh-container, .framer-a1349 .framer-bvcaef-container, .framer-a1349 .framer-13xns4m-container, .framer-a1349 .framer-1c3436c-container, .framer-a1349 .framer-18q5wc8-container, .framer-a1349 .framer-1uig40b-container, .framer-a1349 .framer-1v37edz-container, .framer-a1349 .framer-dkryu9-container, .framer-a1349 .framer-1l6phoh-container, .framer-a1349 .framer-1yclnx8-container, .framer-a1349 .framer-1ca2t76-container, .framer-a1349 .framer-p81l59-container { height: auto; position: relative; width: auto; }\",\".framer-a1349 .framer-5k14q4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-a1349 .framer-1adf9av { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 74%; }\",\".framer-a1349 .framer-1qdl5t4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 99%; word-break: break-word; word-wrap: break-word; }\",\".framer-a1349 .framer-1bitg8r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 0px 160px 0px; position: relative; width: 100%; }\",\".framer-a1349 .framer-373gh6, .framer-a1349 .framer-qt1ztp, .framer-a1349 .framer-16urmr5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 60%; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-a1349 .framer-c7wvx5, .framer-a1349 .framer-1w6bznr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: auto; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-a1349 .framer-upw0hq { 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-a1349 .framer-do2po7-container, .framer-a1349 .framer-1cakmh-container, .framer-a1349 .framer-1jp76pv-container, .framer-a1349 .framer-hvvdhl-container, .framer-a1349 .framer-12y28l6-container, .framer-a1349 .framer-zj3hal-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-a1349 .framer-1m69fby { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-a1349 .framer-xfiaob, .framer-a1349 .framer-1nis3uy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-a1349 .framer-1ekycql { aspect-ratio: 1.4444444444444444 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 498px); max-width: 928px; overflow: visible; position: relative; width: 60%; }\",\".framer-a1349 .framer-l5ew2l { aspect-ratio: 1.4444444444444444 / 1; flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 720px); }\",\".framer-a1349 .framer-1ji8eon { -webkit-filter: brightness(1.05); aspect-ratio: 1.4444444444444444 / 1; filter: brightness(1.05); flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 720px); }\",\".framer-a1349 .framer-g641hi { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-a1349 .framer-1s62ruy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 557px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-a1349 .framer-5axudh-container, .framer-a1349 .framer-4pfgq6-container, .framer-a1349 .framer-1isbipi-container { flex: none; height: 100%; position: relative; width: 360px; }\",\".framer-a1349 .framer-p4zl12 { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, rgb(255, 251, 242) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-a1349 .framer-1ewxu90-container { flex: none; height: auto; max-width: 800px; position: relative; width: 100%; }\",\".framer-a1349 .framer-srs4ba { --border-bottom-width: 1px; --border-color: var(--token-1691cb44-c002-4542-9545-8a0801f91af2, #e7e7e7); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-a1349 .framer-i523u1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-a1349 .framer-9ywdf1 { align-content: center; align-items: center; background-color: var(--token-688bf333-124c-4a30-a1db-4921cfbed97e, #121212); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 100px 20px 100px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-a1349 .framer-2eusl5 { -webkit-mask: url('https://framerusercontent.com/images/0RjNkZYilrHi1gaLamPLmApzh4.svg') alpha repeat center / 74px 74px add; background-color: var(--token-f11b5aeb-a8c6-4995-a9a0-b82221d34a1b, #231f20); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; bottom: 0px; flex: none; left: 0px; mask: url('https://framerusercontent.com/images/0RjNkZYilrHi1gaLamPLmApzh4.svg') alpha repeat center / 74px 74px add; opacity: 0.7; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-a1349 .framer-grx9c2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-a1349 .framer-uo19tb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; opacity: 0.7; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-a1349 .framer-ar4grk-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-a1349.framer-gy5cfx, .framer-a1349 .framer-1q1u05s, .framer-a1349 .framer-wgffhc, .framer-a1349 .framer-17idklu, .framer-a1349 .framer-157h5if, .framer-a1349 .framer-1078j7b, .framer-a1349 .framer-wcex7r, .framer-a1349 .framer-1txoeoo, .framer-a1349 .framer-7ki96u, .framer-a1349 .framer-1nbzgc6, .framer-a1349 .framer-a24egc, .framer-a1349 .framer-4gipum, .framer-a1349 .framer-5k14q4, .framer-a1349 .framer-1adf9av, .framer-a1349 .framer-1bitg8r, .framer-a1349 .framer-kso25u, .framer-a1349 .framer-upw0hq, .framer-a1349 .framer-1m69fby, .framer-a1349 .framer-xfiaob, .framer-a1349 .framer-g641hi, .framer-a1349 .framer-1nis3uy, .framer-a1349 .framer-1s62ruy, .framer-a1349 .framer-p4zl12, .framer-a1349 .framer-srs4ba, .framer-a1349 .framer-i523u1, .framer-a1349 .framer-9ywdf1, .framer-a1349 .framer-13bf59m { gap: 0px; } .framer-a1349.framer-gy5cfx > *, .framer-a1349 .framer-1q1u05s > *, .framer-a1349 .framer-upw0hq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-a1349.framer-gy5cfx > :first-child, .framer-a1349 .framer-1q1u05s > :first-child, .framer-a1349 .framer-wgffhc > :first-child, .framer-a1349 .framer-17idklu > :first-child, .framer-a1349 .framer-157h5if > :first-child, .framer-a1349 .framer-1078j7b > :first-child, .framer-a1349 .framer-7ki96u > :first-child, .framer-a1349 .framer-1nbzgc6 > :first-child, .framer-a1349 .framer-a24egc > :first-child, .framer-a1349 .framer-4gipum > :first-child, .framer-a1349 .framer-5k14q4 > :first-child, .framer-a1349 .framer-1bitg8r > :first-child, .framer-a1349 .framer-kso25u > :first-child, .framer-a1349 .framer-upw0hq > :first-child, .framer-a1349 .framer-1m69fby > :first-child, .framer-a1349 .framer-xfiaob > :first-child, .framer-a1349 .framer-g641hi > :first-child, .framer-a1349 .framer-1nis3uy > :first-child, .framer-a1349 .framer-p4zl12 > :first-child, .framer-a1349 .framer-srs4ba > :first-child, .framer-a1349 .framer-9ywdf1 > :first-child, .framer-a1349 .framer-13bf59m > :first-child { margin-top: 0px; } .framer-a1349.framer-gy5cfx > :last-child, .framer-a1349 .framer-1q1u05s > :last-child, .framer-a1349 .framer-wgffhc > :last-child, .framer-a1349 .framer-17idklu > :last-child, .framer-a1349 .framer-157h5if > :last-child, .framer-a1349 .framer-1078j7b > :last-child, .framer-a1349 .framer-7ki96u > :last-child, .framer-a1349 .framer-1nbzgc6 > :last-child, .framer-a1349 .framer-a24egc > :last-child, .framer-a1349 .framer-4gipum > :last-child, .framer-a1349 .framer-5k14q4 > :last-child, .framer-a1349 .framer-1bitg8r > :last-child, .framer-a1349 .framer-kso25u > :last-child, .framer-a1349 .framer-upw0hq > :last-child, .framer-a1349 .framer-1m69fby > :last-child, .framer-a1349 .framer-xfiaob > :last-child, .framer-a1349 .framer-g641hi > :last-child, .framer-a1349 .framer-1nis3uy > :last-child, .framer-a1349 .framer-p4zl12 > :last-child, .framer-a1349 .framer-srs4ba > :last-child, .framer-a1349 .framer-9ywdf1 > :last-child, .framer-a1349 .framer-13bf59m > :last-child { margin-bottom: 0px; } .framer-a1349 .framer-wgffhc > * { margin: 0px; margin-bottom: calc(150px / 2); margin-top: calc(150px / 2); } .framer-a1349 .framer-17idklu > *, .framer-a1349 .framer-157h5if > *, .framer-a1349 .framer-9ywdf1 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-a1349 .framer-1078j7b > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-a1349 .framer-wcex7r > * { margin: 0px; margin-left: calc(34px / 2); margin-right: calc(34px / 2); } .framer-a1349 .framer-wcex7r > :first-child, .framer-a1349 .framer-1txoeoo > :first-child, .framer-a1349 .framer-1adf9av > :first-child, .framer-a1349 .framer-1s62ruy > :first-child, .framer-a1349 .framer-i523u1 > :first-child { margin-left: 0px; } .framer-a1349 .framer-wcex7r > :last-child, .framer-a1349 .framer-1txoeoo > :last-child, .framer-a1349 .framer-1adf9av > :last-child, .framer-a1349 .framer-1s62ruy > :last-child, .framer-a1349 .framer-i523u1 > :last-child { margin-right: 0px; } .framer-a1349 .framer-1txoeoo > *, .framer-a1349 .framer-1adf9av > *, .framer-a1349 .framer-i523u1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-a1349 .framer-7ki96u > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-a1349 .framer-1nbzgc6 > *, .framer-a1349 .framer-4gipum > *, .framer-a1349 .framer-kso25u > *, .framer-a1349 .framer-13bf59m > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-a1349 .framer-a24egc > *, .framer-a1349 .framer-1m69fby > *, .framer-a1349 .framer-g641hi > *, .framer-a1349 .framer-p4zl12 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-a1349 .framer-5k14q4 > *, .framer-a1349 .framer-srs4ba > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-a1349 .framer-1bitg8r > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-a1349 .framer-xfiaob > *, .framer-a1349 .framer-1nis3uy > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-a1349 .framer-1s62ruy > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",'.framer-a1349[data-border=\"true\"]::after, .framer-a1349 [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 (max-width: 1199px) { .framer-a1349.framer-gy5cfx { width: 390px; } .framer-a1349 .framer-17idklu { gap: 48px; padding: 61px 16px 61px 16px; } .framer-a1349 .framer-5gnwvp { max-width: 358px; width: 100%; } .framer-a1349 .framer-7d3wpi { max-width: unset; width: 100%; } .framer-a1349 .framer-wcex7r { gap: 16px; width: 100%; } .framer-a1349 .framer-1txoeoo { align-content: flex-start; align-items: flex-start; justify-content: flex-start; order: 0; } .framer-a1349 .framer-16a3j4r { height: var(--framer-aspect-ratio-supported, 34px); width: 34px; } .framer-a1349 .framer-14x13x2 { width: 83px; } .framer-a1349 .framer-7ki96u { order: 1; width: 50%; } .framer-a1349 .framer-1lql90, .framer-a1349 .framer-icef1f-container, .framer-a1349 .framer-1adf9av { width: 100%; } .framer-a1349 .framer-1nbzgc6 { bottom: 48px; } .framer-a1349 .framer-uibbio { order: 0; width: 90%; } .framer-a1349 .framer-1d7htxd-container { order: 1; } .framer-a1349 .framer-becji1 { -webkit-mask: url('https://framerusercontent.com/images/0RjNkZYilrHi1gaLamPLmApzh4.svg') alpha repeat bottom / 71px 71px add; mask: url('https://framerusercontent.com/images/0RjNkZYilrHi1gaLamPLmApzh4.svg') alpha repeat bottom / 71px 71px add; } .framer-a1349 .framer-a24egc { padding: 96px 16px 48px 16px; } .framer-a1349 .framer-1lzun5l, .framer-a1349 .framer-373gh6, .framer-a1349 .framer-qt1ztp, .framer-a1349 .framer-16urmr5 { max-width: unset; } .framer-a1349 .framer-5k14q4 { padding: 160px 16px 160px 16px; } .framer-a1349 .framer-1qdl5t4 { flex: 1 0 0px; width: 1px; } .framer-a1349 .framer-1bitg8r { padding: 0px 0px 48px 0px; } .framer-a1349 .framer-kso25u, .framer-a1349 .framer-upw0hq, .framer-a1349 .framer-xfiaob, .framer-a1349 .framer-1nis3uy { padding: 0px 16px 0px 16px; } .framer-a1349 .framer-1m69fby { padding: 48px 0px 48px 0px; } .framer-a1349 .framer-1ekycql { height: var(--framer-aspect-ratio-supported, 270px); width: 100%; } .framer-a1349 .framer-l5ew2l, .framer-a1349 .framer-1ji8eon { width: var(--framer-aspect-ratio-supported, 390px); } .framer-a1349 .framer-g641hi { padding: 48px 0px 96px 0px; } .framer-a1349 .framer-1s62ruy { flex-direction: column; height: min-content; } .framer-a1349 .framer-5axudh-container, .framer-a1349 .framer-4pfgq6-container, .framer-a1349 .framer-1isbipi-container { height: 240px; width: 100%; } .framer-a1349 .framer-p4zl12 { padding: 0px 16px 96px 16px; } .framer-a1349 .framer-9ywdf1 { padding: 160px 20px 160px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-a1349 .framer-17idklu, .framer-a1349 .framer-wcex7r, .framer-a1349 .framer-1s62ruy { gap: 0px; } .framer-a1349 .framer-17idklu > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-a1349 .framer-17idklu > :first-child, .framer-a1349 .framer-1s62ruy > :first-child { margin-top: 0px; } .framer-a1349 .framer-17idklu > :last-child, .framer-a1349 .framer-1s62ruy > :last-child { margin-bottom: 0px; } .framer-a1349 .framer-wcex7r > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-a1349 .framer-wcex7r > :first-child { margin-left: 0px; } .framer-a1349 .framer-wcex7r > :last-child { margin-right: 0px; } .framer-a1349 .framer-1s62ruy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8512\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"t3Q4nATC7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"z7fVIO8m4\":{\"pattern\":\":z7fVIO8m4\",\"name\":\"video\"},\"sTtys7pcr\":{\"pattern\":\":sTtys7pcr\",\"name\":\"process\"},\"ZzbML8NQ4\":{\"pattern\":\":ZzbML8NQ4\",\"name\":\"1\"},\"tk1PB9EmI\":{\"pattern\":\":tk1PB9EmI\",\"name\":\"2\"},\"tzq1_n8TX\":{\"pattern\":\":tzq1_n8TX\",\"name\":\"3\"},\"TEH9u_ubT\":{\"pattern\":\":TEH9u_ubT\",\"name\":\"3\"},\"s66tOKW8M\":{\"pattern\":\":s66tOKW8M\",\"name\":\"3\"},\"x2ZsMqaAN\":{\"pattern\":\":x2ZsMqaAN\",\"name\":\"3\"},\"XZ4hP2uIN\":{\"pattern\":\":XZ4hP2uIN\",\"name\":\"country\"},\"CUvvj_w43\":{\"pattern\":\":CUvvj_w43\",\"name\":\"testimonials\"}}\n * @framerResponsiveScreen\n */const FramerrDs5YgLI6=withCSS(Component,css,\"framer-a1349\");export default FramerrDs5YgLI6;FramerrDs5YgLI6.displayName=\"Page\";FramerrDs5YgLI6.defaultProps={height:8512,width:1200};addFonts(FramerrDs5YgLI6,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/D7WD5OXZFWQ5T76HSPWAC7MNKAJXE2YG/LUGNSPO5YC34ABNB2O6K7AFDSOJZT56V/WNDVG7O66ENLOD43GS7FBUCC4KMT5OM2.woff2\",weight:\"300\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Amatic SC\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/amaticsc/v26/TUZ3zwprpvBS1izr_vOMscG6fL8D3WTy-A.woff2\",weight:\"700\"},{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\"}]},...NavigationNavigationBarFonts,...ButtonNewFonts,...TickerFonts,...SquiggleEffectFonts,...PillFonts,...VideoTestimonialsFonts,...CarouselFonts,...TimelineItem2Fonts,...ComponentFAQListFonts,...Footer2Fonts,...CircleFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrDs5YgLI6\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"z7fVIO8m4\\\":{\\\"pattern\\\":\\\":z7fVIO8m4\\\",\\\"name\\\":\\\"video\\\"},\\\"sTtys7pcr\\\":{\\\"pattern\\\":\\\":sTtys7pcr\\\",\\\"name\\\":\\\"process\\\"},\\\"ZzbML8NQ4\\\":{\\\"pattern\\\":\\\":ZzbML8NQ4\\\",\\\"name\\\":\\\"1\\\"},\\\"tk1PB9EmI\\\":{\\\"pattern\\\":\\\":tk1PB9EmI\\\",\\\"name\\\":\\\"2\\\"},\\\"tzq1_n8TX\\\":{\\\"pattern\\\":\\\":tzq1_n8TX\\\",\\\"name\\\":\\\"3\\\"},\\\"TEH9u_ubT\\\":{\\\"pattern\\\":\\\":TEH9u_ubT\\\",\\\"name\\\":\\\"3\\\"},\\\"s66tOKW8M\\\":{\\\"pattern\\\":\\\":s66tOKW8M\\\",\\\"name\\\":\\\"3\\\"},\\\"x2ZsMqaAN\\\":{\\\"pattern\\\":\\\":x2ZsMqaAN\\\",\\\"name\\\":\\\"3\\\"},\\\"XZ4hP2uIN\\\":{\\\"pattern\\\":\\\":XZ4hP2uIN\\\",\\\"name\\\":\\\"country\\\"},\\\"CUvvj_w43\\\":{\\\"pattern\\\":\\\":CUvvj_w43\\\",\\\"name\\\":\\\"testimonials\\\"}}\",\"framerIntrinsicHeight\":\"8512\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t3Q4nATC7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["TurbulentDisplace", "props", "text", "font", "fontColor", "frequency", "octaves", "scale", "animation", "mode", "seed", "setSeed", "ye", "currentScale", "setCurrentScale", "filterKey", "setFilterKey", "turbulenceRef", "pe", "displacementMapRef", "overlayRef", "filterIdRef", "ue", "prevKey", "interval", "newSeed", "strengthPercentage", "maxDeviation", "newScale", "baseFrequency", "filterSvg", "p", "u", "contentStyle", "overlayStyle", "x", "motion", "addPropertyControls", "ControlType", "clamp", "t", "e", "n", "progress", "t", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "RichTextWithFX", "withFX", "RichText2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "scrollSection", "stepNumber", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "kWjVhf9Ee", "k3ls6uLAp", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "FrameraBXvQSjrZ", "withCSS", "aBXvQSjrZ_default", "addPropertyControls", "ControlType", "addFonts", "TimelineNumber2Fonts", "getFonts", "aBXvQSjrZ_default", "TimelineNumber2WithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "pill", "progressBar", "scrollSection", "stepDescription", "stepNumber", "stepTitle", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UJyQQ0kc1", "QGZG2jrpt", "SFGHsTrJN", "Hia1LsgDC", "Iltzd6lgG", "AKZK3QP_R", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerDmAajn4AD", "withCSS", "DmAajn4AD_default", "addPropertyControls", "ControlType", "addFonts", "Component", "House_default", "React", "weights", "House", "props", "ref", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zNMII1rLe", "UkcAZJv33", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap11h27wl", "args", "onTapjdu5b2", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramermdRp2pqei", "withCSS", "mdRp2pqei_default", "addPropertyControls", "ControlType", "addFonts", "ComponentFAQSingleFonts", "getFonts", "mdRp2pqei_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "mdRp2pqei_default", "css", "FramerdXoXXN5g9", "withCSS", "dXoXXN5g9_default", "addFonts", "ComponentFAQSingleFonts", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "Video1Controls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toImageSrc", "value", "toResponsiveImage", "prefix", "suffix", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "designation", "founder", "height", "id", "link", "logo", "poster", "testiImage", "video", "width", "words", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pPQAQDUzL", "LHU8SCGl9", "YgrzGbEnr", "FCmsvljEF", "VrgpnRbO3", "ugOuWLXeo", "QNj2Iom49", "HcZeYfXkg", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "textContent", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Framerh8ddtVEdi", "withCSS", "h8ddtVEdi_default", "addPropertyControls", "ControlType", "addFonts", "NavigationNavigationBarFonts", "getFonts", "GrzGrX1vd_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "ButtonNewFonts", "SmD8M1vi4_default", "MotionDivWithOptimizedAppearEffect", "motion", "TickerFonts", "Ticker", "SquiggleEffectFonts", "TurbulentDisplace", "PillFonts", "G1SfURbn7_default", "MotionDivWithFX", "withFX", "VideoTestimonialsFonts", "h8ddtVEdi_default", "CarouselFonts", "Carousel", "ContainerWithFX", "RichTextWithOptimizedAppearEffect", "RichText2", "TimelineItem2Fonts", "DmAajn4AD_default", "ImageWithFX", "Image2", "ComponentFAQListFonts", "dXoXXN5g9_default", "Footer2Fonts", "B3PAZe5x6_default", "CircleFonts", "dYSifP6Ta_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transformTemplate1", "_", "transition3", "animation4", "animation5", "animation6", "transition4", "animation7", "transition5", "addImageAlt", "image", "alt", "animation8", "transition6", "animation9", "animation10", "transition7", "animation11", "animation12", "transition8", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition9", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "css", "FramerrDs5YgLI6", "withCSS", "rDs5YgLI6_default", "addFonts", "__FramerMetadata__"]
}
