{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/IUlh98Q7xPgEtQnnjZGl/8l16B9ISr0zLAwQfsICw/MeGSIlgRL.js", "ssg:https://framerusercontent.com/modules/BFJGwD8IPOxpbSThaw8f/BPnG8ixgzagViJ9JhLSa/t6NXm8j6q.js", "ssg:https://framerusercontent.com/modules/ZmXjGeFHyEnd9GRmunXR/G1DswBPJlaNkfTQPXBmk/oWMCbCwms.js", "ssg:https://framerusercontent.com/modules/0ioH0GCsQEknVegIG98c/7qWQY57XBnFxYhL5qVoy/PxjxAKoP2-0.js", "ssg:https://framerusercontent.com/modules/0ioH0GCsQEknVegIG98c/7qWQY57XBnFxYhL5qVoy/PxjxAKoP2.js", "ssg:https://framerusercontent.com/modules/jifcV0coexzrIl2O5fqv/P0XpSijWLj4T3RK48kxx/ZtsXJw6Lk.js", "ssg:https://framerusercontent.com/modules/nABMNOD2z7gX2IOWDIbV/mTqD2HF3ccvoyZ9vdfzD/pzXOMIXBh.js", "ssg:https://framerusercontent.com/modules/GYLga3Q4MlAVxHvvsprS/6t97Ywu8ojhSucaR7icM/JcGgVmehP.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Open Sans-500\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4iY1M2xLER.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-ext-YDGMJOJO.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-BFOVMAQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-ext-4KOU3AHC.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-OJTBJNE6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-ext-H4B22QN6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-2DWX32EN.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.vietnamese-TYMT6CKW.woff2\",weight:\"400\"}]}];export const css=['.framer-LN9HB .framer-styles-preset-392txg:not(.rich-text-wrapper), .framer-LN9HB .framer-styles-preset-392txg.rich-text-wrapper p { --framer-font-family: \"Open Sans\", \"Open Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-5f9c34e1-c1a8-415b-a74b-c92716a82bf1, #03a9f4); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-LN9HB\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Open Sans-500\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4iY1M2xLER.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-ext-YDGMJOJO.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-BFOVMAQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-ext-4KOU3AHC.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-OJTBJNE6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-ext-H4B22QN6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-2DWX32EN.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.vietnamese-TYMT6CKW.woff2\",weight:\"400\"}]}];export const css=['.framer-9v45B .framer-styles-preset-1k2nga7:not(.rich-text-wrapper), .framer-9v45B .framer-styles-preset-1k2nga7.rich-text-wrapper p { --framer-font-family: \"Open Sans\", \"Open Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-5f9c34e1-c1a8-415b-a74b-c92716a82bf1, #03a9f4); --framer-text-decoration: underline; --framer-text-transform: none; }'];export const className=\"framer-9v45B\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (015b6bb)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/IUlh98Q7xPgEtQnnjZGl/8l16B9ISr0zLAwQfsICw/MeGSIlgRL.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/BFJGwD8IPOxpbSThaw8f/BPnG8ixgzagViJ9JhLSa/t6NXm8j6q.js\";import*as localizedValues from\"./oWMCbCwms-0.js\";const enabledGestures={zyaFZLpet:{hover:true}};const cycleOrder=[\"zyaFZLpet\"];const serializationHash=\"framer-ylpqC\";const variantClassNames={zyaFZLpet:\"framer-v-1oy9il2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={IGeMnN5IH:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,title,width,...props})=>{var _ref;return{...props,FluAaUwNM:(_ref=title!==null&&title!==void 0?title:props.FluAaUwNM)!==null&&_ref!==void 0?_ref:\"Title\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,FluAaUwNM,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zyaFZLpet\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1oy9il2\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"zyaFZLpet\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-a6ed22be-4997-4fc9-ac59-afe42f89b46a, rgb(224, 224, 224))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(3, 169, 244, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{\"zyaFZLpet-hover\":{backgroundColor:\"rgba(3, 169, 244, 0.2)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}},...addPropertyOverrides({\"zyaFZLpet-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-392txg\",\"data-styles-preset\":\"MeGSIlgRL\",children:\"Title\"})}),className:\"framer-i1j8tw\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vKaBjYqFg\",text:FluAaUwNM,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"zyaFZLpet-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k2nga7\",\"data-styles-preset\":\"t6NXm8j6q\",children:\"Title\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ylpqC.framer-18v9jtk, .framer-ylpqC .framer-18v9jtk { display: block; }\",\".framer-ylpqC.framer-1oy9il2 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-width: 200px; overflow: visible; padding: 8px; position: relative; width: 317px; }\",\".framer-ylpqC .framer-i1j8tw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ylpqC.framer-1oy9il2 { gap: 0px; } .framer-ylpqC.framer-1oy9il2 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ylpqC.framer-1oy9il2 > :first-child { margin-top: 0px; } .framer-ylpqC.framer-1oy9il2 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-ylpqC[data-border=\"true\"]::after, .framer-ylpqC [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 317\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"200px\",null,null,null]},\"uz_jMpWWN\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"200px\",null,null,null]}}}\n * @framerVariables {\"FluAaUwNM\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroWMCbCwms=withCSS(Component,css,\"framer-ylpqC\");export default FrameroWMCbCwms;FrameroWMCbCwms.displayName=\"Side Menu Item\";FrameroWMCbCwms.defaultProps={height:30,width:317};addPropertyControls(FrameroWMCbCwms,{FluAaUwNM:{defaultValue:\"Title\",title:\"Title\",type:ControlType.String}});addFonts(FrameroWMCbCwms,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroWMCbCwms\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"200px\\\",null,null,null]},\\\"uz_jMpWWN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"200px\\\",null,null,null]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"30\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"FluAaUwNM\\\":\\\"title\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"317\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oWMCbCwms.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255)))\"},children:\"par\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255)))\"},children:\"par\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255)))\"},children:\"par\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255)))\"},children:\"par\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (015b6bb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/61vwGfE930PG5pXvPp5G/ntn2suA1JZRe517jCDmc/WhQE3evCc.js\";import GradientBlurAnimation from\"https://framerusercontent.com/modules/CXIFz0VbORvSnteYkVsm/VvvT8vc4fUMAzaDKTKbp/ccmMiGB5j.js\";import*as localizedValues from\"./PxjxAKoP2-0.js\";const MotionDivWithFX=withFX(motion.div);const GradientBlurAnimationFonts=getFonts(GradientBlurAnimation);const ImageWithFX=withFX(Image);const enabledGestures={O_2nshXIi:{hover:true}};const cycleOrder=[\"O_2nshXIi\",\"hS_GkRVSh\",\"Gw2jrjzw0\"];const serializationHash=\"framer-ZEUZD\";const variantClassNames={Gw2jrjzw0:\"framer-v-4as57i\",hS_GkRVSh:\"framer-v-irbk9t\",O_2nshXIi:\"framer-v-14bb1g8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={IGeMnN5IH:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:30,delay:0,mass:1,stiffness:700,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.03,skewX:0,skewY:0,transition:transition1};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"O_2nshXIi\",Mobile:\"Gw2jrjzw0\",Tablet:\"hS_GkRVSh\"};const getProps=({author,date,height,id,image,imageBG,link,text,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,d38sGeBhT:(_ref=author!==null&&author!==void 0?author:props.d38sGeBhT)!==null&&_ref!==void 0?_ref:\"Cashflow.io\",EojVPnwgz:(_ref1=text!==null&&text!==void 0?text:props.EojVPnwgz)!==null&&_ref1!==void 0?_ref1:\"Tabs Secures $7 Million to Scale AI-Powered AR Platform\",HoGi8zuVc:(_ref2=imageBG!==null&&imageBG!==void 0?imageBG:props.HoGi8zuVc)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/qhV6ppGiK7Py5yq8IowQ8nw2SE.png\",srcSet:\"https://framerusercontent.com/images/qhV6ppGiK7Py5yq8IowQ8nw2SE.png?scale-down-to=512 512w,https://framerusercontent.com/images/qhV6ppGiK7Py5yq8IowQ8nw2SE.png 1024w\"},RzZ06ntUG:(_ref3=date!==null&&date!==void 0?date:props.RzZ06ntUG)!==null&&_ref3!==void 0?_ref3:\"APRIL 11, 2024\",uzWCjSS_9:image!==null&&image!==void 0?image:props.uzWCjSS_9,V8tOoyKCF:link!==null&&link!==void 0?link:props.V8tOoyKCF,variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"O_2nshXIi\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,EojVPnwgz,RzZ06ntUG,d38sGeBhT,V8tOoyKCF,uzWCjSS_9,HoGi8zuVc,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"O_2nshXIi\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:V8tOoyKCF,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(ImageWithFX,{...restProps,__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:50,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,as:\"a\",background:{alt:\"\",fit:\"fill\"},className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-14bb1g8\",className,classNames)} framer-bdv0co`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"O_2nshXIi\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"O_2nshXIi-hover\":{\"data-framer-name\":undefined},Gw2jrjzw0:{\"data-framer-name\":\"Mobile\"},hS_GkRVSh:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jcmgnz\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"l7kOw1YMw\",style:{backgroundColor:\"var(--token-5f9c34e1-c1a8-415b-a74b-c92716a82bf1, rgb(3, 169, 244))\"},children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.1,skewX:0,skewY:0,x:0,y:-80}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-8x51mz\",layoutDependency:layoutDependency,layoutId:\"n1TXKdk2e\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y17imt\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"Ag1MqX72D\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6ibqcv\",\"data-framer-name\":\"Date\",layoutDependency:layoutDependency,layoutId:\"vXQ8if_Vo\",style:{opacity:.8},variants:{\"O_2nshXIi-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255)))\"},children:\"APRIL 11, 2024\"})}),className:\"framer-1s37bbe\",fonts:[\"GF;Open Sans-600\"],layoutDependency:layoutDependency,layoutId:\"QXEWznGMK\",style:{\"--extracted-gdpscs\":\"var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:RzZ06ntUG,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Gw2jrjzw0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255)))\"},children:\"APRIL 11, 2024\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m79tk3\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"kjOMxa526\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-eznmuc\",\"data-styles-preset\":\"WhQE3evCc\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255)))\"},children:\"Tabs Secures $7 Million to Scale AI-Powered AR Platform\"})}),className:\"framer-apysko\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MOUk7uPe7\",style:{\"--extracted-gdpscs\":\"var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"1px 1px 4px rgba(0, 0, 0, 0.3)\"},text:EojVPnwgz,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Gw2jrjzw0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255)))\"},children:\"Tabs Secures $7 Million to Scale AI-Powered AR Platform\"})}),fonts:[\"GF;Open Sans-700\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mk1tap\",layoutDependency:layoutDependency,layoutId:\"u6Ug0sWFT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255)))\"},children:\"by\"})}),className:\"framer-1etmwlc\",fonts:[\"GF;Open Sans-500\"],layoutDependency:layoutDependency,layoutId:\"rX_Q9Abth\",style:{\"--extracted-gdpscs\":\"var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"O_2nshXIi-hover\":{children:(_getLocalizedValue1=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255)))\"},children:\"by\"})})},Gw2jrjzw0:{children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255)))\"},children:\"by\"})})},hS_GkRVSh:{children:(_getLocalizedValue3=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255)))\"},children:\"by\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255)))\"},children:\"Cashflow.io\"})}),className:\"framer-1djhxxk\",fonts:[\"GF;Open Sans-500\"],layoutDependency:layoutDependency,layoutId:\"w9RGUaq0Q\",style:{\"--extracted-gdpscs\":\"var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:d38sGeBhT,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qaq3ke\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"P3lUXjnWH\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 16px 4px rgba(0, 0, 0, 0.1)\",rotateY:0,transformPerspective:1200},variants:{\"O_2nshXIi-hover\":{rotateY:-8}},...addPropertyOverrides({\"O_2nshXIi-hover\":{whileHover:animation}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:248,intrinsicWidth:413.3333333333333,sizes:\"400px\",...toResponsiveImage(uzWCjSS_9)},className:\"framer-9qto17\",\"data-framer-name\":\"blog image\",layoutDependency:layoutDependency,layoutId:\"aWoyJ5MKB\",...addPropertyOverrides({Gw2jrjzw0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:248,intrinsicWidth:413.3333333333333,sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1200px) - 32px) * 0.6)`,...toResponsiveImage(uzWCjSS_9)}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:574,pixelWidth:1024,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(HoGi8zuVc)},className:\"framer-1bsjrvk\",layoutDependency:layoutDependency,layoutId:\"t90XslmXw\",style:{filter:\"blur(10px)\",WebkitFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-myzju1\",\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"cSuDXbSuL\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%)\",opacity:.66},variants:{\"O_2nshXIi-hover\":{opacity:.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oi2w7z-container\",layoutDependency:layoutDependency,layoutId:\"i9lhCHeQ5-container\",children:/*#__PURE__*/_jsx(GradientBlurAnimation,{height:\"100%\",id:\"i9lhCHeQ5\",layoutId:\"i9lhCHeQ5\",style:{height:\"100%\",width:\"100%\"},uZ_AFjUWG:40,width:\"100%\",ZmZph0lWn:15,...addPropertyOverrides({Gw2jrjzw0:{ZmZph0lWn:10},hS_GkRVSh:{ZmZph0lWn:10}},baseVariant,gestureVariant)})})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZEUZD.framer-bdv0co, .framer-ZEUZD .framer-bdv0co { display: block; }\",\".framer-ZEUZD.framer-14bb1g8 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 1200px; }\",\".framer-ZEUZD .framer-jcmgnz { 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%; z-index: 1; }\",\".framer-ZEUZD .framer-8x51mz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 72px 72px 72px 120px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZEUZD .framer-1y17imt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ZEUZD .framer-6ibqcv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ZEUZD .framer-1s37bbe, .framer-ZEUZD .framer-1etmwlc, .framer-ZEUZD .framer-1djhxxk { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 0; }\",\".framer-ZEUZD .framer-1m79tk3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZEUZD .framer-apysko { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-ZEUZD .framer-1mk1tap { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ZEUZD .framer-1qaq3ke { align-content: center; align-items: center; aspect-ratio: 1.6653225806451613 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 240px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZEUZD .framer-9qto17 { aspect-ratio: 1.6666666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 120px); overflow: visible; position: relative; width: 100%; }\",\".framer-ZEUZD .framer-1bsjrvk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-ZEUZD .framer-myzju1 { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-ZEUZD .framer-1oi2w7z-container { flex: none; height: 100%; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZEUZD.framer-14bb1g8, .framer-ZEUZD .framer-jcmgnz, .framer-ZEUZD .framer-8x51mz, .framer-ZEUZD .framer-1y17imt, .framer-ZEUZD .framer-6ibqcv, .framer-ZEUZD .framer-1m79tk3, .framer-ZEUZD .framer-1mk1tap, .framer-ZEUZD .framer-1qaq3ke, .framer-ZEUZD .framer-1bsjrvk { gap: 0px; } .framer-ZEUZD.framer-14bb1g8 > *, .framer-ZEUZD .framer-jcmgnz > *, .framer-ZEUZD .framer-1qaq3ke > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZEUZD.framer-14bb1g8 > :first-child, .framer-ZEUZD .framer-jcmgnz > :first-child, .framer-ZEUZD .framer-1y17imt > :first-child, .framer-ZEUZD .framer-1qaq3ke > :first-child, .framer-ZEUZD .framer-1bsjrvk > :first-child { margin-top: 0px; } .framer-ZEUZD.framer-14bb1g8 > :last-child, .framer-ZEUZD .framer-jcmgnz > :last-child, .framer-ZEUZD .framer-1y17imt > :last-child, .framer-ZEUZD .framer-1qaq3ke > :last-child, .framer-ZEUZD .framer-1bsjrvk > :last-child { margin-bottom: 0px; } .framer-ZEUZD .framer-8x51mz > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-ZEUZD .framer-8x51mz > :first-child, .framer-ZEUZD .framer-6ibqcv > :first-child, .framer-ZEUZD .framer-1m79tk3 > :first-child, .framer-ZEUZD .framer-1mk1tap > :first-child { margin-left: 0px; } .framer-ZEUZD .framer-8x51mz > :last-child, .framer-ZEUZD .framer-6ibqcv > :last-child, .framer-ZEUZD .framer-1m79tk3 > :last-child, .framer-ZEUZD .framer-1mk1tap > :last-child { margin-right: 0px; } .framer-ZEUZD .framer-1y17imt > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ZEUZD .framer-6ibqcv > *, .framer-ZEUZD .framer-1m79tk3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZEUZD .framer-1mk1tap > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-ZEUZD .framer-1bsjrvk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-ZEUZD.framer-v-irbk9t.framer-14bb1g8 { cursor: unset; width: 914px; }\",\".framer-ZEUZD.framer-v-irbk9t .framer-8x51mz { gap: 24px; padding: 48px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZEUZD.framer-v-irbk9t .framer-8x51mz { gap: 0px; } .framer-ZEUZD.framer-v-irbk9t .framer-8x51mz > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-ZEUZD.framer-v-irbk9t .framer-8x51mz > :first-child { margin-left: 0px; } .framer-ZEUZD.framer-v-irbk9t .framer-8x51mz > :last-child { margin-right: 0px; } }\",\".framer-ZEUZD.framer-v-4as57i.framer-14bb1g8 { cursor: unset; width: 664px; }\",\".framer-ZEUZD.framer-v-4as57i .framer-8x51mz { flex-direction: column; padding: 48px 16px 48px 16px; }\",\".framer-ZEUZD.framer-v-4as57i .framer-1y17imt { flex: none; order: 1; width: 100%; }\",\".framer-ZEUZD.framer-v-4as57i .framer-1qaq3ke { height: var(--framer-aspect-ratio-supported, 120px); order: 0; width: 60%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZEUZD.framer-v-4as57i .framer-8x51mz { gap: 0px; } .framer-ZEUZD.framer-v-4as57i .framer-8x51mz > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-ZEUZD.framer-v-4as57i .framer-8x51mz > :first-child { margin-top: 0px; } .framer-ZEUZD.framer-v-4as57i .framer-8x51mz > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 384\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hS_GkRVSh\":{\"layout\":[\"fixed\",\"auto\"]},\"Gw2jrjzw0\":{\"layout\":[\"fixed\",\"auto\"]},\"MqlIeInpL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"EojVPnwgz\":\"text\",\"RzZ06ntUG\":\"date\",\"d38sGeBhT\":\"author\",\"V8tOoyKCF\":\"link\",\"uzWCjSS_9\":\"image\",\"HoGi8zuVc\":\"imageBG\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPxjxAKoP2=withCSS(Component,css,\"framer-ZEUZD\");export default FramerPxjxAKoP2;FramerPxjxAKoP2.displayName=\"Blog Header\";FramerPxjxAKoP2.defaultProps={height:384,width:1200};addPropertyControls(FramerPxjxAKoP2,{variant:{options:[\"O_2nshXIi\",\"hS_GkRVSh\",\"Gw2jrjzw0\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},EojVPnwgz:{defaultValue:\"Tabs Secures $7 Million to Scale AI-Powered AR Platform\",displayTextArea:false,title:\"Text\",type:ControlType.String},RzZ06ntUG:{defaultValue:\"APRIL 11, 2024\",displayTextArea:false,title:\"Date\",type:ControlType.String},d38sGeBhT:{defaultValue:\"Cashflow.io\",displayTextArea:false,title:\"Author\",type:ControlType.String},V8tOoyKCF:{title:\"Link\",type:ControlType.Link},uzWCjSS_9:{title:\"Image\",type:ControlType.ResponsiveImage},HoGi8zuVc:{__defaultAssetReference:\"data:framer/asset-reference,qhV6ppGiK7Py5yq8IowQ8nw2SE.png?originalFilename=18-Banner-1024x574.png&preferredSize=auto\",title:\"Image BG\",type:ControlType.ResponsiveImage}});addFonts(FramerPxjxAKoP2,[{explicitInter:true,fonts:[{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4iY1M2xLER.woff2\",weight:\"600\"},{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4iY1M2xLER.woff2\",weight:\"700\"},{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4iY1M2xLER.woff2\",weight:\"500\"}]},...GradientBlurAnimationFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPxjxAKoP2\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"EojVPnwgz\\\":\\\"text\\\",\\\"RzZ06ntUG\\\":\\\"date\\\",\\\"d38sGeBhT\\\":\\\"author\\\",\\\"V8tOoyKCF\\\":\\\"link\\\",\\\"uzWCjSS_9\\\":\\\"image\\\",\\\"HoGi8zuVc\\\":\\\"imageBG\\\"}\",\"framerIntrinsicHeight\":\"384\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hS_GkRVSh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gw2jrjzw0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MqlIeInpL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PxjxAKoP2.map", "// Generated by Framer (015b6bb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./ZtsXJw6Lk-0.js\";const enabledGestures={GsMDzIToj:{hover:true}};const cycleOrder=[\"GsMDzIToj\"];const serializationHash=\"framer-3vLCv\";const variantClassNames={GsMDzIToj:\"framer-v-1jtmw6p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={IGeMnN5IH:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,image,link,title,width,...props})=>{var _ref;return{...props,DJYSRBgCh:link!==null&&link!==void 0?link:props.DJYSRBgCh,jjO3LPXAj:image!==null&&image!==void 0?image:props.jjO3LPXAj,Sy25fgHlf:(_ref=title!==null&&title!==void 0?title:props.Sy25fgHlf)!==null&&_ref!==void 0?_ref:\"Title\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,DJYSRBgCh,jjO3LPXAj,Sy25fgHlf,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GsMDzIToj\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:DJYSRBgCh,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1jtmw6p\",className,classNames)} framer-1xj9b1p`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"GsMDzIToj\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"GsMDzIToj-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rxc7yp\",layoutDependency:layoutDependency,layoutId:\"UoM3ABxsS\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(jjO3LPXAj)},className:\"framer-a4fwjr\",layoutDependency:layoutDependency,layoutId:\"LGB9xp1P5\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"4px 4px 16px 4px rgba(0, 0, 0, 0.1)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qwkek1\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"Vmnaqy_v0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-8b1d2d7d-278e-4993-a3da-395e6f010225, rgb(117, 117, 117)))\"},children:\"Title\"})}),className:\"framer-1eykspy\",\"data-framer-name\":\"Title\",fonts:[\"GF;Open Sans-600\"],layoutDependency:layoutDependency,layoutId:\"UQCwAYIjX\",style:{\"--extracted-1of0zx5\":\"var(--token-8b1d2d7d-278e-4993-a3da-395e6f010225, rgb(117, 117, 117))\"},text:Sy25fgHlf,variants:{\"GsMDzIToj-hover\":{\"--extracted-1of0zx5\":\"var(--token-5f9c34e1-c1a8-415b-a74b-c92716a82bf1, rgb(3, 169, 244))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"GsMDzIToj-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-5f9c34e1-c1a8-415b-a74b-c92716a82bf1, rgb(3, 169, 244)))\"},children:\"Title\"})})}},baseVariant,gestureVariant)})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3vLCv.framer-1xj9b1p, .framer-3vLCv .framer-1xj9b1p { display: block; }\",\".framer-3vLCv.framer-1jtmw6p { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 180px; }\",\".framer-3vLCv .framer-1rxc7yp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3vLCv .framer-a4fwjr { flex: none; height: 100px; position: relative; width: 100%; }\",\".framer-3vLCv .framer-qwkek1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-3vLCv .framer-1eykspy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3vLCv.framer-1jtmw6p, .framer-3vLCv .framer-1rxc7yp, .framer-3vLCv .framer-qwkek1 { gap: 0px; } .framer-3vLCv.framer-1jtmw6p > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-3vLCv.framer-1jtmw6p > :first-child, .framer-3vLCv .framer-1rxc7yp > :first-child, .framer-3vLCv .framer-qwkek1 > :first-child { margin-top: 0px; } .framer-3vLCv.framer-1jtmw6p > :last-child, .framer-3vLCv .framer-1rxc7yp > :last-child, .framer-3vLCv .framer-qwkek1 > :last-child { margin-bottom: 0px; } .framer-3vLCv .framer-1rxc7yp > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3vLCv .framer-qwkek1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 133\n * @framerIntrinsicWidth 180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gbeYtad0K\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"DJYSRBgCh\":\"link\",\"jjO3LPXAj\":\"image\",\"Sy25fgHlf\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZtsXJw6Lk=withCSS(Component,css,\"framer-3vLCv\");export default FramerZtsXJw6Lk;FramerZtsXJw6Lk.displayName=\"Horizontal Scroll\";FramerZtsXJw6Lk.defaultProps={height:133,width:180};addPropertyControls(FramerZtsXJw6Lk,{DJYSRBgCh:{title:\"Link\",type:ControlType.Link},jjO3LPXAj:{title:\"Image\",type:ControlType.ResponsiveImage},Sy25fgHlf:{defaultValue:\"Title\",title:\"Title\",type:ControlType.String}});addFonts(FramerZtsXJw6Lk,[{explicitInter:true,fonts:[{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4iY1M2xLER.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZtsXJw6Lk\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"180\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gbeYtad0K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"DJYSRBgCh\\\":\\\"link\\\",\\\"jjO3LPXAj\\\":\\\"image\\\",\\\"Sy25fgHlf\\\":\\\"title\\\"}\",\"framerIntrinsicHeight\":\"133\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZtsXJw6Lk.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Open Sans-500\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4iY1M2xLER.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-ext-YDGMJOJO.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-BFOVMAQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-ext-4KOU3AHC.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-OJTBJNE6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-ext-H4B22QN6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-2DWX32EN.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.vietnamese-TYMT6CKW.woff2\",weight:\"400\"}]}];export const css=['.framer-z0IXv .framer-styles-preset-14mpm4r:not(.rich-text-wrapper), .framer-z0IXv .framer-styles-preset-14mpm4r.rich-text-wrapper p { --framer-font-family: \"Open Sans\", \"Open Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-d1274ad5-44a6-4b3f-b2f5-d69d0b83d70b, #424242); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-z0IXv\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (78a4586)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,LazyValue,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import CursorLaunch from\"#framer/local/canvasComponent/HXFoqxOSF/HXFoqxOSF.js\";import CTASection from\"#framer/local/canvasComponent/kiqafaCmI/kiqafaCmI.js\";import SideMenuItem from\"#framer/local/canvasComponent/oWMCbCwms/oWMCbCwms.js\";import BlogHeader from\"#framer/local/canvasComponent/PxjxAKoP2/PxjxAKoP2.js\";import LearnMore from\"#framer/local/canvasComponent/Qkbjxq84l/Qkbjxq84l.js\";import LinksOverlays from\"#framer/local/canvasComponent/qsyYCenuU/qsyYCenuU.js\";import NavigationFrame from\"#framer/local/canvasComponent/YkqskRnCR/YkqskRnCR.js\";import HorizontalScroll from\"#framer/local/canvasComponent/ZtsXJw6Lk/ZtsXJw6Lk.js\";import Blog from\"#framer/local/collection/LrF3AQ_cR/LrF3AQ_cR.js\";import*as sharedStyle8 from\"#framer/local/css/aR1g6QAcP/aR1g6QAcP.js\";import*as sharedStyle6 from\"#framer/local/css/hAq4kqMtp/hAq4kqMtp.js\";import*as sharedStyle3 from\"#framer/local/css/iU6GzrRWC/iU6GzrRWC.js\";import*as sharedStyle4 from\"#framer/local/css/KSYGjkh7b/KSYGjkh7b.js\";import*as sharedStyle1 from\"#framer/local/css/OplcU5J67/OplcU5J67.js\";import*as sharedStyle5 from\"#framer/local/css/pzXOMIXBh/pzXOMIXBh.js\";import*as sharedStyle2 from\"#framer/local/css/VA7n3fEb3/VA7n3fEb3.js\";import*as sharedStyle from\"#framer/local/css/WhQE3evCc/WhQE3evCc.js\";import*as sharedStyle7 from\"#framer/local/css/ZapUr7ZuD/ZapUr7ZuD.js\";import metadataProvider from\"#framer/local/webPageMetadata/JcGgVmehP/JcGgVmehP.js\";const NavigationFrameFonts=getFonts(NavigationFrame);const BlogHeaderFonts=getFonts(BlogHeader);const EmbedFonts=getFonts(Embed);const CTASectionFonts=getFonts(CTASection);const SideMenuItemFonts=getFonts(SideMenuItem);const LearnMoreFonts=getFonts(LearnMore);const HorizontalScrollFonts=getFonts(HorizontalScroll);const TickerFonts=getFonts(Ticker);const LinksOverlaysFonts=getFonts(LinksOverlays);const CursorLaunchFonts=getFonts(CursorLaunch);const cycleOrder=[\"ddcjIyMcv\",\"JrsygbTAI\",\"IxQMAVZDp\"];const breakpoints={ddcjIyMcv:\"(min-width: 1200px)\",IxQMAVZDp:\"(max-width: 809px)\",JrsygbTAI:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-U6MQr\";const variantClassNames={ddcjIyMcv:\"framer-v-1vjihks\",IxQMAVZDp:\"framer-v-1s056wt\",JrsygbTAI:\"framer-v-1x5da36\"};const valuesByLocaleId={IGeMnN5IH:new LazyValue(()=>import(\"./JcGgVmehP-0.js\"))};const preloadLocalizedValues=locale=>{const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise){promises.push(promise);}}locale=locale.fallback;}if(promises.length>0){return Promise.all(promises);}};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value){return value;}}locale=locale.fallback;}};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const dateStyle=options.dateStyle;const timeZone=\"UTC\";try{return date.toLocaleDateString(locale,{dateStyle,timeZone});}catch{return date.toLocaleDateString(fallbackLocale,{dateStyle,timeZone});}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:30,delay:0,mass:1,stiffness:700,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.03,skewX:0,skewY:0,transition:transition1};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"ddcjIyMcv\",Phone:\"IxQMAVZDp\",Tablet:\"JrsygbTAI\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ddcjIyMcv\"};};const cursor={component:CursorLaunch,variant:\"Ecp30YuRv\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{data:Blog,type:\"Collection\"},select:[{name:\"Lvr1k1RI3\",type:\"Identifier\"},{name:\"QhwJvP4x8\",type:\"Identifier\"},{name:\"r9tpOMWRB\",type:\"Identifier\"},{name:\"MkEUwwhVq\",type:\"Identifier\"},{name:\"ci3cNRh12\",type:\"Identifier\"},{name:\"YMejUysY7\",type:\"Identifier\"},{name:\"t1W_C6Shs\",type:\"Identifier\"},{name:\"Rja7kdpw0\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables)});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data in \"Blog\" matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,r9tpOMWRB=getFromCurrentRouteData(\"r9tpOMWRB\"),Lvr1k1RI3=getFromCurrentRouteData(\"Lvr1k1RI3\"),t1W_C6Shs=getFromCurrentRouteData(\"t1W_C6Shs\"),Rja7kdpw0=getFromCurrentRouteData(\"Rja7kdpw0\"),QhwJvP4x8=getFromCurrentRouteData(\"QhwJvP4x8\"),MkEUwwhVq=getFromCurrentRouteData(\"MkEUwwhVq\"),ci3cNRh12=getFromCurrentRouteData(\"ci3cNRh12\"),YMejUysY7=getFromCurrentRouteData(\"YMejUysY7\"),dmwGQGKDtbQF4FsS_W,E0qWGp8y2,Rja7kdpw0db7Hml2kX,ak9mI2B6qdb7Hml2kX,iddb7Hml2kX,vAVJyeRGy,Rja7kdpw0oD_vXRS6x,QhwJvP4x8oD_vXRS6x,ak9mI2B6qoD_vXRS6x,idoD_vXRS6x,...restProps}=getProps(props);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-U6MQr`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-U6MQr`);};}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const preloadPromise=preloadLocalizedValues(activeLocale);if(preloadPromise)throw preloadPromise;const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const router=useRouter();const id=useRouteElementId(\"GXhb0KhQX\");const ref2=React.useRef(null);const textContent=toDateString(Lvr1k1RI3,{dateStyle:\"full\",locale:\"\"},activeLocaleCode);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"IxQMAVZDp\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];useCustomCursors({\"1a6j6au\":cursor});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ddcjIyMcv\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1vjihks\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lemixx-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IxQMAVZDp:{variant:\"noUFqSk1J\"},JrsygbTAI:{variant:\"W1WbmhaPe\"}},children:/*#__PURE__*/_jsx(NavigationFrame,{height:\"100%\",id:\"pdduNWiGY\",layoutId:\"pdduNWiGY\",style:{width:\"100%\"},variant:\"jP3lrpaYp\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":GXhb0KhQX\",pathVariables:{Rja7kdpw0},webPageId:\"JcGgVmehP\"},implicitPathVariables:undefined},{href:{hash:\":GXhb0KhQX\",pathVariables:{Rja7kdpw0},webPageId:\"JcGgVmehP\"},implicitPathVariables:undefined},{href:{hash:\":GXhb0KhQX\",pathVariables:{Rja7kdpw0},webPageId:\"JcGgVmehP\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ktsrvd-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IxQMAVZDp:{V8tOoyKCF:resolvedLinks[2],variant:\"Gw2jrjzw0\"},JrsygbTAI:{V8tOoyKCF:resolvedLinks[1],variant:\"hS_GkRVSh\"}},children:/*#__PURE__*/_jsx(BlogHeader,{d38sGeBhT:t1W_C6Shs,EojVPnwgz:r9tpOMWRB,height:\"100%\",HoGi8zuVc:toResponsiveImage(QhwJvP4x8),id:\"Px0ZECznG\",layoutId:\"Px0ZECznG\",RzZ06ntUG:toDateString(Lvr1k1RI3,{dateStyle:\"full\",locale:\"\"},activeLocaleCode),style:{width:\"100%\"},uzWCjSS_9:toResponsiveImage(QhwJvP4x8),V8tOoyKCF:resolvedLinks[0],variant:\"O_2nshXIi\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7rywtj\",\"data-framer-name\":\"Article\",name:\"Article\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jzrvtn\",\"data-border\":true,\"data-framer-name\":\"Ticker\",name:\"Ticker\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fdv39EG59\"},children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1lghnzv framer-81x87v\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x7tsrh-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!-- TradingView Widget BEGIN -->\\n<div class=\"tradingview-widget-container\">\\n  <div class=\"tradingview-widget-container__widget\"></div>\\n  <div class=\"tradingview-widget-copyright\"><a href=\"https://www.tradingview.com/\" rel=\"noopener nofollow\" target=\"_blank\"><span class=\"blue-text\">Track all markets on TradingView</span></a></div>\\n  <script type=\"text/javascript\" src=\"https://s3.tradingview.com/external-embedding/embed-widget-ticker-tape.js\" async>\\n  {\\n  \"symbols\": [\\n    {\\n      \"description\": \"USD CAD\",\\n      \"proName\": \"FX:USDCAD\"\\n    },\\n    {\\n      \"description\": \"EUR CAD\",\\n      \"proName\": \"FX:EURCAD\"\\n    },\\n    {\\n      \"description\": \"USD EUR\",\\n      \"proName\": \"FX_IDC:USDEUR\"\\n    }\\n  ],\\n  \"showSymbolLogo\": true,\\n  \"isTransparent\": true,\\n  \"displayMode\": \"regular\",\\n  \"colorTheme\": \"light\",\\n  \"locale\": \"en\"\\n}\\n  </script>\\n</div>\\n<!-- TradingView Widget END -->',id:\"aY8x5ZFmX\",layoutId:\"aY8x5ZFmX\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t27q8u\",id:id,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ctvs38\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f282yu\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d1274ad5-44a6-4b3f-b2f5-d69d0b83d70b, rgb(66, 66, 66))\"},children:\"Tabs has secured $7 million in seed funding to scale its artificial intelligence (AI) accounts receivable (AR) platform.\"})}),className:\"framer-1jqz2pu\",fonts:[\"GF;Open Sans-700\"],text:MkEUwwhVq,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ie6j2\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8b1d2d7d-278e-4993-a3da-395e6f010225, rgb(117, 117, 117))\"},children:\"Thursday, April 18, 2024\"})}),className:\"framer-1pao3h2\",fonts:[\"GF;Open Sans-500\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16gexk0\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-etggfk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8b1d2d7d-278e-4993-a3da-395e6f010225, rgb(117, 117, 117))\"},children:\"by\"})}),className:\"framer-1ttmm0m\",fonts:[\"GF;Open Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8b1d2d7d-278e-4993-a3da-395e6f010225, rgb(117, 117, 117))\"},children:\"Cashflow.io\"})}),className:\"framer-la4enz\",fonts:[\"GF;Open Sans-500\"],text:t1W_C6Shs,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qrigor\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:ci3cNRh12,className:\"framer-xn7vtb\",fonts:[\"GF;Open Sans-regular\"],stylesPresetsClassNames:{a:\"framer-styles-preset-14jj980\",code:\"framer-styles-preset-1eojffu\",h1:\"framer-styles-preset-eznmuc\",h2:\"framer-styles-preset-e4uj6d\",h3:\"framer-styles-preset-1jzyuq0\",h4:\"framer-styles-preset-11l556c\",h5:\"framer-styles-preset-170es7g\",p:\"framer-styles-preset-14mpm4r\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:YMejUysY7,className:\"framer-1sr16yo\",fonts:[\"GF;Open Sans-regular\"],stylesPresetsClassNames:{a:\"framer-styles-preset-14jj980\",code:\"framer-styles-preset-1eojffu\",h1:\"framer-styles-preset-eznmuc\",h2:\"framer-styles-preset-e4uj6d\",h3:\"framer-styles-preset-1jzyuq0\",h4:\"framer-styles-preset-11l556c\",h5:\"framer-styles-preset-170es7g\",p:\"framer-styles-preset-1fixcdl\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1alyoos\",\"data-framer-name\":\"Sidebar\",name:\"Sidebar\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JrsygbTAI:{width:\"calc((min(100vw, 1200px) - 48px) / 4)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc((min(100vw, 1200px) - 240px) / 4)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-y80lqa-container hidden-1s056wt\",whileHover:animation,children:/*#__PURE__*/_jsx(CTASection,{height:\"100%\",id:\"nwJjNGIEp\",layoutId:\"nwJjNGIEp\",QDEVhFyAB:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"Try out the Cashflow.io demo for FREE!\",ScP0I17cp:dmwGQGKDtbQF4FsS_W,style:{width:\"100%\"},variant:\"gHgkQUlKG\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mxhydo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nzlwdv\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d1274ad5-44a6-4b3f-b2f5-d69d0b83d70b, rgb(66, 66, 66))\"},children:\"Trending Articles\"})}),className:\"framer-1f6jjwh\",fonts:[\"GF;Open Sans-700\"],text:E0qWGp8y2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Blog,type:\"Collection\"},select:[{name:\"Rja7kdpw0\",type:\"Identifier\"},{name:\"ak9mI2B6q\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"JGo2pyhSK\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"grKXiGqfW\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(\"div\",{className:\"framer-nya14v\",\"data-border\":true,children:collection.map(({Rja7kdpw0:Rja7kdpw0db7Hml2kX,ak9mI2B6q:ak9mI2B6qdb7Hml2kX,id:iddb7Hml2kX},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`db7Hml2kX-${iddb7Hml2kX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Rja7kdpw0:Rja7kdpw0db7Hml2kX},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Rja7kdpw0:Rja7kdpw0db7Hml2kX},webPageId:\"JcGgVmehP\"},children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-191nwnk framer-81x87v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IxQMAVZDp:{width:\"calc(min(100vw, 1200px) - 32px)\"},JrsygbTAI:{width:\"calc((min(100vw, 1200px) - 48px) / 4)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc((min(100vw, 1200px) - 240px) / 4)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ulttgf-container\",children:/*#__PURE__*/_jsx(SideMenuItem,{FluAaUwNM:ak9mI2B6qdb7Hml2kX,height:\"100%\",id:\"J8IGaFVrR\",layoutId:\"J8IGaFVrR\",style:{width:\"100%\"},width:\"100%\"})})})})})})})},iddb7Hml2kX);})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ijgam5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jz4twp\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d1274ad5-44a6-4b3f-b2f5-d69d0b83d70b, rgb(66, 66, 66))\"},children:\"Partner With Cashflow.io\"})}),className:\"framer-5xx6p2\",fonts:[\"GF;Open Sans-700\"],text:vAVJyeRGy,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i3cywv\",\"data-framer-name\":\"Items\",name:\"Items\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8b1d2d7d-278e-4993-a3da-395e6f010225, rgb(117, 117, 117))\"},children:\"We\u2019re always on the lookout for opportunities to partner with innovators and disruptors.\"})}),className:\"framer-1p0g2m8\",fonts:[\"GF;Open Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ci03iNh9g\"},children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1cg8rzk framer-81x87v\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5844jg-container\",children:/*#__PURE__*/_jsx(LearnMore,{h34HRHI_P:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"LEARN MORE\",height:\"100%\",id:\"kQjYRvKLe\",layoutId:\"kQjYRvKLe\",qrlBIj4ao:12,style:{height:\"100%\"},variant:\"hJVouwXVM\",width:\"100%\"})})})})})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rcdrh9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m9omq0\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d1274ad5-44a6-4b3f-b2f5-d69d0b83d70b, rgb(66, 66, 66))\"},children:\"Trending Articles\"})}),className:\"framer-1mcuf0x\",fonts:[\"GF;Open Sans-700\"],text:E0qWGp8y2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16n07pk-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-end\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:15,overflow:false},gap:32,height:\"100%\",hoverFactor:.5,id:\"ISEwBirUI\",layoutId:\"ISEwBirUI\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Blog,type:\"Collection\"},select:[{name:\"Rja7kdpw0\",type:\"Identifier\"},{name:\"QhwJvP4x8\",type:\"Identifier\"},{name:\"ak9mI2B6q\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(motion.div,{className:\"framer-1egb3re\",children:collection1.map(({Rja7kdpw0:Rja7kdpw0oD_vXRS6x,QhwJvP4x8:QhwJvP4x8oD_vXRS6x,ak9mI2B6q:ak9mI2B6qoD_vXRS6x,id:idoD_vXRS6x},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`oD_vXRS6x-${idoD_vXRS6x}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Rja7kdpw0:Rja7kdpw0oD_vXRS6x},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Rja7kdpw0:Rja7kdpw0oD_vXRS6x},webPageId:\"JcGgVmehP\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-15k3tbx-container\",whileHover:animation,children:/*#__PURE__*/_jsx(HorizontalScroll,{DJYSRBgCh:resolvedLinks1[0],height:\"100%\",id:\"arw2KBgYn\",jjO3LPXAj:toResponsiveImage(QhwJvP4x8oD_vXRS6x),layoutId:\"arw2KBgYn\",style:{width:\"100%\"},Sy25fgHlf:ak9mI2B6qoD_vXRS6x,width:\"100%\"})})})})})},idoD_vXRS6x);})})}),/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Blog,type:\"Collection\"},select:[{name:\"Rja7kdpw0\",type:\"Identifier\"},{name:\"QhwJvP4x8\",type:\"Identifier\"},{name:\"ak9mI2B6q\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(motion.div,{className:\"framer-1egb3re\",children:collection1.map(({Rja7kdpw0:Rja7kdpw0oD_vXRS6x,QhwJvP4x8:QhwJvP4x8oD_vXRS6x,ak9mI2B6q:ak9mI2B6qoD_vXRS6x,id:idoD_vXRS6x},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`oD_vXRS6x-${idoD_vXRS6x}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Rja7kdpw0:Rja7kdpw0oD_vXRS6x},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Rja7kdpw0:Rja7kdpw0oD_vXRS6x},webPageId:\"JcGgVmehP\"},implicitPathVariables:undefined},{href:{pathVariables:{Rja7kdpw0:Rja7kdpw0oD_vXRS6x},webPageId:\"JcGgVmehP\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-15k3tbx-container\",whileHover:animation,children:/*#__PURE__*/_jsx(HorizontalScroll,{DJYSRBgCh:resolvedLinks1[1],height:\"100%\",id:\"arw2KBgYn\",jjO3LPXAj:toResponsiveImage(QhwJvP4x8oD_vXRS6x),layoutId:\"arw2KBgYn\",style:{width:\"100%\"},Sy25fgHlf:ak9mI2B6qoD_vXRS6x,width:\"100%\"})})})})})},idoD_vXRS6x);})})}),/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Blog,type:\"Collection\"},select:[{name:\"Rja7kdpw0\",type:\"Identifier\"},{name:\"QhwJvP4x8\",type:\"Identifier\"},{name:\"ak9mI2B6q\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(motion.div,{className:\"framer-1egb3re\",children:collection1.map(({Rja7kdpw0:Rja7kdpw0oD_vXRS6x,QhwJvP4x8:QhwJvP4x8oD_vXRS6x,ak9mI2B6q:ak9mI2B6qoD_vXRS6x,id:idoD_vXRS6x},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`oD_vXRS6x-${idoD_vXRS6x}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Rja7kdpw0:Rja7kdpw0oD_vXRS6x},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Rja7kdpw0:Rja7kdpw0oD_vXRS6x},webPageId:\"JcGgVmehP\"},implicitPathVariables:undefined},{href:{pathVariables:{Rja7kdpw0:Rja7kdpw0oD_vXRS6x},webPageId:\"JcGgVmehP\"},implicitPathVariables:undefined},{href:{pathVariables:{Rja7kdpw0:Rja7kdpw0oD_vXRS6x},webPageId:\"JcGgVmehP\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-15k3tbx-container\",whileHover:animation,children:/*#__PURE__*/_jsx(HorizontalScroll,{DJYSRBgCh:resolvedLinks1[2],height:\"100%\",id:\"arw2KBgYn\",jjO3LPXAj:toResponsiveImage(QhwJvP4x8oD_vXRS6x),layoutId:\"arw2KBgYn\",style:{width:\"100%\"},Sy25fgHlf:ak9mI2B6qoD_vXRS6x,width:\"100%\"})})})})})},idoD_vXRS6x);})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-i02rm2-container\",\"data-framer-cursor\":\"1a6j6au\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IxQMAVZDp:{variant:\"TjhSG7tR2\"},JrsygbTAI:{variant:\"TjhSG7tR2\"}},children:/*#__PURE__*/_jsx(CTASection,{height:\"100%\",id:\"IaRnUr0IE\",layoutId:\"IaRnUr0IE\",QDEVhFyAB:(_getLocalizedValue5=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:\"Explore our Demo Platform Now \",style:{width:\"100%\"},variant:\"WQ0y70sxi\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-igrqz\",\"data-framer-name\":\"Footer Container\",name:\"Footer Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IxQMAVZDp:{width:\"min(100vw, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(max(100vw, 1px), 1200px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f2ou6u-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IxQMAVZDp:{variant:\"FOw0EJV7f\"},JrsygbTAI:{variant:\"AxKK73BCi\"}},children:/*#__PURE__*/_jsx(LinksOverlays,{height:\"100%\",id:\"d0Xgy2rZj\",layoutId:\"d0Xgy2rZj\",style:{maxWidth:\"100%\",width:\"100%\"},SWLVRMsqs:true,TZOcN_jMx:\"visible\",variant:\"ZHDmbnWpd\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-U6MQr { background: var(--token-3c8f35b1-9bcf-450c-82c5-87e87e6c0b88, rgb(245, 245, 245)); }`,\".framer-U6MQr.framer-81x87v, .framer-U6MQr .framer-81x87v { display: block; }\",\".framer-U6MQr.framer-1vjihks { align-content: center; align-items: center; background-color: var(--token-3c8f35b1-9bcf-450c-82c5-87e87e6c0b88, #f5f5f5); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 3053px; justify-content: flex-start; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-U6MQr .framer-1lemixx-container { flex: none; height: auto; left: 50%; position: fixed; top: -20px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-U6MQr .framer-1ktsrvd-container, .framer-U6MQr .framer-y80lqa-container, .framer-U6MQr .framer-i02rm2-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-U6MQr .framer-7rywtj { align-content: center; align-items: center; background-color: var(--token-3c8f35b1-9bcf-450c-82c5-87e87e6c0b88, #f5f5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-U6MQr .framer-1jzrvtn { --border-bottom-width: 1px; --border-color: var(--token-a6ed22be-4997-4fc9-ac59-afe42f89b46a, #e0e0e0); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: var(--token-2cccadd1-466e-4e9d-a7a3-1174a42d930d, #fafafa); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 44px; justify-content: flex-start; overflow: hidden; padding: 0px; position: sticky; top: 80px; width: 100%; will-change: transform; z-index: 8; }\",\".framer-U6MQr .framer-1lghnzv { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; text-decoration: none; top: 0px; width: 90%; z-index: 8; }\",\".framer-U6MQr .framer-1x7tsrh-container { bottom: -32px; flex: none; left: calc(50.00000000000002% - 101% / 2); position: absolute; top: 0px; width: 101%; z-index: 1; }\",\".framer-U6MQr .framer-t27q8u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 48px 120px 48px 120px; position: relative; scroll-margin-top: 120px; width: 100%; z-index: 1; }\",\".framer-U6MQr .framer-ctvs38 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-U6MQr .framer-f282yu { 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-U6MQr .framer-1jqz2pu, .framer-U6MQr .framer-xn7vtb, .framer-U6MQr .framer-1sr16yo, .framer-U6MQr .framer-1p0g2m8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-U6MQr .framer-4ie6j2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 22px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-U6MQr .framer-1pao3h2, .framer-U6MQr .framer-1ttmm0m, .framer-U6MQr .framer-la4enz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 0; }\",\".framer-U6MQr .framer-16gexk0 { background-color: var(--token-a6ed22be-4997-4fc9-ac59-afe42f89b46a, #e0e0e0); flex: none; height: 80%; overflow: hidden; position: relative; width: 1px; }\",\".framer-U6MQr .framer-etggfk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-U6MQr .framer-1qrigor { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-U6MQr .framer-1alyoos { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 148px; width: 25%; will-change: transform; z-index: 1; }\",\".framer-U6MQr .framer-mxhydo, .framer-U6MQr .framer-ijgam5 { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-U6MQr .framer-nzlwdv, .framer-U6MQr .framer-jz4twp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-U6MQr .framer-1f6jjwh, .framer-U6MQr .framer-5xx6p2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-U6MQr .framer-nya14v { --border-bottom-width: 0px; --border-color: var(--token-a6ed22be-4997-4fc9-ac59-afe42f89b46a, #e0e0e0); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-U6MQr .framer-191nwnk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 48px; height: min-content; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-U6MQr .framer-1ulttgf-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-U6MQr .framer-i3cywv { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-U6MQr .framer-1cg8rzk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-U6MQr .framer-5844jg-container { flex: none; height: 24px; position: relative; width: auto; }\",\".framer-U6MQr .framer-rcdrh9 { align-content: center; align-items: center; background-color: var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, #ffffff); box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.08); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 56px 0px 56px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-U6MQr .framer-1m9omq0 { 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; max-width: 1200px; overflow: visible; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-U6MQr .framer-1mcuf0x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-U6MQr .framer-16n07pk-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-U6MQr .framer-1egb3re { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-U6MQr .framer-15k3tbx-container { flex: none; height: auto; position: relative; width: 200px; }\",\".framer-U6MQr .framer-igrqz { align-content: center; align-items: center; background-color: var(--token-a6a80303-ba19-481b-aab2-928eb90031d1, #ffffff); box-shadow: 1px 1px 8px 4px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-U6MQr .framer-1f2ou6u-container { flex: 1 0 0px; height: auto; max-width: 1200px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-U6MQr.framer-1vjihks, .framer-U6MQr .framer-7rywtj, .framer-U6MQr .framer-1jzrvtn, .framer-U6MQr .framer-t27q8u, .framer-U6MQr .framer-ctvs38, .framer-U6MQr .framer-f282yu, .framer-U6MQr .framer-4ie6j2, .framer-U6MQr .framer-etggfk, .framer-U6MQr .framer-1qrigor, .framer-U6MQr .framer-1alyoos, .framer-U6MQr .framer-mxhydo, .framer-U6MQr .framer-nzlwdv, .framer-U6MQr .framer-nya14v, .framer-U6MQr .framer-191nwnk, .framer-U6MQr .framer-ijgam5, .framer-U6MQr .framer-jz4twp, .framer-U6MQr .framer-i3cywv, .framer-U6MQr .framer-1cg8rzk, .framer-U6MQr .framer-rcdrh9, .framer-U6MQr .framer-1m9omq0, .framer-U6MQr .framer-1egb3re, .framer-U6MQr .framer-igrqz { gap: 0px; } .framer-U6MQr.framer-1vjihks > *, .framer-U6MQr .framer-7rywtj > *, .framer-U6MQr .framer-nya14v > *, .framer-U6MQr .framer-rcdrh9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-U6MQr.framer-1vjihks > :first-child, .framer-U6MQr .framer-7rywtj > :first-child, .framer-U6MQr .framer-ctvs38 > :first-child, .framer-U6MQr .framer-f282yu > :first-child, .framer-U6MQr .framer-1qrigor > :first-child, .framer-U6MQr .framer-1alyoos > :first-child, .framer-U6MQr .framer-mxhydo > :first-child, .framer-U6MQr .framer-nya14v > :first-child, .framer-U6MQr .framer-ijgam5 > :first-child, .framer-U6MQr .framer-i3cywv > :first-child, .framer-U6MQr .framer-rcdrh9 > :first-child { margin-top: 0px; } .framer-U6MQr.framer-1vjihks > :last-child, .framer-U6MQr .framer-7rywtj > :last-child, .framer-U6MQr .framer-ctvs38 > :last-child, .framer-U6MQr .framer-f282yu > :last-child, .framer-U6MQr .framer-1qrigor > :last-child, .framer-U6MQr .framer-1alyoos > :last-child, .framer-U6MQr .framer-mxhydo > :last-child, .framer-U6MQr .framer-nya14v > :last-child, .framer-U6MQr .framer-ijgam5 > :last-child, .framer-U6MQr .framer-i3cywv > :last-child, .framer-U6MQr .framer-rcdrh9 > :last-child { margin-bottom: 0px; } .framer-U6MQr .framer-1jzrvtn > *, .framer-U6MQr .framer-1m9omq0 > *, .framer-U6MQr .framer-igrqz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-U6MQr .framer-1jzrvtn > :first-child, .framer-U6MQr .framer-t27q8u > :first-child, .framer-U6MQr .framer-4ie6j2 > :first-child, .framer-U6MQr .framer-etggfk > :first-child, .framer-U6MQr .framer-nzlwdv > :first-child, .framer-U6MQr .framer-191nwnk > :first-child, .framer-U6MQr .framer-jz4twp > :first-child, .framer-U6MQr .framer-1cg8rzk > :first-child, .framer-U6MQr .framer-1m9omq0 > :first-child, .framer-U6MQr .framer-1egb3re > :first-child, .framer-U6MQr .framer-igrqz > :first-child { margin-left: 0px; } .framer-U6MQr .framer-1jzrvtn > :last-child, .framer-U6MQr .framer-t27q8u > :last-child, .framer-U6MQr .framer-4ie6j2 > :last-child, .framer-U6MQr .framer-etggfk > :last-child, .framer-U6MQr .framer-nzlwdv > :last-child, .framer-U6MQr .framer-191nwnk > :last-child, .framer-U6MQr .framer-jz4twp > :last-child, .framer-U6MQr .framer-1cg8rzk > :last-child, .framer-U6MQr .framer-1m9omq0 > :last-child, .framer-U6MQr .framer-1egb3re > :last-child, .framer-U6MQr .framer-igrqz > :last-child { margin-right: 0px; } .framer-U6MQr .framer-t27q8u > *, .framer-U6MQr .framer-191nwnk > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-U6MQr .framer-ctvs38 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-U6MQr .framer-f282yu > *, .framer-U6MQr .framer-mxhydo > *, .framer-U6MQr .framer-ijgam5 > *, .framer-U6MQr .framer-i3cywv > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-U6MQr .framer-4ie6j2 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-U6MQr .framer-etggfk > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-U6MQr .framer-1qrigor > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-U6MQr .framer-1alyoos > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-U6MQr .framer-nzlwdv > *, .framer-U6MQr .framer-jz4twp > *, .framer-U6MQr .framer-1cg8rzk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-U6MQr .framer-1egb3re > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",\"@media (min-width: 1200px) { .framer-U6MQr .hidden-1vjihks { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-U6MQr .hidden-1x5da36 { display: none !important; } .${metadata.bodyClassName}-framer-U6MQr { background: var(--token-3c8f35b1-9bcf-450c-82c5-87e87e6c0b88, rgb(245, 245, 245)); } .framer-U6MQr.framer-1vjihks { height: min-content; padding: 132px 0px 0px 0px; width: 810px; } .framer-U6MQr .framer-1jzrvtn { top: 128px; } .framer-U6MQr .framer-t27q8u { gap: 24px; padding: 48px 24px 48px 24px; } .framer-U6MQr .framer-1m9omq0 { padding: 0px 48px 0px 48px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-U6MQr .framer-t27q8u { gap: 0px; } .framer-U6MQr .framer-t27q8u > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-U6MQr .framer-t27q8u > :first-child { margin-left: 0px; } .framer-U6MQr .framer-t27q8u > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .framer-U6MQr .hidden-1s056wt { display: none !important; } .${metadata.bodyClassName}-framer-U6MQr { background: var(--token-3c8f35b1-9bcf-450c-82c5-87e87e6c0b88, rgb(245, 245, 245)); } .framer-U6MQr.framer-1vjihks { height: min-content; padding: 60px 0px 0px 0px; width: 390px; } .framer-U6MQr .framer-1lemixx-container { top: 0px; } .framer-U6MQr .framer-1jzrvtn { top: 60px; } .framer-U6MQr .framer-t27q8u { flex-direction: column; padding: 48px 16px 48px 16px; } .framer-U6MQr .framer-ctvs38, .framer-U6MQr .framer-1f2ou6u-container { flex: none; width: 100%; } .framer-U6MQr .framer-1alyoos { width: 100%; } .framer-U6MQr .framer-igrqz { flex-direction: column; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-U6MQr .framer-t27q8u, .framer-U6MQr .framer-igrqz { gap: 0px; } .framer-U6MQr .framer-t27q8u > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-U6MQr .framer-t27q8u > :first-child, .framer-U6MQr .framer-igrqz > :first-child { margin-top: 0px; } .framer-U6MQr .framer-t27q8u > :last-child, .framer-U6MQr .framer-igrqz > :last-child { margin-bottom: 0px; } .framer-U6MQr .framer-igrqz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-U6MQr[data-border=\"true\"]::after, .framer-U6MQr [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3053\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"JrsygbTAI\":{\"layout\":[\"fixed\",\"auto\"]},\"IxQMAVZDp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerJcGgVmehP=withCSS(Component,css,\"framer-U6MQr\");export default FramerJcGgVmehP;FramerJcGgVmehP.displayName=\"About Us\";FramerJcGgVmehP.defaultProps={height:3053,width:1200};addFonts(FramerJcGgVmehP,[{explicitInter:true,fonts:[{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4iY1M2xLER.woff2\",weight:\"700\"},{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4iY1M2xLER.woff2\",weight:\"500\"},{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4iY1M2xLER.woff2\",weight:\"400\"}]},...NavigationFrameFonts,...BlogHeaderFonts,...EmbedFonts,...CTASectionFonts,...SideMenuItemFonts,...LearnMoreFonts,...HorizontalScrollFonts,...TickerFonts,...LinksOverlaysFonts,...CursorLaunchFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJcGgVmehP\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JrsygbTAI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IxQMAVZDp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"3053\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "FluAaUwNM", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "css", "FrameroWMCbCwms", "withCSS", "oWMCbCwms_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PxjxAKoP2_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v0", "p", "x", "motion", "v1", "v2", "v3", "__FramerMetadata__", "MotionDivWithFX", "withFX", "motion", "GradientBlurAnimationFonts", "getFonts", "ccmMiGB5j_default", "ImageWithFX", "Image2", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "PxjxAKoP2_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "animation", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "author", "date", "height", "id", "image", "imageBG", "link", "text", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "EojVPnwgz", "RzZ06ntUG", "d38sGeBhT", "V8tOoyKCF", "uzWCjSS_9", "HoGi8zuVc", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "LayoutGroup", "Link", "cx", "u", "RichText2", "ComponentViewportProvider", "css", "FramerPxjxAKoP2", "withCSS", "PxjxAKoP2_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "title", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "DJYSRBgCh", "jjO3LPXAj", "Sy25fgHlf", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "addPropertyOverrides", "u", "Image2", "RichText2", "css", "FramerZtsXJw6Lk", "withCSS", "ZtsXJw6Lk_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "NavigationFrameFonts", "getFonts", "YkqskRnCR_default", "BlogHeaderFonts", "PxjxAKoP2_default", "EmbedFonts", "Embed", "CTASectionFonts", "kiqafaCmI_default", "SideMenuItemFonts", "oWMCbCwms_default", "LearnMoreFonts", "Qkbjxq84l_default", "HorizontalScrollFonts", "ZtsXJw6Lk_default", "TickerFonts", "Ticker", "LinksOverlaysFonts", "qsyYCenuU_default", "CursorLaunchFonts", "HXFoqxOSF_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "valuesByLocaleId", "LazyValue", "preloadLocalizedValues", "locale", "promises", "values", "promise", "getLocalizedValue", "key", "value", "toDateString", "options", "activeLocale", "date", "fallbackLocale", "dateStyle", "timeZone", "toResponsiveImage", "transition1", "animation", "QueryData", "query", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "HXFoqxOSF_default", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "LrF3AQ_cR_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "NotFoundError", "style", "className", "layoutId", "variant", "r9tpOMWRB", "Lvr1k1RI3", "t1W_C6Shs", "Rja7kdpw0", "QhwJvP4x8", "MkEUwwhVq", "ci3cNRh12", "YMejUysY7", "dmwGQGKDtbQF4FsS_W", "E0qWGp8y2", "Rja7kdpw0db7Hml2kX", "ak9mI2B6qdb7Hml2kX", "iddb7Hml2kX", "vAVJyeRGy", "Rja7kdpw0oD_vXRS6x", "QhwJvP4x8oD_vXRS6x", "ak9mI2B6qoD_vXRS6x", "idoD_vXRS6x", "restProps", "ie", "metadata1", "_document_querySelector", "robotsTag", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "preloadPromise", "ref1", "pe", "activeLocaleCode", "useLocaleCode", "router", "useRouter", "useRouteElementId", "ref2", "textContent", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "YkqskRnCR_default", "ResolveLinks", "resolvedLinks", "PxjxAKoP2_default", "Link", "Embed", "RichText2", "x", "kiqafaCmI_default", "collection", "paginationInfo", "loadMore", "i", "PathVariablesContext", "oWMCbCwms_default", "Qkbjxq84l_default", "Ticker", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks1", "ZtsXJw6Lk_default", "qsyYCenuU_default", "css", "FramerJcGgVmehP", "withCSS", "JcGgVmehP_default", "addFonts", "NavigationFrameFonts", "BlogHeaderFonts", "EmbedFonts", "CTASectionFonts", "SideMenuItemFonts", "LearnMoreFonts", "HorizontalScrollFonts", "TickerFonts", "LinksOverlaysFonts", "CursorLaunchFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
