{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/0Kofwd3q1xqsORBOc8rG/f4kcI3JBf0RXF1c0C5nG/C5kT6tkKy.js", "ssg:https://framerusercontent.com/modules/EjXOrxRq8ZtU1uxO2Dt4/7rU4RP5EDJ5L8IAL8lZf/xTq4I0_80.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/4GECdWBYeVYrcKEA39Uq/iwBr66THuTqhMrmlfWSU/jghyr6lYg.js\";const enabledGestures={Cv1FKiskH:{hover:true},DfdsVF1Bc:{hover:true},g5oZ4MWS6:{hover:true},GR4NERWoh:{hover:true}};const cycleOrder=[\"DfdsVF1Bc\",\"GR4NERWoh\",\"V21KN3lCz\",\"g5oZ4MWS6\",\"Cv1FKiskH\",\"pCWCytqEu\"];const serializationHash=\"framer-yNrRJ\";const variantClassNames={Cv1FKiskH:\"framer-v-10psgqn\",DfdsVF1Bc:\"framer-v-1rwr237\",g5oZ4MWS6:\"framer-v-39uxr\",GR4NERWoh:\"framer-v-122mfb5\",pCWCytqEu:\"framer-v-1twsycu\",V21KN3lCz:\"framer-v-1lqijg1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile Infinity\":\"pCWCytqEu\",\"Variant 1\":\"DfdsVF1Bc\",\"Variant 6\":\"Cv1FKiskH\",Infinite:\"GR4NERWoh\",Infinity:\"g5oZ4MWS6\",Mobile:\"V21KN3lCz\"};const getProps=({height,id,number,title,width,...props})=>{return{...props,A_xiIWFCR:number??props.A_xiIWFCR??\"15+\",OqvEnbBgw:title??props.OqvEnbBgw??\"Years\",variant:humanReadableVariantMap[props.variant]??props.variant??\"DfdsVF1Bc\"};};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,A_xiIWFCR,OqvEnbBgw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DfdsVF1Bc\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"g5oZ4MWS6-hover\",\"Cv1FKiskH-hover\"].includes(gestureVariant))return false;if([\"g5oZ4MWS6\",\"Cv1FKiskH\",\"pCWCytqEu\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"pCWCytqEu\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"g5oZ4MWS6-hover\")return false;if(baseVariant===\"g5oZ4MWS6\")return true;return false;};const isDisplayed3=()=>{if(gestureVariant===\"Cv1FKiskH-hover\")return false;if(baseVariant===\"Cv1FKiskH\")return true;return false;};const isDisplayed4=()=>{if(gestureVariant===\"Cv1FKiskH-hover\")return true;return false;};const isDisplayed5=()=>{if(gestureVariant===\"g5oZ4MWS6-hover\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1rwr237\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"DfdsVF1Bc\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-64255d26-2a66-4ef3-a013-907b665f4477, rgb(0, 0, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-77bbe74b-215a-4576-93f6-08037e368c0f, rgb(255, 255, 255))\",borderBottomLeftRadius:42.17,borderBottomRightRadius:42.17,borderTopLeftRadius:42.17,borderTopRightRadius:42.17,...style},variants:{\"Cv1FKiskH-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-0c4c4759-e28e-45d4-a0cf-d3824c008842, rgb(23, 49, 89))\"},\"DfdsVF1Bc-hover\":{backgroundColor:\"var(--token-0c4c4759-e28e-45d4-a0cf-d3824c008842, rgb(23, 49, 89))\"},\"g5oZ4MWS6-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-0c4c4759-e28e-45d4-a0cf-d3824c008842, rgb(23, 49, 89))\"},\"GR4NERWoh-hover\":{backgroundColor:\"var(--token-0c4c4759-e28e-45d4-a0cf-d3824c008842, rgb(23, 49, 89))\"}},...addPropertyOverrides({\"Cv1FKiskH-hover\":{\"data-framer-name\":undefined},\"DfdsVF1Bc-hover\":{\"data-framer-name\":undefined},\"g5oZ4MWS6-hover\":{\"data-framer-name\":undefined},\"GR4NERWoh-hover\":{\"data-framer-name\":undefined},Cv1FKiskH:{\"data-framer-name\":\"Variant 6\"},g5oZ4MWS6:{\"data-framer-name\":\"Infinity\"},GR4NERWoh:{\"data-framer-name\":\"Infinite\"},pCWCytqEu:{\"data-framer-name\":\"Mobile Infinity\"},V21KN3lCz:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-size\":\"109px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-64255d26-2a66-4ef3-a013-907b665f4477, rgb(0, 0, 0)))\"},children:\"15+\"})}),className:\"framer-1cior7i\",\"data-framer-name\":\"15'\",fonts:[\"GF;Wix Madefor Display-600\"],layoutDependency:layoutDependency,layoutId:\"KVAhY4Q8a\",style:{\"--extracted-gdpscs\":\"var(--token-64255d26-2a66-4ef3-a013-907b665f4477, rgb(0, 0, 0))\"},text:A_xiIWFCR,variants:{\"DfdsVF1Bc-hover\":{\"--extracted-gdpscs\":\"var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43))\"},\"GR4NERWoh-hover\":{\"--extracted-gdpscs\":\"var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"DfdsVF1Bc-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-size\":\"109px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43)))\"},children:\"15+\"})})},\"GR4NERWoh-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-size\":\"116px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43)))\"},children:\"15+\"})})},GR4NERWoh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-size\":\"116px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-64255d26-2a66-4ef3-a013-907b665f4477, rgb(0, 0, 0)))\"},children:\"15+\"})}),fonts:[\"GF;Wix Madefor Display-700\"]},V21KN3lCz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-64255d26-2a66-4ef3-a013-907b665f4477, rgb(0, 0, 0)))\"},children:\"15+\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-lfn3p8\",\"data-framer-name\":\"Group 57259\",fill:\"black\",intrinsicHeight:355,intrinsicWidth:621,layoutDependency:layoutDependency,layoutId:\"SC_Jxazln\",svg:'<svg width=\"621\" height=\"355\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" maskUnits=\"userSpaceOnUse\" x=\"19\" y=\"36\" width=\"583\" height=\"282\" fill=\"#000\"><path fill=\"#fff\" d=\"M19 36h583v282H19z\"/><path d=\"M599 176.832v-.314c.09-37.706-12.396-70.588-36.107-95.1-21.208-21.922-50.789-36.46-83.323-40.97h-.056l-.057-.023A128.9 128.9 0 0 0 461.213 39h-.846.012c-69.102 0-109.84 45.772-140.582 90.557l-9.308 13.552-9.309-13.552C270.461 84.783 229.723 39.022 160.644 39h-.845a130.58 130.58 0 0 0-18.245 1.425h-.056l-.057.022c-32.522 4.499-62.115 19.05-83.323 40.97C34.408 105.93 21.91 138.813 22 176.519v.963c-.09 37.684 12.384 70.554 36.072 95.056 21.186 21.91 50.744 36.471 83.244 40.992h.057l.056.023c6.119.92 12.306 1.402 18.357 1.447h2.571c.191 0 .372-.011.563-.022h.09c30.878-.494 58.228-10.232 83.606-29.775 23.721-18.275 41.628-42.148 54.564-60.905l9.286-13.463 9.286 13.463c12.937 18.757 30.843 42.63 54.565 60.905 25.378 19.543 52.728 29.281 83.605 29.775h.09c.192 0 .372 0 .564.022h2.569a130.388 130.388 0 0 0 18.357-1.447h.057l.056-.023c32.5-4.521 62.07-19.082 83.245-40.992 23.687-24.502 36.162-57.372 36.072-95.056v-.639l.068-.011Zm-315.287 6.372c-.642.942-1.194 1.772-1.634 2.434-18.503 28.036-39.475 59.795-69.665 77.768l-.304.179-.316.157c-15.653 8.022-30.347 12.644-43.679 13.732h-.112a99.337 99.337 0 0 1-7.032.258h-.237a117.79 117.79 0 0 1-19.011-1.896l-.101-.023-.102-.022c-21.681-4.375-41.763-15.807-56.56-32.175-16.497-18.264-25.332-41.251-25.535-66.47v-.18c.203-24.557 8.587-47.073 24.251-65.112 14.03-16.155 33.3-27.834 54.261-32.86l.135-.033.135-.034a116.35 116.35 0 0 1 22.64-2.547c.62-.022 1.228-.022 1.848-.022 15.472 0 33.052 5.239 52.243 15.583l.35.19.338.213c28.398 18.018 48.378 48.42 66.003 75.244.529.796 1.251 1.862 2.084 3.118l4.215 6.249-4.215 6.249Zm277.873-6.058c-.203 25.23-9.038 48.217-25.536 66.47-14.796 16.368-34.877 27.8-56.559 32.175l-.101.022-.102.023a117.903 117.903 0 0 1-19.011 1.896h-.225c-2.31 0-4.677-.09-7.032-.258h-.113c-13.331-1.088-28.037-5.71-43.679-13.732l-.315-.168-.304-.18c-30.179-17.961-51.151-49.732-69.655-77.756-.439-.662-1.003-1.481-1.634-2.434l-4.214-6.249 4.214-6.249a207.842 207.842 0 0 0 2.108-3.152c17.602-26.79 37.582-57.192 65.98-75.21l.338-.213.35-.19c19.179-10.344 36.759-15.583 52.232-15.583.619 0 1.239 0 1.859.022 7.595.113 15.213.965 22.64 2.547l.135.034.135.033c20.961 5.037 40.231 16.705 54.261 32.86 15.664 18.039 24.048 40.555 24.251 65.112v.18h-.023Z\"/></mask><path d=\"M599 176.832v-.314c.09-37.706-12.396-70.588-36.107-95.1-21.208-21.922-50.789-36.46-83.323-40.97h-.056l-.057-.023A128.9 128.9 0 0 0 461.213 39h-.846.012c-69.102 0-109.84 45.772-140.582 90.557l-9.308 13.552-9.309-13.552C270.461 84.783 229.723 39.022 160.644 39h-.845a130.58 130.58 0 0 0-18.245 1.425h-.056l-.057.022c-32.522 4.499-62.115 19.05-83.323 40.97C34.408 105.93 21.91 138.813 22 176.519v.963c-.09 37.684 12.384 70.554 36.072 95.056 21.186 21.91 50.744 36.471 83.244 40.992h.057l.056.023c6.119.92 12.306 1.402 18.357 1.447h2.571c.191 0 .372-.011.563-.022h.09c30.878-.494 58.228-10.232 83.606-29.775 23.721-18.275 41.628-42.148 54.564-60.905l9.286-13.463 9.286 13.463c12.937 18.757 30.843 42.63 54.565 60.905 25.378 19.543 52.728 29.281 83.605 29.775h.09c.192 0 .372 0 .564.022h2.569a130.388 130.388 0 0 0 18.357-1.447h.057l.056-.023c32.5-4.521 62.07-19.082 83.245-40.992 23.687-24.502 36.162-57.372 36.072-95.056v-.639l.068-.011Zm-315.287 6.372c-.642.942-1.194 1.772-1.634 2.434-18.503 28.036-39.475 59.795-69.665 77.768l-.304.179-.316.157c-15.653 8.022-30.347 12.644-43.679 13.732h-.112a99.337 99.337 0 0 1-7.032.258h-.237a117.79 117.79 0 0 1-19.011-1.896l-.101-.023-.102-.022c-21.681-4.375-41.763-15.807-56.56-32.175-16.497-18.264-25.332-41.251-25.535-66.47v-.18c.203-24.557 8.587-47.073 24.251-65.112 14.03-16.155 33.3-27.834 54.261-32.86l.135-.033.135-.034a116.35 116.35 0 0 1 22.64-2.547c.62-.022 1.228-.022 1.848-.022 15.472 0 33.052 5.239 52.243 15.583l.35.19.338.213c28.398 18.018 48.378 48.42 66.003 75.244.529.796 1.251 1.862 2.084 3.118l4.215 6.249-4.215 6.249Zm277.873-6.058c-.203 25.23-9.038 48.217-25.536 66.47-14.796 16.368-34.877 27.8-56.559 32.175l-.101.022-.102.023a117.903 117.903 0 0 1-19.011 1.896h-.225c-2.31 0-4.677-.09-7.032-.258h-.113c-13.331-1.088-28.037-5.71-43.679-13.732l-.315-.168-.304-.18c-30.179-17.961-51.151-49.732-69.655-77.756-.439-.662-1.003-1.481-1.634-2.434l-4.214-6.249 4.214-6.249a207.842 207.842 0 0 0 2.108-3.152c17.602-26.79 37.582-57.192 65.98-75.21l.338-.213.35-.19c19.179-10.344 36.759-15.583 52.232-15.583.619 0 1.239 0 1.859.022 7.595.113 15.213.965 22.64 2.547l.135.034.135.033c20.961 5.037 40.231 16.705 54.261 32.86 15.664 18.039 24.048 40.555 24.251 65.112v.18h-.023Z\" fill=\"#010101\"/><path d=\"M599 176.832v-.314c.09-37.706-12.396-70.588-36.107-95.1-21.208-21.922-50.789-36.46-83.323-40.97h-.056l-.057-.023A128.9 128.9 0 0 0 461.213 39h-.846.012c-69.102 0-109.84 45.772-140.582 90.557l-9.308 13.552-9.309-13.552C270.461 84.783 229.723 39.022 160.644 39h-.845a130.58 130.58 0 0 0-18.245 1.425h-.056l-.057.022c-32.522 4.499-62.115 19.05-83.323 40.97C34.408 105.93 21.91 138.813 22 176.519v.963c-.09 37.684 12.384 70.554 36.072 95.056 21.186 21.91 50.744 36.471 83.244 40.992h.057l.056.023c6.119.92 12.306 1.402 18.357 1.447h2.571c.191 0 .372-.011.563-.022h.09c30.878-.494 58.228-10.232 83.606-29.775 23.721-18.275 41.628-42.148 54.564-60.905l9.286-13.463 9.286 13.463c12.937 18.757 30.843 42.63 54.565 60.905 25.378 19.543 52.728 29.281 83.605 29.775h.09c.192 0 .372 0 .564.022h2.569a130.388 130.388 0 0 0 18.357-1.447h.057l.056-.023c32.5-4.521 62.07-19.082 83.245-40.992 23.687-24.502 36.162-57.372 36.072-95.056v-.639l.068-.011Zm-315.287 6.372c-.642.942-1.194 1.772-1.634 2.434-18.503 28.036-39.475 59.795-69.665 77.768l-.304.179-.316.157c-15.653 8.022-30.347 12.644-43.679 13.732h-.112a99.337 99.337 0 0 1-7.032.258h-.237a117.79 117.79 0 0 1-19.011-1.896l-.101-.023-.102-.022c-21.681-4.375-41.763-15.807-56.56-32.175-16.497-18.264-25.332-41.251-25.535-66.47v-.18c.203-24.557 8.587-47.073 24.251-65.112 14.03-16.155 33.3-27.834 54.261-32.86l.135-.033.135-.034a116.35 116.35 0 0 1 22.64-2.547c.62-.022 1.228-.022 1.848-.022 15.472 0 33.052 5.239 52.243 15.583l.35.19.338.213c28.398 18.018 48.378 48.42 66.003 75.244.529.796 1.251 1.862 2.084 3.118l4.215 6.249-4.215 6.249Zm277.873-6.058c-.203 25.23-9.038 48.217-25.536 66.47-14.796 16.368-34.877 27.8-56.559 32.175l-.101.022-.102.023a117.903 117.903 0 0 1-19.011 1.896h-.225c-2.31 0-4.677-.09-7.032-.258h-.113c-13.331-1.088-28.037-5.71-43.679-13.732l-.315-.168-.304-.18c-30.179-17.961-51.151-49.732-69.655-77.756-.439-.662-1.003-1.481-1.634-2.434l-4.214-6.249 4.214-6.249a207.842 207.842 0 0 0 2.108-3.152c17.602-26.79 37.582-57.192 65.98-75.21l.338-.213.35-.19c19.179-10.344 36.759-15.583 52.232-15.583.619 0 1.239 0 1.859.022 7.595.113 15.213.965 22.64 2.547l.135.034.135.033c20.961 5.037 40.231 16.705 54.261 32.86 15.664 18.039 24.048 40.555 24.251 65.112v.18h-.023Z\" stroke=\"#000\" stroke-width=\"6\" mask=\"url(#a)\"/></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1t4kbq8\",\"data-framer-name\":\"Group 57255\",fill:\"black\",intrinsicHeight:355,intrinsicWidth:621,layoutDependency:layoutDependency,layoutId:\"SAzfx_NuL\",svg:'<svg width=\"621\" height=\"355\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M599 177.255v-.434c.195-84.55-59.531-133.3-124.289-142.303a135.113 135.113 0 0 0-19.099-1.496h-.846c-73.434 0-115.667 50.442-144.244 92.273C281.911 83.442 239.69 33 166.245 33h-.846a135.24 135.24 0 0 0-19.099 1.497C81.542 43.509 21.805 92.26 22 176.81v.867c-.195 84.497 59.466 133.247 124.181 142.292 6.409.966 12.83 1.475 19.207 1.519h2.202c.39 0 .77-.022 1.16-.033 71.309-1.149 113.237-50.876 141.739-92.37 28.502 41.494 70.43 91.221 141.739 92.37.391 0 .77.033 1.161.033h2.201a135.192 135.192 0 0 0 19.208-1.519c64.714-9.045 124.375-57.784 124.18-142.292v-.434l.022.011ZM210.538 251.46c-12.277 6.323-25.379 11.073-37.959 12.103a91.46 91.46 0 0 1-6.031.228 101.637 101.637 0 0 1-16.528-1.659c-36.018-7.31-69.942-38.372-70.31-84.833.368-45.248 32.405-75.864 67.262-84.27a100.825 100.825 0 0 1 19.739-2.223c15.151-.434 31.625 5.596 46.668 13.741 25.368 16.171 43.545 43.968 60.279 69.541.542.814 1.247 1.877 2.072 3.102-.63.944-1.183 1.768-1.616 2.419-17.538 26.69-36.745 55.81-63.555 71.851h-.021Zm136.359-71.841c-.434-.65-.987-1.474-1.616-2.418.825-1.226 1.53-2.288 2.072-3.102 16.734-25.584 34.911-53.37 60.279-69.541 15.042-8.145 31.517-14.175 46.668-13.741a100.72 100.72 0 0 1 19.738 2.223c34.858 8.406 66.895 39.022 67.264 84.269-.38 46.462-34.304 77.524-70.311 84.833a101.528 101.528 0 0 1-16.529 1.66c-2.049 0-4.056-.087-6.03-.228-12.58-1.03-25.693-5.791-37.959-12.103-26.821-16.041-46.017-45.15-63.554-71.852h-.022Z\" fill=\"#010101\"/></svg>',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-bk01wd\",\"data-framer-name\":\"Group 57259\",fill:\"black\",intrinsicHeight:355,intrinsicWidth:621,layoutDependency:layoutDependency,layoutId:\"qTD9gXRlg\",svg:'<svg width=\"621\" height=\"355\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" maskUnits=\"userSpaceOnUse\" x=\"19\" y=\"36\" width=\"583\" height=\"282\" fill=\"#000\"><path fill=\"#fff\" d=\"M19 36h583v282H19z\"/><path d=\"M599 176.832v-.314c.09-37.706-12.396-70.588-36.107-95.1-21.208-21.922-50.789-36.46-83.323-40.97h-.056l-.057-.023A128.9 128.9 0 0 0 461.213 39h-.846.012c-69.102 0-109.84 45.772-140.582 90.557l-9.308 13.552-9.309-13.552C270.461 84.783 229.723 39.022 160.644 39h-.845a130.58 130.58 0 0 0-18.245 1.425h-.056l-.057.022c-32.522 4.499-62.115 19.05-83.323 40.97C34.408 105.93 21.91 138.813 22 176.519v.963c-.09 37.684 12.384 70.554 36.072 95.056 21.186 21.91 50.744 36.471 83.244 40.992h.057l.056.023c6.119.92 12.306 1.402 18.357 1.447h2.571c.191 0 .372-.011.563-.022h.09c30.878-.494 58.228-10.232 83.606-29.775 23.721-18.275 41.628-42.148 54.564-60.905l9.286-13.463 9.286 13.463c12.937 18.757 30.843 42.63 54.565 60.905 25.378 19.543 52.728 29.281 83.605 29.775h.09c.192 0 .372 0 .564.022h2.569a130.388 130.388 0 0 0 18.357-1.447h.057l.056-.023c32.5-4.521 62.07-19.082 83.245-40.992 23.687-24.502 36.162-57.372 36.072-95.056v-.639l.068-.011Zm-315.287 6.372c-.642.942-1.194 1.772-1.634 2.434-18.503 28.036-39.475 59.795-69.665 77.768l-.304.179-.316.157c-15.653 8.022-30.347 12.644-43.679 13.732h-.112a99.337 99.337 0 0 1-7.032.258h-.237a117.79 117.79 0 0 1-19.011-1.896l-.101-.023-.102-.022c-21.681-4.375-41.763-15.807-56.56-32.175-16.497-18.264-25.332-41.251-25.535-66.47v-.18c.203-24.557 8.587-47.073 24.251-65.112 14.03-16.155 33.3-27.834 54.261-32.86l.135-.033.135-.034a116.35 116.35 0 0 1 22.64-2.547c.62-.022 1.228-.022 1.848-.022 15.472 0 33.052 5.239 52.243 15.583l.35.19.338.213c28.398 18.018 48.378 48.42 66.003 75.244.529.796 1.251 1.862 2.084 3.118l4.215 6.249-4.215 6.249Zm277.873-6.058c-.203 25.23-9.038 48.217-25.536 66.47-14.796 16.368-34.877 27.8-56.559 32.175l-.101.022-.102.023a117.903 117.903 0 0 1-19.011 1.896h-.225c-2.31 0-4.677-.09-7.032-.258h-.113c-13.331-1.088-28.037-5.71-43.679-13.732l-.315-.168-.304-.18c-30.179-17.961-51.151-49.732-69.655-77.756-.439-.662-1.003-1.481-1.634-2.434l-4.214-6.249 4.214-6.249a207.842 207.842 0 0 0 2.108-3.152c17.602-26.79 37.582-57.192 65.98-75.21l.338-.213.35-.19c19.179-10.344 36.759-15.583 52.232-15.583.619 0 1.239 0 1.859.022 7.595.113 15.213.965 22.64 2.547l.135.034.135.033c20.961 5.037 40.231 16.705 54.261 32.86 15.664 18.039 24.048 40.555 24.251 65.112v.18h-.023Z\"/></mask><path d=\"M599 176.832v-.314c.09-37.706-12.396-70.588-36.107-95.1-21.208-21.922-50.789-36.46-83.323-40.97h-.056l-.057-.023A128.9 128.9 0 0 0 461.213 39h-.846.012c-69.102 0-109.84 45.772-140.582 90.557l-9.308 13.552-9.309-13.552C270.461 84.783 229.723 39.022 160.644 39h-.845a130.58 130.58 0 0 0-18.245 1.425h-.056l-.057.022c-32.522 4.499-62.115 19.05-83.323 40.97C34.408 105.93 21.91 138.813 22 176.519v.963c-.09 37.684 12.384 70.554 36.072 95.056 21.186 21.91 50.744 36.471 83.244 40.992h.057l.056.023c6.119.92 12.306 1.402 18.357 1.447h2.571c.191 0 .372-.011.563-.022h.09c30.878-.494 58.228-10.232 83.606-29.775 23.721-18.275 41.628-42.148 54.564-60.905l9.286-13.463 9.286 13.463c12.937 18.757 30.843 42.63 54.565 60.905 25.378 19.543 52.728 29.281 83.605 29.775h.09c.192 0 .372 0 .564.022h2.569a130.388 130.388 0 0 0 18.357-1.447h.057l.056-.023c32.5-4.521 62.07-19.082 83.245-40.992 23.687-24.502 36.162-57.372 36.072-95.056v-.639l.068-.011Zm-315.287 6.372c-.642.942-1.194 1.772-1.634 2.434-18.503 28.036-39.475 59.795-69.665 77.768l-.304.179-.316.157c-15.653 8.022-30.347 12.644-43.679 13.732h-.112a99.337 99.337 0 0 1-7.032.258h-.237a117.79 117.79 0 0 1-19.011-1.896l-.101-.023-.102-.022c-21.681-4.375-41.763-15.807-56.56-32.175-16.497-18.264-25.332-41.251-25.535-66.47v-.18c.203-24.557 8.587-47.073 24.251-65.112 14.03-16.155 33.3-27.834 54.261-32.86l.135-.033.135-.034a116.35 116.35 0 0 1 22.64-2.547c.62-.022 1.228-.022 1.848-.022 15.472 0 33.052 5.239 52.243 15.583l.35.19.338.213c28.398 18.018 48.378 48.42 66.003 75.244.529.796 1.251 1.862 2.084 3.118l4.215 6.249-4.215 6.249Zm277.873-6.058c-.203 25.23-9.038 48.217-25.536 66.47-14.796 16.368-34.877 27.8-56.559 32.175l-.101.022-.102.023a117.903 117.903 0 0 1-19.011 1.896h-.225c-2.31 0-4.677-.09-7.032-.258h-.113c-13.331-1.088-28.037-5.71-43.679-13.732l-.315-.168-.304-.18c-30.179-17.961-51.151-49.732-69.655-77.756-.439-.662-1.003-1.481-1.634-2.434l-4.214-6.249 4.214-6.249a207.842 207.842 0 0 0 2.108-3.152c17.602-26.79 37.582-57.192 65.98-75.21l.338-.213.35-.19c19.179-10.344 36.759-15.583 52.232-15.583.619 0 1.239 0 1.859.022 7.595.113 15.213.965 22.64 2.547l.135.034.135.033c20.961 5.037 40.231 16.705 54.261 32.86 15.664 18.039 24.048 40.555 24.251 65.112v.18h-.023Z\" fill=\"#010101\"/><path d=\"M599 176.832v-.314c.09-37.706-12.396-70.588-36.107-95.1-21.208-21.922-50.789-36.46-83.323-40.97h-.056l-.057-.023A128.9 128.9 0 0 0 461.213 39h-.846.012c-69.102 0-109.84 45.772-140.582 90.557l-9.308 13.552-9.309-13.552C270.461 84.783 229.723 39.022 160.644 39h-.845a130.58 130.58 0 0 0-18.245 1.425h-.056l-.057.022c-32.522 4.499-62.115 19.05-83.323 40.97C34.408 105.93 21.91 138.813 22 176.519v.963c-.09 37.684 12.384 70.554 36.072 95.056 21.186 21.91 50.744 36.471 83.244 40.992h.057l.056.023c6.119.92 12.306 1.402 18.357 1.447h2.571c.191 0 .372-.011.563-.022h.09c30.878-.494 58.228-10.232 83.606-29.775 23.721-18.275 41.628-42.148 54.564-60.905l9.286-13.463 9.286 13.463c12.937 18.757 30.843 42.63 54.565 60.905 25.378 19.543 52.728 29.281 83.605 29.775h.09c.192 0 .372 0 .564.022h2.569a130.388 130.388 0 0 0 18.357-1.447h.057l.056-.023c32.5-4.521 62.07-19.082 83.245-40.992 23.687-24.502 36.162-57.372 36.072-95.056v-.639l.068-.011Zm-315.287 6.372c-.642.942-1.194 1.772-1.634 2.434-18.503 28.036-39.475 59.795-69.665 77.768l-.304.179-.316.157c-15.653 8.022-30.347 12.644-43.679 13.732h-.112a99.337 99.337 0 0 1-7.032.258h-.237a117.79 117.79 0 0 1-19.011-1.896l-.101-.023-.102-.022c-21.681-4.375-41.763-15.807-56.56-32.175-16.497-18.264-25.332-41.251-25.535-66.47v-.18c.203-24.557 8.587-47.073 24.251-65.112 14.03-16.155 33.3-27.834 54.261-32.86l.135-.033.135-.034a116.35 116.35 0 0 1 22.64-2.547c.62-.022 1.228-.022 1.848-.022 15.472 0 33.052 5.239 52.243 15.583l.35.19.338.213c28.398 18.018 48.378 48.42 66.003 75.244.529.796 1.251 1.862 2.084 3.118l4.215 6.249-4.215 6.249Zm277.873-6.058c-.203 25.23-9.038 48.217-25.536 66.47-14.796 16.368-34.877 27.8-56.559 32.175l-.101.022-.102.023a117.903 117.903 0 0 1-19.011 1.896h-.225c-2.31 0-4.677-.09-7.032-.258h-.113c-13.331-1.088-28.037-5.71-43.679-13.732l-.315-.168-.304-.18c-30.179-17.961-51.151-49.732-69.655-77.756-.439-.662-1.003-1.481-1.634-2.434l-4.214-6.249 4.214-6.249a207.842 207.842 0 0 0 2.108-3.152c17.602-26.79 37.582-57.192 65.98-75.21l.338-.213.35-.19c19.179-10.344 36.759-15.583 52.232-15.583.619 0 1.239 0 1.859.022 7.595.113 15.213.965 22.64 2.547l.135.034.135.033c20.961 5.037 40.231 16.705 54.261 32.86 15.664 18.039 24.048 40.555 24.251 65.112v.18h-.023Z\" stroke=\"#000\" stroke-width=\"6\" mask=\"url(#a)\"/></svg>',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-dqcqld\",\"data-framer-name\":\"Group 57260\",fill:\"black\",intrinsicHeight:355,intrinsicWidth:621,layoutDependency:layoutDependency,layoutId:\"oMVCvdBK6\",svg:'<svg width=\"621\" height=\"355\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" maskUnits=\"userSpaceOnUse\" x=\"19\" y=\"36\" width=\"583\" height=\"282\" fill=\"#000\"><path fill=\"#fff\" d=\"M19 36h583v282H19z\"/><path d=\"M599 176.832v-.314c.09-37.706-12.396-70.588-36.107-95.1-21.208-21.922-50.789-36.46-83.323-40.97h-.056l-.057-.023A128.9 128.9 0 0 0 461.213 39h-.846.012c-69.102 0-109.84 45.772-140.582 90.557l-9.308 13.552-9.309-13.552C270.461 84.783 229.723 39.022 160.644 39h-.845a130.58 130.58 0 0 0-18.245 1.425h-.056l-.057.022c-32.522 4.499-62.115 19.05-83.323 40.97C34.408 105.93 21.91 138.813 22 176.519v.963c-.09 37.684 12.384 70.554 36.072 95.056 21.186 21.91 50.744 36.471 83.244 40.992h.057l.056.023c6.119.92 12.306 1.402 18.357 1.447h2.571c.191 0 .372-.011.563-.022h.09c30.878-.494 58.228-10.232 83.606-29.775 23.721-18.275 41.628-42.148 54.564-60.905l9.286-13.463 9.286 13.463c12.937 18.757 30.843 42.63 54.565 60.905 25.378 19.543 52.728 29.281 83.605 29.775h.09c.192 0 .372 0 .564.022h2.569a130.388 130.388 0 0 0 18.357-1.447h.057l.056-.023c32.5-4.521 62.07-19.082 83.245-40.992 23.687-24.502 36.162-57.372 36.072-95.056v-.639l.068-.011Zm-315.287 6.372c-.642.942-1.194 1.772-1.634 2.434-18.503 28.036-39.475 59.795-69.665 77.768l-.304.179-.316.157c-15.653 8.022-30.347 12.644-43.679 13.732h-.112a99.337 99.337 0 0 1-7.032.258h-.237a117.79 117.79 0 0 1-19.011-1.896l-.101-.023-.102-.022c-21.681-4.375-41.763-15.807-56.56-32.175-16.497-18.264-25.332-41.251-25.535-66.47v-.18c.203-24.557 8.587-47.073 24.251-65.112 14.03-16.155 33.3-27.834 54.261-32.86l.135-.033.135-.034a116.35 116.35 0 0 1 22.64-2.547c.62-.022 1.228-.022 1.848-.022 15.472 0 33.052 5.239 52.243 15.583l.35.19.338.213c28.398 18.018 48.378 48.42 66.003 75.244.529.796 1.251 1.862 2.084 3.118l4.215 6.249-4.215 6.249Zm277.873-6.058c-.203 25.23-9.038 48.217-25.536 66.47-14.796 16.368-34.877 27.8-56.559 32.175l-.101.022-.102.023a117.903 117.903 0 0 1-19.011 1.896h-.225c-2.31 0-4.677-.09-7.032-.258h-.113c-13.331-1.088-28.037-5.71-43.679-13.732l-.315-.168-.304-.18c-30.179-17.961-51.151-49.732-69.655-77.756-.439-.662-1.003-1.481-1.634-2.434l-4.214-6.249 4.214-6.249a207.842 207.842 0 0 0 2.108-3.152c17.602-26.79 37.582-57.192 65.98-75.21l.338-.213.35-.19c19.179-10.344 36.759-15.583 52.232-15.583.619 0 1.239 0 1.859.022 7.595.113 15.213.965 22.64 2.547l.135.034.135.033c20.961 5.037 40.231 16.705 54.261 32.86 15.664 18.039 24.048 40.555 24.251 65.112v.18h-.023Z\"/></mask><path d=\"M599 176.832v-.314c.09-37.706-12.396-70.588-36.107-95.1-21.208-21.922-50.789-36.46-83.323-40.97h-.056l-.057-.023A128.9 128.9 0 0 0 461.213 39h-.846.012c-69.102 0-109.84 45.772-140.582 90.557l-9.308 13.552-9.309-13.552C270.461 84.783 229.723 39.022 160.644 39h-.845a130.58 130.58 0 0 0-18.245 1.425h-.056l-.057.022c-32.522 4.499-62.115 19.05-83.323 40.97C34.408 105.93 21.91 138.813 22 176.519v.963c-.09 37.684 12.384 70.554 36.072 95.056 21.186 21.91 50.744 36.471 83.244 40.992h.057l.056.023c6.119.92 12.306 1.402 18.357 1.447h2.571c.191 0 .372-.011.563-.022h.09c30.878-.494 58.228-10.232 83.606-29.775 23.721-18.275 41.628-42.148 54.564-60.905l9.286-13.463 9.286 13.463c12.937 18.757 30.843 42.63 54.565 60.905 25.378 19.543 52.728 29.281 83.605 29.775h.09c.192 0 .372 0 .564.022h2.569a130.388 130.388 0 0 0 18.357-1.447h.057l.056-.023c32.5-4.521 62.07-19.082 83.245-40.992 23.687-24.502 36.162-57.372 36.072-95.056v-.639l.068-.011Zm-315.287 6.372c-.642.942-1.194 1.772-1.634 2.434-18.503 28.036-39.475 59.795-69.665 77.768l-.304.179-.316.157c-15.653 8.022-30.347 12.644-43.679 13.732h-.112a99.337 99.337 0 0 1-7.032.258h-.237a117.79 117.79 0 0 1-19.011-1.896l-.101-.023-.102-.022c-21.681-4.375-41.763-15.807-56.56-32.175-16.497-18.264-25.332-41.251-25.535-66.47v-.18c.203-24.557 8.587-47.073 24.251-65.112 14.03-16.155 33.3-27.834 54.261-32.86l.135-.033.135-.034a116.35 116.35 0 0 1 22.64-2.547c.62-.022 1.228-.022 1.848-.022 15.472 0 33.052 5.239 52.243 15.583l.35.19.338.213c28.398 18.018 48.378 48.42 66.003 75.244.529.796 1.251 1.862 2.084 3.118l4.215 6.249-4.215 6.249Zm277.873-6.058c-.203 25.23-9.038 48.217-25.536 66.47-14.796 16.368-34.877 27.8-56.559 32.175l-.101.022-.102.023a117.903 117.903 0 0 1-19.011 1.896h-.225c-2.31 0-4.677-.09-7.032-.258h-.113c-13.331-1.088-28.037-5.71-43.679-13.732l-.315-.168-.304-.18c-30.179-17.961-51.151-49.732-69.655-77.756-.439-.662-1.003-1.481-1.634-2.434l-4.214-6.249 4.214-6.249a207.842 207.842 0 0 0 2.108-3.152c17.602-26.79 37.582-57.192 65.98-75.21l.338-.213.35-.19c19.179-10.344 36.759-15.583 52.232-15.583.619 0 1.239 0 1.859.022 7.595.113 15.213.965 22.64 2.547l.135.034.135.033c20.961 5.037 40.231 16.705 54.261 32.86 15.664 18.039 24.048 40.555 24.251 65.112v.18h-.023Z\" fill=\"#DDD92B\"/><path d=\"M599 176.832v-.314c.09-37.706-12.396-70.588-36.107-95.1-21.208-21.922-50.789-36.46-83.323-40.97h-.056l-.057-.023A128.9 128.9 0 0 0 461.213 39h-.846.012c-69.102 0-109.84 45.772-140.582 90.557l-9.308 13.552-9.309-13.552C270.461 84.783 229.723 39.022 160.644 39h-.845a130.58 130.58 0 0 0-18.245 1.425h-.056l-.057.022c-32.522 4.499-62.115 19.05-83.323 40.97C34.408 105.93 21.91 138.813 22 176.519v.963c-.09 37.684 12.384 70.554 36.072 95.056 21.186 21.91 50.744 36.471 83.244 40.992h.057l.056.023c6.119.92 12.306 1.402 18.357 1.447h2.571c.191 0 .372-.011.563-.022h.09c30.878-.494 58.228-10.232 83.606-29.775 23.721-18.275 41.628-42.148 54.564-60.905l9.286-13.463 9.286 13.463c12.937 18.757 30.843 42.63 54.565 60.905 25.378 19.543 52.728 29.281 83.605 29.775h.09c.192 0 .372 0 .564.022h2.569a130.388 130.388 0 0 0 18.357-1.447h.057l.056-.023c32.5-4.521 62.07-19.082 83.245-40.992 23.687-24.502 36.162-57.372 36.072-95.056v-.639l.068-.011Zm-315.287 6.372c-.642.942-1.194 1.772-1.634 2.434-18.503 28.036-39.475 59.795-69.665 77.768l-.304.179-.316.157c-15.653 8.022-30.347 12.644-43.679 13.732h-.112a99.337 99.337 0 0 1-7.032.258h-.237a117.79 117.79 0 0 1-19.011-1.896l-.101-.023-.102-.022c-21.681-4.375-41.763-15.807-56.56-32.175-16.497-18.264-25.332-41.251-25.535-66.47v-.18c.203-24.557 8.587-47.073 24.251-65.112 14.03-16.155 33.3-27.834 54.261-32.86l.135-.033.135-.034a116.35 116.35 0 0 1 22.64-2.547c.62-.022 1.228-.022 1.848-.022 15.472 0 33.052 5.239 52.243 15.583l.35.19.338.213c28.398 18.018 48.378 48.42 66.003 75.244.529.796 1.251 1.862 2.084 3.118l4.215 6.249-4.215 6.249Zm277.873-6.058c-.203 25.23-9.038 48.217-25.536 66.47-14.796 16.368-34.877 27.8-56.559 32.175l-.101.022-.102.023a117.903 117.903 0 0 1-19.011 1.896h-.225c-2.31 0-4.677-.09-7.032-.258h-.113c-13.331-1.088-28.037-5.71-43.679-13.732l-.315-.168-.304-.18c-30.179-17.961-51.151-49.732-69.655-77.756-.439-.662-1.003-1.481-1.634-2.434l-4.214-6.249 4.214-6.249a207.842 207.842 0 0 0 2.108-3.152c17.602-26.79 37.582-57.192 65.98-75.21l.338-.213.35-.19c19.179-10.344 36.759-15.583 52.232-15.583.619 0 1.239 0 1.859.022 7.595.113 15.213.965 22.64 2.547l.135.034.135.033c20.961 5.037 40.231 16.705 54.261 32.86 15.664 18.039 24.048 40.555 24.251 65.112v.18h-.023Z\" stroke=\"#DDD92B\" stroke-width=\"6\" mask=\"url(#a)\"/></svg>',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1fwp1z4\",\"data-framer-name\":\"Group 57256\",fill:\"black\",intrinsicHeight:355,intrinsicWidth:621,layoutDependency:layoutDependency,layoutId:\"qJ1mtqSh4\",svg:'<svg width=\"621\" height=\"355\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M599 177.255v-.434c.195-84.55-59.531-133.3-124.289-142.303a135.113 135.113 0 0 0-19.099-1.496h-.846c-73.434 0-115.667 50.442-144.244 92.273C281.911 83.442 239.69 33 166.245 33h-.846a135.24 135.24 0 0 0-19.099 1.497C81.542 43.509 21.805 92.26 22 176.81v.867c-.195 84.497 59.466 133.247 124.181 142.292 6.409.966 12.83 1.475 19.207 1.519h2.202c.39 0 .77-.022 1.16-.033 71.309-1.149 113.237-50.876 141.739-92.37 28.502 41.494 70.43 91.221 141.739 92.37.391 0 .77.033 1.161.033h2.201a135.192 135.192 0 0 0 19.208-1.519c64.714-9.045 124.375-57.784 124.18-142.292v-.434l.022.011ZM210.538 251.46c-12.277 6.323-25.379 11.073-37.959 12.103a91.46 91.46 0 0 1-6.031.228 101.637 101.637 0 0 1-16.528-1.659c-36.018-7.31-69.942-38.372-70.31-84.833.368-45.248 32.405-75.864 67.262-84.27a100.825 100.825 0 0 1 19.739-2.223c15.151-.434 31.625 5.596 46.668 13.741 25.368 16.171 43.545 43.968 60.279 69.541.542.814 1.247 1.877 2.072 3.102-.63.944-1.183 1.768-1.616 2.419-17.538 26.69-36.745 55.81-63.555 71.851h-.021Zm136.359-71.841c-.434-.65-.987-1.474-1.616-2.418.825-1.226 1.53-2.288 2.072-3.102 16.734-25.584 34.911-53.37 60.279-69.541 15.042-8.145 31.517-14.175 46.668-13.741a100.72 100.72 0 0 1 19.738 2.223c34.858 8.406 66.895 39.022 67.264 84.269-.38 46.462-34.304 77.524-70.311 84.833a101.528 101.528 0 0 1-16.529 1.66c-2.049 0-4.056-.087-6.03-.228-12.58-1.03-25.693-5.791-37.959-12.103-26.821-16.041-46.017-45.15-63.554-71.852h-.022Z\" fill=\"#DDD92B\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1aes7xn\",\"data-framer-name\":\"Line 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"O_5IeR28J\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 224 4\"><path d=\"M 1 1.94 L 223 1.94\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-64255d26-2a66-4ef3-a013-907b665f4477, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;All BLACK&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:8975481591,withExternalLayout:true,...addPropertyOverrides({\"Cv1FKiskH-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 224 4\"><path d=\"M 1 1.94 L 223 1.94\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43)) /* {&quot;name&quot;:&quot;Primary Yellow&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9929478260},\"DfdsVF1Bc-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 224 4\"><path d=\"M 1 1.94 L 223 1.94\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43)) /* {&quot;name&quot;:&quot;Primary Yellow&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9929478260},\"g5oZ4MWS6-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 224 4\"><path d=\"M 1 1.94 L 223 1.94\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43)) /* {&quot;name&quot;:&quot;Primary Yellow&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9929478260},\"GR4NERWoh-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 224 4\"><path d=\"M 1 1.94 L 223 1.94\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43)) /* {&quot;name&quot;:&quot;Primary Yellow&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9929478260}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-143r62b\",\"data-styles-preset\":\"jghyr6lYg\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-64255d26-2a66-4ef3-a013-907b665f4477, rgb(0, 0, 0)))\"},children:\"Years\"})}),className:\"framer-exzt39\",\"data-framer-name\":\"The time needed to\\xa0measure intake from over 1.5 h to\\xa015 min\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cIl5vEfnP\",style:{\"--extracted-1eung3n\":\"var(--token-64255d26-2a66-4ef3-a013-907b665f4477, rgb(0, 0, 0))\"},text:OqvEnbBgw,variants:{\"Cv1FKiskH-hover\":{\"--extracted-1eung3n\":\"var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43))\"},\"DfdsVF1Bc-hover\":{\"--extracted-1eung3n\":\"var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43))\"},\"g5oZ4MWS6-hover\":{\"--extracted-1eung3n\":\"var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43))\"},\"GR4NERWoh-hover\":{\"--extracted-1eung3n\":\"var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"Cv1FKiskH-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-143r62b\",\"data-styles-preset\":\"jghyr6lYg\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43)))\"},children:\"Years\"})})},\"DfdsVF1Bc-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-143r62b\",\"data-styles-preset\":\"jghyr6lYg\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43)))\"},children:\"Years\"})})},\"g5oZ4MWS6-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-143r62b\",\"data-styles-preset\":\"jghyr6lYg\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43)))\"},children:\"Years\"})})},\"GR4NERWoh-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-143r62b\",\"data-styles-preset\":\"jghyr6lYg\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, rgb(221, 217, 43)))\"},children:\"Years\"})})},pCWCytqEu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"40.48px\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-64255d26-2a66-4ef3-a013-907b665f4477, rgb(0, 0, 0)))\"},children:\"Years\"})}),fonts:[\"FS;Raleway-semibold\"]},V21KN3lCz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"40.48px\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-64255d26-2a66-4ef3-a013-907b665f4477, rgb(0, 0, 0)))\"},children:\"Years\"})}),fonts:[\"FS;Raleway-semibold\"]}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yNrRJ.framer-1kymxzb, .framer-yNrRJ .framer-1kymxzb { display: block; }\",\".framer-yNrRJ.framer-1rwr237 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-end; overflow: visible; padding: 32px; position: relative; width: 288px; }\",\".framer-yNrRJ .framer-1cior7i { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yNrRJ .framer-lfn3p8 { aspect-ratio: 1.7492957746478872 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); position: relative; width: 157px; }\",\".framer-yNrRJ .framer-1t4kbq8 { aspect-ratio: 1.7492957746478872 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 355px); position: relative; width: 204px; }\",\".framer-yNrRJ .framer-bk01wd { aspect-ratio: 1.7492957746478872 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 355px); position: relative; width: 203px; }\",\".framer-yNrRJ .framer-dqcqld, .framer-yNrRJ .framer-1fwp1z4 { aspect-ratio: 1.7492957746478872 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 355px); position: relative; width: 207px; }\",\".framer-yNrRJ .framer-1aes7xn { flex: none; height: 4px; position: relative; width: 224px; }\",\".framer-yNrRJ .framer-exzt39 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 222px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yNrRJ.framer-1rwr237 { gap: 0px; } .framer-yNrRJ.framer-1rwr237 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-yNrRJ.framer-1rwr237 > :first-child { margin-top: 0px; } .framer-yNrRJ.framer-1rwr237 > :last-child { margin-bottom: 0px; } }\",\".framer-yNrRJ.framer-v-1lqijg1.framer-1rwr237, .framer-yNrRJ.framer-v-1twsycu.framer-1rwr237 { cursor: unset; gap: 6px; padding: 34px 32px 34px 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yNrRJ.framer-v-1lqijg1.framer-1rwr237 { gap: 0px; } .framer-yNrRJ.framer-v-1lqijg1.framer-1rwr237 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-yNrRJ.framer-v-1lqijg1.framer-1rwr237 > :first-child { margin-top: 0px; } .framer-yNrRJ.framer-v-1lqijg1.framer-1rwr237 > :last-child { margin-bottom: 0px; } }\",\".framer-yNrRJ.framer-v-39uxr .framer-1t4kbq8, .framer-yNrRJ.framer-v-10psgqn .framer-bk01wd { height: var(--framer-aspect-ratio-supported, 116px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yNrRJ.framer-v-1twsycu.framer-1rwr237 { gap: 0px; } .framer-yNrRJ.framer-v-1twsycu.framer-1rwr237 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-yNrRJ.framer-v-1twsycu.framer-1rwr237 > :first-child { margin-top: 0px; } .framer-yNrRJ.framer-v-1twsycu.framer-1rwr237 > :last-child { margin-bottom: 0px; } }\",\".framer-yNrRJ.framer-v-39uxr.hover .framer-1fwp1z4, .framer-yNrRJ.framer-v-10psgqn.hover .framer-dqcqld { height: var(--framer-aspect-ratio-supported, 118px); }\",...sharedStyle.css,'.framer-yNrRJ[data-border=\"true\"]::after, .framer-yNrRJ [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 265.5\n * @framerIntrinsicWidth 288\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GR4NERWoh\":{\"layout\":[\"fixed\",\"auto\"]},\"V21KN3lCz\":{\"layout\":[\"fixed\",\"auto\"]},\"g5oZ4MWS6\":{\"layout\":[\"fixed\",\"auto\"]},\"Cv1FKiskH\":{\"layout\":[\"fixed\",\"auto\"]},\"pCWCytqEu\":{\"layout\":[\"fixed\",\"auto\"]},\"sKiLniAY0\":{\"layout\":[\"fixed\",\"auto\"]},\"lfqEQJrTF\":{\"layout\":[\"fixed\",\"auto\"]},\"UihUhca_X\":{\"layout\":[\"fixed\",\"auto\"]},\"b7DwLCVUf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"A_xiIWFCR\":\"number\",\"OqvEnbBgw\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerC5kT6tkKy=withCSS(Component,css,\"framer-yNrRJ\");export default FramerC5kT6tkKy;FramerC5kT6tkKy.displayName=\"Number Call Out Card\";FramerC5kT6tkKy.defaultProps={height:265.5,width:288};addPropertyControls(FramerC5kT6tkKy,{variant:{options:[\"DfdsVF1Bc\",\"GR4NERWoh\",\"V21KN3lCz\",\"g5oZ4MWS6\",\"Cv1FKiskH\",\"pCWCytqEu\"],optionTitles:[\"Variant 1\",\"Infinite\",\"Mobile\",\"Infinity\",\"Variant 6\",\"Mobile Infinity\"],title:\"Variant\",type:ControlType.Enum},A_xiIWFCR:{defaultValue:\"15+\",displayTextArea:false,title:\"Number\",type:ControlType.String},OqvEnbBgw:{defaultValue:\"Years\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerC5kT6tkKy,[{explicitInter:true,fonts:[{family:\"Wix Madefor Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/wixmadefordisplay/v10/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYG_ZVthv_3HQKgh.woff2\",weight:\"600\"},{family:\"Wix Madefor Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/wixmadefordisplay/v10/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYGGZVthv_3HQKgh.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\"},{family:\"Raleway\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MH43EZQ5D5TBWLC2PYWZEYFPY3CXY4M5/XDDBYYRARAUB3F7RA772N4INJTRQYCTY/NBSC4X5XDVX3Q7RBFSRL24UBCSPNFBXK.woff2\",weight:\"600\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerC5kT6tkKy\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GR4NERWoh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V21KN3lCz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g5oZ4MWS6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Cv1FKiskH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pCWCytqEu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sKiLniAY0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lfqEQJrTF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UihUhca_X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"b7DwLCVUf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"265.5\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"A_xiIWFCR\\\":\\\"number\\\",\\\"OqvEnbBgw\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"288\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./C5kT6tkKy.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import NumberCallOutCard from\"#framer/local/canvasComponent/C5kT6tkKy/C5kT6tkKy.js\";import Nav from\"#framer/local/canvasComponent/mU_bJp0oW/mU_bJp0oW.js\";import Footer from\"#framer/local/canvasComponent/y8X3114XZ/y8X3114XZ.js\";import RiveriaInvestments from\"#framer/local/collection/Kcty45yvX/Kcty45yvX.js\";import*as sharedStyle from\"#framer/local/css/QR5z9R4be/QR5z9R4be.js\";import*as sharedStyle1 from\"#framer/local/css/X1W48ijvx/X1W48ijvx.js\";import metadataProvider from\"#framer/local/webPageMetadata/xTq4I0_80/xTq4I0_80.js\";const NavFonts=getFonts(Nav);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const NumberCallOutCardFonts=getFonts(NumberCallOutCard);const TickerFonts=getFonts(Ticker);const FooterFonts=getFonts(Footer);const breakpoints={iqsy9Pc7x:\"(max-width: 809px)\",jyUtFgoPe:\"(min-width: 1440px)\",zvLUnmRZk:\"(min-width: 810px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-c1t2t\";const variantClassNames={iqsy9Pc7x:\"framer-v-vuskvj\",jyUtFgoPe:\"framer-v-15idwuh\",zvLUnmRZk:\"framer-v-1qzg0bc\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Tablet 2\":\"zvLUnmRZk\",Desktop:\"jyUtFgoPe\",Phone:\"iqsy9Pc7x\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"jyUtFgoPe\"};};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,XJ6Jne0EgGrXSlYi5S,GAh80DUUPGrXSlYi5S,idGrXSlYi5S,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"szAMyoYtv\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"WeGlZ1YEq\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"iqsy9Pc7x\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"iqsy9Pc7x\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"jyUtFgoPe\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-77bbe74b-215a-4576-93f6-08037e368c0f, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-15idwuh\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iqsy9Pc7x:{width:componentViewport?.width||\"100vw\"},zvLUnmRZk:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:127,width:`min(${componentViewport?.width||\"100vw\"}, 1560px)`,y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hi6adh-container\",nodeId:\"jAtI5pUZk\",scopeId:\"xTq4I0_80\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iqsy9Pc7x:{style:{width:\"100%\"},variant:\"oTEpSzYND\"},zvLUnmRZk:{style:{width:\"100%\"},variant:\"wScj1ESnD\"}},children:/*#__PURE__*/_jsx(Nav,{height:\"100%\",id:\"jAtI5pUZk\",layoutId:\"jAtI5pUZk\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"NtBaMoMXH\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9x7jlb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KjOZA6Nbl\",scopeId:\"xTq4I0_80\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-0c4c4759-e28e-45d4-a0cf-d3824c008842, rgb(23, 49, 89))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"KjOZA6Nbl\",isMixedBorderRadius:false,layoutId:\"KjOZA6Nbl\",loop:false,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/6znq731p06VcYNNQK4SW0Y4ER6w.jpg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/ZYEDdXSMbvv0U1UMmL4ufsHiw0w.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x500cl\",\"data-framer-name\":\"Product\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qfvb39\",\"data-framer-name\":\"Product Text Div\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ubumdd\",\"data-styles-preset\":\"QR5z9R4be\",style:{\"--framer-text-color\":\"var(--token-79cdca84-aec4-4125-b714-7f4c764f2a74, rgb(6, 15, 28))\"},children:\"Riveria Investment Group\"})}),className:\"framer-ohd3h7\",\"data-framer-name\":\"Introducing Dino: Redefining Wireless Charging Elevate your charging experience with Dino - the revolutionary wireless charger that takes center stage, even when not in use. Unlike traditional chargers that fade into the background, Dino boasts a captivating design that seamlessly blends technology and art, creating a captivating presence in your space.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iqsy9Pc7x:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-79cdca84-aec4-4125-b714-7f4c764f2a74, rgb(6, 15, 28))\"},children:[\"Riveria invests in companies poised for growth in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1tZWRpdW0gaXRhbGlj\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-bd7b1c89-1c31-441f-8766-f63cc9c5fe0b, rgb(29, 117, 189))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"partnership\"})}),\" with passionate management teams.\"]})})},zvLUnmRZk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-79cdca84-aec4-4125-b714-7f4c764f2a74, rgb(6, 15, 28))\"},children:[\"Riveria invests in companies poised for growth in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1tZWRpdW0gaXRhbGlj\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-bd7b1c89-1c31-441f-8766-f63cc9c5fe0b, rgb(29, 117, 189))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"partnership\"})}),\" with passionate management teams.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-79cdca84-aec4-4125-b714-7f4c764f2a74, rgb(6, 15, 28))\"},children:[\"Riveria invests in companies poised for growth in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1tZWRpdW0gaXRhbGlj\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-bd7b1c89-1c31-441f-8766-f63cc9c5fe0b, rgb(29, 117, 189))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"partnership\"})}),\" with passionate management teams.\"]})}),className:\"framer-13klhwq\",\"data-framer-name\":\"Introducing Dino: Redefining Wireless Charging\",fonts:[\"FS;Raleway-semibold\",\"FS;Raleway-black\",\"FS;Raleway-medium italic\",\"FS;Raleway-bold italic\"],verticalAlignment:\"center\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7b9x1f\",\"data-framer-name\":\"Approach\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-111inro\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bs5vqw\",\"data-framer-name\":\"Image Div\",style:{rotate:30}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7syc82\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19zvwdg\",\"data-styles-preset\":\"X1W48ijvx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-79cdca84-aec4-4125-b714-7f4c764f2a74, rgb(6, 15, 28))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Experience\"})})}),className:\"framer-ap1gzc\",\"data-framer-name\":\"Where Design Meets Innovation\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iqsy9Pc7x:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ubumdd\",\"data-styles-preset\":\"QR5z9R4be\",children:[\"Riveria is a private equity group founded in 2010, focused on\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"buyout\"}),\"\\xa0and\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"growth stage\"}),\" opportunities. Riveria invests in businesses with\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"attractive\"}),\"\\xa0prospects and \",/*#__PURE__*/_jsx(\"strong\",{children:\"exceptional\"}),\" management teams. We are built on a foundation of\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"partnership\"}),\", with a goal of achieving successful growth for all  shareholders.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ubumdd\",\"data-styles-preset\":\"QR5z9R4be\",children:[\"Riveria is a private equity group founded in 2010, focused on\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"buyout\"}),\"\\xa0and\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"growth stage\"}),\"\\xa0opportunities. Riveria invests in businesses with\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"attractive\"}),\"\\xa0prospects and\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"exceptional\"}),\"\\xa0management teams. We are built on a \",/*#__PURE__*/_jsx(\"strong\",{children:\"foundation of\"}),\"\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"partnership\"}),\", with a goal of achieving successful growth for all shareholders.\"]})}),className:\"framer-mnsc3n\",\"data-framer-name\":\"At Wimba, we\\xa0aim to\\xa0provide veterinarians and veterinary physiotherapists with accurate measurement tools to\\xa0examine our pet patients.\\u2028\\u2028To achieve this, we\\xa0have developed technology that allows for easy measurement collection using only a\\xa0smartphone in just a\\xa0few minutes. Our WimbaSCAN technology marks a\\xa0step towards replacing traditional analog measurement methods such as plaster bands and casts with digital technology.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wt8s05 hidden-15idwuh hidden-1qzg0bc\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:25,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qxr907\",\"data-framer-name\":\"Image Div\",style:{rotate:30,transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vux62e\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.75,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19zvwdg\",\"data-styles-preset\":\"X1W48ijvx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-79cdca84-aec4-4125-b714-7f4c764f2a74, rgb(6, 15, 28))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Dedication\"})})}),className:\"framer-1cfu8s7\",\"data-framer-name\":\"Where Design Meets Innovation\",fonts:[\"Inter\",\"Inter-Bold\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ubumdd\",\"data-styles-preset\":\"QR5z9R4be\",children:[\"We are a team of \",/*#__PURE__*/_jsx(\"strong\",{children:\"driven\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"dedicated\"}),\" professionals who believe in investing alongside existing owners and management teams. We focus on partnerships and create an atmosphere which rewards initiative and commitment. Riveria invests\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"for the long term\"}),\", because building successful and resilient businesses works for everyone.\"]})}),className:\"framer-1he6amf\",\"data-framer-name\":\"At Wimba, we\\xa0aim to\\xa0provide veterinarians and veterinary physiotherapists with accurate measurement tools to\\xa0examine our pet patients.\\u2028\\u2028To achieve this, we\\xa0have developed technology that allows for easy measurement collection using only a\\xa0smartphone in just a\\xa0few minutes. Our WimbaSCAN technology marks a\\xa0step towards replacing traditional analog measurement methods such as plaster bands and casts with digital technology.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iy9lzh hidden-15idwuh hidden-1qzg0bc\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:25,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g8alj8\",\"data-framer-name\":\"Image Div\",style:{rotate:30,transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vaycbq\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.75,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19zvwdg\",\"data-styles-preset\":\"X1W48ijvx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-79cdca84-aec4-4125-b714-7f4c764f2a74, rgb(6, 15, 28))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Values\"})})}),className:\"framer-thdsgb\",\"data-framer-name\":\"Where Design Meets Innovation\",fonts:[\"Inter\",\"Inter-Bold\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ubumdd\",\"data-styles-preset\":\"QR5z9R4be\",children:[\"Our philosophy emphasizes partnership, efficiency, and growth. Reputation is paramount and integrity is our foundation. By supporting management teams, we maximize value for\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"all shareholders\"}),\"\u200B, employees, and partners, not just financial investors.\"]})}),className:\"framer-19fcyyq\",\"data-framer-name\":\"At Wimba, we\\xa0aim to\\xa0provide veterinarians and veterinary physiotherapists with accurate measurement tools to\\xa0examine our pet patients.\\u2028\\u2028To achieve this, we\\xa0have developed technology that allows for easy measurement collection using only a\\xa0smartphone in just a\\xa0few minutes. Our WimbaSCAN technology marks a\\xa0step towards replacing traditional analog measurement methods such as plaster bands and casts with digital technology.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a82wl hidden-vuskvj\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7d1dhh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19zvwdg\",\"data-styles-preset\":\"X1W48ijvx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-79cdca84-aec4-4125-b714-7f4c764f2a74, rgb(6, 15, 28))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Dedication\"})})}),className:\"framer-obx32d\",\"data-framer-name\":\"Where Design Meets Innovation\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ubumdd\",\"data-styles-preset\":\"QR5z9R4be\",children:[\"We are a team of\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"driven\"}),\"\\xa0and\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"dedicated\"}),\"\\xa0professionals who believe in investing alongside existing owners and management teams. We focus on partnerships and create an atmosphere which rewards initiative and commitment. Riveria invests\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"for the long term\"}),\", because building successful and resilient businesses works for everyone.\"]})}),className:\"framer-13rgk7q\",\"data-framer-name\":\"At Wimba, we\\xa0aim to\\xa0provide veterinarians and veterinary physiotherapists with accurate measurement tools to\\xa0examine our pet patients.\\u2028\\u2028To achieve this, we\\xa0have developed technology that allows for easy measurement collection using only a\\xa0smartphone in just a\\xa0few minutes. Our WimbaSCAN technology marks a\\xa0step towards replacing traditional analog measurement methods such as plaster bands and casts with digital technology.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-120k3w3\",\"data-framer-name\":\"Image Div\",style:{rotate:30}})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10ty1bc hidden-vuskvj\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-tll0d6\",\"data-framer-name\":\"Image Div\",style:{rotate:30}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oxz6z8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19zvwdg\",\"data-styles-preset\":\"X1W48ijvx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-79cdca84-aec4-4125-b714-7f4c764f2a74, rgb(6, 15, 28))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Values\"})})}),className:\"framer-1ojp23h\",\"data-framer-name\":\"Where Design Meets Innovation\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ubumdd\",\"data-styles-preset\":\"QR5z9R4be\",children:[\"Our philosophy emphasizes partnership, efficiency, and growth. Reputation is paramount and integrity is our foundation. By supporting management teams, we maximize value for\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"all shareholders\"}),\"\u200B, employees, and partners, not just financial investors.\"]})}),className:\"framer-zigl56\",\"data-framer-name\":\"At Wimba, we\\xa0aim to\\xa0provide veterinarians and veterinary physiotherapists with accurate measurement tools to\\xa0examine our pet patients.\\u2028\\u2028To achieve this, we\\xa0have developed technology that allows for easy measurement collection using only a\\xa0smartphone in just a\\xa0few minutes. Our WimbaSCAN technology marks a\\xa0step towards replacing traditional analog measurement methods such as plaster bands and casts with digital technology.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12t9y2\",\"data-framer-name\":\"Newsletter Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iqsy9Pc7x:{y:(componentViewport?.y||0)+0+2263.3+32+-104},zvLUnmRZk:{height:268.5,width:\"316.5px\",y:(componentViewport?.y||0)+0+2503+32+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:265,width:\"344px\",y:(componentViewport?.y||0)+0+2563+55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jqhmcq-container\",nodeId:\"Z6S8DXa6B\",scopeId:\"xTq4I0_80\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iqsy9Pc7x:{variant:\"V21KN3lCz\"}},children:/*#__PURE__*/_jsx(NumberCallOutCard,{A_xiIWFCR:\"15+\",height:\"100%\",id:\"Z6S8DXa6B\",layoutId:\"Z6S8DXa6B\",OqvEnbBgw:\"Years\",style:{width:\"100%\"},variant:\"DfdsVF1Bc\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iqsy9Pc7x:{y:(componentViewport?.y||0)+0+2263.3+32+175},zvLUnmRZk:{height:268.5,width:\"316.5px\",y:(componentViewport?.y||0)+0+2503+32+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:265,width:\"344px\",y:(componentViewport?.y||0)+0+2563+55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ghqg88-container\",nodeId:\"GEQKyF6d4\",scopeId:\"xTq4I0_80\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iqsy9Pc7x:{variant:\"V21KN3lCz\"}},children:/*#__PURE__*/_jsx(NumberCallOutCard,{A_xiIWFCR:\"25+\",height:\"100%\",id:\"GEQKyF6d4\",layoutId:\"GEQKyF6d4\",OqvEnbBgw:\"Investments\",style:{width:\"100%\"},variant:\"DfdsVF1Bc\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iqsy9Pc7x:{y:(componentViewport?.y||0)+0+2263.3+32+454},zvLUnmRZk:{height:268.5,width:\"316.5px\",y:(componentViewport?.y||0)+0+2503+32+309.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:265,width:\"344px\",y:(componentViewport?.y||0)+0+2563+55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-64g142-container\",nodeId:\"EAOjLnipk\",scopeId:\"xTq4I0_80\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iqsy9Pc7x:{variant:\"pCWCytqEu\"}},children:/*#__PURE__*/_jsx(NumberCallOutCard,{A_xiIWFCR:\"100%\",height:\"100%\",id:\"EAOjLnipk\",layoutId:\"EAOjLnipk\",OqvEnbBgw:\"Value\",style:{width:\"100%\"},variant:\"Cv1FKiskH\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iqsy9Pc7x:{y:(componentViewport?.y||0)+0+2263.3+32+733},zvLUnmRZk:{height:268.5,width:\"316.5px\",y:(componentViewport?.y||0)+0+2503+32+309.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:265,width:\"344px\",y:(componentViewport?.y||0)+0+2563+55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oeoiex-container\",nodeId:\"BrJxRdCTY\",scopeId:\"xTq4I0_80\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iqsy9Pc7x:{variant:\"V21KN3lCz\"}},children:/*#__PURE__*/_jsx(NumberCallOutCard,{A_xiIWFCR:\"100%\",height:\"100%\",id:\"BrJxRdCTY\",layoutId:\"BrJxRdCTY\",OqvEnbBgw:\"Dedication\",style:{width:\"100%\"},variant:\"DfdsVF1Bc\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1io56ll-container\",isModuleExternal:true,nodeId:\"LRSV5eRsU\",scopeId:\"xTq4I0_80\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"LRSV5eRsU\",layoutId:\"LRSV5eRsU\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pcg3ck\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"GrXSlYi5S\",data:RiveriaInvestments,type:\"Collection\"},orderBy:[{collection:\"GrXSlYi5S\",name:\"ryf1i2CHg\",type:\"Identifier\"}],select:[{collection:\"GrXSlYi5S\",name:\"XJ6Jne0Eg\",type:\"Identifier\"},{collection:\"GrXSlYi5S\",name:\"GAh80DUUP\",type:\"Identifier\"},{collection:\"GrXSlYi5S\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({GAh80DUUP:GAh80DUUPGrXSlYi5S,id:idGrXSlYi5S,XJ6Jne0Eg:XJ6Jne0EgGrXSlYi5S},index)=>{GAh80DUUPGrXSlYi5S??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`GrXSlYi5S-${idGrXSlYi5S}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{GAh80DUUP:GAh80DUUPGrXSlYi5S},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t9pc2i\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{GAh80DUUP:GAh80DUUPGrXSlYi5S},webPageId:\"n8iPw6lUl\"},motionChild:true,nodeId:\"geHV5WePz\",openInNewTab:false,scopeId:\"xTq4I0_80\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",sizes:\"165.6667px\",...toResponsiveImage(XJ6Jne0EgGrXSlYi5S),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-ydwtru framer-vhg2yi\"})})})})},idGrXSlYi5S);})})})})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iqsy9Pc7x:{width:`calc(${componentViewport?.width||\"100vw\"} * 1.0256)`,y:(componentViewport?.y||0)+0+3633.3},zvLUnmRZk:{y:(componentViewport?.y||0)+0+3557}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:314,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1va8jfi-container\",nodeId:\"EwSwbZtuA\",scopeId:\"xTq4I0_80\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iqsy9Pc7x:{variant:\"KDemAIZOp\"},zvLUnmRZk:{variant:\"BjozOjM9Q\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"EwSwbZtuA\",layoutId:\"EwSwbZtuA\",style:{width:\"100%\"},variant:\"mja_tQiwy\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-c1t2t.framer-vhg2yi, .framer-c1t2t .framer-vhg2yi { display: block; }\",\".framer-c1t2t.framer-15idwuh { align-content: center; align-items: center; background-color: var(--token-77bbe74b-215a-4576-93f6-08037e368c0f, #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: 1440px; }\",\".framer-c1t2t .framer-1hi6adh-container { flex: none; height: auto; max-width: 1560px; position: sticky; top: 0px; width: 100%; z-index: 5; }\",\".framer-c1t2t .framer-9x7jlb-container { flex: none; height: 801px; max-width: 1440px; position: relative; width: 100%; }\",\".framer-c1t2t .framer-1x500cl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: 400px; justify-content: center; max-width: 1440px; overflow: visible; padding: 64px; position: relative; width: 100%; }\",\".framer-c1t2t .framer-qfvb39 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: 77%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 72%; }\",\".framer-c1t2t .framer-ohd3h7 { flex: none; height: auto; max-width: 1560px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-c1t2t .framer-13klhwq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-c1t2t .framer-7b9x1f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-end; max-width: 1440px; overflow: visible; padding: 64px 64px 30px 64px; position: relative; width: 100%; }\",\".framer-c1t2t .framer-111inro, .framer-c1t2t .framer-1a82wl, .framer-c1t2t .framer-10ty1bc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 157px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 3px 160px 40px 160px; position: relative; width: 1300px; }\",\".framer-c1t2t .framer-bs5vqw, .framer-c1t2t .framer-120k3w3, .framer-c1t2t .framer-tll0d6 { background-color: var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, #ddd92b); border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; border-top-left-radius: 42px; border-top-right-radius: 42px; flex: none; height: 300px; overflow: hidden; position: relative; width: 11px; will-change: var(--framer-will-change-override, transform); }\",\".framer-c1t2t .framer-7syc82, .framer-c1t2t .framer-7d1dhh, .framer-c1t2t .framer-1oxz6z8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-c1t2t .framer-ap1gzc, .framer-c1t2t .framer-obx32d, .framer-c1t2t .framer-1ojp23h { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 803px; word-break: break-word; word-wrap: break-word; }\",\".framer-c1t2t .framer-mnsc3n, .framer-c1t2t .framer-13rgk7q, .framer-c1t2t .framer-zigl56 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 778px; word-break: break-word; word-wrap: break-word; }\",\".framer-c1t2t .framer-1wt8s05 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: visible; padding: 3px 20px 40px 50px; position: relative; width: 394px; }\",\".framer-c1t2t .framer-1qxr907, .framer-c1t2t .framer-1g8alj8 { background-color: var(--token-bccbc7c4-2cc8-4a3d-a17e-3dc0862e8f3b, #ddd92b); border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; border-top-left-radius: 42px; border-top-right-radius: 42px; flex: none; height: 79px; overflow: hidden; position: relative; width: 5px; will-change: var(--framer-will-change-override, transform); }\",\".framer-c1t2t .framer-1vux62e, .framer-c1t2t .framer-1vaycbq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 95%; }\",\".framer-c1t2t .framer-1cfu8s7, .framer-c1t2t .framer-thdsgb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 323px; word-break: break-word; word-wrap: break-word; }\",\".framer-c1t2t .framer-1he6amf, .framer-c1t2t .framer-19fcyyq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 326px; word-break: break-word; word-wrap: break-word; }\",\".framer-c1t2t .framer-1iy9lzh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: visible; padding: 3px 10px 40px 50px; position: relative; width: 394px; }\",\".framer-c1t2t .framer-12t9y2 { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: 375px; justify-content: center; max-width: 1440px; overflow: visible; padding: 32px 64px 32px 64px; position: relative; width: 1437px; }\",\".framer-c1t2t .framer-1jqhmcq-container, .framer-c1t2t .framer-ghqg88-container, .framer-c1t2t .framer-64g142-container, .framer-c1t2t .framer-oeoiex-container { flex: none; height: auto; position: relative; width: 344px; }\",\".framer-c1t2t .framer-1io56ll-container { flex: none; height: 412px; position: relative; width: 1440px; }\",\".framer-c1t2t .framer-pcg3ck { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 53px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 4539px; }\",\".framer-c1t2t .framer-1t9pc2i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-c1t2t .framer-ydwtru { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 178px; max-width: 100%; position: relative; text-decoration: none; width: 378px; }\",\".framer-c1t2t .framer-1va8jfi-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-c1t2t.framer-15idwuh, .framer-c1t2t .framer-1x500cl, .framer-c1t2t .framer-qfvb39, .framer-c1t2t .framer-7b9x1f, .framer-c1t2t .framer-111inro, .framer-c1t2t .framer-7syc82, .framer-c1t2t .framer-1wt8s05, .framer-c1t2t .framer-1vux62e, .framer-c1t2t .framer-1iy9lzh, .framer-c1t2t .framer-1vaycbq, .framer-c1t2t .framer-1a82wl, .framer-c1t2t .framer-7d1dhh, .framer-c1t2t .framer-10ty1bc, .framer-c1t2t .framer-1oxz6z8, .framer-c1t2t .framer-12t9y2, .framer-c1t2t .framer-pcg3ck, .framer-c1t2t .framer-1t9pc2i { gap: 0px; } .framer-c1t2t.framer-15idwuh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-c1t2t.framer-15idwuh > :first-child, .framer-c1t2t .framer-qfvb39 > :first-child, .framer-c1t2t .framer-7b9x1f > :first-child, .framer-c1t2t .framer-7syc82 > :first-child, .framer-c1t2t .framer-1wt8s05 > :first-child, .framer-c1t2t .framer-1vux62e > :first-child, .framer-c1t2t .framer-1iy9lzh > :first-child, .framer-c1t2t .framer-1vaycbq > :first-child, .framer-c1t2t .framer-7d1dhh > :first-child, .framer-c1t2t .framer-1oxz6z8 > :first-child { margin-top: 0px; } .framer-c1t2t.framer-15idwuh > :last-child, .framer-c1t2t .framer-qfvb39 > :last-child, .framer-c1t2t .framer-7b9x1f > :last-child, .framer-c1t2t .framer-7syc82 > :last-child, .framer-c1t2t .framer-1wt8s05 > :last-child, .framer-c1t2t .framer-1vux62e > :last-child, .framer-c1t2t .framer-1iy9lzh > :last-child, .framer-c1t2t .framer-1vaycbq > :last-child, .framer-c1t2t .framer-7d1dhh > :last-child, .framer-c1t2t .framer-1oxz6z8 > :last-child { margin-bottom: 0px; } .framer-c1t2t .framer-1x500cl > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-c1t2t .framer-1x500cl > :first-child, .framer-c1t2t .framer-111inro > :first-child, .framer-c1t2t .framer-1a82wl > :first-child, .framer-c1t2t .framer-10ty1bc > :first-child, .framer-c1t2t .framer-12t9y2 > :first-child, .framer-c1t2t .framer-pcg3ck > :first-child, .framer-c1t2t .framer-1t9pc2i > :first-child { margin-left: 0px; } .framer-c1t2t .framer-1x500cl > :last-child, .framer-c1t2t .framer-111inro > :last-child, .framer-c1t2t .framer-1a82wl > :last-child, .framer-c1t2t .framer-10ty1bc > :last-child, .framer-c1t2t .framer-12t9y2 > :last-child, .framer-c1t2t .framer-pcg3ck > :last-child, .framer-c1t2t .framer-1t9pc2i > :last-child { margin-right: 0px; } .framer-c1t2t .framer-qfvb39 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-c1t2t .framer-7b9x1f > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-c1t2t .framer-111inro > *, .framer-c1t2t .framer-1a82wl > *, .framer-c1t2t .framer-10ty1bc > * { margin: 0px; margin-left: calc(157px / 2); margin-right: calc(157px / 2); } .framer-c1t2t .framer-7syc82 > *, .framer-c1t2t .framer-1vux62e > *, .framer-c1t2t .framer-1vaycbq > *, .framer-c1t2t .framer-7d1dhh > *, .framer-c1t2t .framer-1oxz6z8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-c1t2t .framer-1wt8s05 > *, .framer-c1t2t .framer-1iy9lzh > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-c1t2t .framer-12t9y2 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-c1t2t .framer-pcg3ck > * { margin: 0px; margin-left: calc(53px / 2); margin-right: calc(53px / 2); } .framer-c1t2t .framer-1t9pc2i > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,\"@media (max-width: 809px) { .framer-c1t2t.framer-15idwuh { width: 390px; } .framer-c1t2t .framer-1hi6adh-container { max-width: unset; } .framer-c1t2t .framer-9x7jlb-container { height: 318px; max-width: 460px; width: 446px; } .framer-c1t2t .framer-1x500cl { flex-direction: column; max-width: unset; } .framer-c1t2t .framer-qfvb39 { height: 76%; width: 110%; } .framer-c1t2t .framer-7b9x1f { padding: 64px 64px 65px 64px; } .framer-c1t2t .framer-111inro { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 28px; max-width: unset; padding: 10px 20px 40px 50px; width: 394px; } .framer-c1t2t .framer-bs5vqw { height: 79px; width: 5px; } .framer-c1t2t .framer-7syc82 { flex: none; width: 95%; } .framer-c1t2t .framer-ap1gzc { width: 323px; } .framer-c1t2t .framer-mnsc3n { width: 326px; } .framer-c1t2t .framer-12t9y2 { flex-direction: column; height: 958px; max-width: unset; width: 378px; } .framer-c1t2t .framer-1va8jfi-container { width: 103%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-c1t2t .framer-1x500cl, .framer-c1t2t .framer-111inro, .framer-c1t2t .framer-12t9y2 { gap: 0px; } .framer-c1t2t .framer-1x500cl > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-c1t2t .framer-1x500cl > :first-child, .framer-c1t2t .framer-111inro > :first-child, .framer-c1t2t .framer-12t9y2 > :first-child { margin-top: 0px; } .framer-c1t2t .framer-1x500cl > :last-child, .framer-c1t2t .framer-111inro > :last-child, .framer-c1t2t .framer-12t9y2 > :last-child { margin-bottom: 0px; } .framer-c1t2t .framer-111inro > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-c1t2t .framer-12t9y2 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1439px) { .framer-c1t2t.framer-15idwuh { width: 810px; } .framer-c1t2t .framer-1hi6adh-container, .framer-c1t2t .framer-7b9x1f { max-width: unset; } .framer-c1t2t .framer-9x7jlb-container { max-width: 1000px; } .framer-c1t2t .framer-1x500cl { height: 340px; max-width: unset; } .framer-c1t2t .framer-111inro, .framer-c1t2t .framer-1a82wl, .framer-c1t2t .framer-10ty1bc { max-width: unset; width: 774px; } .framer-c1t2t .framer-7syc82, .framer-c1t2t .framer-7d1dhh, .framer-c1t2t .framer-1oxz6z8 { flex: none; width: min-content; } .framer-c1t2t .framer-ap1gzc { width: 243px; } .framer-c1t2t .framer-mnsc3n, .framer-c1t2t .framer-13rgk7q, .framer-c1t2t .framer-zigl56 { width: 370px; } .framer-c1t2t .framer-obx32d { width: 303px; } .framer-c1t2t .framer-1ojp23h { width: 305px; } .framer-c1t2t .framer-12t9y2 { align-content: unset; align-items: unset; display: grid; gap: 41px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 642px; max-width: unset; width: 802px; } .framer-c1t2t .framer-1jqhmcq-container, .framer-c1t2t .framer-ghqg88-container, .framer-c1t2t .framer-64g142-container, .framer-c1t2t .framer-oeoiex-container { align-self: start; height: 100%; justify-self: start; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-c1t2t .framer-12t9y2 { gap: 0px; } .framer-c1t2t .framer-12t9y2 > *, .framer-c1t2t .framer-12t9y2 > :first-child, .framer-c1t2t .framer-12t9y2 > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3664\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"iqsy9Pc7x\":{\"layout\":[\"fixed\",\"auto\"]},\"zvLUnmRZk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"szAMyoYtv\":{\"pattern\":\":szAMyoYtv\",\"name\":\"product\"},\"WeGlZ1YEq\":{\"pattern\":\":WeGlZ1YEq\",\"name\":\"approach\"}}\n * @framerResponsiveScreen\n */const FramerxTq4I0_80=withCSS(Component,css,\"framer-c1t2t\");export default FramerxTq4I0_80;FramerxTq4I0_80.displayName=\"Home\";FramerxTq4I0_80.defaultProps={height:3664,width:1440};addFonts(FramerxTq4I0_80,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Raleway\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MH43EZQ5D5TBWLC2PYWZEYFPY3CXY4M5/XDDBYYRARAUB3F7RA772N4INJTRQYCTY/NBSC4X5XDVX3Q7RBFSRL24UBCSPNFBXK.woff2\",weight:\"600\"},{family:\"Raleway\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJJGVXQO37S4NAEMT2EYO62OMGKWDT72/2OQ65C2JNXC57E7TCYUOCT4BOOQ2XN7Z/E6U6PRBKUYLVGTL6XB4HRMB7HFSZD7ZT.woff2\",weight:\"900\"},{family:\"Raleway\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DYRFCAIWJX2F7VBG4Q5J2IJ56HTUULI2/UMXCS7RMSVSR2WN7F4CRENXGQOKZS5G3/XBGQGQVO2OZSZZLUX7MGZJCP45ARJ6ZN.woff2\",weight:\"500\"},{family:\"Raleway\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5Z3PEWK23ZYYM6EY3WIYUF6NV7XVJTA6/6LSK5ZTNKAEC4XLSOWOFQTJDFIY2U4VC/PPYP5G5YCLK4NBO7V7CUV6FSMNC52WMN.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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavFonts,...VideoFonts,...NumberCallOutCardFonts,...TickerFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxTq4I0_80\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iqsy9Pc7x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zvLUnmRZk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"szAMyoYtv\\\":{\\\"pattern\\\":\\\":szAMyoYtv\\\",\\\"name\\\":\\\"product\\\"},\\\"WeGlZ1YEq\\\":{\\\"pattern\\\":\\\":WeGlZ1YEq\\\",\\\"name\\\":\\\"approach\\\"}}\",\"framerIntrinsicHeight\":\"3664\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "number", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "A_xiIWFCR", "OqvEnbBgw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "LayoutGroup", "u", "RichText2", "SVG", "css", "FramerC5kT6tkKy", "withCSS", "C5kT6tkKy_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavFonts", "getFonts", "mU_bJp0oW_default", "VideoFonts", "Video", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText2", "NumberCallOutCardFonts", "C5kT6tkKy_default", "TickerFonts", "Ticker", "FooterFonts", "y8X3114XZ_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "XJ6Jne0EgGrXSlYi5S", "GAh80DUUPGrXSlYi5S", "idGrXSlYi5S", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "ChildrenCanSuspend", "Kcty45yvX_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "Image2", "css", "FramerxTq4I0_80", "withCSS", "xTq4I0_80_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
