{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js", "ssg:https://framerusercontent.com/modules/wgYKbcYf5p3jdpEDc2yl/HHUg00vMAW12MmgBgPsa/augiA20Il.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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (ae50a0d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Header from\"#framer/local/canvasComponent/DQL8gvjsB/DQL8gvjsB.js\";import Button from\"#framer/local/canvasComponent/meC7Tl47C/meC7Tl47C.js\";import Footer from\"#framer/local/canvasComponent/rQ86M8r2h/rQ86M8r2h.js\";import Newsletter from\"#framer/local/canvasComponent/rYd9uqDaC/rYd9uqDaC.js\";import BackgroundFX from\"#framer/local/canvasComponent/tHpuc3v2D/tHpuc3v2D.js\";import LearningKnowledge from\"#framer/local/collection/IglwLzxsX/IglwLzxsX.js\";import Cases from\"#framer/local/collection/ONIr8Ht8Q/ONIr8Ht8Q.js\";import*as sharedStyle1 from\"#framer/local/css/aaDcyIMOg/aaDcyIMOg.js\";import*as sharedStyle4 from\"#framer/local/css/baivUus8L/baivUus8L.js\";import*as sharedStyle3 from\"#framer/local/css/bdg7SC7xK/bdg7SC7xK.js\";import*as sharedStyle5 from\"#framer/local/css/D75dJEuQ0/D75dJEuQ0.js\";import*as sharedStyle6 from\"#framer/local/css/FTZ4ibBoY/FTZ4ibBoY.js\";import*as sharedStyle2 from\"#framer/local/css/gIOLOGnTI/gIOLOGnTI.js\";import*as sharedStyle from\"#framer/local/css/PyK1HElVq/PyK1HElVq.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderFonts=getFonts(Header);const HeaderWithVariantAppearEffect=withVariantAppearEffect(Header);const ButtonFonts=getFonts(Button);const TickerFonts=getFonts(Ticker);const PhosphorFonts=getFonts(Phosphor);const BackgroundFXFonts=getFonts(BackgroundFX);const NewsletterFonts=getFonts(Newsletter);const FooterFonts=getFonts(Footer);const breakpoints={CsjQmIHh9:\"(max-width: 809px)\",rD1vrriR7:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Q0gjB\";const variantClassNames={CsjQmIHh9:\"framer-v-5zsdhh\",rD1vrriR7:\"framer-v-1o9w8f7\",WQLkyLRf1:\"framer-v-72rtr7\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromBoolean=(value,activeLocale,{otvzy3acGRk7owoDT_,xqxIKr6pvRk7owoDT_})=>{if(value){return otvzy3acGRk7owoDT_;}else{return{pathVariables:{xqxIKr6pv:xqxIKr6pvRk7owoDT_},webPageId:\"pvNiY2Moc\"};}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"CsjQmIHh9\",Tablet:\"rD1vrriR7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,N4NsyHwE1Rk7owoDT_,sTX7AgQWARk7owoDT_,otvzy3acGRk7owoDT_,xqxIKr6pvRk7owoDT_,IzHSnieR4Rk7owoDT_,HDMgf86GWRk7owoDT_,idRk7owoDT_,CkmFtdMUqrDzHym_Q6,i4xx9dp2trDzHym_Q6,XDKEm7uBtrDzHym_Q6,FEnYADfZNrDzHym_Q6,Cxh_gLPocrDzHym_Q6,idrDzHym_Q6,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"GKAAhA9oP\");const router=useRouter();const elementId1=useRouteElementId(\"OrokCo3WG\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-c1c5ddea-6586-4e4d-b934-5efe75478420, rgb(246, 245, 253)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{width:\"99.7436vw\"},rD1vrriR7:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6t4sl4-container\",layoutScroll:true,nodeId:\"pEA0ZaddU\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{__framer__variantAppearEffectEnabled:undefined,style:{width:\"100%\"},variant:\"JRjspaGbq\"},rD1vrriR7:{__framer__variantAppearEffectEnabled:undefined,style:{width:\"100%\"},variant:\"JRjspaGbq\"}},children:/*#__PURE__*/_jsx(HeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"Xz6RpBGDB\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"pEA0ZaddU\",layoutId:\"pEA0ZaddU\",style:{height:\"100%\",width:\"100%\"},variant:\"mxSZ2jCdZ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fafh6a\",\"data-framer-name\":\"header ghost\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ea8b1c\",\"data-framer-name\":\"Main\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fdwo47\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ks4an\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9r4pzh\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jrl50m\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-assmb3\",\"data-styles-preset\":\"PyK1HElVq\",children:\"Getting data done\"})}),className:\"framer-cdmiv7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-oqipch\",\"data-styles-preset\":\"aaDcyIMOg\",children:\"From strategy, over action, to success\"})}),className:\"framer-2strab\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ia3mxo\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"X1WWo64UW\"},implicitPathVariables:undefined},{href:{webPageId:\"X1WWo64UW\"},implicitPathVariables:undefined},{href:{webPageId:\"X1WWo64UW\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6pxksv-container\",nodeId:\"qF7dQ8LDf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{i_lKR_QiW:resolvedLinks[2]},rD1vrriR7:{i_lKR_QiW:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{EDLQIJEu7:\"center\",height:\"100%\",i_lKR_QiW:resolvedLinks[0],id:\"qF7dQ8LDf\",iy4y3Sseu:\"regular\",JPfYo5zFm:false,layoutId:\"qF7dQ8LDf\",PBLGXKjUf:\"Alien\",pJLAaz7XE:false,PObcHjbZX:true,T8GAmzmqd:\"CaretRight\",UPmw4DicX:\"Learn More\",variant:\"vzPUXRE4R\",VD9nVmndZ:false,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":NDRIvgk_f\",webPageId:\"cbzlaSe7I\"},implicitPathVariables:undefined},{href:{hash:\":NDRIvgk_f\",webPageId:\"cbzlaSe7I\"},implicitPathVariables:undefined},{href:{hash:\":NDRIvgk_f\",webPageId:\"cbzlaSe7I\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13v3uwj-container\",nodeId:\"oIUxg4XvP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{i_lKR_QiW:resolvedLinks1[2]},rD1vrriR7:{i_lKR_QiW:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{EDLQIJEu7:\"center\",height:\"100%\",i_lKR_QiW:resolvedLinks1[0],id:\"oIUxg4XvP\",iy4y3Sseu:\"regular\",JPfYo5zFm:false,layoutId:\"oIUxg4XvP\",PBLGXKjUf:\"ArrowLeft\",pJLAaz7XE:false,PObcHjbZX:false,T8GAmzmqd:\"ArrowRight\",UPmw4DicX:\"Get in touch\",variant:\"oe057RCwZ\",VD9nVmndZ:true,width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:656,pixelWidth:938,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 720px)`,src:\"https://framerusercontent.com/images/F6esEZpjDNeqevNnKHZGeVbH4.png\",srcSet:\"https://framerusercontent.com/images/F6esEZpjDNeqevNnKHZGeVbH4.png?scale-down-to=512 512w,https://framerusercontent.com/images/F6esEZpjDNeqevNnKHZGeVbH4.png 938w\"}},rD1vrriR7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:656,pixelWidth:938,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/F6esEZpjDNeqevNnKHZGeVbH4.png\",srcSet:\"https://framerusercontent.com/images/F6esEZpjDNeqevNnKHZGeVbH4.png?scale-down-to=512 512w,https://framerusercontent.com/images/F6esEZpjDNeqevNnKHZGeVbH4.png 938w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:656,pixelWidth:938,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 80px) / 2, 1px)`,src:\"https://framerusercontent.com/images/F6esEZpjDNeqevNnKHZGeVbH4.png\",srcSet:\"https://framerusercontent.com/images/F6esEZpjDNeqevNnKHZGeVbH4.png?scale-down-to=512 512w,https://framerusercontent.com/images/F6esEZpjDNeqevNnKHZGeVbH4.png 938w\"},className:\"framer-15gbit6\",\"data-framer-name\":\"Image\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9azyxt\",\"data-framer-name\":\"Clients\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mijbr\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k3b518\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-l69km7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qz3ppo\",\"data-styles-preset\":\"gIOLOGnTI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-250fc1b1-91c5-4e05-a70d-5307a0906613, rgb(8, 6, 53))\"},children:\"Trusted by:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qz3ppo\",\"data-styles-preset\":\"gIOLOGnTI\",style:{\"--framer-text-color\":\"var(--token-250fc1b1-91c5-4e05-a70d-5307a0906613, rgb(8, 6, 53))\"},children:\"Trusted by:\"})}),className:\"framer-ou9zl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yx3nqp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:83,pixelWidth:221,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uBVPOoPrg1O9rtfnA1R8ZB7qc.png\"},className:\"framer-1efdqu5\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16phb9k\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:40,pixelWidth:112,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jc86ZbSdSKawMDwbSoQXzuKQI.svg\"},className:\"framer-1cn6psz\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13tkv0p\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:150,pixelWidth:494,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HT51LVaf57HQvqKiAkeMEkiEM0.png\"},className:\"framer-dytz7r\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r1jfnb\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:243,pixelWidth:788,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ooTy52nf2S091gdG9ZsWS058k.svg\"},className:\"framer-1nzb18a\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q323g9\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:40,pixelWidth:132,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UAnCQ4IT6YUh3oYVomjY5OAh7sE.svg\"},className:\"framer-lbfxic\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c89esv\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:162,pixelWidth:247,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PEgAeBWBeHTZ6obNYAMYM5MVo.png\"},className:\"framer-10qb7h9\"})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j58j9x\",\"data-framer-name\":\"Clients\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6yjt6g\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1skyjq7\",\"data-framer-name\":\"Pivot\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m7al8d-container\",isModuleExternal:true,nodeId:\"MFXVXxDzX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"MFXVXxDzX\",layoutId:\"MFXVXxDzX\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xzsnif\",\"data-border\":true,\"data-framer-name\":\"Stack - Left Event\",children:/*#__PURE__*/_jsx(Link,{href:\"https://event.dataminded.com/state-of-data-2025\",motionChild:true,nodeId:\"WexjMjeSa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:627,pixelWidth:1200,sizes:\"459px\",src:\"https://framerusercontent.com/images/4WZzBETFAzh8vBf61qqBwG6eU.png\",srcSet:\"https://framerusercontent.com/images/4WZzBETFAzh8vBf61qqBwG6eU.png?scale-down-to=512 512w,https://framerusercontent.com/images/4WZzBETFAzh8vBf61qqBwG6eU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4WZzBETFAzh8vBf61qqBwG6eU.png 1200w\"},className:\"framer-1pwn2sa framer-lux5qc\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ImV6tuysl\"},motionChild:true,nodeId:\"GeNaNjczF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1yah3ck framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Stack - Middle Event\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qs9ju0\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Don\u2019t Miss Out: Our Latest News and Upcoming Events! \"})}),className:\"framer-5m3nkr\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cribme\",\"data-framer-name\":\"Buttons\",children:/*#__PURE__*/_jsx(motion.button,{className:\"framer-2k4bym\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn More\"})}),className:\"framer-vjivo\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ur4v4c\",\"data-border\":true,\"data-framer-name\":\"Stack - Right Event\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"K7furUpvA\"},motionChild:true,nodeId:\"o7_Ud__vB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1480,pixelWidth:2778,sizes:\"459px\",src:\"https://framerusercontent.com/images/y6aYfSqVJfgXN9PXmvMsfEDRA.png\",srcSet:\"https://framerusercontent.com/images/y6aYfSqVJfgXN9PXmvMsfEDRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/y6aYfSqVJfgXN9PXmvMsfEDRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/y6aYfSqVJfgXN9PXmvMsfEDRA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/y6aYfSqVJfgXN9PXmvMsfEDRA.png 2778w\"},className:\"framer-1j5oaq8 framer-lux5qc\"})})})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cnkr81\",\"data-framer-name\":\"What we do\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nu0lsy\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iszn4d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-78obr3\",\"data-styles-preset\":\"bdg7SC7xK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Give your data team magical powers\"})}),className:\"framer-1128e6m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-539t2g\",\"data-styles-preset\":\"baivUus8L\",style:{\"--framer-text-alignment\":\"center\"},children:\"Granting your data team supernatural capabilities for unrivaled insights and innovation\"})}),className:\"framer-fx4562\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fjohy2\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NWGgexpYd\"},motionChild:true,nodeId:\"bhVNmcOnO\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1lus51f framer-lux5qc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-153oe8z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qz3ppo\",\"data-styles-preset\":\"gIOLOGnTI\",style:{\"--framer-text-color\":\"var(--token-250fc1b1-91c5-4e05-a70d-5307a0906613, rgb(8, 6, 53))\"},children:\"Plan your journey\"})}),className:\"framer-5mtrf1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e1dua0\",\"data-styles-preset\":\"D75dJEuQ0\",children:\"Together we shape your data strategy, We help you measuring where you are today and define the road to reach your ambitions.\"})}),className:\"framer-1dl8251\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:800,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 720px), 50px)`,src:\"https://framerusercontent.com/images/0V1eGB63ujJtLhmKgWSpvjcd6I.png\",srcSet:\"https://framerusercontent.com/images/0V1eGB63ujJtLhmKgWSpvjcd6I.png?scale-down-to=512 512w,https://framerusercontent.com/images/0V1eGB63ujJtLhmKgWSpvjcd6I.png 800w\"}},rD1vrriR7:{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:800,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 80px) / 3, 50px)`,src:\"https://framerusercontent.com/images/0V1eGB63ujJtLhmKgWSpvjcd6I.png\",srcSet:\"https://framerusercontent.com/images/0V1eGB63ujJtLhmKgWSpvjcd6I.png?scale-down-to=512 512w,https://framerusercontent.com/images/0V1eGB63ujJtLhmKgWSpvjcd6I.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:800,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 80px) / 3, 1px)`,src:\"https://framerusercontent.com/images/0V1eGB63ujJtLhmKgWSpvjcd6I.png\",srcSet:\"https://framerusercontent.com/images/0V1eGB63ujJtLhmKgWSpvjcd6I.png?scale-down-to=512 512w,https://framerusercontent.com/images/0V1eGB63ujJtLhmKgWSpvjcd6I.png 800w\"},className:\"framer-1x0oa4l\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1daefzm\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n5kr36\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7trox9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qJFJjjrpV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-035e6994-5e28-44d8-9dc6-d4660cd5567b, rgb(84, 62, 220))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretRight\",id:\"qJFJjjrpV\",layoutId:\"qJFJjjrpV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"D8hVNLSvO\"},motionChild:true,nodeId:\"ps4U0vIy7\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{background:{alt:\"\",fit:\"fill\",pixelHeight:1067,pixelWidth:1600,positionX:\"center\",positionY:\"top\",sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 720px), 50px)`,src:\"https://framerusercontent.com/images/tvt4FNjfHMANKNxnR8ptEcXrvA.jpg\",srcSet:\"https://framerusercontent.com/images/tvt4FNjfHMANKNxnR8ptEcXrvA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tvt4FNjfHMANKNxnR8ptEcXrvA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tvt4FNjfHMANKNxnR8ptEcXrvA.jpg 1600w\"}},rD1vrriR7:{background:{alt:\"\",fit:\"fill\",pixelHeight:1067,pixelWidth:1600,positionX:\"center\",positionY:\"top\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 80px) / 3, 50px)`,src:\"https://framerusercontent.com/images/tvt4FNjfHMANKNxnR8ptEcXrvA.jpg\",srcSet:\"https://framerusercontent.com/images/tvt4FNjfHMANKNxnR8ptEcXrvA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tvt4FNjfHMANKNxnR8ptEcXrvA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tvt4FNjfHMANKNxnR8ptEcXrvA.jpg 1600w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1067,pixelWidth:1600,positionX:\"center\",positionY:\"top\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 80px) / 3, 1px)`,src:\"https://framerusercontent.com/images/tvt4FNjfHMANKNxnR8ptEcXrvA.jpg\",srcSet:\"https://framerusercontent.com/images/tvt4FNjfHMANKNxnR8ptEcXrvA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tvt4FNjfHMANKNxnR8ptEcXrvA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tvt4FNjfHMANKNxnR8ptEcXrvA.jpg 1600w\"},className:\"framer-17kib2b framer-lux5qc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bfe46j\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dem1p0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qz3ppo\",\"data-styles-preset\":\"gIOLOGnTI\",style:{\"--framer-text-color\":\"var(--token-250fc1b1-91c5-4e05-a70d-5307a0906613, rgb(8, 6, 53))\"},children:\"Validate your ideas\"})}),className:\"framer-121hoxr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e1dua0\",\"data-styles-preset\":\"D75dJEuQ0\",style:{\"--framer-text-color\":\"var(--token-250fc1b1-91c5-4e05-a70d-5307a0906613, rgb(8, 6, 53))\"},children:\"Make your data investments sustainable. We help you validate your ideas and implement the foundations for a successful data journey.\"})}),className:\"framer-1rzwn05\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-olsown\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mq5fd2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-topn0\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bbcabs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eGHkYIe6N\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-035e6994-5e28-44d8-9dc6-d4660cd5567b, rgb(84, 62, 220))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretRight\",id:\"eGHkYIe6N\",layoutId:\"eGHkYIe6N\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"F1QL0T1Qt\"},motionChild:true,nodeId:\"ZstTpbmo9\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1bjzibf framer-lux5qc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t2c4ra\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qz3ppo\",\"data-styles-preset\":\"gIOLOGnTI\",style:{\"--framer-text-color\":\"var(--token-8626f15f-ec8a-4e30-93e6-f12c7a64f1c1, rgb(255, 255, 255))\"},children:\"Become the next data leader\"})}),className:\"framer-1dv5bqe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e1dua0\",\"data-styles-preset\":\"D75dJEuQ0\",style:{\"--framer-text-color\":\"var(--token-793a1c2a-f9ef-4c0f-9bb6-0bd1dacfb414, rgba(255, 255, 255, 0.8))\"},children:\"We assist you in transforming your data initiatives into a value driver, and scale your data organization into a completely data-driven organization\"})}),className:\"framer-ef2hzw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:300,pixelWidth:400,src:\"https://framerusercontent.com/images/jXhyWBixg9cvByEC0jxEXfLcHFI.png\"},className:\"framer-1271ho5\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a7tri5\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n9refq\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yo2gh3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pbFPyv3dI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-035e6994-5e28-44d8-9dc6-d4660cd5567b, rgb(84, 62, 220))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretRight\",id:\"pbFPyv3dI\",layoutId:\"pbFPyv3dI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})})]})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9f0syu\",\"data-framer-name\":\"Learning Knowledge\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ptxa2f\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19p6j4k\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b1mhkf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-78obr3\",\"data-styles-preset\":\"bdg7SC7xK\",style:{\"--framer-text-alignment\":\"left\"},children:\"We care about your data maturity\"})}),className:\"framer-gttpkx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-539t2g\",\"data-styles-preset\":\"baivUus8L\",style:{\"--framer-text-alignment\":\"left\"},children:\"We love to spread our knowledge for everyone to increase their data maturity\"})}),className:\"framer-138hc4q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14mreq\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VeXEwWUle\"},implicitPathVariables:undefined},{href:{webPageId:\"VeXEwWUle\"},implicitPathVariables:undefined},{href:{webPageId:\"VeXEwWUle\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dvzw7a-container\",nodeId:\"eAIFiBDBB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{i_lKR_QiW:resolvedLinks2[2]},rD1vrriR7:{i_lKR_QiW:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{EDLQIJEu7:\"center\",height:\"100%\",i_lKR_QiW:resolvedLinks2[0],id:\"eAIFiBDBB\",iy4y3Sseu:\"regular\",JPfYo5zFm:false,layoutId:\"eAIFiBDBB\",PBLGXKjUf:\"CaretRight\",pJLAaz7XE:false,PObcHjbZX:false,T8GAmzmqd:\"ArrowRight\",UPmw4DicX:\"View all\",variant:\"Ng5WVpzko\",VD9nVmndZ:true,width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1srtljc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Rk7owoDT_\",data:LearningKnowledge,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"Rk7owoDT_\",name:\"N4NsyHwE1\",type:\"Identifier\"},{collection:\"Rk7owoDT_\",name:\"sTX7AgQWA\",type:\"Identifier\"},{collection:\"Rk7owoDT_\",name:\"otvzy3acG\",type:\"Identifier\"},{collection:\"Rk7owoDT_\",name:\"xqxIKr6pv\",type:\"Identifier\"},{collection:\"Rk7owoDT_\",name:\"IzHSnieR4\",type:\"Identifier\"},{collection:\"Rk7owoDT_\",name:\"HDMgf86GW\",type:\"Identifier\"},{collection:\"Rk7owoDT_\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({HDMgf86GW:HDMgf86GWRk7owoDT_,id:idRk7owoDT_,IzHSnieR4:IzHSnieR4Rk7owoDT_,N4NsyHwE1:N4NsyHwE1Rk7owoDT_,otvzy3acG:otvzy3acGRk7owoDT_,sTX7AgQWA:sTX7AgQWARk7owoDT_,xqxIKr6pv:xqxIKr6pvRk7owoDT_},index)=>{sTX7AgQWARk7owoDT_??=true;otvzy3acGRk7owoDT_??=\"\";xqxIKr6pvRk7owoDT_??=\"\";IzHSnieR4Rk7owoDT_??=\"\";HDMgf86GWRk7owoDT_??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Rk7owoDT_-${idRk7owoDT_}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xqxIKr6pv:xqxIKr6pvRk7owoDT_},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wy3mea\",children:[/*#__PURE__*/_jsx(Link,{href:convertFromBoolean(equals(sTX7AgQWARk7owoDT_,true),activeLocale,{otvzy3acGRk7owoDT_,xqxIKr6pvRk7owoDT_}),motionChild:true,nodeId:\"vweEjwiUS\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{background:{alt:\"\",fit:\"fill\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 720px), 50px)`,...toResponsiveImage(N4NsyHwE1Rk7owoDT_)}},rD1vrriR7:{background:{alt:\"\",fit:\"fill\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 720px), 50px)`,...toResponsiveImage(N4NsyHwE1Rk7owoDT_)}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px) / 3, 50px)`,...toResponsiveImage(N4NsyHwE1Rk7owoDT_)},className:\"framer-1bwbpct framer-lux5qc\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h6r93g\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qz3ppo\",\"data-styles-preset\":\"gIOLOGnTI\",style:{\"--framer-text-color\":\"var(--token-250fc1b1-91c5-4e05-a70d-5307a0906613, rgb(8, 6, 53))\"},children:\"State of Data 2025\"})}),className:\"framer-1bxf52b\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:IzHSnieR4Rk7owoDT_,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e1dua0\",\"data-styles-preset\":\"D75dJEuQ0\",children:\"Content\"})}),className:\"framer-1u77sae\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:HDMgf86GWRk7owoDT_,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zakpd0\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean(equals(sTX7AgQWARk7owoDT_,true),activeLocale,{otvzy3acGRk7owoDT_,xqxIKr6pvRk7owoDT_}),implicitPathVariables:undefined},{href:convertFromBoolean(equals(sTX7AgQWARk7owoDT_,true),activeLocale,{otvzy3acGRk7owoDT_,xqxIKr6pvRk7owoDT_}),implicitPathVariables:undefined},{href:convertFromBoolean(equals(sTX7AgQWARk7owoDT_,true),activeLocale,{otvzy3acGRk7owoDT_,xqxIKr6pvRk7owoDT_}),implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gumo3v-container\",nodeId:\"Pp1g5vISD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{i_lKR_QiW:resolvedLinks3[2]},rD1vrriR7:{i_lKR_QiW:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button,{EDLQIJEu7:\"center\",height:\"100%\",i_lKR_QiW:resolvedLinks3[0],id:\"Pp1g5vISD\",iy4y3Sseu:\"regular\",JPfYo5zFm:false,layoutId:\"Pp1g5vISD\",PBLGXKjUf:\"CaretRight\",pJLAaz7XE:false,PObcHjbZX:false,T8GAmzmqd:\"ArrowRight\",UPmw4DicX:\"Learn more\",variant:\"Ng5WVpzko\",VD9nVmndZ:true,width:\"100%\"})})})})})})]})]})})},idRk7owoDT_);})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{height:2156.1},rD1vrriR7:{height:2094.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1558.1,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f373ep-container\",nodeId:\"ogi8itXGE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BackgroundFX,{height:\"100%\",id:\"ogi8itXGE\",layoutId:\"ogi8itXGE\",style:{height:\"100%\",width:\"100%\"},variant:\"Yjw48vt8U\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ua0k62\",\"data-framer-name\":\"Conveyor\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g4sune\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1944,pixelWidth:2420,positionX:\"center\",positionY:\"center\",sizes:\"250px\",src:\"https://framerusercontent.com/images/2kxBceegBmUqrzDqhiIEYTatE0E.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2kxBceegBmUqrzDqhiIEYTatE0E.png?scale-down-to=512 512w,https://framerusercontent.com/images/2kxBceegBmUqrzDqhiIEYTatE0E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2kxBceegBmUqrzDqhiIEYTatE0E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2kxBceegBmUqrzDqhiIEYTatE0E.png 2420w\"},className:\"framer-1gk62gg\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v1igz4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qjnq28\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ii5iay\",\"data-styles-preset\":\"FTZ4ibBoY\",children:\"Proud partner of Conveyor\"})}),className:\"framer-1gzt29x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-539t2g\",\"data-styles-preset\":\"baivUus8L\",style:{\"--framer-text-alignment\":\"left\"},children:\"We believe in products that accelerate your data journey. That\u2019s why we are the incubators of Conveyor, a Data Product development workbench, and the Data Product Portal, an open-source Data Product governance tool.\"})}),className:\"framer-13l479n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17lqmft\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{width:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 720px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10c30k4-container\",nodeId:\"FkofA2Yqo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{EDLQIJEu7:\"center\",height:\"100%\",i_lKR_QiW:\"https://conveyordata.com/\",id:\"FkofA2Yqo\",iy4y3Sseu:\"regular\",JPfYo5zFm:true,layoutId:\"FkofA2Yqo\",PBLGXKjUf:\"CaretRight\",pJLAaz7XE:false,PObcHjbZX:false,T8GAmzmqd:\"ArrowRight\",UPmw4DicX:\"Visit Conveyor\",variant:\"vzPUXRE4R\",VD9nVmndZ:true,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{width:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 720px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kciv1b-container\",nodeId:\"YVI8OsZrY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{EDLQIJEu7:\"center\",height:\"100%\",i_lKR_QiW:\"https://github.com/conveyordata/data-product-portal\",id:\"YVI8OsZrY\",iy4y3Sseu:\"regular\",JPfYo5zFm:true,layoutId:\"YVI8OsZrY\",PBLGXKjUf:\"CaretRight\",pJLAaz7XE:false,PObcHjbZX:false,T8GAmzmqd:\"ArrowRight\",UPmw4DicX:\"Go to Portal\",variant:\"oe057RCwZ\",VD9nVmndZ:false,width:\"100%\"})})})})})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sqx0fh\",\"data-framer-name\":\"Cases\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t3dxrm\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uknh13\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-78obr3\",\"data-styles-preset\":\"bdg7SC7xK\",style:{\"--framer-text-alignment\":\"center\"},children:\"We empower businesses like yours\"})}),className:\"framer-wm88a0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-539t2g\",\"data-styles-preset\":\"baivUus8L\",style:{\"--framer-text-alignment\":\"center\"},children:\"The best companies drive digital process adoption with Dataminded\"})}),className:\"framer-cy3yik\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16xip7a\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"rDzHym_Q6\",data:Cases,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"rDzHym_Q6\",name:\"CkmFtdMUq\",type:\"Identifier\"},{collection:\"rDzHym_Q6\",name:\"i4xx9dp2t\",type:\"Identifier\"},{collection:\"rDzHym_Q6\",name:\"XDKEm7uBt\",type:\"Identifier\"},{collection:\"rDzHym_Q6\",name:\"FEnYADfZN\",type:\"Identifier\"},{collection:\"rDzHym_Q6\",name:\"Cxh_gLPoc\",type:\"Identifier\"},{collection:\"rDzHym_Q6\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"rDzHym_Q6\",name:\"vltbAB1vx\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Luminus\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"rDzHym_Q6\",name:\"vltbAB1vx\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"imec\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"rDzHym_Q6\",name:\"vltbAB1vx\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"biotech company\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({CkmFtdMUq:CkmFtdMUqrDzHym_Q6,Cxh_gLPoc:Cxh_gLPocrDzHym_Q6,FEnYADfZN:FEnYADfZNrDzHym_Q6,i4xx9dp2t:i4xx9dp2trDzHym_Q6,id:idrDzHym_Q6,XDKEm7uBt:XDKEm7uBtrDzHym_Q6},index1)=>{XDKEm7uBtrDzHym_Q6??=\"\";FEnYADfZNrDzHym_Q6??=\"\";Cxh_gLPocrDzHym_Q6??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`rDzHym_Q6-${idrDzHym_Q6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Cxh_gLPoc:Cxh_gLPocrDzHym_Q6},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tcjm4z\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{background:{alt:\"\",fit:\"fill\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 720px)`,...toResponsiveImage(CkmFtdMUqrDzHym_Q6)}},rD1vrriR7:{background:{alt:\"\",fit:\"fill\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px)`,...toResponsiveImage(CkmFtdMUqrDzHym_Q6)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px), 1px)`,...toResponsiveImage(CkmFtdMUqrDzHym_Q6)},className:\"framer-ms6sld\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dui6qr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{background:{alt:\"\",fit:\"fit\",sizes:`min(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 720px) - 48px, (min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 720px) - 48px) / 2)`,...toResponsiveImage(i4xx9dp2trDzHym_Q6),...{positionX:\"left\",positionY:\"center\"}}},rD1vrriR7:{background:{alt:\"\",fit:\"fit\",sizes:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 48px, (min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 48px) / 2)`,...toResponsiveImage(i4xx9dp2trDzHym_Q6),...{positionX:\"left\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px), 1px) - 48px, (max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px), 1px) - 48px) / 2)`,...toResponsiveImage(i4xx9dp2trDzHym_Q6),...{positionX:\"left\",positionY:\"center\"}},className:\"framer-1kr304p\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ogmze\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qz3ppo\",\"data-styles-preset\":\"gIOLOGnTI\",style:{\"--framer-text-color\":\"var(--token-8626f15f-ec8a-4e30-93e6-f12c7a64f1c1, rgb(255, 255, 255))\"},children:\"Data product platform\"})}),className:\"framer-x4qp2d\",\"data-framer-name\":\"Client Name\",fonts:[\"Inter\"],text:XDKEm7uBtrDzHym_Q6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e1dua0\",\"data-styles-preset\":\"D75dJEuQ0\",style:{\"--framer-text-color\":\"var(--token-8626f15f-ec8a-4e30-93e6-f12c7a64f1c1, rgb(255, 255, 255))\"},children:\"Building a data product for transparency, assessing and improving the central data platform\"})}),className:\"framer-125rlrc\",\"data-framer-name\":\"CTA\",fonts:[\"Inter\"],text:FEnYADfZNrDzHym_Q6,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12nq1vq\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Cxh_gLPoc:Cxh_gLPocrDzHym_Q6},webPageId:\"hWEfsSSKi\"},implicitPathVariables:undefined},{href:{pathVariables:{Cxh_gLPoc:Cxh_gLPocrDzHym_Q6},webPageId:\"hWEfsSSKi\"},implicitPathVariables:undefined},{href:{pathVariables:{Cxh_gLPoc:Cxh_gLPocrDzHym_Q6},webPageId:\"hWEfsSSKi\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jc0zd7-container\",nodeId:\"kjiWWDWPr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{i_lKR_QiW:resolvedLinks4[2]},rD1vrriR7:{i_lKR_QiW:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{EDLQIJEu7:\"center\",height:\"100%\",i_lKR_QiW:resolvedLinks4[0],id:\"kjiWWDWPr\",iy4y3Sseu:\"regular\",JPfYo5zFm:false,layoutId:\"kjiWWDWPr\",PBLGXKjUf:\"CaretRight\",pJLAaz7XE:true,PObcHjbZX:false,T8GAmzmqd:\"ArrowRight\",UPmw4DicX:\"Button label\",variant:\"GEHeoukkp\",VD9nVmndZ:true,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nur1pw\"})]})})})})},idrDzHym_Q6);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ir208b\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rO8EvUFBa\"},implicitPathVariables:undefined},{href:{webPageId:\"rO8EvUFBa\"},implicitPathVariables:undefined},{href:{webPageId:\"rO8EvUFBa\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1duvct-container\",nodeId:\"UKkCcdKwr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{i_lKR_QiW:resolvedLinks5[2]},rD1vrriR7:{i_lKR_QiW:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Button,{EDLQIJEu7:\"center\",height:\"100%\",i_lKR_QiW:resolvedLinks5[0],id:\"UKkCcdKwr\",iy4y3Sseu:\"regular\",JPfYo5zFm:false,layoutId:\"UKkCcdKwr\",PBLGXKjUf:\"ArrowLeft\",pJLAaz7XE:false,PObcHjbZX:false,T8GAmzmqd:\"ArrowRight\",UPmw4DicX:\"Discover all Cases\",variant:\"Ng5WVpzko\",VD9nVmndZ:true,width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mw9mj2-container\",nodeId:\"USWrnokZh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BackgroundFX,{height:\"100%\",id:\"USWrnokZh\",layoutId:\"USWrnokZh\",style:{height:\"100%\",width:\"100%\"},variant:\"Yjw48vt8U\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sl2lr5\",\"data-framer-name\":\"Contact\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1da3boe\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a4yphv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7db57h\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ii5iay\",\"data-styles-preset\":\"FTZ4ibBoY\",children:\"Supercharge your business with Dataminded\"})}),className:\"framer-iqxkcu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-539t2g\",\"data-styles-preset\":\"baivUus8L\",style:{\"--framer-text-alignment\":\"left\"},children:\"Let's make your data delightful\"})}),className:\"framer-1wterhh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-trejkv\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"X1WWo64UW\"},implicitPathVariables:undefined},{href:{webPageId:\"X1WWo64UW\"},implicitPathVariables:undefined},{href:{webPageId:\"X1WWo64UW\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{width:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 720px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13oxd1v-container\",nodeId:\"vMWmUxI_G\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{i_lKR_QiW:resolvedLinks6[2],style:{width:\"100%\"}},rD1vrriR7:{i_lKR_QiW:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(Button,{EDLQIJEu7:\"center\",height:\"100%\",i_lKR_QiW:resolvedLinks6[0],id:\"vMWmUxI_G\",iy4y3Sseu:\"regular\",JPfYo5zFm:false,layoutId:\"vMWmUxI_G\",PBLGXKjUf:\"CaretRight\",pJLAaz7XE:false,PObcHjbZX:false,T8GAmzmqd:\"ArrowRight\",UPmw4DicX:\"Learn more\",variant:\"oe057RCwZ\",VD9nVmndZ:false,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cbzlaSe7I\"},implicitPathVariables:undefined},{href:{webPageId:\"cbzlaSe7I\"},implicitPathVariables:undefined},{href:{webPageId:\"cbzlaSe7I\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{width:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 720px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nvv16z-container\",nodeId:\"iD3nAzNo0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{i_lKR_QiW:resolvedLinks7[2],style:{width:\"100%\"}},rD1vrriR7:{i_lKR_QiW:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(Button,{EDLQIJEu7:\"center\",height:\"100%\",i_lKR_QiW:resolvedLinks7[0],id:\"iD3nAzNo0\",iy4y3Sseu:\"regular\",JPfYo5zFm:false,layoutId:\"iD3nAzNo0\",PBLGXKjUf:\"CaretRight\",pJLAaz7XE:false,PObcHjbZX:false,T8GAmzmqd:\"ArrowRight\",UPmw4DicX:\"Contact Us\",variant:\"vzPUXRE4R\",VD9nVmndZ:true,width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:507,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 720px)`,src:\"https://framerusercontent.com/images/RiLk1kDrrmouD0Bn6D52Y51Z2g.png\",srcSet:\"https://framerusercontent.com/images/RiLk1kDrrmouD0Bn6D52Y51Z2g.png?scale-down-to=512 512w,https://framerusercontent.com/images/RiLk1kDrrmouD0Bn6D52Y51Z2g.png 741w\"}},rD1vrriR7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:507,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 32px) / 2, 1px)`,src:\"https://framerusercontent.com/images/RiLk1kDrrmouD0Bn6D52Y51Z2g.png\",srcSet:\"https://framerusercontent.com/images/RiLk1kDrrmouD0Bn6D52Y51Z2g.png?scale-down-to=512 512w,https://framerusercontent.com/images/RiLk1kDrrmouD0Bn6D52Y51Z2g.png 741w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:507,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 32px) / 2, 1px)`,src:\"https://framerusercontent.com/images/RiLk1kDrrmouD0Bn6D52Y51Z2g.png\",srcSet:\"https://framerusercontent.com/images/RiLk1kDrrmouD0Bn6D52Y51Z2g.png?scale-down-to=512 512w,https://framerusercontent.com/images/RiLk1kDrrmouD0Bn6D52Y51Z2g.png 741w\"},className:\"framer-1fsg5a1\",\"data-framer-name\":\"Image\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dtwrhx\",\"data-framer-name\":\"Newsletter\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:375,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jajgbz-container\",nodeId:\"xcRDBlfK_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{variant:\"e_fjn6pUm\"},rD1vrriR7:{variant:\"ZX0wXxM4_\"}},children:/*#__PURE__*/_jsx(Newsletter,{height:\"100%\",id:\"xcRDBlfK_\",layoutId:\"xcRDBlfK_\",style:{width:\"100%\"},variant:\"Qxc753CtL\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:515.5,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-s0b2wm-container\",nodeId:\"oMr9uXM97\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BackgroundFX,{height:\"100%\",id:\"oMr9uXM97\",layoutId:\"oMr9uXM97\",style:{height:\"100%\",width:\"100%\"},variant:\"Yjw48vt8U\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:489,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dnt7c2-container\",nodeId:\"yCeNyFRCs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CsjQmIHh9:{variant:\"MHQ9C_a97\"},rD1vrriR7:{variant:\"Q4209twB6\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"yCeNyFRCs\",layoutId:\"yCeNyFRCs\",style:{width:\"100%\"},variant:\"sZSdekf2I\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Q0gjB.framer-lux5qc, .framer-Q0gjB .framer-lux5qc { display: block; }\",\".framer-Q0gjB.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-c1c5ddea-6586-4e4d-b934-5efe75478420, #f6f5fd); 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-Q0gjB .framer-6t4sl4-container { flex: none; height: 78px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-Q0gjB .framer-1fafh6a { flex: none; height: 78px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1ea8b1c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1fdwo47 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 60vh; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-ks4an { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Q0gjB .framer-9r4pzh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-Q0gjB .framer-1jrl50m, .framer-Q0gjB .framer-11ogmze { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-cdmiv7, .framer-Q0gjB .framer-5m3nkr, .framer-Q0gjB .framer-1128e6m, .framer-Q0gjB .framer-gttpkx, .framer-Q0gjB .framer-1gzt29x, .framer-Q0gjB .framer-wm88a0, .framer-Q0gjB .framer-iqxkcu { --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-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q0gjB .framer-2strab, .framer-Q0gjB .framer-ou9zl, .framer-Q0gjB .framer-fx4562, .framer-Q0gjB .framer-5mtrf1, .framer-Q0gjB .framer-1dl8251, .framer-Q0gjB .framer-121hoxr, .framer-Q0gjB .framer-1rzwn05, .framer-Q0gjB .framer-1dv5bqe, .framer-Q0gjB .framer-ef2hzw, .framer-Q0gjB .framer-138hc4q, .framer-Q0gjB .framer-13l479n, .framer-Q0gjB .framer-cy3yik, .framer-Q0gjB .framer-1wterhh { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q0gjB .framer-ia3mxo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-6pxksv-container, .framer-Q0gjB .framer-13v3uwj-container, .framer-Q0gjB .framer-dvzw7a-container, .framer-Q0gjB .framer-gumo3v-container, .framer-Q0gjB .framer-10c30k4-container, .framer-Q0gjB .framer-kciv1b-container, .framer-Q0gjB .framer-1jc0zd7-container, .framer-Q0gjB .framer-1duvct-container, .framer-Q0gjB .framer-13oxd1v-container, .framer-Q0gjB .framer-nvv16z-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Q0gjB .framer-15gbit6 { align-content: center; align-items: center; aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 420px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q0gjB .framer-9azyxt { 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: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1mijbr, .framer-Q0gjB .framer-6yjt6g { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Q0gjB .framer-k3b518 { --border-bottom-width: 1px; --border-color: var(--token-d6172f0c-c2c8-495b-bdae-3212b0d50384, #ddd8f8); --border-left-width: 0px; --border-right-width: 0px; --border-style: dashed; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-l69km7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Q0gjB .framer-yx3nqp, .framer-Q0gjB .framer-16phb9k, .framer-Q0gjB .framer-13tkv0p, .framer-Q0gjB .framer-1r1jfnb, .framer-Q0gjB .framer-1q323g9, .framer-Q0gjB .framer-1c89esv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Q0gjB .framer-1efdqu5, .framer-Q0gjB .framer-1cn6psz, .framer-Q0gjB .framer-dytz7r, .framer-Q0gjB .framer-1nzb18a, .framer-Q0gjB .framer-lbfxic, .framer-Q0gjB .framer-10qb7h9 { flex: none; height: 32px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-j58j9x { 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: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1skyjq7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 34px 40px 34px 40px; position: relative; width: 120%; }\",\".framer-Q0gjB .framer-m7al8d-container { flex: none; height: 200px; position: relative; width: 1408px; }\",\".framer-Q0gjB .framer-xzsnif, .framer-Q0gjB .framer-ur4v4c { --border-bottom-width: 1px; --border-color: var(--token-6308e691-398a-4d91-a18a-47223703ebf6, #eeecfc); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-8626f15f-ec8a-4e30-93e6-f12c7a64f1c1, #ffffff); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 280px; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 600px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q0gjB .framer-1pwn2sa, .framer-Q0gjB .framer-1j5oaq8 { flex: none; height: 248px; position: relative; text-decoration: none; width: 459px; }\",\".framer-Q0gjB .framer-1yah3ck { --border-bottom-width: 1px; --border-color: var(--token-6308e691-398a-4d91-a18a-47223703ebf6, #eeecfc); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-8626f15f-ec8a-4e30-93e6-f12c7a64f1c1, #ffffff); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 280px; justify-content: center; overflow: hidden; padding: 32px; position: relative; text-decoration: none; width: 600px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q0gjB .framer-1qs9ju0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 362px; }\",\".framer-Q0gjB .framer-1cribme { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Q0gjB .framer-2k4bym { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: min-content; }\",\".framer-Q0gjB .framer-vjivo { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Q0gjB .framer-cnkr81 { align-content: center; align-items: center; background-color: var(--token-6308e691-398a-4d91-a18a-47223703ebf6, #eeecfc); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 60px 0px 60px 0px; position: relative; scroll-margin-top: 78px; width: 100%; }\",\".framer-Q0gjB .framer-nu0lsy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Q0gjB .framer-1iszn4d, .framer-Q0gjB .framer-1uknh13 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-fjohy2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1lus51f { align-content: center; align-items: center; background-color: var(--token-d6172f0c-c2c8-495b-bdae-3212b0d50384, #ddd8f8); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q0gjB .framer-153oe8z, .framer-Q0gjB .framer-1t2c4ra { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1x0oa4l, .framer-Q0gjB .framer-olsown { -webkit-user-select: none; flex: none; height: 280px; pointer-events: none; position: relative; user-select: none; width: 100%; z-index: 1; }\",\".framer-Q0gjB .framer-1daefzm, .framer-Q0gjB .framer-mq5fd2, .framer-Q0gjB .framer-1a7tri5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1n5kr36, .framer-Q0gjB .framer-topn0, .framer-Q0gjB .framer-1n9refq { align-content: center; align-items: center; background-color: var(--token-8626f15f-ec8a-4e30-93e6-f12c7a64f1c1, #ffffff); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 36px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 36px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q0gjB .framer-7trox9-container, .framer-Q0gjB .framer-bbcabs-container, .framer-Q0gjB .framer-1yo2gh3-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-Q0gjB .framer-17kib2b { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",'.framer-Q0gjB .framer-bfe46j { background: linear-gradient(180deg, var(--token-efe260da-e98d-4c3c-ae07-18338de78119, #e9edff) /* {\"name\":\"Tertiary / 500\"} */ 17.71361204954955%, rgba(232, 236, 255, 0) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }',\".framer-Q0gjB .framer-dem1p0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; z-index: 2; }\",\".framer-Q0gjB .framer-1bjzibf { align-content: center; align-items: center; background-color: var(--token-035e6994-5e28-44d8-9dc6-d4660cd5567b, #543edc); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q0gjB .framer-1271ho5 { -webkit-user-select: none; flex: none; height: 280px; mix-blend-mode: luminosity; pointer-events: none; position: relative; user-select: none; width: 100%; z-index: 1; }\",\".framer-Q0gjB .framer-9f0syu { align-content: center; align-items: center; background-color: var(--token-c1c5ddea-6586-4e4d-b934-5efe75478420, #f6f5fd); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1ptxa2f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Q0gjB .framer-19p6j4k { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1b1mhkf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Q0gjB .framer-14mreq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Q0gjB .framer-1srtljc { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1wy3mea { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 24px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1bwbpct { aspect-ratio: 1.7785714285714285 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 210px); overflow: hidden; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q0gjB .framer-h6r93g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1bxf52b, .framer-Q0gjB .framer-1u77sae, .framer-Q0gjB .framer-x4qp2d, .framer-Q0gjB .framer-125rlrc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q0gjB .framer-zakpd0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1f373ep-container { bottom: 0px; flex: none; left: 0px; mix-blend-mode: overlay; opacity: 0.5; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-Q0gjB .framer-1ua0k62 { align-content: center; align-items: center; background-color: var(--token-6308e691-398a-4d91-a18a-47223703ebf6, #eeecfc); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1g4sune, .framer-Q0gjB .framer-1da3boe { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Q0gjB .framer-1gk62gg { align-content: center; align-items: center; aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 188px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 250px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q0gjB .framer-v1igz4, .framer-Q0gjB .framer-1a4yphv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Q0gjB .framer-1qjnq28, .framer-Q0gjB .framer-7db57h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-17lqmft, .framer-Q0gjB .framer-trejkv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Q0gjB .framer-1sqx0fh { align-content: center; align-items: center; background-color: var(--token-c1c5ddea-6586-4e4d-b934-5efe75478420, #f6f5fd); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1t3dxrm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-Q0gjB .framer-16xip7a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1tcjm4z { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-Q0gjB .framer-ms6sld { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 320px; justify-content: flex-start; padding: 24px; position: relative; width: 1px; }\",\".framer-Q0gjB .framer-1dui6qr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Q0gjB .framer-1kr304p { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 40px; max-width: 50%; mix-blend-mode: multiply; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-12nq1vq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Q0gjB .framer-1nur1pw { background-color: var(--token-250fc1b1-91c5-4e05-a70d-5307a0906613, #080635); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 0px; flex: none; left: 0px; opacity: 0.7; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-Q0gjB .framer-1ir208b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-mw9mj2-container { bottom: 40px; flex: none; height: 400px; left: 0px; mix-blend-mode: overlay; position: absolute; right: 0px; z-index: 0; }\",\".framer-Q0gjB .framer-sl2lr5 { align-content: center; align-items: center; background-color: var(--token-6308e691-398a-4d91-a18a-47223703ebf6, #eeecfc); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-Q0gjB .framer-1fsg5a1 { align-content: center; align-items: center; aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 438px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q0gjB .framer-1dtwrhx { align-content: center; align-items: center; background-color: var(--token-035e6994-5e28-44d8-9dc6-d4660cd5567b, #543edc); 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-Q0gjB .framer-1jajgbz-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-Q0gjB .framer-s0b2wm-container { bottom: -40px; flex: none; left: 0px; mix-blend-mode: screen; opacity: 0.1; position: absolute; right: 0px; top: -100px; z-index: 0; }\",\".framer-Q0gjB .framer-dnt7c2-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q0gjB.framer-72rtr7, .framer-Q0gjB .framer-1ea8b1c, .framer-Q0gjB .framer-1fdwo47, .framer-Q0gjB .framer-ks4an, .framer-Q0gjB .framer-9r4pzh, .framer-Q0gjB .framer-1jrl50m, .framer-Q0gjB .framer-ia3mxo, .framer-Q0gjB .framer-15gbit6, .framer-Q0gjB .framer-9azyxt, .framer-Q0gjB .framer-1mijbr, .framer-Q0gjB .framer-k3b518, .framer-Q0gjB .framer-l69km7, .framer-Q0gjB .framer-yx3nqp, .framer-Q0gjB .framer-16phb9k, .framer-Q0gjB .framer-13tkv0p, .framer-Q0gjB .framer-1r1jfnb, .framer-Q0gjB .framer-1q323g9, .framer-Q0gjB .framer-1c89esv, .framer-Q0gjB .framer-j58j9x, .framer-Q0gjB .framer-6yjt6g, .framer-Q0gjB .framer-1skyjq7, .framer-Q0gjB .framer-xzsnif, .framer-Q0gjB .framer-1yah3ck, .framer-Q0gjB .framer-1qs9ju0, .framer-Q0gjB .framer-1cribme, .framer-Q0gjB .framer-2k4bym, .framer-Q0gjB .framer-ur4v4c, .framer-Q0gjB .framer-cnkr81, .framer-Q0gjB .framer-nu0lsy, .framer-Q0gjB .framer-1iszn4d, .framer-Q0gjB .framer-fjohy2, .framer-Q0gjB .framer-1lus51f, .framer-Q0gjB .framer-153oe8z, .framer-Q0gjB .framer-1daefzm, .framer-Q0gjB .framer-1n5kr36, .framer-Q0gjB .framer-17kib2b, .framer-Q0gjB .framer-dem1p0, .framer-Q0gjB .framer-mq5fd2, .framer-Q0gjB .framer-topn0, .framer-Q0gjB .framer-1bjzibf, .framer-Q0gjB .framer-1t2c4ra, .framer-Q0gjB .framer-1a7tri5, .framer-Q0gjB .framer-1n9refq, .framer-Q0gjB .framer-9f0syu, .framer-Q0gjB .framer-1ptxa2f, .framer-Q0gjB .framer-19p6j4k, .framer-Q0gjB .framer-1b1mhkf, .framer-Q0gjB .framer-14mreq, .framer-Q0gjB .framer-1wy3mea, .framer-Q0gjB .framer-h6r93g, .framer-Q0gjB .framer-zakpd0, .framer-Q0gjB .framer-1ua0k62, .framer-Q0gjB .framer-1g4sune, .framer-Q0gjB .framer-1gk62gg, .framer-Q0gjB .framer-v1igz4, .framer-Q0gjB .framer-1qjnq28, .framer-Q0gjB .framer-17lqmft, .framer-Q0gjB .framer-1sqx0fh, .framer-Q0gjB .framer-1t3dxrm, .framer-Q0gjB .framer-1uknh13, .framer-Q0gjB .framer-16xip7a, .framer-Q0gjB .framer-1tcjm4z, .framer-Q0gjB .framer-ms6sld, .framer-Q0gjB .framer-1dui6qr, .framer-Q0gjB .framer-11ogmze, .framer-Q0gjB .framer-12nq1vq, .framer-Q0gjB .framer-1ir208b, .framer-Q0gjB .framer-sl2lr5, .framer-Q0gjB .framer-1da3boe, .framer-Q0gjB .framer-1a4yphv, .framer-Q0gjB .framer-7db57h, .framer-Q0gjB .framer-trejkv, .framer-Q0gjB .framer-1fsg5a1, .framer-Q0gjB .framer-1dtwrhx { gap: 0px; } .framer-Q0gjB.framer-72rtr7 > *, .framer-Q0gjB .framer-1ea8b1c > *, .framer-Q0gjB .framer-1lus51f > *, .framer-Q0gjB .framer-17kib2b > *, .framer-Q0gjB .framer-1bjzibf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Q0gjB.framer-72rtr7 > :first-child, .framer-Q0gjB .framer-1ea8b1c > :first-child, .framer-Q0gjB .framer-9r4pzh > :first-child, .framer-Q0gjB .framer-1jrl50m > :first-child, .framer-Q0gjB .framer-15gbit6 > :first-child, .framer-Q0gjB .framer-1mijbr > :first-child, .framer-Q0gjB .framer-l69km7 > :first-child, .framer-Q0gjB .framer-yx3nqp > :first-child, .framer-Q0gjB .framer-16phb9k > :first-child, .framer-Q0gjB .framer-13tkv0p > :first-child, .framer-Q0gjB .framer-1r1jfnb > :first-child, .framer-Q0gjB .framer-1q323g9 > :first-child, .framer-Q0gjB .framer-1c89esv > :first-child, .framer-Q0gjB .framer-6yjt6g > :first-child, .framer-Q0gjB .framer-xzsnif > :first-child, .framer-Q0gjB .framer-1yah3ck > :first-child, .framer-Q0gjB .framer-1qs9ju0 > :first-child, .framer-Q0gjB .framer-ur4v4c > :first-child, .framer-Q0gjB .framer-nu0lsy > :first-child, .framer-Q0gjB .framer-1iszn4d > :first-child, .framer-Q0gjB .framer-1lus51f > :first-child, .framer-Q0gjB .framer-153oe8z > :first-child, .framer-Q0gjB .framer-17kib2b > :first-child, .framer-Q0gjB .framer-dem1p0 > :first-child, .framer-Q0gjB .framer-1bjzibf > :first-child, .framer-Q0gjB .framer-1t2c4ra > :first-child, .framer-Q0gjB .framer-9f0syu > :first-child, .framer-Q0gjB .framer-1ptxa2f > :first-child, .framer-Q0gjB .framer-1b1mhkf > :first-child, .framer-Q0gjB .framer-1wy3mea > :first-child, .framer-Q0gjB .framer-h6r93g > :first-child, .framer-Q0gjB .framer-1gk62gg > :first-child, .framer-Q0gjB .framer-v1igz4 > :first-child, .framer-Q0gjB .framer-1qjnq28 > :first-child, .framer-Q0gjB .framer-1t3dxrm > :first-child, .framer-Q0gjB .framer-1uknh13 > :first-child, .framer-Q0gjB .framer-ms6sld > :first-child, .framer-Q0gjB .framer-1dui6qr > :first-child, .framer-Q0gjB .framer-11ogmze > :first-child, .framer-Q0gjB .framer-1ir208b > :first-child, .framer-Q0gjB .framer-1a4yphv > :first-child, .framer-Q0gjB .framer-7db57h > :first-child, .framer-Q0gjB .framer-1fsg5a1 > :first-child, .framer-Q0gjB .framer-1dtwrhx > :first-child { margin-top: 0px; } .framer-Q0gjB.framer-72rtr7 > :last-child, .framer-Q0gjB .framer-1ea8b1c > :last-child, .framer-Q0gjB .framer-9r4pzh > :last-child, .framer-Q0gjB .framer-1jrl50m > :last-child, .framer-Q0gjB .framer-15gbit6 > :last-child, .framer-Q0gjB .framer-1mijbr > :last-child, .framer-Q0gjB .framer-l69km7 > :last-child, .framer-Q0gjB .framer-yx3nqp > :last-child, .framer-Q0gjB .framer-16phb9k > :last-child, .framer-Q0gjB .framer-13tkv0p > :last-child, .framer-Q0gjB .framer-1r1jfnb > :last-child, .framer-Q0gjB .framer-1q323g9 > :last-child, .framer-Q0gjB .framer-1c89esv > :last-child, .framer-Q0gjB .framer-6yjt6g > :last-child, .framer-Q0gjB .framer-xzsnif > :last-child, .framer-Q0gjB .framer-1yah3ck > :last-child, .framer-Q0gjB .framer-1qs9ju0 > :last-child, .framer-Q0gjB .framer-ur4v4c > :last-child, .framer-Q0gjB .framer-nu0lsy > :last-child, .framer-Q0gjB .framer-1iszn4d > :last-child, .framer-Q0gjB .framer-1lus51f > :last-child, .framer-Q0gjB .framer-153oe8z > :last-child, .framer-Q0gjB .framer-17kib2b > :last-child, .framer-Q0gjB .framer-dem1p0 > :last-child, .framer-Q0gjB .framer-1bjzibf > :last-child, .framer-Q0gjB .framer-1t2c4ra > :last-child, .framer-Q0gjB .framer-9f0syu > :last-child, .framer-Q0gjB .framer-1ptxa2f > :last-child, .framer-Q0gjB .framer-1b1mhkf > :last-child, .framer-Q0gjB .framer-1wy3mea > :last-child, .framer-Q0gjB .framer-h6r93g > :last-child, .framer-Q0gjB .framer-1gk62gg > :last-child, .framer-Q0gjB .framer-v1igz4 > :last-child, .framer-Q0gjB .framer-1qjnq28 > :last-child, .framer-Q0gjB .framer-1t3dxrm > :last-child, .framer-Q0gjB .framer-1uknh13 > :last-child, .framer-Q0gjB .framer-ms6sld > :last-child, .framer-Q0gjB .framer-1dui6qr > :last-child, .framer-Q0gjB .framer-11ogmze > :last-child, .framer-Q0gjB .framer-1ir208b > :last-child, .framer-Q0gjB .framer-1a4yphv > :last-child, .framer-Q0gjB .framer-7db57h > :last-child, .framer-Q0gjB .framer-1fsg5a1 > :last-child, .framer-Q0gjB .framer-1dtwrhx > :last-child { margin-bottom: 0px; } .framer-Q0gjB .framer-1fdwo47 > *, .framer-Q0gjB .framer-9azyxt > *, .framer-Q0gjB .framer-j58j9x > *, .framer-Q0gjB .framer-2k4bym > *, .framer-Q0gjB .framer-cnkr81 > *, .framer-Q0gjB .framer-1ua0k62 > *, .framer-Q0gjB .framer-1sqx0fh > *, .framer-Q0gjB .framer-12nq1vq > *, .framer-Q0gjB .framer-sl2lr5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Q0gjB .framer-1fdwo47 > :first-child, .framer-Q0gjB .framer-ks4an > :first-child, .framer-Q0gjB .framer-ia3mxo > :first-child, .framer-Q0gjB .framer-9azyxt > :first-child, .framer-Q0gjB .framer-k3b518 > :first-child, .framer-Q0gjB .framer-j58j9x > :first-child, .framer-Q0gjB .framer-1skyjq7 > :first-child, .framer-Q0gjB .framer-1cribme > :first-child, .framer-Q0gjB .framer-2k4bym > :first-child, .framer-Q0gjB .framer-cnkr81 > :first-child, .framer-Q0gjB .framer-fjohy2 > :first-child, .framer-Q0gjB .framer-1daefzm > :first-child, .framer-Q0gjB .framer-1n5kr36 > :first-child, .framer-Q0gjB .framer-mq5fd2 > :first-child, .framer-Q0gjB .framer-topn0 > :first-child, .framer-Q0gjB .framer-1a7tri5 > :first-child, .framer-Q0gjB .framer-1n9refq > :first-child, .framer-Q0gjB .framer-19p6j4k > :first-child, .framer-Q0gjB .framer-14mreq > :first-child, .framer-Q0gjB .framer-zakpd0 > :first-child, .framer-Q0gjB .framer-1ua0k62 > :first-child, .framer-Q0gjB .framer-1g4sune > :first-child, .framer-Q0gjB .framer-17lqmft > :first-child, .framer-Q0gjB .framer-1sqx0fh > :first-child, .framer-Q0gjB .framer-16xip7a > :first-child, .framer-Q0gjB .framer-1tcjm4z > :first-child, .framer-Q0gjB .framer-12nq1vq > :first-child, .framer-Q0gjB .framer-sl2lr5 > :first-child, .framer-Q0gjB .framer-1da3boe > :first-child, .framer-Q0gjB .framer-trejkv > :first-child { margin-left: 0px; } .framer-Q0gjB .framer-1fdwo47 > :last-child, .framer-Q0gjB .framer-ks4an > :last-child, .framer-Q0gjB .framer-ia3mxo > :last-child, .framer-Q0gjB .framer-9azyxt > :last-child, .framer-Q0gjB .framer-k3b518 > :last-child, .framer-Q0gjB .framer-j58j9x > :last-child, .framer-Q0gjB .framer-1skyjq7 > :last-child, .framer-Q0gjB .framer-1cribme > :last-child, .framer-Q0gjB .framer-2k4bym > :last-child, .framer-Q0gjB .framer-cnkr81 > :last-child, .framer-Q0gjB .framer-fjohy2 > :last-child, .framer-Q0gjB .framer-1daefzm > :last-child, .framer-Q0gjB .framer-1n5kr36 > :last-child, .framer-Q0gjB .framer-mq5fd2 > :last-child, .framer-Q0gjB .framer-topn0 > :last-child, .framer-Q0gjB .framer-1a7tri5 > :last-child, .framer-Q0gjB .framer-1n9refq > :last-child, .framer-Q0gjB .framer-19p6j4k > :last-child, .framer-Q0gjB .framer-14mreq > :last-child, .framer-Q0gjB .framer-zakpd0 > :last-child, .framer-Q0gjB .framer-1ua0k62 > :last-child, .framer-Q0gjB .framer-1g4sune > :last-child, .framer-Q0gjB .framer-17lqmft > :last-child, .framer-Q0gjB .framer-1sqx0fh > :last-child, .framer-Q0gjB .framer-16xip7a > :last-child, .framer-Q0gjB .framer-1tcjm4z > :last-child, .framer-Q0gjB .framer-12nq1vq > :last-child, .framer-Q0gjB .framer-sl2lr5 > :last-child, .framer-Q0gjB .framer-1da3boe > :last-child, .framer-Q0gjB .framer-trejkv > :last-child { margin-right: 0px; } .framer-Q0gjB .framer-ks4an > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-Q0gjB .framer-9r4pzh > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-Q0gjB .framer-1jrl50m > *, .framer-Q0gjB .framer-l69km7 > *, .framer-Q0gjB .framer-h6r93g > *, .framer-Q0gjB .framer-11ogmze > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Q0gjB .framer-ia3mxo > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-Q0gjB .framer-15gbit6 > *, .framer-Q0gjB .framer-1gk62gg > *, .framer-Q0gjB .framer-1fsg5a1 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Q0gjB .framer-1mijbr > *, .framer-Q0gjB .framer-6yjt6g > *, .framer-Q0gjB .framer-v1igz4 > *, .framer-Q0gjB .framer-1a4yphv > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Q0gjB .framer-k3b518 > *, .framer-Q0gjB .framer-1cribme > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Q0gjB .framer-yx3nqp > *, .framer-Q0gjB .framer-16phb9k > *, .framer-Q0gjB .framer-13tkv0p > *, .framer-Q0gjB .framer-1r1jfnb > *, .framer-Q0gjB .framer-1q323g9 > *, .framer-Q0gjB .framer-1c89esv > *, .framer-Q0gjB .framer-9f0syu > *, .framer-Q0gjB .framer-1ir208b > *, .framer-Q0gjB .framer-1dtwrhx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Q0gjB .framer-1skyjq7 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-Q0gjB .framer-xzsnif > *, .framer-Q0gjB .framer-1yah3ck > *, .framer-Q0gjB .framer-ur4v4c > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Q0gjB .framer-1qs9ju0 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Q0gjB .framer-nu0lsy > *, .framer-Q0gjB .framer-1t3dxrm > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Q0gjB .framer-1iszn4d > *, .framer-Q0gjB .framer-1b1mhkf > *, .framer-Q0gjB .framer-1uknh13 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-Q0gjB .framer-fjohy2 > *, .framer-Q0gjB .framer-16xip7a > *, .framer-Q0gjB .framer-1tcjm4z > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Q0gjB .framer-153oe8z > *, .framer-Q0gjB .framer-dem1p0 > *, .framer-Q0gjB .framer-1t2c4ra > *, .framer-Q0gjB .framer-1qjnq28 > *, .framer-Q0gjB .framer-7db57h > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Q0gjB .framer-1daefzm > *, .framer-Q0gjB .framer-1n5kr36 > *, .framer-Q0gjB .framer-mq5fd2 > *, .framer-Q0gjB .framer-topn0 > *, .framer-Q0gjB .framer-1a7tri5 > *, .framer-Q0gjB .framer-1n9refq > *, .framer-Q0gjB .framer-14mreq > *, .framer-Q0gjB .framer-zakpd0 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Q0gjB .framer-1ptxa2f > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Q0gjB .framer-19p6j4k > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Q0gjB .framer-1wy3mea > *, .framer-Q0gjB .framer-ms6sld > *, .framer-Q0gjB .framer-1dui6qr > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Q0gjB .framer-1g4sune > *, .framer-Q0gjB .framer-1da3boe > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-Q0gjB .framer-17lqmft > *, .framer-Q0gjB .framer-trejkv > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-Q0gjB[data-border=\"true\"]::after, .framer-Q0gjB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-Q0gjB.framer-72rtr7 { width: 810px; } .framer-Q0gjB .framer-6t4sl4-container { height: auto; right: unset; width: 100%; } .framer-Q0gjB .framer-1fdwo47 { min-height: 30vh; padding: 20px 0px 20px 0px; } .framer-Q0gjB .framer-ks4an { gap: 40px; max-width: 720px; } .framer-Q0gjB .framer-9r4pzh { order: 0; } .framer-Q0gjB .framer-ia3mxo { flex-wrap: wrap; } .framer-Q0gjB .framer-15gbit6 { height: var(--framer-aspect-ratio-supported, 255px); order: 1; } .framer-Q0gjB .framer-9azyxt, .framer-Q0gjB .framer-j58j9x { padding: 20px 0px 20px 0px; } .framer-Q0gjB .framer-1mijbr, .framer-Q0gjB .framer-6yjt6g, .framer-Q0gjB .framer-nu0lsy, .framer-Q0gjB .framer-1ptxa2f, .framer-Q0gjB .framer-1g4sune, .framer-Q0gjB .framer-1t3dxrm, .framer-Q0gjB .framer-1da3boe { max-width: 720px; } .framer-Q0gjB .framer-1skyjq7 { gap: 37px; padding: 80px 40px 80px 40px; } .framer-Q0gjB .framer-cnkr81, .framer-Q0gjB .framer-1ua0k62, .framer-Q0gjB .framer-1sqx0fh { padding: 40px 0px 40px 0px; } .framer-Q0gjB .framer-fjohy2 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); } .framer-Q0gjB .framer-1lus51f, .framer-Q0gjB .framer-17kib2b, .framer-Q0gjB .framer-1bjzibf { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-Q0gjB .framer-9f0syu { padding: 80px 0px 80px 0px; } .framer-Q0gjB .framer-1srtljc { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-Q0gjB .framer-1bwbpct { height: var(--framer-aspect-ratio-supported, 405px); } .framer-Q0gjB .framer-16xip7a { flex-direction: column; } .framer-Q0gjB .framer-1tcjm4z { flex: none; width: 100%; } .framer-Q0gjB .framer-1fsg5a1 { height: var(--framer-aspect-ratio-supported, 258px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q0gjB .framer-ks4an, .framer-Q0gjB .framer-1skyjq7, .framer-Q0gjB .framer-fjohy2, .framer-Q0gjB .framer-16xip7a { gap: 0px; } .framer-Q0gjB .framer-ks4an > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Q0gjB .framer-ks4an > :first-child, .framer-Q0gjB .framer-1skyjq7 > :first-child { margin-left: 0px; } .framer-Q0gjB .framer-ks4an > :last-child, .framer-Q0gjB .framer-1skyjq7 > :last-child { margin-right: 0px; } .framer-Q0gjB .framer-1skyjq7 > * { margin: 0px; margin-left: calc(37px / 2); margin-right: calc(37px / 2); } .framer-Q0gjB .framer-fjohy2 > *, .framer-Q0gjB .framer-fjohy2 > :first-child, .framer-Q0gjB .framer-fjohy2 > :last-child { margin: 0px; } .framer-Q0gjB .framer-16xip7a > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Q0gjB .framer-16xip7a > :first-child { margin-top: 0px; } .framer-Q0gjB .framer-16xip7a > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-Q0gjB.framer-72rtr7 { width: 390px; } .framer-Q0gjB .framer-6t4sl4-container { height: auto; right: unset; width: 100%; } .framer-Q0gjB .framer-1fdwo47 { padding: 0px 24px 0px 24px; } .framer-Q0gjB .framer-ks4an { flex-direction: column; gap: 40px; max-width: 720px; } .framer-Q0gjB .framer-9r4pzh { flex: none; order: 0; width: 100%; } .framer-Q0gjB .framer-ia3mxo { flex-wrap: wrap; } .framer-Q0gjB .framer-15gbit6 { flex: none; height: var(--framer-aspect-ratio-supported, 257px); order: 1; width: 100%; } .framer-Q0gjB .framer-9azyxt, .framer-Q0gjB .framer-j58j9x, .framer-Q0gjB .framer-cnkr81 { padding: 24px; } .framer-Q0gjB .framer-1mijbr, .framer-Q0gjB .framer-6yjt6g, .framer-Q0gjB .framer-nu0lsy, .framer-Q0gjB .framer-1ptxa2f, .framer-Q0gjB .framer-1t3dxrm { max-width: 720px; } .framer-Q0gjB .framer-k3b518 { align-content: unset; align-items: unset; display: grid; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); padding: 24px 0px 24px 0px; } .framer-Q0gjB .framer-l69km7 { align-self: start; flex: none; flex-wrap: wrap; grid-column: auto / span 2; height: 100%; justify-self: start; width: 100%; } .framer-Q0gjB .framer-yx3nqp, .framer-Q0gjB .framer-16phb9k, .framer-Q0gjB .framer-13tkv0p, .framer-Q0gjB .framer-1r1jfnb, .framer-Q0gjB .framer-1q323g9, .framer-Q0gjB .framer-1c89esv, .framer-Q0gjB .framer-1lus51f, .framer-Q0gjB .framer-17kib2b, .framer-Q0gjB .framer-1bjzibf { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-Q0gjB .framer-1skyjq7 { flex-direction: column; gap: 0px; padding: 60px 20px 60px 20px; } .framer-Q0gjB .framer-fjohy2 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-Q0gjB .framer-1x0oa4l, .framer-Q0gjB .framer-olsown, .framer-Q0gjB .framer-1271ho5 { height: 240px; } .framer-Q0gjB .framer-9f0syu { padding: 80px 24px 80px 24px; } .framer-Q0gjB .framer-19p6j4k { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-Q0gjB .framer-1b1mhkf, .framer-Q0gjB .framer-v1igz4, .framer-Q0gjB .framer-1tcjm4z, .framer-Q0gjB .framer-1a4yphv { flex: none; width: 100%; } .framer-Q0gjB .framer-1srtljc { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-Q0gjB .framer-1bwbpct { height: var(--framer-aspect-ratio-supported, 193px); } .framer-Q0gjB .framer-1ua0k62, .framer-Q0gjB .framer-1sqx0fh, .framer-Q0gjB .framer-sl2lr5 { padding: 40px 24px 40px 24px; } .framer-Q0gjB .framer-1g4sune, .framer-Q0gjB .framer-1da3boe { flex-direction: column; max-width: 720px; } .framer-Q0gjB .framer-17lqmft, .framer-Q0gjB .framer-trejkv { flex-direction: column; width: 100%; } .framer-Q0gjB .framer-10c30k4-container, .framer-Q0gjB .framer-kciv1b-container, .framer-Q0gjB .framer-13oxd1v-container, .framer-Q0gjB .framer-nvv16z-container { width: 100%; } .framer-Q0gjB .framer-16xip7a { flex-direction: column; } .framer-Q0gjB .framer-1fsg5a1 { flex: none; height: var(--framer-aspect-ratio-supported, 257px); width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q0gjB .framer-ks4an, .framer-Q0gjB .framer-k3b518, .framer-Q0gjB .framer-1skyjq7, .framer-Q0gjB .framer-fjohy2, .framer-Q0gjB .framer-19p6j4k, .framer-Q0gjB .framer-1g4sune, .framer-Q0gjB .framer-17lqmft, .framer-Q0gjB .framer-16xip7a, .framer-Q0gjB .framer-1da3boe, .framer-Q0gjB .framer-trejkv { gap: 0px; } .framer-Q0gjB .framer-ks4an > *, .framer-Q0gjB .framer-16xip7a > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Q0gjB .framer-ks4an > :first-child, .framer-Q0gjB .framer-1skyjq7 > :first-child, .framer-Q0gjB .framer-19p6j4k > :first-child, .framer-Q0gjB .framer-1g4sune > :first-child, .framer-Q0gjB .framer-17lqmft > :first-child, .framer-Q0gjB .framer-16xip7a > :first-child, .framer-Q0gjB .framer-1da3boe > :first-child, .framer-Q0gjB .framer-trejkv > :first-child { margin-top: 0px; } .framer-Q0gjB .framer-ks4an > :last-child, .framer-Q0gjB .framer-1skyjq7 > :last-child, .framer-Q0gjB .framer-19p6j4k > :last-child, .framer-Q0gjB .framer-1g4sune > :last-child, .framer-Q0gjB .framer-17lqmft > :last-child, .framer-Q0gjB .framer-16xip7a > :last-child, .framer-Q0gjB .framer-1da3boe > :last-child, .framer-Q0gjB .framer-trejkv > :last-child { margin-bottom: 0px; } .framer-Q0gjB .framer-k3b518 > *, .framer-Q0gjB .framer-k3b518 > :first-child, .framer-Q0gjB .framer-k3b518 > :last-child, .framer-Q0gjB .framer-fjohy2 > *, .framer-Q0gjB .framer-fjohy2 > :first-child, .framer-Q0gjB .framer-fjohy2 > :last-child { margin: 0px; } .framer-Q0gjB .framer-1skyjq7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Q0gjB .framer-19p6j4k > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Q0gjB .framer-1g4sune > *, .framer-Q0gjB .framer-1da3boe > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Q0gjB .framer-17lqmft > *, .framer-Q0gjB .framer-trejkv > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5169.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rD1vrriR7\":{\"layout\":[\"fixed\",\"auto\"]},\"CsjQmIHh9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"GKAAhA9oP\":{\"pattern\":\":GKAAhA9oP\",\"name\":\"main\"},\"OrokCo3WG\":{\"pattern\":\":OrokCo3WG\",\"name\":\"learn-more\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Q0gjB\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5169.5,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...HeaderFonts,...ButtonFonts,...TickerFonts,...PhosphorFonts,...BackgroundFXFonts,...NewsletterFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"GKAAhA9oP\\\":{\\\"pattern\\\":\\\":GKAAhA9oP\\\",\\\"name\\\":\\\"main\\\"},\\\"OrokCo3WG\\\":{\\\"pattern\\\":\\\":OrokCo3WG\\\",\\\"name\\\":\\\"learn-more\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rD1vrriR7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CsjQmIHh9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"5169.5\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "HeaderFonts", "getFonts", "DQL8gvjsB_default", "HeaderWithVariantAppearEffect", "withVariantAppearEffect", "ButtonFonts", "meC7Tl47C_default", "TickerFonts", "Ticker", "PhosphorFonts", "Icon", "BackgroundFXFonts", "tHpuc3v2D_default", "NewsletterFonts", "rYd9uqDaC_default", "FooterFonts", "rQ86M8r2h_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "equals", "b", "convertFromBoolean", "activeLocale", "otvzy3acGRk7owoDT_", "xqxIKr6pvRk7owoDT_", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "N4NsyHwE1Rk7owoDT_", "sTX7AgQWARk7owoDT_", "IzHSnieR4Rk7owoDT_", "HDMgf86GWRk7owoDT_", "idRk7owoDT_", "CkmFtdMUqrDzHym_Q6", "i4xx9dp2trDzHym_Q6", "XDKEm7uBtrDzHym_Q6", "FEnYADfZNrDzHym_Q6", "Cxh_gLPocrDzHym_Q6", "idrDzHym_Q6", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "router", "useRouter", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "HeaderWithVariantAppearEffect", "RichText2", "x", "ResolveLinks", "resolvedLinks", "meC7Tl47C_default", "resolvedLinks1", "Image2", "Ticker", "Link", "Icon", "resolvedLinks2", "ChildrenCanSuspend", "IglwLzxsX_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks3", "tHpuc3v2D_default", "ONIr8Ht8Q_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "rYd9uqDaC_default", "rQ86M8r2h_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "HeaderFonts", "ButtonFonts", "TickerFonts", "PhosphorFonts", "BackgroundFXFonts", "NewsletterFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
