{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/c6odEcZ3CUwR293SKPQB/uttHA64zUKp3Ku9lIXNl/v3aq9woar.js", "ssg:https://framerusercontent.com/modules/y5jEFljeqZBobS6jEAeJ/hKSniZ89F6j2WWIjiKLk/oChqkfduh.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (0b5b7f5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/WxCFB0yeRjrKxt2HKI27/H3cxfh6gvQQMObVFVkF4/kSvgmGfsM.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/dJfcd7t44wAkil1yH52x/zJMraoUu5nTES3T51tP6/YckFIlg3V.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const cycleOrder=[\"GOANjcC4y\",\"z1MD5IFP7\"];const serializationHash=\"framer-z2Ml0\";const variantClassNames={GOANjcC4y:\"framer-v-1wgei\",z1MD5IFP7:\"framer-v-pq49rp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,0,1.01],type:\"tween\"};const transition2={delay:.5,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition3={delay:0,duration:.8,ease:[.44,0,0,1.01],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:90,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={delay:.8,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:1,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"GOANjcC4y\",Mobile:\"z1MD5IFP7\"};const getProps=({description,height,id,image,link,title,width,...props})=>{return{...props,ADNUpTpHe:description??props.ADNUpTpHe??\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla semper erat sit amet ante.\",agENFniyw:title??props.agENFniyw??\"Junior to champions\",gBTKxW4Bg:link??props.gBTKxW4Bg,GwluAMURg:image??props.GwluAMURg,variant:humanReadableVariantMap[props.variant]??props.variant??\"GOANjcC4y\"};};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,GwluAMURg,agENFniyw,ADNUpTpHe,gBTKxW4Bg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GOANjcC4y\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:gBTKxW4Bg,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1wgei\",className,classNames)} framer-ztbb1l`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"GOANjcC4y\",ref:ref??ref1,style:{...style},...addPropertyOverrides({z1MD5IFP7:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-16fnmel\",\"data-framer-appear-id\":\"16fnmel\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"z0Yj6yJyF\",optimized:true,style:{backgroundColor:\"rgba(110, 110, 110, 0.4)\",transformPerspective:1200}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ou2c36\",\"data-framer-name\":\"Frame 8919\",layoutDependency:layoutDependency,layoutId:\"FDoeICQMJ\",children:[/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,background:{alt:\"\",fit:\"fill\",sizes:\"65.0938px\",...toResponsiveImage(GwluAMURg)},className:\"framer-1yu16l5\",\"data-framer-appear-id\":\"1yu16l5\",\"data-framer-name\":\"Rectangle 15771638\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"VWBOJcz7M\",optimized:true,style:{borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9,transformPerspective:1200}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2kumsf\",\"data-framer-name\":\"Frame 8924\",layoutDependency:layoutDependency,layoutId:\"ZraQ3ArCX\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Junior to champions\"})}),className:\"framer-1qjnuh1\",\"data-framer-appear-id\":\"1qjnuh1\",\"data-framer-name\":\"Junior to champions\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"s0htbK_Fm\",optimized:true,style:{transformPerspective:1200},text:agENFniyw,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gyabxx\",\"data-styles-preset\":\"kSvgmGfsM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dc2cd1ff-5a62-4c5f-9324-65c975576309, rgb(110, 110, 110)))\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla semper erat sit amet ante.\"})}),className:\"framer-qncx80\",\"data-framer-appear-id\":\"qncx80\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla semper erat sit amet ante.\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"SR9JFFVw7\",optimized:true,style:{\"--extracted-r6o4lv\":\"var(--token-dc2cd1ff-5a62-4c5f-9324-65c975576309, rgb(110, 110, 110))\",transformPerspective:1200},text:ADNUpTpHe,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-z2Ml0.framer-ztbb1l, .framer-z2Ml0 .framer-ztbb1l { display: block; }\",\".framer-z2Ml0.framer-1wgei { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 340px; }\",\".framer-z2Ml0 .framer-16fnmel { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; width: 1px; }\",\".framer-z2Ml0 .framer-1ou2c36 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-z2Ml0 .framer-1yu16l5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 65px); overflow: hidden; position: relative; width: 65px; will-change: var(--framer-will-change-override, transform); }\",\".framer-z2Ml0 .framer-2kumsf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-z2Ml0 .framer-1qjnuh1 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-z2Ml0 .framer-qncx80 { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 221px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-z2Ml0.framer-1wgei, .framer-z2Ml0 .framer-1ou2c36, .framer-z2Ml0 .framer-2kumsf { gap: 0px; } .framer-z2Ml0.framer-1wgei > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-z2Ml0.framer-1wgei > :first-child { margin-left: 0px; } .framer-z2Ml0.framer-1wgei > :last-child { margin-right: 0px; } .framer-z2Ml0 .framer-1ou2c36 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-z2Ml0 .framer-1ou2c36 > :first-child, .framer-z2Ml0 .framer-2kumsf > :first-child { margin-top: 0px; } .framer-z2Ml0 .framer-1ou2c36 > :last-child, .framer-z2Ml0 .framer-2kumsf > :last-child { margin-bottom: 0px; } .framer-z2Ml0 .framer-2kumsf > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",\".framer-z2Ml0.framer-v-pq49rp.framer-1wgei { gap: 14px; width: min-content; }\",\".framer-z2Ml0.framer-v-pq49rp .framer-1ou2c36 { gap: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-z2Ml0.framer-v-pq49rp.framer-1wgei, .framer-z2Ml0.framer-v-pq49rp .framer-1ou2c36 { gap: 0px; } .framer-z2Ml0.framer-v-pq49rp.framer-1wgei > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-z2Ml0.framer-v-pq49rp.framer-1wgei > :first-child { margin-left: 0px; } .framer-z2Ml0.framer-v-pq49rp.framer-1wgei > :last-child { margin-right: 0px; } .framer-z2Ml0.framer-v-pq49rp .framer-1ou2c36 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-z2Ml0.framer-v-pq49rp .framer-1ou2c36 > :first-child { margin-top: 0px; } .framer-z2Ml0.framer-v-pq49rp .framer-1ou2c36 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 157\n * @framerIntrinsicWidth 340\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"z1MD5IFP7\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"GwluAMURg\":\"image\",\"agENFniyw\":\"title\",\"ADNUpTpHe\":\"description\",\"gBTKxW4Bg\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerv3aq9woar=withCSS(Component,css,\"framer-z2Ml0\");export default Framerv3aq9woar;Framerv3aq9woar.displayName=\"Next_case\";Framerv3aq9woar.defaultProps={height:157,width:340};addPropertyControls(Framerv3aq9woar,{variant:{options:[\"GOANjcC4y\",\"z1MD5IFP7\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},GwluAMURg:{title:\"Image\",type:ControlType.ResponsiveImage},agENFniyw:{defaultValue:\"Junior to champions\",displayTextArea:false,title:\"Title\",type:ControlType.String},ADNUpTpHe:{defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla semper erat sit amet ante.\",displayTextArea:false,title:\"Description\",type:ControlType.String},gBTKxW4Bg:{title:\"Link\",type:ControlType.Link}});addFonts(Framerv3aq9woar,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerv3aq9woar\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"GwluAMURg\\\":\\\"image\\\",\\\"agENFniyw\\\":\\\"title\\\",\\\"ADNUpTpHe\\\":\\\"description\\\",\\\"gBTKxW4Bg\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"340\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z1MD5IFP7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"157\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6421805)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/JTAcRzgnCqITZiixc4ga/gd1NTL6eE054Kk2E6hBf/Os_L7bK_b.js\";import Next_case from\"https://framerusercontent.com/modules/c6odEcZ3CUwR293SKPQB/uttHA64zUKp3Ku9lIXNl/v3aq9woar.js\";import ContactRalph from\"https://framerusercontent.com/modules/2PAZjtI1HIz8HpThYSOq/Qiz543FUO3WoaFrZ2UKE/xsViOVkua.js\";const ContactRalphFonts=getFonts(ContactRalph);const Next_caseFonts=getFonts(Next_case);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"I1073:9593;1066:14533\",\"qtI8KSTGM\",\"E8fNk8TU0\"];const serializationHash=\"framer-R5ova\";const variantClassNames={\"I1073:9593;1066:14533\":\"framer-v-e5jfeq\",E8fNk8TU0:\"framer-v-1ch9xgd\",qtI8KSTGM:\"framer-v-wi829m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.075,duration:.4,type:\"spring\"};const textEffect={effect:animation,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"I1073:9593;1066:14533\",Mobile:\"qtI8KSTGM\",tablet:\"E8fNk8TU0\"};const getProps=({height,id,subtitle,text,title,width,...props})=>{return{...props,BsfYEdUQZ:text??props.BsfYEdUQZ??\"rgb(0, 0, 0)\",SH8LNI4w4:title??props.SH8LNI4w4??\"Prepare yourself for the future of e-commerce\",UHthzTQeE:subtitle??props.UHthzTQeE??\"Work with us\",variant:humanReadableVariantMap[props.variant]??props.variant??\"I1073:9593;1066:14533\"};};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,BsfYEdUQZ,SH8LNI4w4,UHthzTQeE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I1073:9593;1066:14533\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"qtI8KSTGM\")return true;return false;};const router=useRouter();const isDisplayed1=()=>{if(baseVariant===\"qtI8KSTGM\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-e5jfeq\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"I1073:9593;1066:14533\",ref:ref??ref1,style:{...style},...addPropertyOverrides({E8fNk8TU0:{\"data-framer-name\":\"tablet\"},qtI8KSTGM:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xwq2m0\",layoutDependency:layoutDependency,layoutId:\"dKRxxlPiK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"16.2px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0xDRERvdCBUUiBSZWd1bGFy\",\"--framer-font-family\":'\"LCDDot TR Regular\", serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.72px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--variable-reference-BsfYEdUQZ-oChqkfduh))\",\"--framer-text-transform\":\"uppercase\"},children:\"Work with us\"})})}),className:\"framer-1kqijtr\",\"data-framer-name\":\"Work with us\",fonts:[\"CUSTOM;LCDDot TR Regular\"],layoutDependency:layoutDependency,layoutId:\"GCqHd8tHh\",style:{\"--extracted-1w3ko1f\":\"var(--variable-reference-BsfYEdUQZ-oChqkfduh)\",\"--variable-reference-BsfYEdUQZ-oChqkfduh\":BsfYEdUQZ},text:UHthzTQeE,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ip7tie\",layoutDependency:layoutDependency,layoutId:\"bQJM099aH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-15da30s\",\"data-styles-preset\":\"Os_L7bK_b\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-BsfYEdUQZ-oChqkfduh))\"},children:\"Prepare yourself for the future of e-commerce\"})}),className:\"framer-63bznt\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"juWt8_4pI\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-BsfYEdUQZ-oChqkfduh)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-BsfYEdUQZ-oChqkfduh\":BsfYEdUQZ},text:SH8LNI4w4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+20+(0+0+((componentViewport?.height||800)-50-394)/1*0)+20+0+110,...addPropertyOverrides({E8fNk8TU0:{y:(componentViewport?.y||0)+20+(((componentViewport?.height||791.5)-50-685)/2+0+0)+20+111+0+110},qtI8KSTGM:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-70-515)/2+0+0)+10+101+0+100}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hu27t-container\",layoutDependency:layoutDependency,layoutId:\"QmsFKWEgu-container\",nodeId:\"QmsFKWEgu\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(ContactRalph,{height:\"100%\",id:\"QmsFKWEgu\",layoutId:\"QmsFKWEgu\",t2uXzAQHq:\"Contact ralph\",variant:\"hYPSYkG1t\",width:\"100%\",...addPropertyOverrides({qtI8KSTGM:{variant:\"evcKPHEtl\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iaz2fk\",layoutDependency:layoutDependency,layoutId:\"oLoFzS9m5\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-31pr9-container\",\"data-framer-name\":\"Ticker Mobile\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Rdo08vojK-container\",name:\"Ticker Mobile\",nodeId:\"Rdo08vojK\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"Rdo08vojK\",layoutId:\"Rdo08vojK\",name:\"Ticker Mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"S3dg1YaoO\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6lib14-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"b9dnTCwgi-container\",nodeId:\"b9dnTCwgi\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"A new chocoshop\",agENFniyw:\"Tony's Chocolonely\",gBTKxW4Bg:resolvedLinks[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/k4SKKFslWim7eBsfdLVy2lanVzk.png\",srcSet:\"https://framerusercontent.com/images/k4SKKFslWim7eBsfdLVy2lanVzk.png 1009w\"},\"\"),height:\"100%\",id:\"b9dnTCwgi\",layoutId:\"b9dnTCwgi\",style:{width:\"100%\"},variant:\"z1MD5IFP7\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Hr4gxoIuz\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yie33v-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Wj5UaJ7vE-container\",nodeId:\"Wj5UaJ7vE\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Property investment\",agENFniyw:\"APF\",gBTKxW4Bg:resolvedLinks1[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/FlSATOQVZ8XCaI6JjdScG71N8.png\",srcSet:\"https://framerusercontent.com/images/FlSATOQVZ8XCaI6JjdScG71N8.png?scale-down-to=512 512w,https://framerusercontent.com/images/FlSATOQVZ8XCaI6JjdScG71N8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FlSATOQVZ8XCaI6JjdScG71N8.png 1200w\"},\"\"),height:\"100%\",id:\"Wj5UaJ7vE\",layoutId:\"Wj5UaJ7vE\",style:{width:\"100%\"},variant:\"z1MD5IFP7\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"D233xnwOG\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-otex2y-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"HrfEeupaz-container\",nodeId:\"HrfEeupaz\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Global sportswear brand\",agENFniyw:\"Atomic\",gBTKxW4Bg:resolvedLinks2[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/F5fdnY6ih2qxDwr1dJOk1cbbDIs.png\"},\"\"),height:\"100%\",id:\"HrfEeupaz\",layoutId:\"HrfEeupaz\",style:{width:\"100%\"},variant:\"z1MD5IFP7\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dHGuIJxYj\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a3pakp-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"xl3508Vow-container\",nodeId:\"xl3508Vow\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Bringing a cult brand to life\",agENFniyw:\"Lova\",gBTKxW4Bg:resolvedLinks3[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/Yccm1cSodky9KN17l85ooxSgcCQ.png?scale-down-to=512\"},\"\"),height:\"100%\",id:\"xl3508Vow\",layoutId:\"xl3508Vow\",style:{width:\"100%\"},variant:\"z1MD5IFP7\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M9Oj0IxPg\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-te54ko-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"FJ2zAH_U4-container\",nodeId:\"FJ2zAH_U4\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Connecting through open space\",agENFniyw:\"Nucatus\",gBTKxW4Bg:resolvedLinks4[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/mnaUsDpca09UKuDxEuavEahmwy8.png?scale-down-to=512\"},\"\"),height:\"100%\",id:\"FJ2zAH_U4\",layoutId:\"FJ2zAH_U4\",style:{width:\"100%\"},variant:\"z1MD5IFP7\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pp2VC3tgj\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yatrh7-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"qiwPLRgHC-container\",nodeId:\"qiwPLRgHC\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Experts in digital commerce\",agENFniyw:\"Conway & Co\",gBTKxW4Bg:resolvedLinks5[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/WLWnz0z6gdKAQDh28R4c7QNPDNA.jpg\"},\"\"),height:\"100%\",id:\"qiwPLRgHC\",layoutId:\"qiwPLRgHC\",style:{width:\"100%\"},variant:\"z1MD5IFP7\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"oV9x3HcYF\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jsrk7t-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"H62Faqdmz-container\",nodeId:\"H62Faqdmz\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Very Private Addiction Care\",agENFniyw:\"The Youturn\",gBTKxW4Bg:resolvedLinks6[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/V8EWBrH4I1Sk4vuCGzk8vuZMs.jpg\",srcSet:\"https://framerusercontent.com/images/V8EWBrH4I1Sk4vuCGzk8vuZMs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/V8EWBrH4I1Sk4vuCGzk8vuZMs.jpg 800w\"},\"\"),height:\"100%\",id:\"H62Faqdmz\",layoutId:\"H62Faqdmz\",style:{width:\"100%\"},variant:\"z1MD5IFP7\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PejXYhqtZ\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1foq6t0-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hc5jRjEig-container\",nodeId:\"hc5jRjEig\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"2023 Transitional Campaign\",agENFniyw:\"Suitsupply\",gBTKxW4Bg:resolvedLinks7[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/WleacxstAge1UvWKgJgjkfEhZuc.jpg\",srcSet:\"https://framerusercontent.com/images/WleacxstAge1UvWKgJgjkfEhZuc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WleacxstAge1UvWKgJgjkfEhZuc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WleacxstAge1UvWKgJgjkfEhZuc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WleacxstAge1UvWKgJgjkfEhZuc.jpg 2212w\"},\"\"),height:\"100%\",id:\"hc5jRjEig\",layoutId:\"hc5jRjEig\",style:{width:\"100%\"},variant:\"z1MD5IFP7\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PejXYhqtZ\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16342v7-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"W5CZEaGZp-container\",nodeId:\"W5CZEaGZp\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Web-3 powered investment firm\",agENFniyw:\"Maven 11\",gBTKxW4Bg:resolvedLinks8[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/neBuBDxZWtoSlgDyudqGzDEIRY.webp\",srcSet:\"https://framerusercontent.com/images/neBuBDxZWtoSlgDyudqGzDEIRY.webp?scale-down-to=1024 910w,https://framerusercontent.com/images/neBuBDxZWtoSlgDyudqGzDEIRY.webp 1392w\"},\"\"),height:\"100%\",id:\"W5CZEaGZp\",layoutId:\"W5CZEaGZp\",style:{width:\"100%\"},variant:\"z1MD5IFP7\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JgT8laokI\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t9jk2d-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"k9XDPivXM-container\",nodeId:\"k9XDPivXM\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Financial Platform for Employees\",agENFniyw:\"Equip\",gBTKxW4Bg:resolvedLinks9[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/SHa6EiQisuY0OSWjsdUgP4g5Bc.png\",srcSet:\"https://framerusercontent.com/images/SHa6EiQisuY0OSWjsdUgP4g5Bc.png?scale-down-to=512 512w,https://framerusercontent.com/images/SHa6EiQisuY0OSWjsdUgP4g5Bc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SHa6EiQisuY0OSWjsdUgP4g5Bc.png 1216w\"},\"\"),height:\"100%\",id:\"k9XDPivXM\",layoutId:\"k9XDPivXM\",style:{width:\"100%\"},variant:\"z1MD5IFP7\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JgT8laokI\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cj97of-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"uu3oENSqF-container\",nodeId:\"uu3oENSqF\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Growth Solutions for Amazon\",agENFniyw:\"Oratio\",gBTKxW4Bg:resolvedLinks10[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/Y8bCWPe9LOUOcjlYtgr21Hcn1hw.png\",srcSet:\"https://framerusercontent.com/images/Y8bCWPe9LOUOcjlYtgr21Hcn1hw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y8bCWPe9LOUOcjlYtgr21Hcn1hw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y8bCWPe9LOUOcjlYtgr21Hcn1hw.png 1358w\"},\"\"),height:\"100%\",id:\"uu3oENSqF\",layoutId:\"uu3oENSqF\",style:{width:\"100%\"},variant:\"z1MD5IFP7\",width:\"100%\"})})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-aisoag-container\",\"data-framer-name\":\"Ticker Desktop\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xAk_N2WnJ-container\",name:\"Ticker Desktop\",nodeId:\"xAk_N2WnJ\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:30,height:\"100%\",hoverFactor:1,id:\"xAk_N2WnJ\",layoutId:\"xAk_N2WnJ\",name:\"Ticker Desktop\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"S3dg1YaoO\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fado6z-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"raBxAiId1-container\",nodeId:\"raBxAiId1\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"A new chocoshop\",agENFniyw:\"Tony's Chocolonely\",gBTKxW4Bg:resolvedLinks11[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/k4SKKFslWim7eBsfdLVy2lanVzk.png\",srcSet:\"https://framerusercontent.com/images/k4SKKFslWim7eBsfdLVy2lanVzk.png 1009w\"},\"\"),height:\"100%\",id:\"raBxAiId1\",layoutId:\"raBxAiId1\",style:{width:\"100%\"},variant:\"GOANjcC4y\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Hr4gxoIuz\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dp8dfz-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"zkDLHjrZW-container\",nodeId:\"zkDLHjrZW\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Property investment\",agENFniyw:\"APF\",gBTKxW4Bg:resolvedLinks12[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/wwSigTW0ovuZgLkIsaaadTAei0Y.png\",srcSet:\"https://framerusercontent.com/images/wwSigTW0ovuZgLkIsaaadTAei0Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/wwSigTW0ovuZgLkIsaaadTAei0Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wwSigTW0ovuZgLkIsaaadTAei0Y.png 1200w\"},\"\"),height:\"100%\",id:\"zkDLHjrZW\",layoutId:\"zkDLHjrZW\",style:{width:\"100%\"},variant:\"GOANjcC4y\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"D233xnwOG\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-179venv-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"HoqY0LO7a-container\",nodeId:\"HoqY0LO7a\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Global sportswear brand\",agENFniyw:\"Atomic\",gBTKxW4Bg:resolvedLinks13[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/F5fdnY6ih2qxDwr1dJOk1cbbDIs.png\"},\"\"),height:\"100%\",id:\"HoqY0LO7a\",layoutId:\"HoqY0LO7a\",style:{width:\"100%\"},variant:\"GOANjcC4y\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dHGuIJxYj\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hj5ewh-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"h2duGh1t3-container\",nodeId:\"h2duGh1t3\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Bringing a cult brand to life\",agENFniyw:\"Lova\",gBTKxW4Bg:resolvedLinks14[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/Yccm1cSodky9KN17l85ooxSgcCQ.png?scale-down-to=512\"},\"\"),height:\"100%\",id:\"h2duGh1t3\",layoutId:\"h2duGh1t3\",style:{width:\"100%\"},variant:\"GOANjcC4y\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M9Oj0IxPg\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jbdrse-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"N6S3jtS1u-container\",nodeId:\"N6S3jtS1u\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Connecting through open space\",agENFniyw:\"Nucatus\",gBTKxW4Bg:resolvedLinks15[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/mnaUsDpca09UKuDxEuavEahmwy8.png?scale-down-to=512\"},\"\"),height:\"100%\",id:\"N6S3jtS1u\",layoutId:\"N6S3jtS1u\",style:{width:\"100%\"},variant:\"GOANjcC4y\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pp2VC3tgj\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vlt9z1-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"e6xD2_XgY-container\",nodeId:\"e6xD2_XgY\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Experts in digital commerce\",agENFniyw:\"Conway & Co\",gBTKxW4Bg:resolvedLinks16[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/WLWnz0z6gdKAQDh28R4c7QNPDNA.jpg\"},\"\"),height:\"100%\",id:\"e6xD2_XgY\",layoutId:\"e6xD2_XgY\",style:{width:\"100%\"},variant:\"GOANjcC4y\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"oV9x3HcYF\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9kzbyd-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LT9cWxU3M-container\",nodeId:\"LT9cWxU3M\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Very Private Addiction Care\",agENFniyw:\"The Youturn\",gBTKxW4Bg:resolvedLinks17[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/V8EWBrH4I1Sk4vuCGzk8vuZMs.jpg\",srcSet:\"https://framerusercontent.com/images/V8EWBrH4I1Sk4vuCGzk8vuZMs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/V8EWBrH4I1Sk4vuCGzk8vuZMs.jpg 800w\"},\"\"),height:\"100%\",id:\"LT9cWxU3M\",layoutId:\"LT9cWxU3M\",style:{width:\"100%\"},variant:\"GOANjcC4y\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PejXYhqtZ\"},implicitPathVariables:undefined}],children:resolvedLinks18=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12igbe9-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"prnk9wLjf-container\",nodeId:\"prnk9wLjf\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"2023 Transitional Campaign\",agENFniyw:\"Suitsupply\",gBTKxW4Bg:resolvedLinks18[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/WleacxstAge1UvWKgJgjkfEhZuc.jpg\",srcSet:\"https://framerusercontent.com/images/WleacxstAge1UvWKgJgjkfEhZuc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WleacxstAge1UvWKgJgjkfEhZuc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WleacxstAge1UvWKgJgjkfEhZuc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WleacxstAge1UvWKgJgjkfEhZuc.jpg 2212w\"},\"\"),height:\"100%\",id:\"prnk9wLjf\",layoutId:\"prnk9wLjf\",style:{width:\"100%\"},variant:\"GOANjcC4y\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PejXYhqtZ\"},implicitPathVariables:undefined}],children:resolvedLinks19=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lwyq3x-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"CeZg6XNZ1-container\",nodeId:\"CeZg6XNZ1\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Web-3 powered investment firm\",agENFniyw:\"Maven 11\",gBTKxW4Bg:resolvedLinks19[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/neBuBDxZWtoSlgDyudqGzDEIRY.webp\",srcSet:\"https://framerusercontent.com/images/neBuBDxZWtoSlgDyudqGzDEIRY.webp?scale-down-to=1024 910w,https://framerusercontent.com/images/neBuBDxZWtoSlgDyudqGzDEIRY.webp 1392w\"},\"\"),height:\"100%\",id:\"CeZg6XNZ1\",layoutId:\"CeZg6XNZ1\",style:{width:\"100%\"},variant:\"GOANjcC4y\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JgT8laokI\"},implicitPathVariables:undefined}],children:resolvedLinks20=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u8e9e4-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"YSrk6SE3a-container\",nodeId:\"YSrk6SE3a\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Financial Platform for Employees\",agENFniyw:\"Equip\",gBTKxW4Bg:resolvedLinks20[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/SHa6EiQisuY0OSWjsdUgP4g5Bc.png\",srcSet:\"https://framerusercontent.com/images/SHa6EiQisuY0OSWjsdUgP4g5Bc.png?scale-down-to=512 512w,https://framerusercontent.com/images/SHa6EiQisuY0OSWjsdUgP4g5Bc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SHa6EiQisuY0OSWjsdUgP4g5Bc.png 1216w\"},\"\"),height:\"100%\",id:\"YSrk6SE3a\",layoutId:\"YSrk6SE3a\",style:{width:\"100%\"},variant:\"GOANjcC4y\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JgT8laokI\"},implicitPathVariables:undefined}],children:resolvedLinks21=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"230px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xo6t0o-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"cvW_KxFVW-container\",nodeId:\"cvW_KxFVW\",rendersWithMotion:true,scopeId:\"oChqkfduh\",children:/*#__PURE__*/_jsx(Next_case,{ADNUpTpHe:\"Growth Solutions for Amazon\",agENFniyw:\"Oratio\",gBTKxW4Bg:resolvedLinks21[0],GwluAMURg:addImageAlt({src:\"https://framerusercontent.com/images/Y8bCWPe9LOUOcjlYtgr21Hcn1hw.png\",srcSet:\"https://framerusercontent.com/images/Y8bCWPe9LOUOcjlYtgr21Hcn1hw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y8bCWPe9LOUOcjlYtgr21Hcn1hw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y8bCWPe9LOUOcjlYtgr21Hcn1hw.png 1358w\"},\"\"),height:\"100%\",id:\"cvW_KxFVW\",layoutId:\"cvW_KxFVW\",style:{width:\"100%\"},variant:\"GOANjcC4y\",width:\"100%\"})})})})],speed:10,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-R5ova.framer-1sdwd9m, .framer-R5ova .framer-1sdwd9m { display: block; }\",\".framer-R5ova.framer-e5jfeq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: 800px; justify-content: space-between; overflow: visible; padding: 20px 0px 30px 0px; position: relative; width: 1440px; }\",\".framer-R5ova .framer-1xwq2m0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-R5ova .framer-1kqijtr { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-R5ova .framer-ip7tie { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-R5ova .framer-63bznt { flex: none; height: auto; max-width: 700px; overflow: visible; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-R5ova .framer-hu27t-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-R5ova .framer-1iaz2fk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-R5ova .framer-31pr9-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-R5ova .framer-6lib14-container, .framer-R5ova .framer-1yie33v-container, .framer-R5ova .framer-otex2y-container, .framer-R5ova .framer-1a3pakp-container, .framer-R5ova .framer-te54ko-container, .framer-R5ova .framer-1yatrh7-container, .framer-R5ova .framer-1jsrk7t-container, .framer-R5ova .framer-1foq6t0-container, .framer-R5ova .framer-16342v7-container, .framer-R5ova .framer-1t9jk2d-container, .framer-R5ova .framer-cj97of-container, .framer-R5ova .framer-fado6z-container, .framer-R5ova .framer-1dp8dfz-container, .framer-R5ova .framer-179venv-container, .framer-R5ova .framer-1hj5ewh-container, .framer-R5ova .framer-jbdrse-container, .framer-R5ova .framer-vlt9z1-container, .framer-R5ova .framer-9kzbyd-container, .framer-R5ova .framer-12igbe9-container, .framer-R5ova .framer-lwyq3x-container, .framer-R5ova .framer-1u8e9e4-container, .framer-R5ova .framer-xo6t0o-container { height: auto; position: relative; width: 230px; }\",\".framer-R5ova .framer-aisoag-container { flex: none; height: 200px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-R5ova .framer-ip7tie, .framer-R5ova .framer-1iaz2fk { gap: 0px; } .framer-R5ova .framer-ip7tie > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-R5ova .framer-ip7tie > :first-child, .framer-R5ova .framer-1iaz2fk > :first-child { margin-top: 0px; } .framer-R5ova .framer-ip7tie > :last-child, .framer-R5ova .framer-1iaz2fk > :last-child { margin-bottom: 0px; } .framer-R5ova .framer-1iaz2fk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-R5ova.framer-v-wi829m.framer-e5jfeq { gap: 0px; height: min-content; justify-content: center; padding: 40px 0px 30px 0px; width: 390px; }\",\".framer-R5ova.framer-v-wi829m .framer-1xwq2m0 { flex-direction: column; gap: 20px; justify-content: flex-start; padding: 10px; }\",\".framer-R5ova.framer-v-wi829m .framer-ip7tie { gap: 40px; padding: 0px 0px 100px 0px; width: 100%; }\",\".framer-R5ova.framer-v-wi829m .framer-63bznt, .framer-R5ova.framer-v-1ch9xgd .framer-ip7tie { width: 100%; }\",\".framer-R5ova.framer-v-wi829m .framer-1iaz2fk { height: 150px; }\",\".framer-R5ova.framer-v-wi829m .framer-31pr9-container { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-R5ova.framer-v-wi829m.framer-e5jfeq, .framer-R5ova.framer-v-wi829m .framer-1xwq2m0, .framer-R5ova.framer-v-wi829m .framer-ip7tie { gap: 0px; } .framer-R5ova.framer-v-wi829m.framer-e5jfeq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-R5ova.framer-v-wi829m.framer-e5jfeq > :first-child, .framer-R5ova.framer-v-wi829m .framer-1xwq2m0 > :first-child, .framer-R5ova.framer-v-wi829m .framer-ip7tie > :first-child { margin-top: 0px; } .framer-R5ova.framer-v-wi829m.framer-e5jfeq > :last-child, .framer-R5ova.framer-v-wi829m .framer-1xwq2m0 > :last-child, .framer-R5ova.framer-v-wi829m .framer-ip7tie > :last-child { margin-bottom: 0px; } .framer-R5ova.framer-v-wi829m .framer-1xwq2m0 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-R5ova.framer-v-wi829m .framer-ip7tie > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-R5ova.framer-v-1ch9xgd.framer-e5jfeq { gap: 0px; height: min-content; justify-content: center; width: 750px; }\",\".framer-R5ova.framer-v-1ch9xgd .framer-1xwq2m0 { flex-direction: column; gap: 30px; justify-content: flex-start; padding: 20px 20px 200px 20px; }\",\".framer-R5ova.framer-v-1ch9xgd .framer-63bznt { width: 75%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-R5ova.framer-v-1ch9xgd.framer-e5jfeq, .framer-R5ova.framer-v-1ch9xgd .framer-1xwq2m0 { gap: 0px; } .framer-R5ova.framer-v-1ch9xgd.framer-e5jfeq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-R5ova.framer-v-1ch9xgd.framer-e5jfeq > :first-child, .framer-R5ova.framer-v-1ch9xgd .framer-1xwq2m0 > :first-child { margin-top: 0px; } .framer-R5ova.framer-v-1ch9xgd.framer-e5jfeq > :last-child, .framer-R5ova.framer-v-1ch9xgd .framer-1xwq2m0 > :last-child { margin-bottom: 0px; } .framer-R5ova.framer-v-1ch9xgd .framer-1xwq2m0 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"qtI8KSTGM\":{\"layout\":[\"fixed\",\"auto\"]},\"E8fNk8TU0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BsfYEdUQZ\":\"text\",\"SH8LNI4w4\":\"title\",\"UHthzTQeE\":\"subtitle\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroChqkfduh=withCSS(Component,css,\"framer-R5ova\");export default FrameroChqkfduh;FrameroChqkfduh.displayName=\"Case CTA Footer\";FrameroChqkfduh.defaultProps={height:800,width:1440};addPropertyControls(FrameroChqkfduh,{variant:{options:[\"I1073:9593;1066:14533\",\"qtI8KSTGM\",\"E8fNk8TU0\"],optionTitles:[\"Desktop\",\"Mobile\",\"tablet\"],title:\"Variant\",type:ControlType.Enum},BsfYEdUQZ:{defaultValue:\"rgb(0, 0, 0)\",title:\"Text\",type:ControlType.Color},SH8LNI4w4:{defaultValue:\"Prepare yourself for the future of e-commerce\",displayTextArea:false,title:\"Title\",type:ControlType.String},UHthzTQeE:{defaultValue:\"Work with us\",displayTextArea:false,title:\"Subtitle\",type:ControlType.String}});addFonts(FrameroChqkfduh,[{explicitInter:true,fonts:[{family:\"LCDDot TR Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/9Szz77ZDyRS4ERk8YXsXK9zeYA.otf\"},{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\"}]},...ContactRalphFonts,...Next_caseFonts,...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroChqkfduh\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qtI8KSTGM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E8fNk8TU0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"800\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerVariables\":\"{\\\"BsfYEdUQZ\\\":\\\"text\\\",\\\"SH8LNI4w4\\\":\\\"title\\\",\\\"UHthzTQeE\\\":\\\"subtitle\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "ImageWithFXWithOptimizedAppearEffect", "Image2", "RichTextWithFXWithOptimizedAppearEffect", "RichText2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "toResponsiveImage", "value", "transition3", "animation2", "animation3", "transition4", "animation4", "transition5", "animation5", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "image", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "GwluAMURg", "agENFniyw", "ADNUpTpHe", "gBTKxW4Bg", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "css", "Framerv3aq9woar", "withCSS", "v3aq9woar_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ContactRalphFonts", "getFonts", "xsViOVkua_default", "Next_caseFonts", "v3aq9woar_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "textEffect", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "subtitle", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BsfYEdUQZ", "SH8LNI4w4", "UHthzTQeE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "resolvedLinks16", "resolvedLinks17", "resolvedLinks18", "resolvedLinks19", "resolvedLinks20", "resolvedLinks21", "css", "FrameroChqkfduh", "withCSS", "oChqkfduh_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
