{"version":3,"file":"YWZZfBc5Zutj2aTu-rN4s3qvbN6KmvBzKXETQgTn3Uc.D4fO2SwX.mjs","names":["Children","useRef","useMemo","useState","useCallback","size","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","animation","transformTemplate1","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","createLayoutDependency","React.useRef","React.useId","Image","serializationHash","variantClassNames","transition1","React.useContext","React.useMemo","React.Fragment","humanReadableVariantMap","getProps","React.useRef","React.useId","Header","Button","LogosTicker","Image","BasicCard","FeatureCard","YouTube","TestimonialCard","Footer","useRef","React.useId","metadata","React.useMemo","metadataProvider","React.useRef","PropertyOverrides","React.Fragment"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js","https:/framerusercontent.com/modules/zWU0LU4DGKjvOgciKDqP/xeclECH2wv3Bp1NMlftH/mAjD2BWqs.js","https:/framerusercontent.com/modules/sq4wwDrs3ZrioRfD7sfc/2Gp8X7h5xIJ3EgFXyMNq/tcIRZl7wq.js","https:/framerusercontent.com/modules/fWEMBhDmSNtSivUMZpCl/AttGDKSdunz0uTrKkhbZ/CU2P5qJ6t.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"✨\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","// Generated by Framer (adb54a5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"sf68Pkuso\",\"CQyWgB1qB\",\"Y7KBNvn0e\"];const serializationHash=\"framer-bc9qP\";const variantClassNames={CQyWgB1qB:\"framer-v-qnaejd\",sf68Pkuso:\"framer-v-195dn7w\",Y7KBNvn0e:\"framer-v-1miilrm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Coming Soon\":\"Y7KBNvn0e\",Medium:\"sf68Pkuso\",Small:\"CQyWgB1qB\"};const getProps=({height,id,image,link,tITle,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,A0zR3wSdV:(_ref=image!==null&&image!==void 0?image:props.A0zR3wSdV)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/ZYjEVj4Mn5Wx4SyIVPa88vSk5A.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ZYjEVj4Mn5Wx4SyIVPa88vSk5A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZYjEVj4Mn5Wx4SyIVPa88vSk5A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZYjEVj4Mn5Wx4SyIVPa88vSk5A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZYjEVj4Mn5Wx4SyIVPa88vSk5A.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ZYjEVj4Mn5Wx4SyIVPa88vSk5A.jpg 8256w\"},HPQIXVBJa:(_ref1=tITle!==null&&tITle!==void 0?tITle:props.HPQIXVBJa)!==null&&_ref1!==void 0?_ref1:\"Short Card Title\",UTE8N28ve:link!==null&&link!==void 0?link:props.UTE8N28ve,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"sf68Pkuso\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,A0zR3wSdV,HPQIXVBJa,UTE8N28ve,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sf68Pkuso\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Y7KBNvn0e\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Y7KBNvn0e\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:UTE8N28ve,openInNewTab:false,...addPropertyOverrides({Y7KBNvn0e:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-195dn7w\",className,classNames)} framer-xdmswz`,\"data-border\":true,\"data-framer-name\":\"Medium\",layoutDependency:layoutDependency,layoutId:\"sf68Pkuso\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"rgba(148, 144, 122, 0.04)\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",backgroundColor:\"rgb(23, 23, 23)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.6021873017743928px 1.083937143193907px -0.8333333333333333px rgba(0, 0, 0, 0.05), 0px 2.288533303243457px 4.119359945838223px -1.6666666666666665px rgba(0, 0, 0, 0.05), 0px 10px 18px -2.5px rgba(0, 0, 0, 0.05)\",...style},...addPropertyOverrides({CQyWgB1qB:{\"data-framer-name\":\"Small\"},Y7KBNvn0e:{\"data-framer-name\":\"Coming Soon\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Short Card Title\"})}),className:\"framer-1ld1n2e\",\"data-framer-name\":\"ticker\",fonts:[\"CUSTOM;Rund Display Bold\"],layoutDependency:layoutDependency,layoutId:\"ELZhORgtx\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:HPQIXVBJa,transformTemplate:transformTemplate1,verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(A0zR3wSdV)},className:\"framer-1bwxhr5\",layoutDependency:layoutDependency,layoutId:\"dA643pQYX\",style:{opacity:.6},children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8g6hhr-container\",layoutDependency:layoutDependency,layoutId:\"g354b0SOb-container\",style:{rotate:-14},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"g354b0SOb\",layoutId:\"g354b0SOb\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mq5zhf\",layoutDependency:layoutDependency,layoutId:\"u6wG5vOL4\",style:{backgroundColor:\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Rund Text Bold\", \"Rund Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"ACADEMY COMING SOON        •        ACADEMY COMING SOON        •        ACADEMY COMING SOON        •        ACADEMY COMING SOON        •        ACADEMY COMING SOON        •        \"})}),className:\"framer-106qj60\",fonts:[\"CUSTOM;Rund Text Bold\"],layoutDependency:layoutDependency,layoutId:\"OQol4UB1t\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})],speed:10,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bc9qP.framer-xdmswz, .framer-bc9qP .framer-xdmswz { display: block; }\",\".framer-bc9qP.framer-195dn7w { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 416px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bc9qP .framer-1ld1n2e { flex: none; height: auto; left: 50%; position: absolute; top: 86px; white-space: pre-wrap; width: 416px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-bc9qP .framer-1bwxhr5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 232px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bc9qP .framer-8g6hhr-container { flex: none; height: 85px; position: relative; width: 600px; z-index: 2; }\",\".framer-bc9qP .framer-mq5zhf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 55px; justify-content: center; overflow: hidden; padding: 24px 0px 24px 0px; position: relative; width: 1540px; }\",\".framer-bc9qP .framer-106qj60 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bc9qP.framer-195dn7w, .framer-bc9qP .framer-1bwxhr5, .framer-bc9qP .framer-mq5zhf { gap: 0px; } .framer-bc9qP.framer-195dn7w > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bc9qP.framer-195dn7w > :first-child, .framer-bc9qP .framer-1bwxhr5 > :first-child { margin-top: 0px; } .framer-bc9qP.framer-195dn7w > :last-child, .framer-bc9qP .framer-1bwxhr5 > :last-child { margin-bottom: 0px; } .framer-bc9qP .framer-1bwxhr5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bc9qP .framer-mq5zhf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bc9qP .framer-mq5zhf > :first-child { margin-left: 0px; } .framer-bc9qP .framer-mq5zhf > :last-child { margin-right: 0px; } }\",\".framer-bc9qP.framer-v-qnaejd .framer-1ld1n2e { top: 94px; }\",\".framer-bc9qP.framer-v-1miilrm .framer-1bwxhr5 { order: 0; }\",'.framer-bc9qP[data-border=\"true\"]::after, .framer-bc9qP [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 232\n * @framerIntrinsicWidth 416\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CQyWgB1qB\":{\"layout\":[\"fixed\",\"auto\"]},\"Y7KBNvn0e\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"A0zR3wSdV\":\"image\",\"HPQIXVBJa\":\"tITle\",\"UTE8N28ve\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermAjD2BWqs=withCSS(Component,css,\"framer-bc9qP\");export default FramermAjD2BWqs;FramermAjD2BWqs.displayName=\"Basic Card\";FramermAjD2BWqs.defaultProps={height:232,width:416};addPropertyControls(FramermAjD2BWqs,{variant:{options:[\"sf68Pkuso\",\"CQyWgB1qB\",\"Y7KBNvn0e\"],optionTitles:[\"Medium\",\"Small\",\"Coming Soon\"],title:\"Variant\",type:ControlType.Enum},A0zR3wSdV:{__defaultAssetReference:\"data:framer/asset-reference,ZYjEVj4Mn5Wx4SyIVPa88vSk5A.jpg?originalFilename=photo-1682685797769-481b48222adf%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MXwxfGFsbHwxNnx8fHx8fDJ8fDE2OTI0MDgwOTJ8%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},HPQIXVBJa:{defaultValue:\"Short Card Title\",displayTextArea:false,placeholder:\"\",title:\"TItle\",type:ControlType.String},UTE8N28ve:{title:\"Link\",type:ControlType.Link}});addFonts(FramermAjD2BWqs,[{explicitInter:true,fonts:[{family:\"Rund Display Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/QaYWW7gvlQL19nj5QoVTIVLlAyo.woff2\"},{family:\"Rund Text Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/7Px6OsRIkvBtSe8tUfNXkglN0.woff2\"}]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermAjD2BWqs\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"416\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"A0zR3wSdV\\\":\\\"image\\\",\\\"HPQIXVBJa\\\":\\\"tITle\\\",\\\"UTE8N28ve\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"232\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CQyWgB1qB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y7KBNvn0e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mAjD2BWqs.map","// Generated by Framer (033a048)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"jB975l5sh\",\"ERHor4_gh\",\"bbMRbLF6q\"];const serializationHash=\"framer-xB2bH\";const variantClassNames={bbMRbLF6q:\"framer-v-uvmbhp\",ERHor4_gh:\"framer-v-pp3p3a\",jB975l5sh:\"framer-v-10bsm1b\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={BI:\"OKbbXt5DW\",Booking:\"c3TxEnhkP\",Fleet:\"gghhbTODw\",Gifts:\"ZNv9hzjNL\",Marketing:\"KEDKSIYhc\",Partnerships:\"A3VOSR7Bl\",Plan:\"li2fJspdi\",Revenue:\"UBJII8s5H\",Toolbox:\"gh1eErSDj\",Vault:\"B7Njrd4dV\"};const humanReadableVariantMap={Deafult:\"jB975l5sh\",Medium:\"bbMRbLF6q\",Small:\"ERHor4_gh\"};const getProps=({height,icon,id,text,title,width,...props})=>{var _ref,_humanReadableEnumMap_icon,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,i2equc17f:(_ref=text!==null&&text!==void 0?text:props.i2equc17f)!==null&&_ref!==void 0?_ref:\"Explore ideas that empower individuals and enhance their quality of life.\",NqLZvSwe7:(_ref2=(_ref1=(_humanReadableEnumMap_icon=humanReadableEnumMap[icon])!==null&&_humanReadableEnumMap_icon!==void 0?_humanReadableEnumMap_icon:icon)!==null&&_ref1!==void 0?_ref1:props.NqLZvSwe7)!==null&&_ref2!==void 0?_ref2:\"UBJII8s5H\",TCVQfNOEq:(_ref3=title!==null&&title!==void 0?title:props.TCVQfNOEq)!==null&&_ref3!==void 0?_ref3:\"Predictive Analytics\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"jB975l5sh\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,NqLZvSwe7,TCVQfNOEq,i2equc17f,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jB975l5sh\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=equals(NqLZvSwe7,\"OKbbXt5DW\");const visible1=equals(NqLZvSwe7,\"UBJII8s5H\");const visible2=equals(NqLZvSwe7,\"c3TxEnhkP\");const visible3=equals(NqLZvSwe7,\"KEDKSIYhc\");const visible4=equals(NqLZvSwe7,\"A3VOSR7Bl\");const visible5=equals(NqLZvSwe7,\"gghhbTODw\");const visible6=equals(NqLZvSwe7,\"B7Njrd4dV\");const visible7=equals(NqLZvSwe7,\"li2fJspdi\");const visible8=equals(NqLZvSwe7,\"ZNv9hzjNL\");const visible9=equals(NqLZvSwe7,\"gh1eErSDj\");const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-10bsm1b\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Deafult\",layoutDependency:layoutDependency,layoutId:\"jB975l5sh\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(235, 235, 235)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{bbMRbLF6q:{\"--border-color\":\"var(--token-57644229-9aea-4671-a3e2-529f7b58afe0, rgb(229, 237, 229))\"},ERHor4_gh:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}},...addPropertyOverrides({bbMRbLF6q:{\"data-framer-name\":\"Medium\"},ERHor4_gh:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lg9z5n\",\"data-framer-name\":\"Feature Card Icon\",layoutDependency:layoutDependency,layoutId:\"jgSxTlN4k\",children:[visible&&/*#__PURE__*/_jsx(SVG,{className:\"framer-5nj0xt\",\"data-framer-name\":\"Icon BI\",fill:\"black\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"cBQhUouJc\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><!--!Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.--><path class=\"fa-secondary\" opacity=\".4\" fill=\"#949494\" d=\"M176 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v40h48V24zm104 40V24c0-13.3-10.7-24-24-24s-24 10.7-24 24v40h48zm104 0V24c0-13.3-10.7-24-24-24s-24 10.7-24 24v40h48zm64 112h40c13.3 0 24-10.7 24-24s-10.7-24-24-24h-40v48zm0 104h40c13.3 0 24-10.7 24-24s-10.7-24-24-24h-40v48zm0 104h40c13.3 0 24-10.7 24-24s-10.7-24-24-24h-40v48zm-112 64v40c0 13.3 10.7 24 24 24s24-10.7 24-24v-40h-48zm-104 0v40c0 13.3 10.7 24 24 24s24-10.7 24-24v-40h-48zm-104 0v40c0 13.3 10.7 24 24 24s24-10.7 24-24v-40h-48zM64 336H24c-13.3 0-24 10.7-24 24s10.7 24 24 24h40v-48zm0-104H24c-13.3 0-24 10.7-24 24s10.7 24 24 24h40v-48zm0-104H24c-13.3 0-24 10.7-24 24s10.7 24 24 24h40v-48z\"/><path class=\"fa-primary\" fill=\"#171717\" d=\"M128 64c-35.3 0-64 28.7-64 64v256c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H128zm94.7 121.6 42 96 14 32c3.5 8.1-.1 17.5-8.2 21.1s-17.5-.2-21.1-8.2l-9.9-22.5h-63l-9.8 22.4c-3.5 8.1-13 11.8-21.1 8.2s-11.8-13-8.2-21.1l14-32 42-96c2.5-5.8 8.3-9.6 14.7-9.6s12.1 3.8 14.7 9.6zM208 231.9 190.5 272h35.1L208 231.9zM352 192v128c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16z\"/></svg>',withExternalLayout:true}),visible1&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1na9ppc\",\"data-framer-name\":\"Icon Growth\",fill:\"black\",intrinsicHeight:51,intrinsicWidth:56,layoutDependency:layoutDependency,layoutId:\"sXM3Ze__x\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"56\" height=\"51\"><path d=\"M39.773 0a3.181 3.181 0 0 0-3.182 3.188 3.181 3.181 0 0 0 3.182 3.187h2.863l-10.877 8.716L21 7.012a3.177 3.177 0 0 0-3.898.06L1.193 19.822a3.198 3.198 0 0 0-.497 4.483 3.185 3.185 0 0 0 4.474.498l13.981-11.206 10.758 8.078a3.174 3.174 0 0 0 3.898-.06l13.92-11.156v3.885a3.181 3.181 0 1 0 6.364 0V3.188A3.181 3.181 0 0 0 50.909 0ZM15.909 25.5v19.125a3.182 3.182 0 1 0 6.364 0V25.5a3.181 3.181 0 1 0-6.364 0ZM3.182 35.063v9.562a3.182 3.182 0 1 0 6.363 0v-9.562a3.18 3.18 0 1 0-6.363 0Z\" fill=\"#6B7280\" opacity=\".4\"/><path d=\"M40.955 51c7.907 0 14.318-6.422 14.318-14.344s-6.411-14.343-14.318-14.343c-7.908 0-14.319 6.421-14.319 14.343S33.047 51 40.955 51Zm-2.377-17.232v.01c0 .039 0 .189.477.448.557.299 1.343.518 2.377.817h.02c.924.259 2.098.597 3.032 1.145 1.015.598 1.989 1.604 2.039 3.217.049 1.813-.965 3.029-2.158 3.676a6.155 6.155 0 0 1-1.82.618v1.075c0 .877-.715 1.594-1.59 1.594a1.597 1.597 0 0 1-1.591-1.594v-1.135c-.855-.169-1.661-.428-2.357-.658-.169-.059-.338-.109-.497-.159a1.587 1.587 0 0 1-1.044-1.992c.268-.837 1.153-1.315 1.989-1.046.198.06.387.12.576.179 1.134.359 2.029.648 2.973.678.666.02 1.372-.11 1.84-.359.219-.119.338-.239.397-.329.05-.079.11-.209.1-.448 0-.139-.02-.299-.467-.558-.527-.309-1.283-.538-2.307-.826l-.179-.05c-.885-.249-1.969-.558-2.844-1.026-.984-.528-2.048-1.465-2.148-3.058-.119-1.873.995-3.078 2.168-3.706a6.37 6.37 0 0 1 1.79-.627v-.966c0-.877.716-1.594 1.591-1.594s1.591.717 1.591 1.594v.936c.626.089 1.223.229 1.779.368a1.596 1.596 0 0 1-.765 3.098c-.925-.229-1.81-.398-2.625-.408-.617-.01-1.353.129-1.86.398-.238.13-.358.249-.417.339a.568.568 0 0 0-.08.359Z\" fill=\"#171717\"/></svg>',withExternalLayout:true}),visible2&&/*#__PURE__*/_jsx(SVG,{className:\"framer-nreddp\",\"data-framer-name\":\"Icon Booking\",fill:\"black\",intrinsicHeight:512,intrinsicWidth:448,layoutDependency:layoutDependency,layoutId:\"s1HmtJCo1\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><!--!Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.--><path class=\"fa-secondary\" opacity=\".4\" fill=\"#949494\" d=\"M448 192H0v272c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192zm-214.7 58.9 23.6 47.8 52.7 7.7c8.5 1.2 11.9 11.7 5.8 17.7l-38.2 37.2 9 52.5c1.5 8.5-7.5 15-15.1 11L224 400l-47.2 24.8c-7.6 4-16.5-2.5-15.1-11l9-52.5-38.2-37.2c-6.2-6-2.8-16.5 5.8-17.7l52.7-7.7 23.6-47.8c3.8-7.7 14.8-7.7 18.7 0z\"/><path class=\"fa-primary\" fill=\"#171717\" d=\"M128 0c-17.7 0-32 14.3-32 32v32H48C21.5 64 0 85.5 0 112v80h448v-80c0-26.5-21.5-48-48-48h-48V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v32H160V32c0-17.7-14.3-32-32-32zm105.3 250.9c-3.8-7.7-14.8-7.7-18.7 0L191 298.7l-52.7 7.7c-8.5 1.2-11.9 11.7-5.8 17.7l38.2 37.2-9 52.5c-1.5 8.5 7.5 15 15.1 11L224 400l47.2 24.8c7.6 4 16.5-2.5 15.1-11l-9-52.5 38.2-37.2c6.2-6 2.8-16.5-5.8-17.7l-52.7-7.7-23.6-47.8z\"/></svg>',withExternalLayout:true}),visible3&&/*#__PURE__*/_jsx(SVG,{className:\"framer-4n1841\",\"data-framer-name\":\"Icon Marketing\",fill:\"black\",intrinsicHeight:512,intrinsicWidth:576,layoutDependency:layoutDependency,layoutId:\"nDig8cyvU\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><!--!Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.--><path class=\"fa-secondary\" opacity=\".4\" fill=\"#949494\" d=\"M64 190.9 512 64v384L64 321.1c-.6 17.1-14.7 30.9-32 30.9-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32 17.3 0 31.4 13.8 32 30.9z\"/><path class=\"fa-primary\" fill=\"#171717\" d=\"M544 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32zM160 384c0 53 43 96 96 96 46.8 0 85.8-33.5 94.3-77.8L303.7 389c-2.5 24.2-22.9 43-47.7 43-26.5 0-48-21.5-48-48 0-7.4 1.7-14.5 4.7-20.8L166.2 350c-4 10.6-6.2 22-6.2 34z\"/></svg>',withExternalLayout:true}),visible4&&/*#__PURE__*/_jsx(SVG,{className:\"framer-yakqoi\",\"data-framer-name\":\"Icon Partnership\",fill:\"black\",intrinsicHeight:512,intrinsicWidth:640,layoutDependency:layoutDependency,layoutId:\"Vbub7owHA\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><!--!Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.--><path class=\"fa-secondary\" opacity=\".4\" fill=\"#949494\" d=\"M512 352V128h-1.5l-71-47.3a98.837 98.837 0 0 0-55-16.7c-20.7 0-40.9 6.5-57.7 18.5l-98.6 70.4c-21.6 15.4-26.6 45.4-11.2 67s45.4 26.6 67 11.2l57.2-40.8 155.2 142.3c6 5.5 10.3 12.2 12.8 19.4h2.8zm32 0c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V144c0-8.8-7.2-16-16-16h-80v224zm48-32a16 16 0 1 1 0 32 16 16 0 1 1 0-32z\"/><path class=\"fa-primary\" fill=\"#171717\" d=\"M156.2 352H128V128l72-48c15.6-10.4 34-16 52.8-16 22.7 0 44.7 8.1 61.9 22.9l2.7 2.3-89.3 63.8c-21.6 15.4-26.6 45.4-11.2 67s45.4 26.6 67 11.2l57.2-40.8 13.1 12 142.2 130.2c5.5 5 9.6 11.1 12.1 17.5 6.6 16.6 3.7 36.2-9.2 50.3-17.9 19.5-48.3 20.9-67.8 2.9l-7.8-7.1c-.9 10.1-5 20.1-12.4 28.2-17.9 19.5-48.3 20.9-67.8 2.9l-17-15.6c-1.9 7.4-5.6 14.5-11.1 20.6-17.9 19.6-48.2 21-67.8 3.1L156.2 352zM0 144c0-8.8 7.2-16 16-16h80v224c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V144zm64 192a16 16 0 1 0-32 0 16 16 0 1 0 32 0z\"/></svg>',withExternalLayout:true}),visible5&&/*#__PURE__*/_jsx(SVG,{className:\"framer-8kf5f0\",\"data-framer-name\":\"Icon Fleet\",fill:\"black\",intrinsicHeight:56,intrinsicWidth:56,layoutDependency:layoutDependency,layoutId:\"OX4GZCQj4\",svg:'<svg width=\"56\" height=\"56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9.499 5h30.334c2.738 0 5.056 2.317 5.056 5.056 0 2.106-1.264 3.792-2.95 4.634l4.214 12.64 1.263.526c4.424 1.79 6.847 6.425 5.899 10.954A8.259 8.259 0 0 1 55 43.76c0 4.74-3.792 8.427-8.426 8.427-4.74 0-8.426-3.687-8.426-8.426H17.925c0 4.74-3.792 8.426-8.426 8.426-4.74 0-8.427-3.687-8.427-8.426 0-1.791.527-3.476 1.475-4.846l-1.37-2.738a1.61 1.61 0 0 1 .317-1.896l.21-.21c1.686-2.002 3.792-3.582 6.11-4.53v-14.64a5.139 5.139 0 0 1-3.371-4.845C4.443 7.317 6.655 5 9.499 5Zm29.07 10.111H11.184v13.166c6.636-1.58 14.114.632 18.853 6.53l.422.527h6.846l2.317-2.844-6.53-6.53-2.212 2.212c-.632.632-1.79.632-2.422 0-.632-.632-.632-1.79 0-2.422l6.74-6.741c.632-.632 1.791-.632 2.423 0 .632.631.632 1.79 0 2.422l-2.212 2.107 6.32 6.32 1.264-1.58-4.424-13.167ZM9.499 38.705c-1.896 0-3.476 1.053-4.424 2.528-.948 1.58-.948 3.58 0 5.055.948 1.58 2.528 2.528 4.424 2.528 1.79 0 3.37-.948 4.318-2.528.948-1.474.948-3.475 0-5.055-.948-1.475-2.528-2.528-4.318-2.528Zm32.02 5.056c0 1.895.947 3.475 2.527 4.423 1.474.948 3.476.948 5.056 0 1.474-.948 2.528-2.528 2.528-4.423 0-1.791-1.054-3.371-2.528-4.319-1.58-.948-3.581-.948-5.056 0-1.58.948-2.528 2.528-2.528 4.319Z\" fill=\"#171717\"/><path d=\"m47.416 27.856-1.263-.527-3.16.948-1.264 1.58-2.107 2.633-2.317 2.844h-6.846l-.422-.526c-4.74-5.899-12.217-8.11-18.853-6.53l-3.37 1.263c-2.318.948-4.424 2.528-6.11 4.53l-.21.21a1.61 1.61 0 0 0-.316 1.896l1.369 2.738C3.39 37.777 5.993 35.5 9.664 35.5c5.694 0 7.88 5.507 8.26 8.26h20.224c0-2.808 1.685-8.426 8.426-8.426 4.044 0 6.179 2.317 6.74 3.476.949-4.529-1.474-9.163-5.898-10.954Z\" fill=\"#949494\"/></svg>',withExternalLayout:true}),visible6&&/*#__PURE__*/_jsx(SVG,{className:\"framer-127h9sz\",\"data-framer-name\":\"Icon Vault\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:56,layoutDependency:layoutDependency,layoutId:\"iyB4UJoKc\",svg:'<svg width=\"56\" height=\"56\" viewBox=\"0 0 56 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.5 26.5C29.5 23.875 28 21.4375 25.75 20.0312C23.4062 18.7188 20.5 18.7188 18.25 20.0312C15.9062 21.4375 14.5 23.875 14.5 26.5C14.5 29.2188 15.9062 31.6562 18.25 33.0625C20.5 34.375 23.4062 34.375 25.75 33.0625C28 31.6562 29.5 29.2188 29.5 26.5ZM7 26.5C7 21.1562 9.8125 16.2812 14.5 13.5625C19.0938 10.8438 24.8125 10.8438 29.5 13.5625C34.0938 16.2812 37 21.1562 37 26.5C37 31.9375 34.0938 36.8125 29.5 39.5312C24.8125 42.25 19.0938 42.25 14.5 39.5312C9.8125 36.8125 7 31.9375 7 26.5ZM49 20.5C49 22.4688 47.6875 24.1562 46 24.8125V35.5C46 36.3438 45.25 37 44.5 37C43.6562 37 43 36.3438 43 35.5V24.8125C41.2188 24.1562 40 22.4688 40 20.5C40 18.0625 41.9688 16 44.5 16C46.9375 16 49 18.0625 49 20.5Z\" fill=\"#171717\"/>\\n<path opacity=\"0.4\" d=\"M7 4H49C52.2812 4 55 6.71875 55 10V43C55 46.375 52.2812 49 49 49H47.5L46 52H40L38.5 49H17.5L16 52H10L8.5 49H7C3.625 49 1 46.375 1 43V10C1 6.71875 3.625 4 7 4ZM7 26.5C7 31.9375 9.8125 36.8125 14.5 39.5312C19.0938 42.25 24.8125 42.25 29.5 39.5312C34.0938 36.8125 37 31.9375 37 26.5C37 21.1562 34.0938 16.2812 29.5 13.5625C24.8125 10.8438 19.0938 10.8438 14.5 13.5625C9.8125 16.2812 7 21.1562 7 26.5ZM46 24.8125C47.6875 24.1562 49 22.4688 49 20.5C49 18.0625 46.9375 16 44.5 16C41.9688 16 40 18.0625 40 20.5C40 22.4688 41.2188 24.1562 43 24.8125V35.5C43 36.3438 43.6562 37 44.5 37C45.25 37 46 36.3438 46 35.5V24.8125Z\" fill=\"#6B7280\"/>\\n</svg>\\n',withExternalLayout:true}),visible7&&/*#__PURE__*/_jsx(SVG,{className:\"framer-17mokyo\",\"data-framer-name\":\"Icon Plan\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:57,intrinsicWidth:56,layoutDependency:layoutDependency,layoutId:\"At79uG8AM\",svg:'<svg width=\"56\" height=\"57\" viewBox=\"0 0 56 57\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 49.6985C11.6569 49.6985 13 48.3554 13 46.6985C13 45.0417 11.6569 43.6985 10 43.6985C8.34315 43.6985 7 45.0417 7 46.6985C7 48.3554 8.34315 49.6985 10 49.6985ZM10 54.6985C14.4183 54.6985 18 51.1168 18 46.6985C18 42.2803 14.4183 38.6985 10 38.6985C5.58172 38.6985 2 42.2803 2 46.6985C2 51.1168 5.58172 54.6985 10 54.6985Z\" fill=\"#171717\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M46 13.6985C47.6569 13.6985 49 12.3554 49 10.6985C49 9.04169 47.6569 7.69855 46 7.69855C44.3431 7.69855 43 9.04169 43 10.6985C43 12.3554 44.3431 13.6985 46 13.6985ZM46 18.6985C50.4183 18.6985 54 15.1168 54 10.6985C54 6.28027 50.4183 2.69855 46 2.69855C41.5817 2.69855 38 6.28027 38 10.6985C38 15.1168 41.5817 18.6985 46 18.6985Z\" fill=\"#171717\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.8736 6.62505C28.8141 5.61415 30.396 5.55704 31.4069 6.4975L36.7179 11.4384C37.5073 12.1728 37.737 13.3305 37.2877 14.3106L34.1343 21.1893C33.5589 22.4444 32.075 22.9954 30.8199 22.42C29.5648 21.8447 29.0137 20.3608 29.5891 19.1056L30.5137 17.0889C22.0958 19.8125 15.457 26.4238 12.7265 34.9029C12.3033 36.2171 10.8948 36.9394 9.58051 36.5162C8.26626 36.093 7.54395 34.6845 7.96718 33.3702C11.3022 23.0142 19.5737 15.0173 30.0005 12.0182L28.0012 10.1583C26.9903 9.21784 26.9332 7.63595 27.8736 6.62505Z\" fill=\"#171717\"/>\\n<path opacity=\"0.4\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.4924 2.3866C11.8731 2.3866 12.9924 3.50588 12.9924 4.8866V8.25854L16.5689 8.25855C17.9496 8.25856 19.0689 9.37785 19.0689 10.7586C19.0689 12.1393 17.9496 13.2586 16.5689 13.2586L12.9924 13.2585L12.9924 16.8866C12.9924 18.2673 11.8731 19.3866 10.4924 19.3866C9.11168 19.3866 7.9924 18.2673 7.9924 16.8866L7.9924 13.2585H4.56886C3.18815 13.2585 2.06886 12.1392 2.06886 10.7585C2.06886 9.37782 3.18815 8.25853 4.56886 8.25853H7.99241V4.8866C7.99241 3.50588 9.11169 2.3866 10.4924 2.3866Z\" fill=\"#6B7280\"/>\\n<path opacity=\"0.4\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M31.9235 24.1985C33.3043 24.1985 34.4235 25.3178 34.4235 26.6985V30.0705L38 30.0705C39.3807 30.0705 40.5 31.1898 40.5 32.5705C40.5 33.9512 39.3807 35.0705 38 35.0705L34.4235 35.0705L34.4235 38.6986C34.4235 40.0793 33.3042 41.1985 31.9235 41.1985C30.5428 41.1985 29.4235 40.0793 29.4235 38.6985L29.4235 35.0705H26C24.6193 35.0705 23.5 33.9512 23.5 32.5705C23.5 31.1898 24.6193 30.0705 26 30.0705H29.4235V26.6985C29.4235 25.3178 30.5428 24.1985 31.9235 24.1985Z\" fill=\"#6B7280\"/>\\n<path opacity=\"0.4\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M45.3547 38.0105C46.7354 38.0105 47.8547 39.1298 47.8547 40.5105V43.8824L51.4311 43.8825C52.8119 43.8825 53.9311 45.0017 53.9311 46.3825C53.9311 47.7632 52.8118 48.8825 51.4311 48.8825L47.8547 48.8824L47.8547 52.5105C47.8547 53.8912 46.7354 55.0105 45.3547 55.0105C43.974 55.0105 42.8547 53.8912 42.8547 52.5105L42.8547 48.8824H39.4311C38.0504 48.8824 36.9311 47.7631 36.9311 46.3824C36.9311 45.0017 38.0504 43.8824 39.4311 43.8824H42.8547V40.5105C42.8547 39.1298 43.974 38.0105 45.3547 38.0105Z\" fill=\"#6B7280\"/>\\n</svg>\\n',withExternalLayout:true}),visible8&&/*#__PURE__*/_jsx(SVG,{className:\"framer-p290c6\",\"data-framer-name\":\"Icon Gifts\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:56,layoutDependency:layoutDependency,layoutId:\"XCbDfPaO8\",svg:'<svg width=\"56\" height=\"56\" viewBox=\"0 0 56 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.05 14.4844H21.25C22.6 14.4844 23.8656 15.2438 24.625 16.3407C22.6844 17.8594 21.4188 20.1376 21.25 22.7532C18.8875 23.3438 17.2 25.5376 17.2 27.9844V46.8844C17.2 47.8969 17.4531 48.8251 17.875 49.5844H5.05C2.77188 49.5844 1 47.8126 1 45.5344V18.5344C1 16.3407 2.77188 14.4844 5.05 14.4844ZM31.6281 22.0782C31.2063 21.5719 30.6156 21.2344 30.025 21.2344C28.8438 21.2344 28 22.1626 28 23.2594C28 24.4407 28.8438 25.2844 30.025 25.2844H34.1594L31.6281 22.0782ZM30.025 29.3344C26.65 29.3344 23.95 26.6344 23.95 23.2594C23.95 19.9688 26.65 17.1844 30.025 17.1844C31.8813 17.1844 33.6531 18.1126 34.8344 19.6313L37.45 22.9219L39.9813 19.6313C41.1625 18.1126 42.9344 17.1844 44.7906 17.1844C48.1656 17.1844 50.95 19.9688 50.95 23.2594C50.95 26.6344 48.1656 29.3344 44.875 29.3344H38.8V36.0844H55V38.7844H38.8V49.5844H36.1V38.7844H19.9V36.0844H36.1V29.3344H34.75H30.025ZM44.7906 21.2344C44.2 21.2344 43.6094 21.5719 43.1875 22.0782L40.6563 25.2844H44.875C45.9719 25.2844 46.9 24.4407 46.9 23.2594C46.9 22.1626 45.9719 21.2344 44.7906 21.2344Z\" fill=\"#171717\"/>\\n<path opacity=\"0.4\" d=\"M17.875 9.08445L17.1156 11.3626L19.225 9.5907C20.1531 8.83132 21.4188 9.00007 22.0938 9.84382C22.8531 10.7719 22.6844 12.0376 21.8406 12.7126L19.6469 14.4845H6.65314L4.37502 12.7126C3.53127 12.0376 3.44689 10.7719 4.12189 9.84382C4.79689 9.00007 6.06252 8.83132 6.99064 9.5907L9.26876 11.4469L8.50939 9.08445C8.17189 7.98757 8.67814 6.8907 9.77501 6.5532C10.8719 6.13132 11.9688 6.72195 12.3063 7.81882L13.15 10.3501L14.0781 7.73445C14.4156 6.72195 15.5969 6.13132 16.6938 6.5532C17.7063 6.8907 18.2969 8.07195 17.875 9.08445ZM50.95 25.2845C53.1438 25.2845 55 27.1407 55 29.3345V36.0845H38.8V29.3345H44.875C47.4906 29.3345 49.7688 27.647 50.5281 25.2845H50.95ZM38.8 38.7845H55V45.5345C55 47.8126 53.1438 49.5845 50.95 49.5845H38.8V38.7845ZM36.1 38.7845V49.5845H23.95C21.6719 49.5845 19.9 47.8126 19.9 45.5345V38.7845H36.1ZM36.1 36.0845H19.9V29.3345C19.9 27.1407 21.6719 25.2845 23.95 25.2845H24.2875C25.1313 27.647 27.325 29.3345 30.025 29.3345H34.75H36.1V36.0845Z\" fill=\"#6B7280\"/>\\n</svg>\\n',withExternalLayout:true}),visible9&&/*#__PURE__*/_jsx(SVG,{className:\"framer-p1bcac\",\"data-framer-name\":\"Icon Toolbox\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:56,layoutDependency:layoutDependency,layoutId:\"H7PoRuE12\",svg:'<svg width=\"56\" height=\"56\" viewBox=\"0 0 56 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2 34.875V27.2383C2 25.7109 2.53906 24.2734 3.61719 23.1953L7.48047 19.332C8.55859 18.2539 9.99609 17.625 11.5234 17.625H38.3867C39.9141 17.625 41.3516 18.2539 42.4297 19.332L46.293 23.1953C47.3711 24.2734 48 25.7109 48 27.2383V34.875H36.5V32C36.5 30.4727 35.1523 29.125 33.625 29.125C32.0078 29.125 30.75 30.4727 30.75 32V34.875H19.25V32C19.25 30.4727 17.9023 29.125 16.375 29.125C14.7578 29.125 13.5 30.4727 13.5 32V34.875H2Z\" fill=\"#171717\"/>\\n<path opacity=\"0.4\" d=\"M17.8125 14.0312V17.625H13.5V14.0312C13.5 11.3359 15.7461 9 18.5312 9H31.4687C34.1641 9 36.5 11.3359 36.5 14.0312V17.625H32.1875V14.0312C32.1875 13.6719 31.8281 13.3125 31.4687 13.3125H18.5312C18.082 13.3125 17.8125 13.6719 17.8125 14.0312ZM2 34.875H13.5V37.75C13.5 39.3672 14.7578 40.625 16.375 40.625C17.9023 40.625 19.25 39.3672 19.25 37.75V34.875H30.75V37.75C30.75 39.3672 32.0078 40.625 33.625 40.625C35.1523 40.625 36.5 39.3672 36.5 37.75V34.875H48V43.5C48 46.7344 45.3945 49.25 42.25 49.25H7.75C4.51562 49.25 2 46.7344 2 43.5V34.875Z\" fill=\"#6B7280\"/>\\n<path d=\"M47.6388 7.13199C47.9573 7.16738 48.1697 7.45052 48.0989 7.76906L46.9663 14.5645C46.9309 14.883 46.6478 15.0954 46.3292 15.0246C46.0107 14.9892 45.7983 14.7061 45.8691 14.3875L47.0017 7.59209C47.0371 7.27356 47.3202 7.0612 47.6388 7.13199ZM44.5596 9.25556C44.772 9.46792 44.772 9.85724 44.5596 10.0696L43.5332 11.0606L44.5596 12.087C44.772 12.2993 44.772 12.6887 44.5596 12.901C44.3472 13.1134 43.9579 13.1134 43.7456 12.901L42.3298 11.4853C42.1175 11.273 42.1175 10.8836 42.3298 10.6713L43.7456 9.25556C43.9579 9.0432 44.3472 9.0432 44.5596 9.25556ZM49.4084 9.25556C49.6208 9.0432 50.0101 9.0432 50.2225 9.25556L51.6382 10.6713C51.8505 10.8836 51.8505 11.273 51.6382 11.4853L50.2225 12.901C50.0101 13.1134 49.6208 13.1134 49.4084 12.901C49.1961 12.6887 49.1961 12.2993 49.4084 12.087L50.4348 11.0606L49.4084 10.0696C49.1961 9.85724 49.1961 9.46792 49.4084 9.25556Z\" fill=\"#171717\"/>\\n<path opacity=\"0.4\" d=\"M55.4606 7.91061C55.6022 8.22914 55.496 8.54768 55.2482 8.79543L54.1511 9.78643C53.8679 10.0342 53.7617 10.3881 53.7617 10.7774C53.7617 10.8836 53.7617 10.9544 53.7617 11.0606C53.7617 11.1668 53.7617 11.2729 53.7617 11.3791C53.7617 11.7684 53.8679 12.1224 54.1511 12.3701L55.2482 13.3611C55.496 13.5735 55.6022 13.9274 55.4606 14.2459C55.319 14.6706 55.1421 15.06 54.9297 15.4493L54.7527 15.7324C54.505 16.1218 54.2572 16.5111 53.9741 16.8296C53.7617 17.1128 53.4078 17.1835 53.0893 17.0774L51.709 16.6526C51.355 16.5111 50.9657 16.6173 50.6472 16.7942C50.4702 16.9004 50.2932 17.0066 50.1163 17.1128C49.7977 17.2897 49.5146 17.5729 49.4438 17.9268L49.1253 19.3779C49.0545 19.6964 48.8067 19.9442 48.4882 20.015C47.9927 20.0858 47.4972 20.1211 46.9663 20.1211C46.4708 20.1211 45.9753 20.0858 45.4798 20.015C45.1613 19.9442 44.9135 19.6964 44.8427 19.3779L44.5242 17.9268C44.4534 17.5729 44.1703 17.2897 43.8517 17.1128C43.6748 17.0066 43.4978 16.9004 43.3209 16.7942C43.0023 16.6173 42.613 16.5111 42.2591 16.6526L40.8787 17.0774C40.5602 17.1835 40.2063 17.1128 39.9939 16.865C39.7108 16.5111 39.463 16.1218 39.2153 15.7324L39.0383 15.4493C38.826 15.06 38.649 14.6706 38.5074 14.2459C38.3659 13.9274 38.472 13.6089 38.7198 13.3611L39.817 12.3701C40.1001 12.1224 40.2063 11.7684 40.2063 11.3791C40.2063 11.2729 40.2063 11.2021 40.2063 11.096C40.2063 10.9898 40.2063 10.8836 40.2063 10.7774C40.2063 10.3881 40.1001 10.0342 39.817 9.78643L38.7198 8.79543C38.472 8.54768 38.3659 8.22914 38.5074 7.91061C38.649 7.48589 38.826 7.09657 39.0383 6.70725L39.2153 6.42411C39.463 6.03479 39.7108 5.64546 39.9939 5.29154C40.2063 5.04379 40.5602 4.973 40.8787 5.07918L42.2591 5.50389C42.613 5.61007 43.0023 5.53929 43.3209 5.36232C43.4978 5.25614 43.6748 5.14996 43.8517 5.04379C44.1703 4.86682 44.4534 4.58368 44.5242 4.22975L44.8427 2.77864C44.9135 2.46011 45.1613 2.21236 45.4798 2.14157C45.9753 2.07079 46.4708 2 47.0017 2C47.4972 2 47.9927 2.07079 48.4882 2.14157C48.8067 2.17696 49.0545 2.46011 49.1253 2.77864L49.4438 4.19436C49.5146 4.58368 49.7977 4.86682 50.1163 5.04379C50.2932 5.14996 50.4702 5.22075 50.6472 5.36232C50.9657 5.53929 51.355 5.61007 51.709 5.50389L53.0893 5.07918C53.4078 4.973 53.7617 5.04379 53.9741 5.29154C54.2572 5.64546 54.505 6.03479 54.7527 6.42411L54.9297 6.70725C55.1421 7.09657 55.319 7.48589 55.496 7.91061H55.4606ZM48.0989 7.76904C48.1697 7.4505 47.9573 7.16736 47.6388 7.13196C47.3202 7.06118 47.0371 7.27354 47.0017 7.59207L45.8691 14.3875C45.7984 14.706 46.0107 14.9892 46.3292 15.0246C46.6478 15.0954 46.9309 14.883 46.9663 14.5645L48.0989 7.76904ZM44.5596 10.0696C44.772 9.85722 44.772 9.46789 44.5596 9.25554C44.3472 9.04318 43.9579 9.04318 43.7456 9.25554L42.3299 10.6713C42.1175 10.8836 42.1175 11.2729 42.3299 11.4853L43.7456 12.901C43.9579 13.1134 44.3472 13.1134 44.5596 12.901C44.772 12.6886 44.772 12.2993 44.5596 12.087L43.5332 11.0606L44.5596 10.0696ZM50.2225 9.25554C50.0101 9.04318 49.6208 9.04318 49.4084 9.25554C49.1961 9.46789 49.1961 9.85722 49.4084 10.0696L50.4348 11.0606L49.4084 12.087C49.1961 12.2993 49.1961 12.6886 49.4084 12.901C49.6208 13.1134 50.0101 13.1134 50.2225 12.901L51.6382 11.4853C51.8505 11.2729 51.8505 10.8836 51.6382 10.6713L50.2225 9.25554Z\" fill=\"#6B7280\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yq01el\",\"data-framer-name\":\"Feature Card Body\",layoutDependency:layoutDependency,layoutId:\"qGFFgxNwg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(12, 30, 27)))\"},children:\"Predictive Analytics\"})}),className:\"framer-1u700uf\",\"data-framer-name\":\"Feature Card Title\",fonts:[\"CUSTOM;Rund Display Bold\"],layoutDependency:layoutDependency,layoutId:\"DpsP7vFSS\",style:{\"--extracted-a0htzi\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(12, 30, 27))\",\"--framer-paragraph-spacing\":\"0px\"},text:TCVQfNOEq,variants:{bbMRbLF6q:{\"--extracted-r6o4lv\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(12, 30, 27))\"},ERHor4_gh:{\"--extracted-r6o4lv\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(12, 30, 27))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bbMRbLF6q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(12, 30, 27)))\"},children:\"Predictive Analytics\"})})},ERHor4_gh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(12, 30, 27)))\"},children:\"Predictive Analytics\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBMaWdodA==\",\"--framer-font-family\":'\"Rund Text Light\", \"Rund Text Light Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6d05c7e7-3db1-411c-8b7a-d2c7f93bf6a9, rgb(49, 66, 63)))\"},children:\"Explore ideas that empower individuals and enhance their quality of life.\"})}),className:\"framer-1mvcz0p\",\"data-framer-name\":\"Feature Card Paragraph\",fonts:[\"CUSTOM;Rund Text Light\"],layoutDependency:layoutDependency,layoutId:\"l0Atx0dre\",style:{\"--extracted-r6o4lv\":\"var(--token-6d05c7e7-3db1-411c-8b7a-d2c7f93bf6a9, rgb(49, 66, 63))\",\"--framer-paragraph-spacing\":\"0px\"},text:i2equc17f,variants:{ERHor4_gh:{\"--extracted-r6o4lv\":\"var(--token-d8aebec7-127a-45a9-b7a0-7e4b0ca8d5d3, rgb(74, 89, 87))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ERHor4_gh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBMaWdodA==\",\"--framer-font-family\":'\"Rund Text Light\", \"Rund Text Light Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d8aebec7-127a-45a9-b7a0-7e4b0ca8d5d3, rgb(74, 89, 87)))\"},children:\"Explore ideas that empower individuals and enhance their quality of life.\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xB2bH.framer-i379ec, .framer-xB2bH .framer-i379ec { display: block; }\",\".framer-xB2bH.framer-10bsm1b { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 28px 20px 28px; position: relative; width: 356px; }\",\".framer-xB2bH .framer-lg9z5n { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 64px; }\",\".framer-xB2bH .framer-5nj0xt, .framer-xB2bH .framer-8kf5f0 { bottom: 4px; flex: none; left: 4px; position: absolute; right: 4px; top: 4px; }\",\".framer-xB2bH .framer-1na9ppc { bottom: 6px; flex: none; left: 4px; position: absolute; right: 4px; top: 7px; }\",\".framer-xB2bH .framer-nreddp { bottom: 4px; flex: none; left: 8px; position: absolute; right: 7px; top: 4px; }\",\".framer-xB2bH .framer-4n1841 { bottom: 7px; flex: none; left: 4px; position: absolute; right: 4px; top: 7px; }\",\".framer-xB2bH .framer-yakqoi { bottom: 9px; flex: none; left: 4px; position: absolute; right: 4px; top: 10px; }\",\".framer-xB2bH .framer-127h9sz, .framer-xB2bH .framer-p290c6, .framer-xB2bH .framer-p1bcac { flex: none; height: 56px; left: calc(50.00000000000002% - 56px / 2); position: absolute; top: calc(50.00000000000002% - 56px / 2); width: 56px; }\",\".framer-xB2bH .framer-17mokyo { flex: none; height: 57px; left: calc(50.00000000000002% - 56px / 2); position: absolute; top: calc(50.00000000000002% - 57px / 2); width: 56px; }\",\".framer-xB2bH .framer-yq01el { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xB2bH .framer-1u700uf, .framer-xB2bH .framer-1mvcz0p { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xB2bH.framer-10bsm1b, .framer-xB2bH .framer-yq01el { gap: 0px; } .framer-xB2bH.framer-10bsm1b > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-xB2bH.framer-10bsm1b > :first-child, .framer-xB2bH .framer-yq01el > :first-child { margin-top: 0px; } .framer-xB2bH.framer-10bsm1b > :last-child, .framer-xB2bH .framer-yq01el > :last-child { margin-bottom: 0px; } .framer-xB2bH .framer-yq01el > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",\".framer-xB2bH.framer-v-pp3p3a.framer-10bsm1b { gap: 0px; padding: 16px 24px 16px 24px; }\",\".framer-xB2bH.framer-v-pp3p3a .framer-lg9z5n { height: var(--framer-aspect-ratio-supported, 48px); width: 48px; }\",\".framer-xB2bH.framer-v-pp3p3a .framer-yq01el, .framer-xB2bH.framer-v-uvmbhp .framer-yq01el { gap: 0px; }\",\".framer-xB2bH.framer-v-pp3p3a .framer-1mvcz0p { max-width: 341px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xB2bH.framer-v-pp3p3a.framer-10bsm1b, .framer-xB2bH.framer-v-pp3p3a .framer-yq01el { gap: 0px; } .framer-xB2bH.framer-v-pp3p3a.framer-10bsm1b > *, .framer-xB2bH.framer-v-pp3p3a .framer-yq01el > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xB2bH.framer-v-pp3p3a.framer-10bsm1b > :first-child, .framer-xB2bH.framer-v-pp3p3a .framer-yq01el > :first-child { margin-top: 0px; } .framer-xB2bH.framer-v-pp3p3a.framer-10bsm1b > :last-child, .framer-xB2bH.framer-v-pp3p3a .framer-yq01el > :last-child { margin-bottom: 0px; } }\",\".framer-xB2bH.framer-v-uvmbhp.framer-10bsm1b { gap: 4px; padding: 16px 24px 16px 24px; }\",\".framer-xB2bH.framer-v-uvmbhp .framer-1mvcz0p { max-width: 283px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xB2bH.framer-v-uvmbhp.framer-10bsm1b, .framer-xB2bH.framer-v-uvmbhp .framer-yq01el { gap: 0px; } .framer-xB2bH.framer-v-uvmbhp.framer-10bsm1b > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-xB2bH.framer-v-uvmbhp.framer-10bsm1b > :first-child, .framer-xB2bH.framer-v-uvmbhp .framer-yq01el > :first-child { margin-top: 0px; } .framer-xB2bH.framer-v-uvmbhp.framer-10bsm1b > :last-child, .framer-xB2bH.framer-v-uvmbhp .framer-yq01el > :last-child { margin-bottom: 0px; } .framer-xB2bH.framer-v-uvmbhp .framer-yq01el > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",'.framer-xB2bH[data-border=\"true\"]::after, .framer-xB2bH [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 205\n * @framerIntrinsicWidth 356\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ERHor4_gh\":{\"layout\":[\"fixed\",\"auto\"]},\"bbMRbLF6q\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"NqLZvSwe7\":\"icon\",\"TCVQfNOEq\":\"title\",\"i2equc17f\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertcIRZl7wq=withCSS(Component,css,\"framer-xB2bH\");export default FramertcIRZl7wq;FramertcIRZl7wq.displayName=\"Feature Card\";FramertcIRZl7wq.defaultProps={height:205,width:356};addPropertyControls(FramertcIRZl7wq,{variant:{options:[\"jB975l5sh\",\"ERHor4_gh\",\"bbMRbLF6q\"],optionTitles:[\"Deafult\",\"Small\",\"Medium\"],title:\"Variant\",type:ControlType.Enum},NqLZvSwe7:{defaultValue:\"UBJII8s5H\",options:[\"UBJII8s5H\",\"OKbbXt5DW\",\"c3TxEnhkP\",\"KEDKSIYhc\",\"A3VOSR7Bl\",\"gghhbTODw\",\"B7Njrd4dV\",\"li2fJspdi\",\"ZNv9hzjNL\",\"gh1eErSDj\"],optionTitles:[\"Revenue\",\"BI\",\"Booking\",\"Marketing\",\"Partnerships\",\"Fleet\",\"Vault\",\"Plan\",\"Gifts\",\"Toolbox\"],title:\"Icon\",type:ControlType.Enum},TCVQfNOEq:{defaultValue:\"Predictive Analytics\",displayTextArea:false,title:\"Title\",type:ControlType.String},i2equc17f:{defaultValue:\"Explore ideas that empower individuals and enhance their quality of life.\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramertcIRZl7wq,[{explicitInter:true,fonts:[{family:\"Rund Display Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/QaYWW7gvlQL19nj5QoVTIVLlAyo.woff2\"},{family:\"Rund Text Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/B3RqjV3WRF8kEkcM14Q8K8LnJQ.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertcIRZl7wq\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"356\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ERHor4_gh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bbMRbLF6q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"NqLZvSwe7\\\":\\\"icon\\\",\\\"TCVQfNOEq\\\":\\\"title\\\",\\\"i2equc17f\\\":\\\"text\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"205\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tcIRZl7wq.map","// Generated by Framer (6c2a425)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Button from\"#framer/local/canvasComponent/AUfsvDlsH/AUfsvDlsH.js\";import Footer from\"#framer/local/canvasComponent/l7p6Lt3bn/l7p6Lt3bn.js\";import BasicCard from\"#framer/local/canvasComponent/mAjD2BWqs/mAjD2BWqs.js\";import TestimonialCard from\"#framer/local/canvasComponent/Pm0TiuO0h/Pm0TiuO0h.js\";import FeatureCard from\"#framer/local/canvasComponent/tcIRZl7wq/tcIRZl7wq.js\";import LogosTicker from\"#framer/local/canvasComponent/VlciwXV3p/VlciwXV3p.js\";import Header from\"#framer/local/canvasComponent/wD60J9DLI/wD60J9DLI.js\";import metadataProvider from\"#framer/local/webPageMetadata/CU2P5qJ6t/CU2P5qJ6t.js\";const HeaderFonts=getFonts(Header);const ContainerWithFX=withFX(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const LogosTickerFonts=getFonts(LogosTicker);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const BasicCardFonts=getFonts(BasicCard);const FeatureCardFonts=getFonts(FeatureCard);const YouTubeFonts=getFonts(YouTube);const TestimonialCardFonts=getFonts(TestimonialCard);const FooterFonts=getFonts(Footer);const breakpoints={AFzBVyvcE:\"(min-width: 992px) and (max-width: 1439px)\",pdL1qubxG:\"(min-width: 1440px)\",xMdNEwp0E:\"(max-width: 767px)\",zPJEzz_1W:\"(min-width: 768px) and (max-width: 991px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-rdsmW\";const variantClassNames={AFzBVyvcE:\"framer-v-8g7hb9\",pdL1qubxG:\"framer-v-ix6s9u\",xMdNEwp0E:\"framer-v-1dcu2dv\",zPJEzz_1W:\"framer-v-1rq1t5h\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const transition1={damping:60,delay:0,mass:1.2,stiffness:300,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={damping:60,delay:.2,mass:1.2,stiffness:300,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={damping:60,delay:.4,mass:1.2,stiffness:300,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={damping:60,delay:.6,mass:1.2,stiffness:300,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop \":\"AFzBVyvcE\",\"Large Desktop\":\"pdL1qubxG\",Phone:\"xMdNEwp0E\",Tablet:\"zPJEzz_1W\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pdL1qubxG\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"vTxpCIwrC\");const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"zPJEzz_1W\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"xMdNEwp0E\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"zPJEzz_1W\",\"xMdNEwp0E\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"xMdNEwp0E\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"zPJEzz_1W\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"pdL1qubxG\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-ix6s9u\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:\"100vw\",y:-.5,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-j8hegk-container\",layoutScroll:true,nodeId:\"UvVIAV0TH\",rendersWithMotion:true,scopeId:\"CU2P5qJ6t\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{variant:\"t43iUZCO4\"},zPJEzz_1W:{variant:\"W230A76aX\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"UvVIAV0TH\",layoutId:\"UvVIAV0TH\",style:{width:\"100%\"},variant:\"uABEszJ11\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c967pv-container\",nodeId:\"YYWmYC4Hp\",scopeId:\"CU2P5qJ6t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{variant:\"owC202dMP\"},zPJEzz_1W:{variant:\"kIEX4LkWN\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"YYWmYC4Hp\",layoutId:\"YYWmYC4Hp\",style:{width:\"100%\"},variant:\"GA0u7Dyl2\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v41sl1\",\"data-framer-name\":\"Hero Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bpltth\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tilfui\",\"data-framer-name\":\"Hero Content Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16l8fzb\",\"data-framer-name\":\"Hero Content Block\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iel8bi\",\"data-framer-name\":\"Hero Content Text Block Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{animate:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Golf Commerce Platform\"})}),initial:undefined,optimized:undefined,style:{}},zPJEzz_1W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Golf Commerce Platform\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Golf Commerce Platform\"})}),className:\"framer-1twhxwo\",\"data-framer-appear-id\":\"1twhxwo\",\"data-framer-name\":\"Hero Title\",fonts:[\"CUSTOM;Rund Display Bold\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{animate:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Rund Text Regular\", \"Rund Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Like a caddie, we help you find your sweetspot\"})}),initial:undefined,optimized:undefined,style:{}},zPJEzz_1W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Rund Text Regular\", \"Rund Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Like a caddie, we help you find your sweetspot\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Rund Text Regular\", \"Rund Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Like a caddie, we help you find your sweetspot\"})}),className:\"framer-e0l1y7\",\"data-framer-appear-id\":\"e0l1y7\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Rund Text Regular\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-11vmaua\",\"data-framer-appear-id\":\"11vmaua\",\"data-framer-name\":\"Button Block\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t3sqfg\",\"data-framer-name\":\"Hero  Button Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{y:(componentViewport?.y||0)+0+0+131+0+0+0+0+0+50+353+0+0},xMdNEwp0E:{y:(componentViewport?.y||0)+0+0+100+0+8+0+0+0+24+196.2+0+0},zPJEzz_1W:{y:(componentViewport?.y||0)+0+0+130+0+20+0+0+0+0+315.5+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,y:(componentViewport?.y||0)+0+0+130+0+62+0+0+0+0+369+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13fnv19-container\",id:\"13fnv19\",nodeId:\"TSYISTWb8\",scopeId:\"CU2P5qJ6t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{variant:\"IkOZeetvP\"},zPJEzz_1W:{variant:\"IkOZeetvP\"}},children:/*#__PURE__*/_jsx(Button,{A2dWUqqQh:\"Book a Demo\",DnytOe0Z8:\"https://share-eu1.hsforms.com/1BX1-39QURYSZZGHuJvpT0w2dvofg\",height:\"100%\",id:\"TSYISTWb8\",layoutId:\"TSYISTWb8\",N5FKWNwKs:false,oSfNN4wFr:true,v8ArQOg02:false,variant:\"yBeL8Tzax\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{y:(componentViewport?.y||0)+0+0+131+0+0+0+0+0+50+353+0+0},xMdNEwp0E:{y:(componentViewport?.y||0)+0+0+100+0+8+0+0+0+24+196.2+0+0},zPJEzz_1W:{y:(componentViewport?.y||0)+0+0+130+0+20+0+0+0+0+315.5+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,y:(componentViewport?.y||0)+0+0+130+0+62+0+0+0+0+369+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u4nv3k-container\",id:\"1u4nv3k\",nodeId:\"wPAWp_DB6\",scopeId:\"CU2P5qJ6t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{variant:\"IkOZeetvP\"},zPJEzz_1W:{variant:\"IkOZeetvP\"}},children:/*#__PURE__*/_jsx(Button,{A2dWUqqQh:\"Toptracer Range\",DnytOe0Z8:\"https://share-eu1.hsforms.com/1BX1-39QURYSZZGHuJvpT0w2dvofg\",height:\"100%\",id:\"wPAWp_DB6\",layoutId:\"wPAWp_DB6\",N5FKWNwKs:false,oSfNN4wFr:true,v8ArQOg02:false,variant:\"V3SR8eroQ\",width:\"100%\"})})})})})]})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{width:`min(${componentViewport?.width||\"100vw\"}, 1000px)`,y:(componentViewport?.y||0)+0+0+131+0+0+0+0+560},xMdNEwp0E:{width:`min(${componentViewport?.width||\"100vw\"}, 524px)`,y:(componentViewport?.y||0)+0+0+100+0+8+0+0+327.2},zPJEzz_1W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 720px) - 48px)`,y:(componentViewport?.y||0)+0+0+130+0+20+0+0+410.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"1326px\",y:(componentViewport?.y||0)+0+0+130+0+62+0+0+476,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kzgfi4-container\",nodeId:\"XjvFoNvPJ\",scopeId:\"CU2P5qJ6t\",children:/*#__PURE__*/_jsx(LogosTicker,{height:\"100%\",id:\"XjvFoNvPJ\",layoutId:\"XjvFoNvPJ\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19t1ssv\",\"data-framer-name\":\"Hero Image Block\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{background:{alt:\"golf-management-software\",fit:\"fit\",intrinsicHeight:1912,intrinsicWidth:2818,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+131+0+0+0+0+700+0+0),pixelHeight:949,pixelWidth:1545,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1000px) * 0.8387)`,src:\"https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png\",srcSet:\"https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png?scale-down-to=512 512w,https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png 1545w\"}},xMdNEwp0E:{animate:undefined,background:{alt:\"golf-management-software\",fit:\"fit\",intrinsicHeight:1912,intrinsicWidth:2818,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+8+0+0+443.2+0+0),pixelHeight:949,pixelWidth:1545,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 524px) * 0.8692)`,src:\"https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png\",srcSet:\"https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png?scale-down-to=512 512w,https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png 1545w\"},initial:undefined,optimized:undefined},zPJEzz_1W:{background:{alt:\"golf-management-software\",fit:\"fit\",intrinsicHeight:1912,intrinsicWidth:2818,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+130+0+20+0+0+538.5+0+0),pixelHeight:949,pixelWidth:1545,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 720px) - 48px) * 0.9732)`,src:\"https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png\",srcSet:\"https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png?scale-down-to=512 512w,https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png 1545w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation5,background:{alt:\"golf-management-software\",fit:\"fit\",intrinsicHeight:1912,intrinsicWidth:2818,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+130+0+62+0+0+616+0+0),pixelHeight:949,pixelWidth:1545,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1356px) * 0.8429)`,src:\"https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png\",srcSet:\"https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png?scale-down-to=512 512w,https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pQ37f8H1jBERVQDMMbtuAilsqCs.png 1545w\"},className:\"framer-jrzvx5\",\"data-framer-appear-id\":\"jrzvx5\",\"data-framer-name\":\"Hero Image\",initial:animation2,optimized:true,style:{transformPerspective:1200}})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h4zyze\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBMaWdodA==\",\"--framer-font-family\":'\"Rund Text Light\", \"Rund Text Light Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(12, 30, 27))\"},children:\"Looking for our player mobile app?\"})}),style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBMaWdodA==\",\"--framer-font-family\":'\"Rund Text Light\", \"Rund Text Light Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(12, 30, 27))\"},children:\"Looking for our player mobile app?\"})}),className:\"framer-1bl4d3g\",\"data-framer-name\":\"Feature Section Title\",fonts:[\"CUSTOM;Rund Text Light\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e7t6zv\",\"data-framer-name\":\"Stores Links\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/se/app/sweetspot/id1234606187\",motionChild:true,nodeId:\"pOcEk55jg\",scopeId:\"CU2P5qJ6t\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1gexl3l framer-g6nuec\",\"data-framer-name\":\"Apple Appstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:120,svg:'<svg width=\"120\" height=\"40\" viewBox=\"0 0 120 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_228_4217)\">\\n<g clip-path=\"url(#clip1_228_4217)\">\\n<mask id=\"mask0_228_4217\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"120\" height=\"40\">\\n<path d=\"M0.167969 0H119.832V40H0.167969V0Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_228_4217)\">\\n<path d=\"M110.303 0.00013H9.70265C9.33595 0.00013 8.97365 0.00013 8.60792 0.00213C8.30177 0.00413 7.99806 0.00994 7.68897 0.01483C7.01748 0.0227318 6.34758 0.0818063 5.68507 0.19154C5.02349 0.303662 4.38264 0.515045 3.78419 0.81854C3.18647 1.1246 2.64031 1.5223 2.16554 1.9972C1.68827 2.47077 1.29043 3.01815 0.987319 3.61829C0.683369 4.21724 0.472609 4.85907 0.362319 5.52161C0.25098 6.18331 0.191067 6.85265 0.183119 7.52361C0.173839 7.83021 0.172859 8.13783 0.167969 8.44447V31.5587C0.172859 31.8692 0.173839 32.17 0.183119 32.4806C0.19107 33.1516 0.250982 33.8209 0.362319 34.4825C0.472305 35.1455 0.683077 35.7877 0.987319 36.3868C1.29029 36.985 1.68819 37.5302 2.16554 38.0011C2.63851 38.4781 3.18502 38.8761 3.78419 39.1798C4.38264 39.4841 5.02342 39.6968 5.68507 39.8106C6.34769 39.9195 7.01753 39.9786 7.68897 39.9874C7.99806 39.9942 8.30177 39.9981 8.60792 39.9981C8.97364 40.0001 9.33597 40.0001 9.70265 40.0001H110.303C110.662 40.0001 111.027 40.0001 111.387 39.9981C111.691 39.9981 112.004 39.9942 112.309 39.9874C112.979 39.9791 113.647 39.92 114.309 39.8106C114.972 39.696 115.615 39.4834 116.217 39.1798C116.815 38.8759 117.361 38.478 117.834 38.0011C118.31 37.5284 118.709 36.9836 119.016 36.3868C119.318 35.7872 119.526 35.1451 119.635 34.4825C119.746 33.8208 119.808 33.1516 119.82 32.4806C119.824 32.17 119.824 31.8692 119.824 31.5587C119.832 31.1954 119.832 30.8341 119.832 30.4649V9.53626C119.832 9.17005 119.832 8.80677 119.824 8.44447C119.824 8.13783 119.824 7.83021 119.82 7.52357C119.808 6.85255 119.746 6.18337 119.635 5.52157C119.526 4.85941 119.317 4.21763 119.016 3.61825C118.398 2.41533 117.42 1.43616 116.217 0.81845C115.615 0.515697 114.972 0.30437 114.309 0.19145C113.648 0.081233 112.979 0.022138 112.309 0.01469C112.004 0.00981 111.691 0.00395 111.387 0.002C111.027 0 110.662 0.00013 110.303 0.00013Z\" fill=\"#A6A6A6\"/>\\n<path d=\"M8.61284 39.125C8.30816 39.125 8.01084 39.1211 7.70855 39.1143C7.08233 39.1061 6.45758 39.0516 5.83941 38.9512C5.263 38.8519 4.70461 38.6673 4.18267 38.4033C3.66551 38.1415 3.19382 37.7983 2.78567 37.3867C2.37161 36.98 2.02688 36.5082 1.76516 35.9902C1.50054 35.4688 1.31741 34.9099 1.22216 34.333C1.11928 33.7131 1.06362 33.0863 1.05566 32.458C1.04932 32.2471 1.04102 31.5449 1.04102 31.5449V8.44434C1.04102 8.44434 1.04986 7.75293 1.05571 7.5498C1.06333 6.92248 1.11866 6.29665 1.22124 5.67773C1.31667 5.09925 1.49994 4.53875 1.7647 4.01563C2.02546 3.49794 2.36827 3.02586 2.77984 2.61768C3.19094 2.20562 3.66414 1.8606 4.18218 1.59521C4.70292 1.33209 5.26025 1.14873 5.8355 1.05127C6.45569 0.949836 7.08262 0.894996 7.71101 0.88721L8.61333 0.875H111.382L112.295 0.8877C112.918 0.895099 113.539 0.94945 114.153 1.05029C114.734 1.14898 115.298 1.33362 115.824 1.59814C116.862 2.13299 117.707 2.97916 118.239 4.01807C118.5 4.53758 118.68 5.09351 118.774 5.66699C118.878 6.29099 118.936 6.92174 118.948 7.5542C118.951 7.8374 118.951 8.1416 118.951 8.44434C118.959 8.81934 118.959 9.17627 118.959 9.53613V30.4648C118.959 30.8281 118.959 31.1826 118.951 31.54C118.951 31.8652 118.951 32.1631 118.947 32.4697C118.936 33.0909 118.878 33.7104 118.776 34.3232C118.683 34.9043 118.501 35.4675 118.236 35.9932C117.973 36.5056 117.63 36.9733 117.221 37.3789C116.812 37.7927 116.34 38.1379 115.821 38.4014C115.296 38.6674 114.734 38.8527 114.153 38.9512C113.535 39.0522 112.91 39.1067 112.284 39.1143C111.991 39.1211 111.685 39.125 111.387 39.125L110.303 39.127L8.61284 39.125Z\" fill=\"black\"/>\\n<path d=\"M24.937 20.3013C24.9477 19.4666 25.1694 18.6483 25.5814 17.9223C25.9935 17.1964 26.5824 16.5864 27.2935 16.1492C26.8418 15.5041 26.2458 14.9731 25.553 14.5986C24.8602 14.224 24.0896 14.0162 23.3024 13.9916C21.6231 13.8153 19.9952 14.9964 19.1395 14.9964C18.2672 14.9964 16.9497 14.0091 15.531 14.0383C14.6133 14.0679 13.7189 14.3348 12.9351 14.8128C12.1512 15.2909 11.5045 15.9638 11.058 16.7661C9.12406 20.1145 10.5666 25.0356 12.4192 27.7422C13.3461 29.0676 14.4294 30.548 15.8469 30.4955C17.2339 30.438 17.752 29.611 19.4263 29.611C21.085 29.611 21.5711 30.4955 23.0173 30.4621C24.5057 30.438 25.4434 29.1309 26.3378 27.793C27.0038 26.8486 27.5162 25.8049 27.8562 24.7005C26.9915 24.3347 26.2536 23.7226 25.7345 22.9403C25.2153 22.158 24.938 21.2402 24.937 20.3013ZM22.2053 12.2113C23.0168 11.2371 23.4166 9.98494 23.3198 8.7207C22.08 8.85092 20.9347 9.44348 20.1122 10.3803C19.7101 10.838 19.4021 11.3704 19.2059 11.9472C19.0096 12.524 18.929 13.1337 18.9685 13.7417C19.5887 13.7481 20.2022 13.6137 20.7628 13.3486C21.3235 13.0835 21.8167 12.6946 22.2053 12.2113ZM42.4705 27.1397H37.7371L36.6003 30.4961H34.5955L39.0789 18.0781H41.1619L45.6453 30.4961H43.6062L42.4705 27.1397ZM38.2273 25.5908H41.9793L40.1297 20.1436H40.0779L38.2273 25.5908ZM55.3279 25.9695C55.3279 28.7829 53.8221 30.5905 51.5496 30.5905C50.9739 30.6207 50.4014 30.4881 49.8976 30.2079C49.3939 29.9278 48.9791 29.5114 48.701 29.0065H48.658V33.4909H46.7996V21.4421H48.5984V22.948H48.6326C48.9236 22.4455 49.3453 22.0313 49.8529 21.7495C50.3605 21.4676 50.9351 21.3287 51.5154 21.3474C53.8132 21.3474 55.3279 23.1638 55.3279 25.9695ZM53.4178 25.9695C53.4178 24.1365 52.4705 22.9314 51.0252 22.9314C49.6052 22.9314 48.6502 24.1618 48.6502 25.9695C48.6502 27.7937 49.6052 29.0154 51.0252 29.0154C52.4705 29.0154 53.4178 27.8191 53.4178 25.9695ZM65.2928 25.9694C65.2928 28.7829 63.7869 30.5905 61.5144 30.5905C60.9388 30.6206 60.3663 30.488 59.8625 30.2079C59.3587 29.9278 58.944 29.5114 58.6658 29.0065H58.6228V33.4909H56.7644V21.4421H58.5632V22.948H58.5974C58.8884 22.4455 59.3101 22.0313 59.8177 21.7495C60.3254 21.4676 60.8999 21.3287 61.4802 21.3474C63.7781 21.3474 65.2928 23.1638 65.2928 25.9694ZM63.3826 25.9694C63.3826 24.1364 62.4353 22.9314 60.99 22.9314C59.5701 22.9314 58.615 24.1618 58.615 25.9694C58.615 27.7937 59.5701 29.0153 60.99 29.0153C62.4353 29.0153 63.3826 27.8191 63.3826 25.9694ZM71.8787 27.0362C72.0164 28.2676 73.2127 29.0762 74.8474 29.0762C76.4139 29.0762 77.5408 28.2676 77.5408 27.1572C77.5408 26.1934 76.8611 25.6162 75.2517 25.2207L73.6424 24.833C71.3621 24.2822 70.3035 23.2158 70.3035 21.4854C70.3035 19.3428 72.1707 17.8711 74.8221 17.8711C77.4461 17.8711 79.2449 19.3428 79.3055 21.4854H77.4295C77.3172 20.2461 76.2927 19.4981 74.7957 19.4981C73.2986 19.4981 72.2742 20.2549 72.2742 21.3565C72.2742 22.2344 72.9285 22.751 74.5291 23.1465L75.8972 23.4824C78.4451 24.0849 79.5037 25.1084 79.5037 26.9248C79.5037 29.248 77.6531 30.7031 74.7097 30.7031C71.9558 30.7031 70.0964 29.2822 69.9763 27.0361L71.8787 27.0362ZM83.5144 19.2998V21.4424H85.2361V22.9141H83.5144V27.9053C83.5144 28.6807 83.8591 29.042 84.616 29.042C84.8204 29.0384 85.0244 29.0241 85.2273 28.999V30.4619C84.887 30.5255 84.5412 30.5543 84.1951 30.5478C82.3621 30.5478 81.6472 29.8593 81.6472 28.1035V22.9141H80.3308V21.4424H81.6472V19.2998H83.5144ZM86.2332 25.9697C86.2332 23.1211 87.9109 21.3311 90.5271 21.3311C93.1521 21.3311 94.822 23.1211 94.822 25.9697C94.822 28.8262 93.1609 30.6084 90.5271 30.6084C87.8942 30.6084 86.2332 28.8262 86.2332 25.9697ZM92.9285 25.9697C92.9285 24.0156 92.033 22.8623 90.5271 22.8623C89.0212 22.8623 88.1267 24.0244 88.1267 25.9697C88.1267 27.9316 89.0212 29.0762 90.5271 29.0762C92.033 29.0762 92.9285 27.9316 92.9285 25.9697ZM96.3543 21.442H98.1267V22.983H98.1697C98.2896 22.5017 98.5716 22.0764 98.9682 21.7785C99.3648 21.4806 99.8518 21.3284 100.347 21.3473C100.562 21.3465 100.775 21.3698 100.984 21.4166V23.1549C100.714 23.0723 100.432 23.0343 100.149 23.0426C99.8792 23.0316 99.61 23.0792 99.3602 23.1821C99.1104 23.285 98.8857 23.4408 98.7018 23.6386C98.5178 23.8365 98.3788 24.0719 98.2944 24.3286C98.21 24.5852 98.1821 24.8571 98.2126 25.1256V30.4957H96.3542L96.3543 21.442ZM109.552 27.8369C109.302 29.4805 107.702 30.6084 105.654 30.6084C103.02 30.6084 101.385 28.8437 101.385 26.0127C101.385 23.1729 103.029 21.3311 105.576 21.3311C108.081 21.3311 109.656 23.0518 109.656 25.7969V26.4336H103.261V26.5459C103.232 26.8791 103.274 27.2148 103.384 27.5306C103.494 27.8464 103.67 28.1352 103.901 28.3778C104.131 28.6203 104.41 28.8111 104.72 28.9374C105.03 29.0637 105.363 29.1226 105.697 29.1103C106.136 29.1515 106.577 29.0498 106.954 28.8203C107.33 28.5909 107.623 28.246 107.788 27.8369H109.552ZM103.27 25.1348H107.797C107.813 24.8352 107.768 24.5354 107.663 24.2541C107.559 23.9729 107.397 23.7164 107.188 23.5006C106.98 23.2849 106.729 23.1145 106.451 23.0003C106.174 22.8861 105.876 22.8305 105.576 22.8369C105.273 22.8351 104.973 22.8933 104.693 23.008C104.413 23.1227 104.159 23.2918 103.944 23.5054C103.73 23.7191 103.56 23.973 103.444 24.2527C103.329 24.5323 103.269 24.8321 103.27 25.1348ZM37.9941 8.73138C38.3838 8.70342 38.7747 8.76228 39.1388 8.90371C39.5029 9.04515 39.8311 9.26563 40.0997 9.54925C40.3683 9.83288 40.5706 10.1726 40.692 10.5438C40.8134 10.9151 40.8509 11.3087 40.8018 11.6962C40.8018 13.6025 39.7715 14.6982 37.9941 14.6982H35.8389V8.73138H37.9941ZM36.7656 13.8544H37.8906C38.169 13.871 38.4476 13.8254 38.7062 13.7208C38.9647 13.6161 39.1967 13.4552 39.3852 13.2496C39.5737 13.0441 39.7139 12.7991 39.7958 12.5324C39.8777 12.2658 39.899 11.9843 39.8584 11.7084C39.8961 11.4335 39.8725 11.1538 39.7894 10.8891C39.7063 10.6244 39.5657 10.3814 39.3776 10.1775C39.1896 9.97358 38.9587 9.81378 38.7016 9.70954C38.4445 9.6053 38.1676 9.55922 37.8906 9.57459H36.7656V13.8544ZM41.8487 12.4448C41.8204 12.1489 41.8542 11.8503 41.9481 11.5682C42.0419 11.2862 42.1936 11.0268 42.3936 10.8068C42.5935 10.5868 42.8372 10.4111 43.1091 10.2908C43.3809 10.1705 43.6749 10.1084 43.9722 10.1084C44.2695 10.1084 44.5635 10.1705 44.8353 10.2908C45.1072 10.4111 45.3509 10.5868 45.5508 10.8068C45.7508 11.0268 45.9025 11.2862 45.9964 11.5682C46.0902 11.8503 46.124 12.1489 46.0957 12.4448C46.1246 12.741 46.0911 13.04 45.9975 13.3225C45.904 13.605 45.7523 13.8648 45.5523 14.0853C45.3523 14.3057 45.1084 14.4818 44.8363 14.6023C44.5642 14.7229 44.2698 14.7851 43.9722 14.7851C43.6746 14.7851 43.3802 14.7229 43.1081 14.6023C42.836 14.4818 42.5921 14.3057 42.3921 14.0853C42.1921 13.8648 42.0405 13.605 41.9469 13.3225C41.8533 13.04 41.8198 12.741 41.8487 12.4448ZM45.1817 12.4448C45.1817 11.4687 44.7432 10.8979 43.9737 10.8979C43.2012 10.8979 42.7667 11.4687 42.7667 12.4448C42.7667 13.4287 43.2012 13.9951 43.9737 13.9951C44.7432 13.9951 45.1817 13.4248 45.1817 12.4448ZM51.7412 14.6982H50.8193L49.8887 11.3818H49.8184L48.8916 14.6982H47.9785L46.7373 10.1953H47.6387L48.4453 13.6313H48.5117L49.4375 10.1953H50.29L51.2158 13.6313H51.2861L52.0889 10.1953H52.9775L51.7412 14.6982ZM54.0215 10.1949H54.877V10.9102H54.9434C55.056 10.6533 55.246 10.4379 55.4869 10.2941C55.7278 10.1503 56.0075 10.0852 56.2871 10.1079C56.5062 10.0915 56.7262 10.1245 56.9308 10.2046C57.1354 10.2847 57.3194 10.4098 57.469 10.5707C57.6187 10.7315 57.7303 10.924 57.7955 11.1338C57.8607 11.3436 57.8779 11.5654 57.8457 11.7827V14.6977H56.957V12.0059C56.957 11.2823 56.6426 10.9224 55.9854 10.9224C55.8366 10.9155 55.6881 10.9408 55.55 10.9966C55.412 11.0525 55.2876 11.1375 55.1855 11.2459C55.0834 11.3543 55.0059 11.4834 54.9584 11.6246C54.9108 11.7657 54.8944 11.9154 54.9102 12.0635V14.6978H54.0215V10.1949ZM59.2617 8.4375H60.1504V14.6982H59.2617V8.4375ZM61.3858 12.4449C61.3575 12.1489 61.3913 11.8503 61.4852 11.5683C61.5791 11.2862 61.7308 11.0268 61.9308 10.8068C62.1308 10.5869 62.3745 10.4111 62.6464 10.2908C62.9182 10.1705 63.2122 10.1084 63.5095 10.1084C63.8068 10.1084 64.1008 10.1705 64.3727 10.2908C64.6446 10.4111 64.8883 10.5869 65.0883 10.8068C65.2882 11.0268 65.44 11.2862 65.5339 11.5683C65.6277 11.8503 65.6616 12.1489 65.6333 12.4449C65.6621 12.7411 65.6286 13.0401 65.535 13.3226C65.4414 13.6051 65.2897 13.8649 65.0897 14.0853C64.8897 14.3058 64.6458 14.4819 64.3736 14.6024C64.1015 14.7229 63.8072 14.7852 63.5095 14.7852C63.2119 14.7852 62.9176 14.7229 62.6454 14.6024C62.3733 14.4819 62.1294 14.3058 61.9294 14.0853C61.7294 13.8649 61.5777 13.6051 61.484 13.3226C61.3904 13.0401 61.3569 12.7411 61.3858 12.4449ZM64.7188 12.4449C64.7188 11.4688 64.2803 10.898 63.5108 10.898C62.7383 10.898 62.3038 11.4688 62.3038 12.4449C62.3038 13.4288 62.7383 13.9952 63.5108 13.9952C64.2803 13.9952 64.7188 13.4248 64.7188 12.4449ZM66.5688 13.4248C66.5688 12.6142 67.1724 12.147 68.2436 12.0806L69.4634 12.0102V11.6216C69.4634 11.146 69.1489 10.8774 68.5415 10.8774C68.0454 10.8774 67.7017 11.0596 67.603 11.3779H66.7427C66.8335 10.6045 67.561 10.1084 68.5825 10.1084C69.7114 10.1084 70.3481 10.6704 70.3481 11.6216V14.6982H69.4927V14.0654H69.4224C69.2796 14.2924 69.0792 14.4775 68.8416 14.6017C68.604 14.7259 68.3377 14.7848 68.0698 14.7724C67.8808 14.7921 67.6897 14.7719 67.509 14.7132C67.3282 14.6545 67.1618 14.5586 67.0203 14.4316C66.8789 14.3047 66.7657 14.1495 66.6879 13.9761C66.6102 13.8026 66.5696 13.6149 66.5688 13.4248ZM69.4634 13.04V12.6636L68.3638 12.7339C67.7436 12.7754 67.4624 12.9863 67.4624 13.3833C67.4624 13.7886 67.814 14.0244 68.2974 14.0244C68.439 14.0387 68.5821 14.0244 68.7181 13.9823C68.8541 13.9403 68.9803 13.8712 69.0891 13.7794C69.1979 13.6876 69.2871 13.5748 69.3514 13.4477C69.4157 13.3207 69.4538 13.1821 69.4634 13.04ZM71.5161 12.4448C71.5161 11.022 72.2476 10.1206 73.3853 10.1206C73.6667 10.1077 73.946 10.1751 74.1905 10.315C74.435 10.4548 74.6347 10.6615 74.7661 10.9106H74.8325V8.4375H75.7212V14.6982H74.8696V13.9868H74.7993C74.6577 14.2343 74.4511 14.4383 74.2019 14.5768C73.9526 14.7153 73.6702 14.783 73.3853 14.7724C72.2398 14.7725 71.5161 13.8711 71.5161 12.4448ZM72.4341 12.4448C72.4341 13.3999 72.8843 13.9746 73.6372 13.9746C74.3862 13.9746 74.8492 13.3916 74.8492 12.4487C74.8492 11.5103 74.3814 10.919 73.6372 10.919C72.8892 10.919 72.4341 11.4976 72.4341 12.4448ZM79.398 12.4448C79.3697 12.1489 79.4035 11.8503 79.4974 11.5682C79.5912 11.2862 79.743 11.0268 79.9429 10.8068C80.1428 10.5868 80.3866 10.4111 80.6584 10.2908C80.9303 10.1705 81.2243 10.1084 81.5215 10.1084C81.8188 10.1084 82.1128 10.1705 82.3846 10.2908C82.6565 10.4111 82.9002 10.5868 83.1001 10.8068C83.3001 11.0268 83.4518 11.2862 83.5457 11.5682C83.6395 11.8503 83.6734 12.1489 83.6451 12.4448C83.6739 12.741 83.6404 13.04 83.5469 13.3225C83.4533 13.605 83.3016 13.8648 83.1016 14.0853C82.9016 14.3057 82.6577 14.4818 82.3856 14.6023C82.1135 14.7229 81.8191 14.7851 81.5215 14.7851C81.2239 14.7851 80.9296 14.7229 80.6574 14.6023C80.3853 14.4818 80.1414 14.3057 79.9414 14.0853C79.7414 13.8648 79.5898 13.605 79.4962 13.3225C79.4026 13.04 79.3691 12.741 79.398 12.4448ZM82.731 12.4448C82.731 11.4687 82.2925 10.8979 81.523 10.8979C80.7505 10.8979 80.316 11.4687 80.316 12.4448C80.316 13.4287 80.7506 13.9951 81.523 13.9951C82.2925 13.9951 82.731 13.4248 82.731 12.4448ZM84.8374 10.1949H85.6929V10.9102H85.7593C85.8719 10.6533 86.0619 10.4379 86.3028 10.2941C86.5437 10.1503 86.8234 10.0852 87.103 10.1079C87.3221 10.0915 87.5421 10.1245 87.7467 10.2046C87.9513 10.2847 88.1353 10.4098 88.285 10.5707C88.4346 10.7315 88.5462 10.924 88.6114 11.1338C88.6766 11.3436 88.6938 11.5654 88.6616 11.7827V14.6977H87.773V12.0059C87.773 11.2823 87.4585 10.9224 86.8013 10.9224C86.6525 10.9155 86.504 10.9408 86.366 10.9966C86.2279 11.0525 86.1036 11.1375 86.0014 11.2459C85.8993 11.3543 85.8218 11.4834 85.7743 11.6246C85.7268 11.7657 85.7103 11.9154 85.7261 12.0635V14.6978H84.8374V10.1949ZM93.6831 9.07422V10.2158H94.6587V10.9644H93.6831V13.2798C93.6831 13.7515 93.8774 13.958 94.3198 13.958C94.4331 13.9576 94.5462 13.9508 94.6587 13.9375V14.6777C94.4991 14.7063 94.3374 14.7215 94.1753 14.7231C93.187 14.7231 92.7935 14.3755 92.7935 13.5073V10.9643H92.0786V10.2158H92.7935V9.07422H93.6831ZM95.8726 8.4375H96.7534V10.919H96.8237C96.9419 10.6596 97.1371 10.443 97.3828 10.2987C97.6285 10.1543 97.9127 10.0893 98.1967 10.1123C98.4147 10.1004 98.6326 10.1368 98.8349 10.2189C99.0371 10.3009 99.2188 10.4266 99.3669 10.5869C99.5151 10.7473 99.626 10.9383 99.6917 11.1465C99.7575 11.3546 99.7766 11.5747 99.7475 11.791V14.6982H98.8579V12.0103C98.8579 11.291 98.5229 10.9268 97.8951 10.9268C97.7423 10.9142 97.5887 10.9352 97.4449 10.9883C97.3011 11.0413 97.1707 11.1252 97.0627 11.2339C96.9547 11.3426 96.8718 11.4737 96.8197 11.6178C96.7676 11.7619 96.7477 11.9157 96.7613 12.0683V14.6982H95.8726V8.4375ZM104.929 13.4825C104.808 13.894 104.547 14.25 104.19 14.4882C103.833 14.7263 103.404 14.8315 102.978 14.7852C102.681 14.7931 102.386 14.7362 102.114 14.6187C101.841 14.5012 101.598 14.3258 101.4 14.1046C101.202 13.8835 101.055 13.6219 100.968 13.3381C100.881 13.0543 100.857 12.755 100.898 12.461C100.858 12.1661 100.883 11.8662 100.969 11.5815C101.056 11.2969 101.202 11.0341 101.399 10.811C101.596 10.5879 101.839 10.4098 102.11 10.2886C102.382 10.1674 102.677 10.1059 102.974 10.1085C104.227 10.1085 104.983 10.9645 104.983 12.3785V12.6886H101.803V12.7384C101.789 12.9036 101.81 13.0699 101.864 13.2267C101.918 13.3834 102.005 13.5271 102.117 13.6486C102.23 13.7701 102.367 13.8666 102.52 13.932C102.672 13.9974 102.837 14.0302 103.002 14.0284C103.215 14.0539 103.43 14.0156 103.621 13.9184C103.812 13.8212 103.969 13.6694 104.074 13.4825H104.929ZM101.803 12.0313H104.078C104.089 11.8802 104.068 11.7284 104.017 11.5857C103.966 11.443 103.886 11.3125 103.782 11.2026C103.677 11.0928 103.551 11.006 103.411 10.9478C103.271 10.8896 103.121 10.8614 102.969 10.8648C102.815 10.8629 102.663 10.8918 102.521 10.9497C102.378 11.0076 102.249 11.0935 102.14 11.2022C102.031 11.3109 101.946 11.4403 101.888 11.5827C101.83 11.7251 101.801 11.8776 101.803 12.0313Z\" fill=\"white\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_228_4217\">\\n<rect width=\"120\" height=\"40\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_228_4217\">\\n<rect width=\"120\" height=\"40\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.hisweetspot.sweetspot\",motionChild:true,nodeId:\"wMOQoJdfG\",openInNewTab:true,scopeId:\"CU2P5qJ6t\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1t3mhyw framer-g6nuec\",\"data-framer-name\":\"Google Play Store\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:136,svg:'<svg width=\"136\" height=\"40\" viewBox=\"0 0 136 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_228_4226)\">\\n<g clip-path=\"url(#clip1_228_4226)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M130.961 40H5.03889C2.26175 40 0 37.7456 0 35V5C0 2.24439 2.26175 0 5.03889 0H130.961C133.736 0 136 2.24439 136 5V35C136 37.7456 133.736 40 130.961 40Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M130.961 0.800499C133.29 0.800499 135.197 2.68828 135.197 5V35C135.197 37.3117 133.303 39.1995 130.961 39.1995H5.03889C2.70959 39.1995 0.80312 37.3117 0.80312 35V5C0.80312 2.68828 2.69708 0.800499 5.03889 0.800499H130.961ZM130.961 0H5.03889C2.26175 0 0 2.25436 0 5V35C0 37.7556 2.26175 40 5.03889 40H130.961C133.736 40 136 37.7556 136 35V5C136 2.25436 133.736 0 130.961 0Z\" fill=\"#A6A6A6\"/>\\n<path d=\"M71.6451 13.232C70.7369 13.232 69.9713 12.9153 69.3658 12.2918C69.0675 11.9892 68.8326 11.6306 68.6745 11.2368C68.5164 10.8429 68.4385 10.4217 68.4451 9.99755C68.4451 9.08732 68.7554 8.31675 69.3658 7.70578C69.9688 7.08233 70.7344 6.76562 71.6426 6.76562C72.5408 6.76562 73.3064 7.08233 73.9218 7.70578C74.5323 8.3367 74.8425 9.10727 74.8425 9.99755C74.8325 10.9103 74.5223 11.6808 73.9218 12.2893C73.3189 12.9177 72.5533 13.232 71.6451 13.232ZM44.6219 13.232C43.7337 13.232 42.9631 12.9202 42.3326 12.3043C41.7071 11.6908 41.3894 10.9153 41.3894 10C41.3894 9.08483 41.7071 8.30927 42.3326 7.6958C42.9506 7.07984 43.7212 6.76812 44.6219 6.76812C45.0622 6.76812 45.49 6.8554 45.9004 7.03246C46.3032 7.20453 46.6309 7.43894 46.8736 7.72572L46.9337 7.79804L46.2556 8.46139L46.1856 8.3791C45.8028 7.92524 45.2899 7.70328 44.6119 7.70328C44.0064 7.70328 43.4785 7.91775 43.0432 8.34169C42.6053 8.76812 42.3827 9.32672 42.3827 10.0025C42.3827 10.6783 42.6053 11.2369 43.0432 11.6634C43.4785 12.0873 44.0064 12.3018 44.6119 12.3018C45.2574 12.3018 45.8003 12.0873 46.2231 11.6634C46.4733 11.414 46.6284 11.0649 46.6835 10.6235H44.5093V9.69081H47.6167L47.6292 9.77561C47.6517 9.93272 47.6742 10.0948 47.6742 10.2444C47.6742 11.1048 47.414 11.8005 46.8986 12.3143C46.3132 12.9227 45.5476 13.232 44.6219 13.232ZM80.5519 13.0998H79.5937L76.6589 8.41899L76.6839 9.26188V13.0973H75.7257V6.90029H76.819L76.8491 6.94767L79.6087 11.3566L79.5837 10.5162V6.90029H80.5519V13.0998ZM64.4446 13.0998H63.4738V7.83296H61.79V6.90029H66.1258V7.83296H64.4421V13.0998H64.4446ZM60.9994 13.0998H60.0312V6.90029H60.9994V13.0998ZM55.5578 13.0998H54.5895V7.83296H52.9057V6.90029H57.2415V7.83296H55.5578V13.0998ZM52.2928 13.0898H48.5799V6.90029H52.2928V7.83296H49.5507V9.53371H52.025V10.4564H49.5507V12.1571H52.2928V13.0898ZM70.0764 11.6509C70.5092 12.0823 71.0346 12.2993 71.6451 12.2993C72.2731 12.2993 72.786 12.0873 73.2138 11.6509C73.6391 11.227 73.8543 10.6709 73.8543 10C73.8543 9.32922 73.6391 8.77061 73.2163 8.34917C72.7834 7.91774 72.2555 7.70079 71.6476 7.70079C71.0196 7.70079 70.5067 7.91276 70.0814 8.34917C69.6561 8.77311 69.4409 9.32922 69.4409 10C69.4409 10.6709 69.6535 11.2295 70.0764 11.6509Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M68.3552 21.7554C65.9909 21.7554 64.0744 23.5434 64.0744 26.0098C64.0744 28.4537 66.0034 30.2641 68.3552 30.2641C70.7196 30.2641 72.636 28.4636 72.636 26.0098C72.636 23.5434 70.7196 21.7554 68.3552 21.7554ZM68.3552 28.5784C67.0617 28.5784 65.9484 27.511 65.9484 25.9998C65.9484 24.4661 67.0642 23.4213 68.3552 23.4213C69.6487 23.4213 70.7621 24.4661 70.7621 25.9998C70.7646 27.521 69.6487 28.5784 68.3552 28.5784ZM59.0155 21.7554C56.6512 21.7554 54.7347 23.5434 54.7347 26.0098C54.7347 28.4537 56.6637 30.2641 59.0155 30.2641C61.3798 30.2641 63.2963 28.4636 63.2963 26.0098C63.2963 23.5434 61.3773 21.7554 59.0155 21.7554ZM59.0155 28.5784C57.722 28.5784 56.6086 27.511 56.6086 25.9998C56.6086 24.4661 57.7245 23.4213 59.0155 23.4213C60.309 23.4213 61.4224 24.4661 61.4224 25.9998C61.4224 27.521 60.309 28.5784 59.0155 28.5784ZM47.9019 23.0547V24.8552H52.2378C52.1052 25.8651 51.7699 26.6108 51.257 27.122C50.6215 27.7554 49.6407 28.4437 47.9119 28.4437C45.2474 28.4437 43.1632 26.2991 43.1632 23.6432C43.1632 20.9873 45.2474 18.8427 47.9119 18.8427C49.3505 18.8427 50.3988 19.4088 51.1769 20.132L52.4579 18.8552C51.3771 17.8227 49.9385 17.0322 47.9219 17.0322C44.2666 17.0322 41.1992 19.9998 41.1992 23.6332C41.1992 27.2766 44.2641 30.2342 47.9219 30.2342C49.8959 30.2342 51.3771 29.5908 52.548 28.3789C53.7414 27.1893 54.1192 25.511 54.1192 24.1569C54.1192 23.7355 54.0867 23.3564 54.0191 23.0347H47.8994C47.9019 23.0322 47.9019 23.0547 47.9019 23.0547ZM93.3596 24.4562C93.0018 23.5011 91.921 21.7454 89.7042 21.7454C87.5075 21.7454 85.6811 23.4686 85.6811 25.9998C85.6811 28.3888 87.4875 30.2542 89.9169 30.2542C91.8684 30.2542 93.0043 29.0646 93.4722 28.3664L92.0235 27.3988C91.5432 28.1095 90.8751 28.5759 89.9269 28.5759C88.9687 28.5759 88.2982 28.142 87.8528 27.2866L93.5597 24.93C93.5597 24.9325 93.3596 24.4562 93.3596 24.4562ZM87.5401 25.8776C87.495 24.2342 88.8211 23.3988 89.7693 23.3988C90.5174 23.3988 91.1404 23.7654 91.353 24.2991L87.5401 25.8776ZM82.904 29.9998H84.7779V17.5011H82.904V29.9998ZM79.8266 22.7006H79.759C79.3362 22.1993 78.5331 21.7454 77.5073 21.7454C75.3782 21.7454 73.4166 23.6133 73.4166 26.0123C73.4166 28.4013 75.3681 30.2467 77.5073 30.2467C78.5206 30.2467 79.3362 29.7903 79.759 29.2791H79.8266V29.8901C79.8266 31.5135 78.9559 32.3888 77.5523 32.3888C76.404 32.3888 75.6909 31.5659 75.4007 30.8776L73.7719 31.5559C74.2398 32.6781 75.4882 34.0671 77.5498 34.0671C79.7465 34.0671 81.608 32.7779 81.608 29.6332V21.9998H79.8366V22.7006H79.8266ZM77.6749 28.5784C76.3814 28.5784 75.3006 27.5011 75.3006 26.0123C75.3006 24.511 76.3814 23.4237 77.6749 23.4237C78.9559 23.4237 79.9492 24.5235 79.9492 26.0123C79.9617 27.5011 78.9584 28.5784 77.6749 28.5784ZM102.134 17.5011H97.6529V29.9998H99.5268V25.2666H102.136C104.21 25.2666 106.25 23.7679 106.25 21.3888C106.25 19.0098 104.218 17.5011 102.134 17.5011ZM102.189 23.521H99.5243V19.2317H102.189C103.592 19.2317 104.386 20.3863 104.386 21.3764C104.386 22.3564 103.582 23.521 102.189 23.521ZM113.76 21.733C112.399 21.733 110.996 22.334 110.415 23.6432L112.077 24.3315C112.434 23.6432 113.09 23.4088 113.783 23.4088C114.754 23.4088 115.734 23.9873 115.757 25.0198V25.1519C115.422 24.9624 114.686 24.6731 113.805 24.6731C112.012 24.6731 110.193 25.6507 110.193 27.4836C110.193 29.1619 111.664 30.2392 113.302 30.2392C114.561 30.2392 115.254 29.6731 115.687 29.0173H115.754V29.9848H117.561V25.1968C117.561 22.9674 115.9 21.733 113.76 21.733ZM113.525 28.5784C112.912 28.5784 112.054 28.2791 112.054 27.511C112.054 26.5434 113.125 26.1769 114.038 26.1769C114.864 26.1769 115.254 26.3539 115.744 26.5983C115.609 27.7205 114.659 28.5684 113.525 28.5784ZM124.151 21.9998L121.999 27.4213H121.932L119.702 21.9998H117.686L121.031 29.5784L119.124 33.7903H121.076L126.222 21.9998H124.151ZM107.283 29.9998H109.157V17.5011H107.283V29.9998Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.4681 7.53413C10.1779 7.84585 10.0103 8.32216 10.0103 8.9456V31.0578C10.0103 31.6812 10.1779 32.1575 10.4781 32.4568L10.5557 32.5241L22.9853 20.1351V19.8583L10.5457 7.4668L10.4681 7.53413Z\" fill=\"url(#paint0_linear_228_4226)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.121 24.2772L22.9753 20.1451V19.8558L27.121 15.7236L27.2111 15.7785L32.1148 18.5566C33.5184 19.3446 33.5184 20.6463 32.1148 21.4443L27.2111 24.2224L27.121 24.2772Z\" fill=\"url(#paint1_linear_228_4226)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.2109 24.2219L22.9752 20L10.468 32.4663C10.9259 32.9551 11.694 33.01 12.5521 32.5337L27.2109 24.2219Z\" fill=\"url(#paint2_linear_228_4226)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.2109 15.7784L12.5521 7.47918C11.694 6.9904 10.9234 7.05774 10.468 7.54651L22.9752 20.0004L27.2109 15.7784Z\" fill=\"url(#paint3_linear_228_4226)\"/>\\n<path opacity=\"0.2\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.1209 24.1318L12.5621 32.3763C11.749 32.8427 11.0234 32.8102 10.5556 32.3863L10.478 32.4636L10.5556 32.5309C11.0234 32.9524 11.749 32.9873 12.5621 32.521L27.221 24.2216L27.1209 24.1318Z\" fill=\"black\"/>\\n<path opacity=\"0.12\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M32.1148 21.2993L27.1084 24.1322L27.1985 24.2219L32.1023 21.4439C32.8053 21.0449 33.1506 20.5212 33.1506 20C33.108 20.4788 32.7503 20.9327 32.1148 21.2993Z\" fill=\"black\"/>\\n<path opacity=\"0.25\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.5522 7.6233L32.1149 18.7006C32.7504 19.0572 33.1081 19.5236 33.1632 19.9999C33.1632 19.4787 32.8179 18.955 32.1149 18.556L12.5522 7.47866C11.1486 6.67816 10.0103 7.34649 10.0103 8.94499V9.08963C10.0103 7.48863 11.1486 6.83277 12.5522 7.6233Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_228_4226\" x1=\"21.871\" y1=\"8.7061\" x2=\"1.96715\" y2=\"14.0276\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#00A0FF\"/>\\n<stop offset=\"0.01\" stop-color=\"#00A1FF\"/>\\n<stop offset=\"0.26\" stop-color=\"#00BEFF\"/>\\n<stop offset=\"0.51\" stop-color=\"#00D2FF\"/>\\n<stop offset=\"0.76\" stop-color=\"#00DFFF\"/>\\n<stop offset=\"1\" stop-color=\"#00E3FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_228_4226\" x1=\"33.9446\" y1=\"20\" x2=\"9.66891\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFE000\"/>\\n<stop offset=\"0.41\" stop-color=\"#FFBD00\"/>\\n<stop offset=\"0.78\" stop-color=\"#FFA500\"/>\\n<stop offset=\"1\" stop-color=\"#FF9C00\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_228_4226\" x1=\"24.9071\" y1=\"22.2967\" x2=\"9.00061\" y2=\"49.1578\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF3A44\"/>\\n<stop offset=\"1\" stop-color=\"#C31162\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_228_4226\" x1=\"7.32018\" y1=\"0.178675\" x2=\"14.4162\" y2=\"12.1752\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#32A071\"/>\\n<stop offset=\"0.07\" stop-color=\"#2DA771\"/>\\n<stop offset=\"0.48\" stop-color=\"#15CF74\"/>\\n<stop offset=\"0.8\" stop-color=\"#06E775\"/>\\n<stop offset=\"1\" stop-color=\"#00F076\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_228_4226\">\\n<rect width=\"136\" height=\"40\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_228_4226\">\\n<rect width=\"136\" height=\"40\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h01j65\",\"data-framer-name\":\"Business Areas\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n1dill\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"What we do\"})}),style:{}},zPJEzz_1W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"What we do\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"What we do\"})}),className:\"framer-7o0seg\",\"data-framer-name\":\"Content Title\",fonts:[\"CUSTOM;Rund Display Bold\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nl1r5f\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jWLHMOz_e\"},implicitPathVariables:undefined},{href:{webPageId:\"jWLHMOz_e\"},implicitPathVariables:undefined},{href:{webPageId:\"jWLHMOz_e\"},implicitPathVariables:undefined},{href:{webPageId:\"jWLHMOz_e\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{width:`max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px) - 60px, 1024px) - 48px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1537+40+0+92.8+0+0},xMdNEwp0E:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 48px, 1024px)`,y:(componentViewport?.y||0)+0+899.8+30+0+58.4+3+0},zPJEzz_1W:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 48px, 1024px)`,y:(componentViewport?.y||0)+0+1266.5+40+0+85.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:232,width:`max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1024px) - 48px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1691+48+0+123.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pon8xy-container\",nodeId:\"am3lv_W5X\",scopeId:\"CU2P5qJ6t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{UTE8N28ve:resolvedLinks[1]},xMdNEwp0E:{UTE8N28ve:resolvedLinks[3],variant:\"CQyWgB1qB\"},zPJEzz_1W:{UTE8N28ve:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(BasicCard,{A0zR3wSdV:addImageAlt({pixelHeight:1027,pixelWidth:1840,src:\"https://framerusercontent.com/images/zFkSXz5AfHRdC8B1drdRkVnKLI.png\",srcSet:\"https://framerusercontent.com/images/zFkSXz5AfHRdC8B1drdRkVnKLI.png?scale-down-to=512 512w,https://framerusercontent.com/images/zFkSXz5AfHRdC8B1drdRkVnKLI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zFkSXz5AfHRdC8B1drdRkVnKLI.png 1840w\"},\"\"),height:\"100%\",HPQIXVBJa:\"Range\",id:\"am3lv_W5X\",layoutId:\"am3lv_W5X\",style:{width:\"100%\"},UTE8N28ve:resolvedLinks[0],variant:\"sf68Pkuso\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bBRcsyXos\"},implicitPathVariables:undefined},{href:{webPageId:\"bBRcsyXos\"},implicitPathVariables:undefined},{href:{webPageId:\"bBRcsyXos\"},implicitPathVariables:undefined},{href:{webPageId:\"bBRcsyXos\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{width:`max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px) - 60px, 1024px) - 48px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1537+40+0+92.8+0+0},xMdNEwp0E:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 48px, 1024px)`,y:(componentViewport?.y||0)+0+899.8+30+0+58.4+3+256},zPJEzz_1W:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 48px, 1024px)`,y:(componentViewport?.y||0)+0+1266.5+40+0+85.6+0+280}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:232,width:`max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1024px) - 48px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1691+48+0+123.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vs3ldm-container\",nodeId:\"B3umx4zPg\",scopeId:\"CU2P5qJ6t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{UTE8N28ve:resolvedLinks1[1]},xMdNEwp0E:{UTE8N28ve:resolvedLinks1[3],variant:\"CQyWgB1qB\"},zPJEzz_1W:{UTE8N28ve:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(BasicCard,{A0zR3wSdV:addImageAlt({pixelHeight:1012,pixelWidth:1546,src:\"https://framerusercontent.com/images/OKtRaYsI0766aqEOhPy9HLW0s.png\",srcSet:\"https://framerusercontent.com/images/OKtRaYsI0766aqEOhPy9HLW0s.png?scale-down-to=512 512w,https://framerusercontent.com/images/OKtRaYsI0766aqEOhPy9HLW0s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OKtRaYsI0766aqEOhPy9HLW0s.png 1546w\"},\"\"),height:\"100%\",HPQIXVBJa:\"Simulator\",id:\"B3umx4zPg\",layoutId:\"B3umx4zPg\",style:{width:\"100%\"},UTE8N28ve:resolvedLinks1[0],variant:\"sf68Pkuso\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NPqyMvwqQ\"},implicitPathVariables:undefined},{href:{webPageId:\"NPqyMvwqQ\"},implicitPathVariables:undefined},{href:{webPageId:\"NPqyMvwqQ\"},implicitPathVariables:undefined},{href:{webPageId:\"NPqyMvwqQ\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{width:`max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px) - 60px, 1024px) - 48px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1537+40+0+92.8+0+280},xMdNEwp0E:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 48px, 1024px)`,y:(componentViewport?.y||0)+0+899.8+30+0+58.4+3+512},zPJEzz_1W:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 48px, 1024px)`,y:(componentViewport?.y||0)+0+1266.5+40+0+85.6+0+560}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:232,width:`max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1024px) - 48px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1691+48+0+123.8+0+280,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wa62fd-container\",nodeId:\"czhVO7rxY\",scopeId:\"CU2P5qJ6t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{UTE8N28ve:resolvedLinks2[1]},xMdNEwp0E:{UTE8N28ve:resolvedLinks2[3],variant:\"CQyWgB1qB\"},zPJEzz_1W:{UTE8N28ve:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(BasicCard,{A0zR3wSdV:addImageAlt({pixelHeight:1043,pixelWidth:1561,src:\"https://framerusercontent.com/images/y8Lz6CFlyrubu6pb0afIsWdmLAU.png\",srcSet:\"https://framerusercontent.com/images/y8Lz6CFlyrubu6pb0afIsWdmLAU.png?scale-down-to=512 512w,https://framerusercontent.com/images/y8Lz6CFlyrubu6pb0afIsWdmLAU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/y8Lz6CFlyrubu6pb0afIsWdmLAU.png 1561w\"},\"\"),height:\"100%\",HPQIXVBJa:\"Golf Club\",id:\"czhVO7rxY\",layoutId:\"czhVO7rxY\",style:{width:\"100%\"},UTE8N28ve:resolvedLinks2[0],variant:\"sf68Pkuso\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"xgWC5yUx4\"},implicitPathVariables:undefined},{href:{webPageId:\"xgWC5yUx4\"},implicitPathVariables:undefined},{href:{webPageId:\"xgWC5yUx4\"},implicitPathVariables:undefined},{href:{webPageId:\"xgWC5yUx4\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{width:`max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px) - 60px, 1024px) - 48px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1537+40+0+92.8+0+280},xMdNEwp0E:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 48px, 1024px)`,y:(componentViewport?.y||0)+0+899.8+30+0+58.4+3+768},zPJEzz_1W:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 48px, 1024px)`,y:(componentViewport?.y||0)+0+1266.5+40+0+85.6+0+840}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:232,width:`max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1024px) - 48px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1691+48+0+123.8+0+280,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gvzekm-container\",nodeId:\"Ma1hH3gDA\",scopeId:\"CU2P5qJ6t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{UTE8N28ve:resolvedLinks3[1]},xMdNEwp0E:{UTE8N28ve:resolvedLinks3[3],variant:\"CQyWgB1qB\"},zPJEzz_1W:{UTE8N28ve:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(BasicCard,{A0zR3wSdV:addImageAlt({pixelHeight:836,pixelWidth:1253,src:\"https://framerusercontent.com/images/1wXpNboYtiVak7y8h58BdQN6as.jpg\",srcSet:\"https://framerusercontent.com/images/1wXpNboYtiVak7y8h58BdQN6as.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1wXpNboYtiVak7y8h58BdQN6as.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1wXpNboYtiVak7y8h58BdQN6as.jpg 1253w\"},\"\"),height:\"100%\",HPQIXVBJa:\"Academy\",id:\"Ma1hH3gDA\",layoutId:\"Ma1hH3gDA\",style:{width:\"100%\"},UTE8N28ve:resolvedLinks3[0],variant:\"sf68Pkuso\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ikoje5\",\"data-framer-name\":\"Feature Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yxzpef\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cgin9c\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(12, 30, 27))\"},children:\"What we believe \"})}),style:{}},zPJEzz_1W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(12, 30, 27))\"},children:\"What we believe \"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(12, 30, 27))\"},children:\"What we believe \"})}),className:\"framer-s6xauf\",\"data-framer-name\":\"Feature Section Title\",fonts:[\"CUSTOM;Rund Display Bold\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k8b5le\",\"data-framer-name\":\"Feature Section Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1000px) - 108px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2301.8+40+0+0+0+0+92.8+0+0},xMdNEwp0E:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 390px) - 48px)`,y:(componentViewport?.y||0)+0+2054.2+30+0+0+0+0+75.2+0+0},zPJEzz_1W:{width:\"324px\",y:(componentViewport?.y||0)+0+2544.1+40+0+0+0+0+85.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:205,width:`max((min(${componentViewport?.width||\"100vw\"}, 1356px) - 108px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2514.8+64+0+0+0+0+100.8+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-v7icrh-container\",nodeId:\"Lpa9hELWb\",rendersWithMotion:true,scopeId:\"CU2P5qJ6t\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",i2equc17f:\"A fully digital and automated solution that offers the best user experience for all player types.\",id:\"Lpa9hELWb\",layoutId:\"Lpa9hELWb\",NqLZvSwe7:\"c3TxEnhkP\",style:{width:\"100%\"},TCVQfNOEq:\"100% online\",variant:\"jB975l5sh\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1000px) - 108px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2301.8+40+0+0+0+0+92.8+0+0},xMdNEwp0E:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 390px) - 48px)`,y:(componentViewport?.y||0)+0+2054.2+30+0+0+0+0+75.2+0+229},zPJEzz_1W:{width:\"324px\",y:(componentViewport?.y||0)+0+2544.1+40+0+0+0+0+85.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:205,width:`max((min(${componentViewport?.width||\"100vw\"}, 1356px) - 108px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2514.8+64+0+0+0+0+100.8+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gmvc7o-container\",nodeId:\"t9qlyStJP\",rendersWithMotion:true,scopeId:\"CU2P5qJ6t\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",i2equc17f:\"Package both memberships, passes, greenfees - and sell them online with one click. \",id:\"t9qlyStJP\",layoutId:\"t9qlyStJP\",NqLZvSwe7:\"KEDKSIYhc\",style:{width:\"100%\"},TCVQfNOEq:\"Sell more golf\",variant:\"jB975l5sh\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1000px) - 108px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2301.8+40+0+0+0+0+92.8+0+0},xMdNEwp0E:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 390px) - 48px)`,y:(componentViewport?.y||0)+0+2054.2+30+0+0+0+0+75.2+0+458}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:205,width:`max((min(${componentViewport?.width||\"100vw\"}, 1356px) - 108px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2514.8+64+0+0+0+0+100.8+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tz5tis-container hidden-1rq1t5h\",nodeId:\"ZXLhDVYuX\",rendersWithMotion:true,scopeId:\"CU2P5qJ6t\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",i2equc17f:\"Data can be confusing - we translate numbers into insights golf managers truly care about.\",id:\"ZXLhDVYuX\",layoutId:\"ZXLhDVYuX\",NqLZvSwe7:\"UBJII8s5H\",style:{width:\"100%\"},TCVQfNOEq:\"Actionable insights\",variant:\"jB975l5sh\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{y:(componentViewport?.y||0)+0+2301.8+40+348.8},xMdNEwp0E:{y:(componentViewport?.y||0)+0+2054.2+30+789.2},zPJEzz_1W:{y:(componentViewport?.y||0)+0+2544.1+40+341.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,y:(componentViewport?.y||0)+0+2514.8+64+356.8,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2moohv-container\",nodeId:\"xLuaEe2CR\",rendersWithMotion:true,scopeId:\"CU2P5qJ6t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{variant:\"T4m8c1z3w\"},zPJEzz_1W:{variant:\"T4m8c1z3w\"}},children:/*#__PURE__*/_jsx(Button,{A2dWUqqQh:\"Why we care\",DnytOe0Z8:\"https://sweetspot.io/why-we-care\",height:\"100%\",id:\"xLuaEe2CR\",layoutId:\"xLuaEe2CR\",N5FKWNwKs:false,oSfNN4wFr:true,v8ArQOg02:false,variant:\"xmIT3xOnB\",width:\"100%\"})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-iseviq hidden-1dcu2dv\",\"data-framer-name\":\"Grid 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7bwt3c\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kha0zw\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s1dlh2\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(8, 7, 7)\"},children:\"12\"})})},zPJEzz_1W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(8, 7, 7)\"},children:\"12\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(8, 7, 7)\"},children:\"12\"})}),className:\"framer-edig0n\",fonts:[\"CUSTOM;Rund Display Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Rund Text Regular\", \"Rund Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(8, 7, 7)\"},children:\"Countries\"})}),className:\"framer-12fzcd2\",fonts:[\"CUSTOM;Rund Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vwb3wp\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ik72hw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(8, 7, 7)\"},children:\"+ 500\"})})},zPJEzz_1W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(8, 7, 7)\"},children:\"+ 500\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(8, 7, 7)\"},children:\"+ 500\"})}),className:\"framer-1xlboep\",fonts:[\"CUSTOM;Rund Display Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Rund Text Regular\", \"Rund Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(8, 7, 7)\"},children:\"Golf Facilities\"})}),className:\"framer-c72mfx\",fonts:[\"CUSTOM;Rund Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-148p8tn\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kc6y99\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(8, 7, 7)\"},children:\"+ 350K\"})})},zPJEzz_1W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(8, 7, 7)\"},children:\"+ 350K\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(8, 7, 7)\"},children:\"+ 350K\"})}),className:\"framer-1go9uy\",fonts:[\"CUSTOM;Rund Display Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Rund Text Regular\", \"Rund Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(8, 7, 7)\"},children:\"App Users\"})}),className:\"framer-4hx98f\",fonts:[\"CUSTOM;Rund Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-18p69e4\",\"data-framer-name\":\"Message Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Fully integrated with Toptracer\"})})},zPJEzz_1W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Fully integrated with Toptracer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Fully integrated with Toptracer\"})}),className:\"framer-laxylo\",fonts:[\"CUSTOM;Rund Display Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Rund Text Regular\", \"Rund Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Experience a planned and seamless player journey for drop-in and bay bookings.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Rund Text Regular\", \"Rund Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Experience a planned and seamless player journey for drop-in and bay bookings.\"})}),className:\"framer-11s93br\",fonts:[\"CUSTOM;Rund Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hymxox\",\"data-framer-name\":\"Testimonial Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1typzqv\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jp8sdv\",\"data-framer-name\":\"Testimonial Row\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-guq1km-container hidden-1rq1t5h hidden-1dcu2dv\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"h9ZphrSQs\",rendersWithMotion:true,scopeId:\"CU2P5qJ6t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{borderRadius:40,bottomLeftRadius:40,bottomRightRadius:40,topLeftRadius:40,topRightRadius:40}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:50,bottomLeftRadius:50,bottomRightRadius:50,height:\"100%\",id:\"h9ZphrSQs\",isMixedBorderRadius:false,isRed:false,layoutId:\"h9ZphrSQs\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:50,topRightRadius:50,url:\"https://www.youtube.com/watch?v=0f4ter60UrU\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q8dbt2\",\"data-framer-name\":\"Testimonial Widget Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rptp2g\",\"data-framer-name\":\"Testimonial Widget\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-191u1za hidden-1rq1t5h hidden-1dcu2dv\",\"data-framer-name\":\"Testimonial Widget icon\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qdaqml\",\"data-framer-name\":\"Icon\",fill:\"rgb(0, 0, 0)\",intrinsicHeight:40,intrinsicWidth:50,svg:'<svg width=\"50\" height=\"40\" viewBox=\"0 0 50 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_7891_6218)\">\\n<path d=\"M10.299 15.8602C10.9091 11.912 15.7022 7.69453 19.4495 7.6048C19.7109 7.6048 19.9724 7.51507 20.1467 7.3356C20.321 7.24587 20.4953 7.15614 20.5824 6.88694C21.8896 4.37442 21.1924 2.4003 19.0138 0.785116C16.4865 -1.09927 12.4777 0.785115 10.4733 2.49004C5.41878 6.7972 0.277084 14.2449 0.538526 21.3339C-0.332948 26.0899 -0.158653 31.2045 1.14856 35.4219C2.02003 38.1139 4.5473 39.4599 7.16172 39.6394C9.77614 39.819 15.1793 40.6264 17.5323 39.0114C19.8852 37.396 20.0595 34.2554 20.321 31.5636C20.5824 28.6024 21.3667 23.0388 18.9266 20.7058C16.4865 18.4625 9.5147 20.8852 10.299 15.8602Z\" fill=\"#015941\"/>\\n<path d=\"M39.0569 15.8602C39.6669 11.912 44.4599 7.69453 48.2074 7.6048C48.4688 7.6048 48.7302 7.51507 48.9045 7.3356C49.079 7.24587 49.2531 7.15614 49.3404 6.88694C50.6476 4.37442 49.9504 2.4003 47.7718 0.785116C45.2445 -1.09927 41.2357 0.785115 39.2312 2.49004C34.1766 6.7972 29.0349 14.245 29.2963 21.3339C28.4249 26.0899 28.5992 31.2045 29.9062 35.4219C30.7777 38.1139 33.305 39.4599 35.9196 39.6394C38.534 39.819 43.9371 40.6264 46.2901 39.0114C48.6429 37.396 48.8174 34.2554 49.0788 31.5636C49.3403 28.6024 50.1246 23.0388 47.6845 20.7058C45.2443 18.4625 38.1854 20.8852 39.0569 15.8602Z\" fill=\"#015941\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_7891_6218\" x=\"-30\" y=\"-20\" width=\"110\" height=\"100\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"10\"/>\\n<feGaussianBlur stdDeviation=\"15\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0470588 0 0 0 0 0.117647 0 0 0 0 0.105882 0 0 0 0.08 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_7891_6218\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_7891_6218\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wwhl3b-container hidden-ix6s9u hidden-8g7hb9 hidden-1rq1t5h\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JHSe42MEQ\",rendersWithMotion:true,scopeId:\"CU2P5qJ6t\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:30,bottomLeftRadius:30,bottomRightRadius:30,height:\"100%\",id:\"JHSe42MEQ\",isMixedBorderRadius:false,isRed:false,layoutId:\"JHSe42MEQ\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:30,topRightRadius:30,url:\"https://www.youtube.com/watch?v=0f4ter60UrU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Rund Text Regular\", \"Rund Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(84, 89, 100)\"},children:\"“We have been very impressed by the Sweetspot platform and the team behind it. Our product offerings fit perfectly together and will bring unrivaled value to our customers.”\"})})},xMdNEwp0E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Rund Text Regular\", \"Rund Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(84, 89, 100)\"},children:'“We have been very impressed by the Sweetspot platform and the team behind it. Our product offerings fit perfectly together.\"'})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Rund Text Regular\", \"Rund Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(84, 89, 100)\"},children:\"“We have been very impressed by the Sweetspot platform and the team behind it. Our product offerings fit perfectly together and will bring unrivaled value to our customers.”\"})}),className:\"framer-115cwu4\",\"data-framer-name\":\"Review Text\",fonts:[\"CUSTOM;Rund Text Regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-edudwu-container hidden-ix6s9u hidden-8g7hb9 hidden-1dcu2dv\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HXuxKoerN\",rendersWithMotion:true,scopeId:\"CU2P5qJ6t\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,height:\"100%\",id:\"HXuxKoerN\",isMixedBorderRadius:false,isRed:false,layoutId:\"HXuxKoerN\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:25,topRightRadius:25,url:\"https://www.youtube.com/watch?v=0f4ter60UrU\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-10u16in\",\"data-framer-appear-id\":\"10u16in\",\"data-framer-name\":\"Testimonial Widget User Info\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Jonas Runnquist\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Jonas Runnquist\"})}),className:\"framer-x365zd\",\"data-framer-name\":\"User Name\",fonts:[\"CUSTOM;Rund Display Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Rund Text Regular\", \"Rund Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(107, 114, 128)\"},children:\"Sr Director Range Strategies at Toptracer\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Rund Text Regular\", \"Rund Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(107, 114, 128)\"},children:\"Sr Director Range Strategies at Toptracer\"})}),className:\"framer-91bpq9\",\"data-framer-name\":\"User Info\",fonts:[\"CUSTOM;Rund Text Regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j1pzkv\",\"data-framer-name\":\"Testimonial Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-nufhgw\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-epedkd\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Don't just take our word for it\"})})},xMdNEwp0E:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Don't just take our word for it\"})}),style:{}},zPJEzz_1W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Don't just take our word for it\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1J1bmQgRGlzcGxheSBCb2xk\",\"--framer-font-family\":'\"Rund Display Bold\", \"Rund Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Don't just take our word for it\"})}),className:\"framer-ryybue\",\"data-framer-name\":\"Tittle\",fonts:[\"CUSTOM;Rund Display Bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k4ssas\",\"data-framer-name\":\"Testimonial Card Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{width:`max((min(${componentViewport?.width||\"100vw\"}, 992px) - 100px) / 3, 1px)`,y:(componentViewport?.y||0)+0+3771.4+50+0+6+0+0+112+0},xMdNEwp0E:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 524px) - 60px)`,y:(componentViewport?.y||0)+0+3926.4+60+0+6+0+0+58.8+0+0},zPJEzz_1W:{width:\"318px\",y:(componentViewport?.y||0)+0+4657.3+57+0+6+0+0+85.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:`max((min(${componentViewport?.width||\"100vw\"}, 1356px) - 108px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4342.4+64+0+6+0+0+116.8+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xMdNEwp0E:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-23ozj5-container\",nodeId:\"SrgxHvHou\",rendersWithMotion:true,scopeId:\"CU2P5qJ6t\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(TestimonialCard,{AzVocxWJP:addImageAlt({pixelHeight:54,pixelWidth:104,src:\"https://framerusercontent.com/images/VoQvnc8Oiyuniw18ld2rqTSHJ8.svg\"},\"\"),height:\"100%\",id:\"SrgxHvHou\",jymojDmdu:'\"Sweetspot was the obvious choice for us when choosing a business system. They are clearly in the forefront when it comes to offering a complete revenue management platform that is tailor made for golf.\"',layoutId:\"SrgxHvHou\",style:{width:\"100%\"},tdULqPinH:addImageAlt({pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/S0gNTfjsTABa5Rs9R9YYrGOFDuU.webp\"},\"\"),tgcc16nSW:\"CEO Indoor Golf Group\",uPr1ry_eP:\"Fredrik Wredmark\",variant:\"thvmpoNrI\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{width:`max((min(${componentViewport?.width||\"100vw\"}, 992px) - 100px) / 3, 1px)`,y:(componentViewport?.y||0)+0+3771.4+50+0+6+0+0+112+0},zPJEzz_1W:{width:\"318px\",y:(componentViewport?.y||0)+0+4657.3+57+0+6+0+0+85.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:`max((min(${componentViewport?.width||\"100vw\"}, 1356px) - 108px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4342.4+64+0+6+0+0+116.8+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qrg9rz-container hidden-1dcu2dv\",nodeId:\"sCLdTPSVX\",rendersWithMotion:true,scopeId:\"CU2P5qJ6t\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"sCLdTPSVX\",jymojDmdu:'\"We are very happy with Sweetspot. Their platform offers us many tools to keep track of and develop our business and offering. They are also very knowledgeable and easy to work with.\"',layoutId:\"sCLdTPSVX\",style:{width:\"100%\"},tdULqPinH:addImageAlt({pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/FFwrg4gGYyi3jXxcNMBq2Wy0jk.webp\"},\"\"),tgcc16nSW:\"CEO Alba Golf\",uPr1ry_eP:\"Henrik Berg Bj\\xf6rnelius\",variant:\"t2amMmleD\",width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{width:`max((min(${componentViewport?.width||\"100vw\"}, 992px) - 100px) / 3, 1px)`,y:(componentViewport?.y||0)+0+3771.4+50+0+6+0+0+112+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:`max((min(${componentViewport?.width||\"100vw\"}, 1356px) - 108px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4342.4+64+0+6+0+0+116.8+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-983pld-container hidden-1rq1t5h hidden-1dcu2dv\",nodeId:\"iGjFQHHMS\",rendersWithMotion:true,scopeId:\"CU2P5qJ6t\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(TestimonialCard,{AzVocxWJP:addImageAlt({pixelHeight:50,pixelWidth:140,src:\"https://framerusercontent.com/images/NSWYcsQb2FDY9eqsOTy5jWWviZ8.png\"},\"Warwickshire Golf Sim Logo\"),height:\"100%\",id:\"iGjFQHHMS\",jymojDmdu:'\"WGS moved to Sweetspot to allow us to make informed decisions around pricing structure and peak times. We use the reporting function to forecast growth, and the app is so easy to use. We are very happy with the change we made.\"',layoutId:\"iGjFQHHMS\",style:{width:\"100%\"},tdULqPinH:addImageAlt({pixelHeight:2695,pixelWidth:2316,src:\"https://framerusercontent.com/images/iaLKrkaKZFzx77nITxzfSrTnME.jpeg\",srcSet:\"https://framerusercontent.com/images/iaLKrkaKZFzx77nITxzfSrTnME.jpeg?scale-down-to=1024 879w,https://framerusercontent.com/images/iaLKrkaKZFzx77nITxzfSrTnME.jpeg?scale-down-to=2048 1759w,https://framerusercontent.com/images/iaLKrkaKZFzx77nITxzfSrTnME.jpeg 2316w\"},\"\"),tgcc16nSW:\"Managing Director WGS\",uPr1ry_eP:\"Phil Burgess\",variant:\"t2amMmleD\",width:\"100%\"})})})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{y:(componentViewport?.y||0)+0+4465.4},xMdNEwp0E:{y:(componentViewport?.y||0)+0+4563.2},zPJEzz_1W:{y:(componentViewport?.y||0)+0+5314.9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:748,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5085.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b03uc7-container\",nodeId:\"y9Z7Omwwr\",scopeId:\"CU2P5qJ6t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFzBVyvcE:{variant:\"U2JIpAoKH\"},xMdNEwp0E:{variant:\"L07LC1V10\"},zPJEzz_1W:{variant:\"VmN8fhZ6x\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"y9Z7Omwwr\",layoutId:\"y9Z7Omwwr\",style:{width:\"100%\"},variant:\"Dckp3VJFb\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rdsmW.framer-g6nuec, .framer-rdsmW .framer-g6nuec { display: block; }\",\".framer-rdsmW.framer-ix6s9u { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-rdsmW .framer-j8hegk-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-rdsmW .framer-c967pv-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-rdsmW .framer-1v41sl1 { align-content: center; align-items: center; background: linear-gradient(180deg, #efece7 42.25436373873874%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 130px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-bpltth { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1356px; overflow: visible; padding: 62px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-1tilfui { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-16l8fzb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-iel8bi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-1twhxwo { flex: none; height: auto; position: relative; text-shadow: 0px 2px 0px rgba(255, 255, 255, 0.4); white-space: pre-wrap; width: 70%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-rdsmW .framer-e0l1y7 { flex: none; height: auto; max-width: 657px; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-rdsmW .framer-11vmaua { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-rdsmW .framer-1t3sqfg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-rdsmW .framer-13fnv19-container, .framer-rdsmW .framer-1u4nv3k-container, .framer-rdsmW .framer-2moohv-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-rdsmW .framer-1kzgfi4-container { flex: none; height: auto; position: relative; width: 1326px; }\",\".framer-rdsmW .framer-19t1ssv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-jrzvx5 { aspect-ratio: 1.5772870662460567 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 725px); overflow: visible; position: relative; width: 84%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-rdsmW .framer-1h4zyze { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-1bl4d3g { flex: none; height: auto; max-width: 720px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-rdsmW .framer-1e7t6zv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-1gexl3l { aspect-ratio: 3 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; text-decoration: none; width: 180px; }\",\".framer-rdsmW .framer-1t3mhyw { aspect-ratio: 3.4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; text-decoration: none; width: 204px; }\",\".framer-rdsmW .framer-h01j65 { align-content: center; align-items: center; background-color: #f7f7f7; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 0px 140px 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-1n1dill { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 71px; height: min-content; justify-content: flex-start; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 1px; }\",\".framer-rdsmW .framer-7o0seg, .framer-rdsmW .framer-115cwu4, .framer-rdsmW .framer-x365zd, .framer-rdsmW .framer-91bpq9, .framer-rdsmW .framer-ryybue { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rdsmW .framer-1nl1r5f { display: grid; flex: none; gap: 48px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1024px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-1pon8xy-container, .framer-rdsmW .framer-vs3ldm-container, .framer-rdsmW .framer-1gvzekm-container, .framer-rdsmW .framer-v7icrh-container, .framer-rdsmW .framer-1gmvc7o-container, .framer-rdsmW .framer-tz5tis-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-rdsmW .framer-wa62fd-container { -webkit-filter: grayscale(0); align-self: start; filter: grayscale(0); flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-rdsmW .framer-1ikoje5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 51px; height: min-content; justify-content: center; overflow: visible; padding: 64px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-1yxzpef { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-1cgin9c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-s6xauf { flex: none; height: auto; max-width: 720px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rdsmW .framer-k8b5le { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-iseviq { align-content: center; align-items: center; background-color: #f2f0e7; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 254px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-7bwt3c { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-kha0zw { align-content: flex-end; align-items: flex-end; background-color: #fff854; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: center; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 33%; }\",\".framer-rdsmW .framer-s1dlh2, .framer-rdsmW .framer-1ik72hw, .framer-rdsmW .framer-kc6y99 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-rdsmW .framer-edig0n, .framer-rdsmW .framer-1xlboep, .framer-rdsmW .framer-1go9uy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-rdsmW .framer-12fzcd2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 297px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdsmW .framer-1vwb3wp { align-content: center; align-items: center; background-color: #fff854; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: center; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 34%; }\",\".framer-rdsmW .framer-c72mfx, .framer-rdsmW .framer-4hx98f { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-rdsmW .framer-148p8tn { align-content: flex-start; align-items: flex-start; background-color: #fff854; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: center; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 33%; }\",\".framer-rdsmW .framer-18p69e4 { align-content: center; align-items: center; background-color: #f7f7f7; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 48px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-laxylo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: sticky; top: 0px; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-rdsmW .framer-11s93br { --framer-paragraph-spacing: 1px; flex: none; height: 79px; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rdsmW .framer-1hymxox { align-content: center; align-items: center; background-color: #f7f7f7; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 80px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-rdsmW .framer-1typzqv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-jp8sdv { align-content: center; align-items: center; background-color: var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, #ffffff); border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; box-shadow: 0px 10px 30px 0px rgba(12, 30, 27, 0.08); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; overflow: visible; padding: 60px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-guq1km-container { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 450px); position: relative; width: 600px; }\",\".framer-rdsmW .framer-q8dbt2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-rdsmW .framer-1rptp2g { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: flex-start; max-width: 542px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-rdsmW .framer-191u1za { aspect-ratio: 1.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 50px; }\",\".framer-rdsmW .framer-1qdaqml { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-rdsmW .framer-wwhl3b-container { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); position: relative; width: 100%; z-index: 1; }\",\".framer-rdsmW .framer-edudwu-container { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-rdsmW .framer-10u16in { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-rdsmW .framer-1j1pzkv { align-content: center; align-items: center; background-color: #f2f0e7; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 64px 0px 104px 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-nufhgw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1356px; overflow: visible; padding: 6px 30px 6px 30px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-epedkd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-k4ssas { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rdsmW .framer-23ozj5-container, .framer-rdsmW .framer-qrg9rz-container, .framer-rdsmW .framer-983pld-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-rdsmW .framer-b03uc7-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@media (min-width: 992px) and (max-width: 1439px) { .framer-rdsmW.framer-ix6s9u { width: 992px; } .framer-rdsmW .framer-j8hegk-container, .framer-rdsmW .framer-s6xauf { order: 0; } .framer-rdsmW .framer-c967pv-container, .framer-rdsmW .framer-k8b5le, .framer-rdsmW .framer-2moohv-container { order: 1; } .framer-rdsmW .framer-1v41sl1 { order: 2; padding: 131px 0px 64px 0px; } .framer-rdsmW .framer-bpltth { gap: 20px; max-width: 1000px; padding: 0px; } .framer-rdsmW .framer-16l8fzb { padding: 50px 0px 50px 0px; } .framer-rdsmW .framer-iel8bi { gap: 16px; } .framer-rdsmW .framer-1twhxwo, .framer-rdsmW .framer-1kzgfi4-container { width: 100%; } .framer-rdsmW .framer-jrzvx5 { height: var(--framer-aspect-ratio-supported, 528px); width: 84%; } .framer-rdsmW .framer-h01j65 { order: 3; padding: 40px 0px 120px 0px; } .framer-rdsmW .framer-1n1dill { gap: 40px; max-width: 1000px; } .framer-rdsmW .framer-1ikoje5 { order: 5; padding: 40px 0px 64px 0px; } .framer-rdsmW .framer-1yxzpef { gap: 65px; max-width: 1000px; order: 0; } .framer-rdsmW .framer-1cgin9c { gap: 40px; order: 0; } .framer-rdsmW .framer-iseviq { height: min-content; order: 7; } .framer-rdsmW .framer-7bwt3c { flex: none; height: min-content; } .framer-rdsmW .framer-kha0zw { align-content: flex-start; align-items: flex-start; align-self: stretch; gap: 40px; height: auto; padding: 30px 50px 35px 50px; } .framer-rdsmW .framer-s1dlh2, .framer-rdsmW .framer-1ik72hw, .framer-rdsmW .framer-kc6y99 { gap: 0px; } .framer-rdsmW .framer-1vwb3wp, .framer-rdsmW .framer-148p8tn { align-self: stretch; gap: 40px; height: auto; padding: 30px 50px 35px 50px; } .framer-rdsmW .framer-18p69e4 { gap: 8px; order: 8; } .framer-rdsmW .framer-1hymxox { order: 9; padding: 27px 0px 80px 0px; } .framer-rdsmW .framer-jp8sdv { gap: 24px; padding: 48px 54px 48px 54px; } .framer-rdsmW .framer-guq1km-container { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 300px); width: 1px; } .framer-rdsmW .framer-1rptp2g { gap: 11px; } .framer-rdsmW .framer-1qdaqml { bottom: 8px; height: 24px; left: 10px; top: unset; width: 30px; } .framer-rdsmW .framer-1j1pzkv { order: 11; padding: 50px 0px 74px 0px; } .framer-rdsmW .framer-nufhgw { gap: 65px; max-width: 992px; } .framer-rdsmW .framer-k4ssas { gap: 20px; } .framer-rdsmW .framer-b03uc7-container { order: 12; }}\",\"@media (min-width: 768px) and (max-width: 991px) { .framer-rdsmW.framer-ix6s9u { width: 768px; } .framer-rdsmW .framer-1v41sl1 { padding: 130px 0px 40px 0px; } .framer-rdsmW .framer-bpltth { gap: 10px; max-width: 720px; padding: 20px 24px 20px 24px; } .framer-rdsmW .framer-1tilfui { gap: 28px; } .framer-rdsmW .framer-iel8bi { gap: 16px; } .framer-rdsmW .framer-1twhxwo { width: 90%; } .framer-rdsmW .framer-11vmaua { gap: 20px; } .framer-rdsmW .framer-1kzgfi4-container, .framer-rdsmW .framer-1bl4d3g { width: 100%; } .framer-rdsmW .framer-jrzvx5 { height: var(--framer-aspect-ratio-supported, 127px); width: 97%; } .framer-rdsmW .framer-h01j65 { padding: 40px 0px 80px 0px; } .framer-rdsmW .framer-1n1dill, .framer-rdsmW .framer-1yxzpef { gap: 40px; max-width: 720px; padding: 0px 24px 0px 24px; } .framer-rdsmW .framer-1nl1r5f { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-rdsmW .framer-1pon8xy-container, .framer-rdsmW .framer-vs3ldm-container, .framer-rdsmW .framer-wa62fd-container, .framer-rdsmW .framer-1gvzekm-container { align-self: unset; height: auto; } .framer-rdsmW .framer-1ikoje5 { padding: 40px 0px 40px 0px; } .framer-rdsmW .framer-1cgin9c, .framer-rdsmW .framer-epedkd { gap: 40px; } .framer-rdsmW .framer-k8b5le { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: flex-start; width: min-content; } .framer-rdsmW .framer-v7icrh-container { align-self: unset; height: auto; order: 0; width: 324px; } .framer-rdsmW .framer-1gmvc7o-container { align-self: unset; height: auto; order: 1; width: 324px; } .framer-rdsmW .framer-iseviq { height: 175px; } .framer-rdsmW .framer-kha0zw, .framer-rdsmW .framer-1vwb3wp, .framer-rdsmW .framer-148p8tn { padding: 20px 20px 25px 20px; } .framer-rdsmW .framer-s1dlh2, .framer-rdsmW .framer-1ik72hw, .framer-rdsmW .framer-kc6y99 { gap: 0px; } .framer-rdsmW .framer-12fzcd2 { white-space: pre; width: auto; } .framer-rdsmW .framer-18p69e4 { gap: 8px; padding: 48px 24px 0px 24px; } .framer-rdsmW .framer-laxylo { max-width: 75%; } .framer-rdsmW .framer-11s93br { height: 101px; max-width: 75%; width: 540px; } .framer-rdsmW .framer-1hymxox, .framer-rdsmW .framer-k4ssas { width: min-content; } .framer-rdsmW .framer-1typzqv { padding: 52px 30px 52px 30px; width: 768px; } .framer-rdsmW .framer-jp8sdv { gap: 53px; padding: 24px 40px 24px 40px; } .framer-rdsmW .framer-q8dbt2 { flex-direction: column; gap: 50px; order: 1; } .framer-rdsmW .framer-1rptp2g { flex: none; gap: 24px; max-width: unset; order: 0; padding: 16px 0px 24px 0px; width: 100%; } .framer-rdsmW .framer-115cwu4 { order: 3; } .framer-rdsmW .framer-edudwu-container { order: 1; } .framer-rdsmW .framer-10u16in { order: 4; } .framer-rdsmW .framer-1j1pzkv { padding: 57px 0px 57px 0px; } .framer-rdsmW .framer-nufhgw { gap: 40px; max-width: 720px; } .framer-rdsmW .framer-23ozj5-container { flex: none; width: 318px; } .framer-rdsmW .framer-qrg9rz-container { flex: none; width: 318px; z-index: 1; }}\",\"@media (max-width: 767px) { .framer-rdsmW.framer-ix6s9u { width: 390px; } .framer-rdsmW .framer-1v41sl1 { padding: 100px 0px 40px 0px; } .framer-rdsmW .framer-bpltth { gap: 20px; max-width: 524px; padding: 8px 0px 0px 0px; } .framer-rdsmW .framer-1tilfui { gap: 16px; } .framer-rdsmW .framer-16l8fzb { gap: 31px; padding: 24px; } .framer-rdsmW .framer-iel8bi { gap: 10px; } .framer-rdsmW .framer-1twhxwo { width: 100%; will-change: unset; } .framer-rdsmW .framer-e0l1y7 { will-change: unset; } .framer-rdsmW .framer-11vmaua { gap: 18px; will-change: unset; } .framer-rdsmW .framer-1kzgfi4-container, .framer-rdsmW .framer-1bl4d3g { width: 100%; } .framer-rdsmW .framer-jrzvx5 { height: var(--framer-aspect-ratio-supported, 127px); width: 87%; will-change: unset; } .framer-rdsmW .framer-1h4zyze { gap: 8px; } .framer-rdsmW .framer-1gexl3l { height: var(--framer-aspect-ratio-supported, 48px); width: 144px; } .framer-rdsmW .framer-1t3mhyw { height: var(--framer-aspect-ratio-supported, 48px); width: 163px; } .framer-rdsmW .framer-h01j65 { padding: 30px 0px 60px 0px; } .framer-rdsmW .framer-1n1dill { gap: 20px; justify-content: center; max-width: 524px; padding: 0px 24px 0px 24px; } .framer-rdsmW .framer-1nl1r5f { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; padding: 3px 0px 3px 0px; } .framer-rdsmW .framer-1pon8xy-container, .framer-rdsmW .framer-vs3ldm-container, .framer-rdsmW .framer-wa62fd-container, .framer-rdsmW .framer-1gvzekm-container, .framer-rdsmW .framer-v7icrh-container, .framer-rdsmW .framer-1gmvc7o-container, .framer-rdsmW .framer-tz5tis-container { align-self: unset; height: auto; } .framer-rdsmW .framer-1ikoje5 { padding: 30px 0px 30px 0px; } .framer-rdsmW .framer-1yxzpef { gap: 30px; justify-content: center; max-width: 390px; padding: 0px 24px 0px 24px; } .framer-rdsmW .framer-1cgin9c { gap: 40px; } .framer-rdsmW .framer-k8b5le { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-rdsmW .framer-18p69e4 { gap: 22px; padding: 40px 24px 30px 24px; } .framer-rdsmW .framer-11s93br { height: auto; } .framer-rdsmW .framer-1hymxox { padding: 0px 0px 70px 0px; } .framer-rdsmW .framer-jp8sdv { border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; padding: 12px 24px 36px 24px; } .framer-rdsmW .framer-q8dbt2 { flex-direction: column; gap: 30px; } .framer-rdsmW .framer-1rptp2g { flex: none; gap: 20px; padding: 10px 0px 0px 0px; width: 100%; } .framer-rdsmW .framer-wwhl3b-container { order: 0; } .framer-rdsmW .framer-115cwu4 { order: 2; } .framer-rdsmW .framer-10u16in { order: 4; } .framer-rdsmW .framer-1j1pzkv { padding: 60px 0px 60px 0px; } .framer-rdsmW .framer-nufhgw { gap: 40px; justify-content: center; max-width: 524px; } .framer-rdsmW .framer-epedkd { gap: 30px; } .framer-rdsmW .framer-k4ssas { flex-direction: column; } .framer-rdsmW .framer-23ozj5-container { flex: none; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5473\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AFzBVyvcE\":{\"layout\":[\"fixed\",\"auto\"]},\"zPJEzz_1W\":{\"layout\":[\"fixed\",\"auto\"]},\"xMdNEwp0E\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"vTxpCIwrC\":{\"pattern\":\":vTxpCIwrC\",\"name\":\"biz-areas\"}}\n * @framerResponsiveScreen\n */const FramerCU2P5qJ6t=withCSS(Component,css,\"framer-rdsmW\");export default FramerCU2P5qJ6t;FramerCU2P5qJ6t.displayName=\"Home\";FramerCU2P5qJ6t.defaultProps={height:5473,width:1440};addFonts(FramerCU2P5qJ6t,[{explicitInter:true,fonts:[{family:\"Rund Display Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/QaYWW7gvlQL19nj5QoVTIVLlAyo.woff2\"},{family:\"Rund Text Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/CoMe8YJUnTLk6D2tkqOFO61uNEc.woff2\"},{family:\"Rund Text Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/B3RqjV3WRF8kEkcM14Q8K8LnJQ.woff2\"}]},...HeaderFonts,...ButtonFonts,...LogosTickerFonts,...BasicCardFonts,...FeatureCardFonts,...YouTubeFonts,...TestimonialCardFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCU2P5qJ6t\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AFzBVyvcE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zPJEzz_1W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xMdNEwp0E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"5473\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"vTxpCIwrC\\\":{\\\"pattern\\\":\\\":vTxpCIwrC\\\",\\\"name\\\":\\\"biz-areas\\\"}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}