{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/iPivMzMQcZUd7n45wpy0/nNAuXVfvs7oPe5nfLjz9/tElDgSeiR.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import Navigation from\"#framer/local/canvasComponent/aJcjIi1_D/aJcjIi1_D.js\";import SocialNetwork from\"#framer/local/canvasComponent/Al1wSe_OD/Al1wSe_OD.js\";import ReviewCard from\"#framer/local/canvasComponent/FXwGVUttZ/FXwGVUttZ.js\";import BlogPostAdditional from\"#framer/local/canvasComponent/I2gpXQSbx/I2gpXQSbx.js\";import PricingChatLabsMoreClear from\"#framer/local/canvasComponent/J_3t8mtW2/J_3t8mtW2.js\";import FAQAccordionChatLabs from\"#framer/local/canvasComponent/MQ4deqfo9/MQ4deqfo9.js\";import ButtonsPrimary from\"#framer/local/canvasComponent/U0E8TTRjN/U0E8TTRjN.js\";import Blog from\"#framer/local/collection/ULZ8d2e1M/ULZ8d2e1M.js\";import*as sharedStyle3 from\"#framer/local/css/ay_0UJhKN/ay_0UJhKN.js\";import*as sharedStyle7 from\"#framer/local/css/cnw0TXiW2/cnw0TXiW2.js\";import*as sharedStyle5 from\"#framer/local/css/FHj2jWK6W/FHj2jWK6W.js\";import*as sharedStyle11 from\"#framer/local/css/FNuPyE1gR/FNuPyE1gR.js\";import*as sharedStyle6 from\"#framer/local/css/L0IoGTG70/L0IoGTG70.js\";import*as sharedStyle1 from\"#framer/local/css/lVyB1TXOo/lVyB1TXOo.js\";import*as sharedStyle2 from\"#framer/local/css/QRv2CCGrw/QRv2CCGrw.js\";import*as sharedStyle9 from\"#framer/local/css/QRzidVBRF/QRzidVBRF.js\";import*as sharedStyle8 from\"#framer/local/css/toyhUkxrK/toyhUkxrK.js\";import*as sharedStyle from\"#framer/local/css/TrDYaPlvG/TrDYaPlvG.js\";import*as sharedStyle10 from\"#framer/local/css/W7zz08Z5O/W7zz08Z5O.js\";import*as sharedStyle4 from\"#framer/local/css/Xcf3J_wJx/Xcf3J_wJx.js\";import metadataProvider from\"#framer/local/webPageMetadata/tElDgSeiR/tElDgSeiR.js\";const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const ButtonsPrimaryFonts=getFonts(ButtonsPrimary);const SlideshowFonts=getFonts(Slideshow);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const PricingChatLabsMoreClearFonts=getFonts(PricingChatLabsMoreClear);const FAQAccordionChatLabsFonts=getFonts(FAQAccordionChatLabs);const ReviewCardFonts=getFonts(ReviewCard);const BlogPostAdditionalFonts=getFonts(BlogPostAdditional);const SocialNetworkFonts=getFonts(SocialNetwork);const breakpoints={B4kW2JSmc:\"(max-width: 767px)\",KVrspKEWA:\"(min-width: 768px) and (max-width: 1023px)\",wyDBVgqED:\"(min-width: 1024px) and (max-width: 1439px)\",YXDiKXaDm:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-c5StK\";const variantClassNames={B4kW2JSmc:\"framer-v-1qpceld\",KVrspKEWA:\"framer-v-109axor\",wyDBVgqED:\"framer-v-8xpqdh\",YXDiKXaDm:\"framer-v-sry8r4\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate3=(_,t)=>`translate(-50%, -50%) ${t}`;const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:150};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:.3,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 1024\":\"wyDBVgqED\",Desktop:\"YXDiKXaDm\",Phone:\"B4kW2JSmc\",Tablet:\"KVrspKEWA\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YXDiKXaDm\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,XEStz9WWycSpIDDsZS,kA2OFHF5EcSpIDDsZS,V8TAyPbkfcSpIDDsZS,TpisDyDT3cSpIDDsZS,idcSpIDDsZS,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"J2b4wPiYk\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"JeuOwEJ5a\");const elementId2=useRouteElementId(\"qYcd6Z661\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"B4kW2JSmc\")return false;return true;};const elementId3=useRouteElementId(\"lurV6lfqi\");const ref4=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"wyDBVgqED\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"wyDBVgqED\")return true;return false;};const elementId4=useRouteElementId(\"KyxpD_T4r\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"gIjMKPk9S\");const ref6=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"KVrspKEWA\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"KVrspKEWA\",\"B4kW2JSmc\"].includes(baseVariant))return false;return true;};const elementId6=useRouteElementId(\"WSQ8rIq3m\");const ref7=React.useRef(null);const router=useRouter();const elementId7=useRouteElementId(\"MNnZP9TjK\");const ref8=React.useRef(null);const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"KVrspKEWA\")return false;return true;};const isDisplayed6=()=>{if(!isBrowser())return true;if(baseVariant===\"B4kW2JSmc\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"YXDiKXaDm\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-b4a97cb8-24ee-4c12-9aad-524b93823879, rgb(7, 7, 7)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-sry8r4\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{y:0},wyDBVgqED:{width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{layoutScroll:true},wyDBVgqED:{layoutScroll:true,transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-8xovl9-container\",nodeId:\"apRiZ4kR5\",rendersWithMotion:true,scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{__framer__targets:undefined,variant:\"csrBbvphq\"},KVrspKEWA:{__framer__targets:[{ref:ref1,target:\"IZoQ17Z2M\"}],variant:\"iTw8KlCZx\"},wyDBVgqED:{__framer__targets:[{ref:ref1,target:\"fmUkusLJW\"}],variant:\"YTPYThZCS\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"RRBociLB9\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"apRiZ4kR5\",layoutId:\"apRiZ4kR5\",style:{width:\"100%\"},variant:\"FmHhlZntg\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1roaygr\",\"data-framer-name\":\"Messaging\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19vs2mz\",\"data-framer-name\":\"Messaging\",id:elementId1,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12bfo57\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ut9l1w\",\"data-border\":true,\"data-framer-name\":\"Text+btn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1abyqen\",\"data-framer-name\":\"Center\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1ocsi0r\",\"data-styles-preset\":\"lVyB1TXOo\",style:{\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:[\"Why limit yourself to a \",/*#__PURE__*/_jsx(\"br\",{}),\"single AI? \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0ddce9f5-4e84-4a77-869c-2e7197879d0d, rgb(108, 70, 255))\"},children:\"Get them all\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-r06xxw\",\"data-styles-preset\":\"TrDYaPlvG\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:[\"Why limit yourself to a \",/*#__PURE__*/_jsx(\"br\",{}),\"single AI? \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0ddce9f5-4e84-4a77-869c-2e7197879d0d, rgb(108, 70, 255))\"},children:\"Get them all\"})]})}),className:\"framer-24y0cb\",\"data-framer-name\":\"AI meets google docs\",fonts:[\"Inter\"],id:elementId2,ref:ref3,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-stufpi\",\"data-styles-preset\":\"QRv2CCGrw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Access \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0ddce9f5-4e84-4a77-869c-2e7197879d0d, rgb(108, 70, 255))\"},children:\"the\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0ddce9f5-4e84-4a77-869c-2e7197879d0d, rgb(108, 70, 255))\"},children:\"best Al models\"}),\" for writing, coding, learning, and content creation \u2013 all in one place. Solve your tasks more effectively.\"]})}),className:\"framer-1nblxwj\",\"data-framer-name\":\"Rewrite, summarize, translate and write copy with power of GPT-4 on any webpage.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10gmqvu-container\",nodeId:\"l6y2Mgv59\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{variant:\"Xzqa6_ua7\"}},children:/*#__PURE__*/_jsx(ButtonsPrimary,{height:\"100%\",id:\"l6y2Mgv59\",layoutId:\"l6y2Mgv59\",MQMOT0dCM:\"Start Your Journey\",variant:\"CIvFQuqRr\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hks7j1 hidden-1qpceld\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d5um0x\",\"data-framer-name\":\"Sheets\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mpzxu4\",\"data-framer-name\":\"Cursor\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.29886 1.78901C4.67346 1.30139 3.76172 1.74711 3.76172 2.53949V13.3389C3.76172 14.2417 4.9014 14.6379 5.4614 13.9293L8.12172 10.5643C8.21988 10.4402 8.34484 10.34 8.48724 10.2712C8.62964 10.2024 8.78578 10.1667 8.94394 10.1668H13.2944C14.2011 10.1668 14.5954 9.01885 13.8792 8.46266L5.29886 1.78901Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KVrspKEWA:{transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"189px\",src:\"https://framerusercontent.com/images/lbTthsudoOjdAvu3NRFuSHTqnUg.png\",srcSet:\"https://framerusercontent.com/images/lbTthsudoOjdAvu3NRFuSHTqnUg.png?scale-down-to=512 512w,https://framerusercontent.com/images/lbTthsudoOjdAvu3NRFuSHTqnUg.png 776w\"},className:\"framer-xb8zhz\",\"data-border\":true,\"data-framer-name\":\"Main \",transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r6rf99\",\"data-border\":true,\"data-framer-name\":\"Frame 1273\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-p2eupb\",\"data-framer-name\":\"Sheets\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Deepseek logo\",fit:\"stretch\",pixelHeight:600,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"30px\",src:\"https://framerusercontent.com/images/aVjDMxiWJWkH4Sq1AzBpYpWDtA.png\",srcSet:\"https://framerusercontent.com/images/aVjDMxiWJWkH4Sq1AzBpYpWDtA.png?scale-down-to=512 512w,https://framerusercontent.com/images/aVjDMxiWJWkH4Sq1AzBpYpWDtA.png 600w\"},className:\"framer-178etd5\",\"data-framer-name\":\"claude_app_icon 1\",transformTemplate:transformTemplate3})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24.62px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Deepseek\"})}),className:\"framer-hkao07\",\"data-framer-name\":\"Sheets\",fonts:[\"GF;Figtree-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xan4g5\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:11,svg:'<svg width=\"11\" height=\"14\" viewBox=\"0 0 11 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.56888 1.04292C0.943484 0.5553 0.0317383 1.00101 0.0317383 1.7934V12.5928C0.0317383 13.4956 1.17142 13.8918 1.73142 13.1832L4.39174 9.81816C4.4899 9.69414 4.61486 9.59395 4.75726 9.52512C4.89966 9.45628 5.0558 9.42058 5.21396 9.4207H9.56444C10.4711 9.4207 10.8654 8.27276 10.1492 7.71657L1.56888 1.04292Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-74dw6c\",\"data-framer-name\":\"Left Circle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-idynin\",\"data-border\":true,\"data-framer-name\":\"Ellipse 109\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-53l4cb\",\"data-framer-name\":\"Ellipse 114\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18il73a\",\"data-framer-name\":\"Left Bg circle\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tpksyy\",\"data-framer-name\":\"Left Line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:230,intrinsicWidth:300,svg:'<svg width=\"300\" height=\"230\" viewBox=\"-1 -1 300 230\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M298 227.82L298 146.32C298 128.647 283.697 114.32 266.024 114.32C233.129 114.32 181.447 114.32 143.282 114.32C108.838 114.32 62.5069 114.32 31.9745 114.32C14.3014 114.32 -1.93426e-05 99.9934 -1.77976e-05 82.3203L-1.06726e-05 0.820317\" stroke=\"url(#paint0_linear_2311_226)\" stroke-opacity=\"0.32\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2311_226\" x1=\"29.5\" y1=\"-86.1798\" x2=\"356.716\" y2=\"-104.151\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.0675942\" stop-color=\"#070707\"/>\\n<stop offset=\"0.32675\" stop-color=\"#242424\"/>\\n<stop offset=\"0.437649\" stop-color=\"#303030\"/>\\n<stop offset=\"0.645077\" stop-color=\"#383838\"/>\\n<stop offset=\"1\" stop-color=\"#868686\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15c2lw8 hidden-1qpceld\",\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pll4ui\",\"data-framer-name\":\"Right bg circle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-niye22\",\"data-framer-name\":\"Slides\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"160px\",src:\"https://framerusercontent.com/images/0Hz5PaC8BqtNP6IIHljFY5zgIzQ.png\",srcSet:\"https://framerusercontent.com/images/0Hz5PaC8BqtNP6IIHljFY5zgIzQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/0Hz5PaC8BqtNP6IIHljFY5zgIzQ.png 640w\"},className:\"framer-1xjls1p\",\"data-border\":true,\"data-framer-name\":\"Frame 1266\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rd486w\",\"data-border\":true,\"data-framer-name\":\"Frame 1271\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11ta9ag\",\"data-framer-name\":\"Slides\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"GPT-3 Logo\",fit:\"fill\",src:\"https://framerusercontent.com/images/6F9JGYpzB2lrRkXPskWnuZiG7vY.png\"},className:\"framer-1ne807\",\"data-framer-name\":\"image 49\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"15.24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20.32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"GPT-4o\"})}),className:\"framer-55cpi0\",\"data-framer-name\":\"Slides\",fonts:[\"GF;Figtree-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w6h2cz\",\"data-framer-name\":\"Right Circle\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wo34w2\",\"data-border\":true,\"data-framer-name\":\"Ellipse 109\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-p0jpwn\",\"data-framer-name\":\"Ellipse 114\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6g1khz\",\"data-framer-name\":\"Right Line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:201,intrinsicWidth:229,svg:'<svg width=\"229\" height=\"201\" viewBox=\"-1 -1 229 201\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M227 0.820312L145.5 0.820309C127.827 0.820308 113.5 15.1386 113.5 32.8118C113.5 54.1446 113.5 82.1121 113.5 103.619C113.5 122.754 113.5 147.409 113.5 166.835C113.5 184.508 99.1731 198.82 81.5 198.82L7.55761e-06 198.82\" stroke=\"url(#paint0_linear_2311_245)\" stroke-opacity=\"0.32\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2311_245\" x1=\"312.125\" y1=\"5.72571\" x2=\"298.524\" y2=\"229.092\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.0207844\" stop-color=\"#070707\"/>\\n<stop offset=\"0.246904\" stop-color=\"#242424\"/>\\n<stop offset=\"0.346559\" stop-color=\"#303030\"/>\\n<stop offset=\"0.645077\" stop-color=\"#383838\"/>\\n<stop offset=\"1\" stop-color=\"#868686\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-suhwhx\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1piyg1c-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"h4IvBQigy\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{arrowOptions:{arrowFill:\"var(--token-e06a835a-7b64-4881-926f-9fd2ac4343dc, rgb(67, 67, 67))\",arrowGap:100,arrowPadding:50,arrowPaddingBottom:-14,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:25,showMouseControls:true},progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:5,dotsInset:-5,dotSize:7,dotsOpacity:.5,dotsPadding:0,dotsRadius:50,showProgressDots:true}},KVrspKEWA:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:50,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-5,dotSize:10,dotsOpacity:.5,dotsPadding:0,dotsRadius:50,showProgressDots:true}},wyDBVgqED:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:60,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:40,dotSize:10,dotsOpacity:.5,dotsPadding:0,dotsRadius:50,showProgressDots:true}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:100,arrowPadding:80,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:10,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"h4IvBQigy\",intervalControl:1,itemAmount:1,layoutId:\"h4IvBQigy\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:30,dotSize:10,dotsOpacity:.5,dotsPadding:0,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"ChatLabs Interface\",fit:\"fit\",intrinsicHeight:850,intrinsicWidth:1177,pixelHeight:1910,pixelWidth:2928,positionX:\"center\",positionY:\"center\",sizes:\"1200px\",src:\"https://framerusercontent.com/images/YhYE56XqQ0bCeJSlbD5KpAIctQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YhYE56XqQ0bCeJSlbD5KpAIctQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/YhYE56XqQ0bCeJSlbD5KpAIctQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YhYE56XqQ0bCeJSlbD5KpAIctQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YhYE56XqQ0bCeJSlbD5KpAIctQ.png 2928w\"},className:\"framer-37uo67\",\"data-framer-name\":\"image 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"ChatLabs Web Search Image Generation\",fit:\"fit\",intrinsicHeight:850,intrinsicWidth:1177,pixelHeight:1910,pixelWidth:2928,positionX:\"center\",positionY:\"center\",sizes:\"1200.54px\",src:\"https://framerusercontent.com/images/wZLgaa175PRFIPBvwUpLQuJ8CZk.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/wZLgaa175PRFIPBvwUpLQuJ8CZk.png?scale-down-to=512 512w,https://framerusercontent.com/images/wZLgaa175PRFIPBvwUpLQuJ8CZk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wZLgaa175PRFIPBvwUpLQuJ8CZk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wZLgaa175PRFIPBvwUpLQuJ8CZk.png 2928w\"},className:\"framer-rlsgv5\",\"data-framer-name\":\"image 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"ChatLabs Nocode Tool Builder\",fit:\"fit\",intrinsicHeight:850,intrinsicWidth:1177,pixelHeight:1910,pixelWidth:2928,positionX:\"center\",positionY:\"center\",sizes:\"1200.54px\",src:\"https://framerusercontent.com/images/DdgtcAI8XF3sRk70A46sCy7RA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/DdgtcAI8XF3sRk70A46sCy7RA.png?scale-down-to=512 512w,https://framerusercontent.com/images/DdgtcAI8XF3sRk70A46sCy7RA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DdgtcAI8XF3sRk70A46sCy7RA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DdgtcAI8XF3sRk70A46sCy7RA.png 2928w\"},className:\"framer-maujrz\",\"data-framer-name\":\"image 3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"AI Model Comparison\",fit:\"fit\",intrinsicHeight:850,intrinsicWidth:1177,pixelHeight:1910,pixelWidth:2928,positionX:\"center\",positionY:\"center\",sizes:\"1200px\",src:\"https://framerusercontent.com/images/DUoDhXQwkKLhCl1jzrk9T9qMtGc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/DUoDhXQwkKLhCl1jzrk9T9qMtGc.png?scale-down-to=512 512w,https://framerusercontent.com/images/DUoDhXQwkKLhCl1jzrk9T9qMtGc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DUoDhXQwkKLhCl1jzrk9T9qMtGc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DUoDhXQwkKLhCl1jzrk9T9qMtGc.png 2928w\"},className:\"framer-16nr25c\",\"data-framer-name\":\"image 4\"})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a0zm0n hidden-1qpceld\",\"data-framer-name\":\"Logo Strip\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ae8070\",\"data-styles-preset\":\"ay_0UJhKN\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Use AI that does your tasks better than ChatGPT\"})})}),className:\"framer-c88x9b\",\"data-framer-name\":\"Rewrite, summarize, translate and write copy with power of GPT-4 on any webpage.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mde8pe-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RXZ9R9rCB\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:1,id:\"RXZ9R9rCB\",layoutId:\"RXZ9R9rCB\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rid7nd\",\"data-framer-name\":\"Logo Array\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3426u1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YEcVZmLTGrG438un89dlonJmg.png\"},className:\"framer-vjrwgd\",\"data-framer-name\":\"image 71\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"OpenAI\"})}),className:\"framer-1qtwkwc\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12800fm\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Anthropic Logo\",fit:\"fill\",src:\"https://framerusercontent.com/images/SybtbcyIxEXlS9jwgQFP01m19rE.png\"},className:\"framer-12y2gr7\",\"data-framer-name\":\"image 69\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"Claude\"})}),className:\"framer-noogsy\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qjr35m\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Deepseek Logo\",fit:\"fill\",pixelHeight:600,pixelWidth:600,sizes:\"35px\",src:\"https://framerusercontent.com/images/aVjDMxiWJWkH4Sq1AzBpYpWDtA.png\",srcSet:\"https://framerusercontent.com/images/aVjDMxiWJWkH4Sq1AzBpYpWDtA.png?scale-down-to=512 512w,https://framerusercontent.com/images/aVjDMxiWJWkH4Sq1AzBpYpWDtA.png 600w\"},className:\"framer-1f8iyv0\",\"data-framer-name\":\"image 69\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"Deepseek\"})}),className:\"framer-jfhtnf\",\"data-framer-name\":\"Deepseek\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dwvr0m\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Groq logo\",fit:\"fill\",src:\"https://framerusercontent.com/images/x20bUDhueHg0ekic4PpEA19ClG0.png\"},className:\"framer-17btc37\",\"data-framer-name\":\"image 55\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"Groq\"})}),className:\"framer-up31g\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fer2zr\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Google Gemini Logo\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GXH4s5Z1Z8N4YDfUb7JoTB8uDho.png\"},className:\"framer-ncthim\",\"data-framer-name\":\"how-to-access-google-gemini-on-your-phone-if-you-dont-have-v0-4sEBYpHgYoR0jS0SQ5LPqC4Ugu0oEjeXovEMz36nW5M 3\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"Gemini\"})}),className:\"framer-cymh20\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7d0bab\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Black-Forrest-Labs-Logo\",fit:\"stretch\",pixelHeight:116,pixelWidth:123,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mQ26pU7S3afPsxoqC3s9vy4bec.png\"},className:\"framer-znn08v\",\"data-framer-name\":\"image 63\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"FLUX.1\"})}),className:\"framer-1xr4c9h\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14u8llt\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"MetaAI Llama 3 logo\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4RLUeJBIpgjwekJzYZYO8ulwaY.png\"},className:\"framer-21mt61\",\"data-framer-name\":\"image 55\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"LLama\"})}),className:\"framer-nxtqzh\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-irpbnr\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2FciawczKbACmi56vn6Nmc6PY.png\"},className:\"framer-1e9ctez\",\"data-framer-name\":\"image 73\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"Perplexity\"})}),className:\"framer-g8u2m8\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oz1xti\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Mistral logo\",fit:\"fill\",sizes:\"36px\",src:\"https://framerusercontent.com/images/0SH2FHe4LtAG735JDkGLlnSDI.png\",srcSet:\"https://framerusercontent.com/images/0SH2FHe4LtAG735JDkGLlnSDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/0SH2FHe4LtAG735JDkGLlnSDI.png 1000w\"},className:\"framer-1jf7n25\",\"data-framer-name\":\"image 51\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"Mistral\"})}),className:\"framer-1xwguds\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ibpvey\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/Dyspnmw9umCDAWVk7RGTpmpRI.png\"},className:\"framer-12oy770\",\"data-framer-name\":\"image 70\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"Stable Diffusion\"})}),className:\"framer-b5m3ld\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gwh2ac\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Databricks logo\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SDFSY9wuNQztf8dnOB6tcAK4.png\"},className:\"framer-1qnhtd5\",\"data-framer-name\":\"image 64\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"Databricks\"})}),className:\"framer-1wnwdyg\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:30,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-82r0x7\",\"data-framer-name\":\"Features Tabs\",id:elementId3,ref:ref4,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ocsi0r\",\"data-styles-preset\":\"lVyB1TXOo\",style:{\"--framer-text-alignment\":\"center\"},children:\"Your Complete AI Chatbot\"})}),className:\"framer-ouvbto\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n7vgwg\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xtu6ir\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bnjtrh\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-16e6qh6\",\"data-styles-preset\":\"FHj2jWK6W\",children:\"AI Characters and Assistants\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-pn6edo\",\"data-styles-preset\":\"Xcf3J_wJx\",style:{\"--framer-text-alignment\":\"left\"},children:\"AI Characters and Assistants\"})}),className:\"framer-svhd44\",\"data-framer-name\":\"Multiple Models\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y466ty\",\"data-styles-preset\":\"L0IoGTG70\",children:\"Find the ideal AI for you! Pick a ready-made assistant or create your own. Customize it with your instructions and files. Let your creativity lead the way!\"})}),className:\"framer-11dapej\",\"data-framer-name\":\"Switch between models in the same chat: Text, images, web search.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yx0qz2\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rb0yl4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{background:{alt:\"AI female teacher assistant\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:1209,pixelWidth:768,sizes:\"143.1111px\",src:\"https://framerusercontent.com/images/H33F2eYlCUn4lSFNTKtwcXYvTE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/H33F2eYlCUn4lSFNTKtwcXYvTE.png?scale-down-to=1024 650w,https://framerusercontent.com/images/H33F2eYlCUn4lSFNTKtwcXYvTE.png 768w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"AI generated woman portrait\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:1024,pixelWidth:1024,sizes:\"150px\",src:\"https://framerusercontent.com/images/JxFqQ711FvP7urreMh3N8uBliw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/JxFqQ711FvP7urreMh3N8uBliw.png?scale-down-to=512 512w,https://framerusercontent.com/images/JxFqQ711FvP7urreMh3N8uBliw.png 1024w\"},className:\"framer-gbz4o\",\"data-framer-name\":\"image\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g4rlat hidden-1qpceld\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Female Teacher AI Assistant\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:1182,pixelWidth:719,positionX:\"center\",positionY:\"top\",sizes:\"150.1389px\",src:\"https://framerusercontent.com/images/gsAhhbQfMFDgsTRZSdsIhQJKfE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/gsAhhbQfMFDgsTRZSdsIhQJKfE.png?scale-down-to=1024 622w,https://framerusercontent.com/images/gsAhhbQfMFDgsTRZSdsIhQJKfE.png 719w\"},className:\"framer-1mb78jv\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ai generated wizzard\",backgroundSize:.56,fit:\"tile\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:847,pixelWidth:768,positionX:\"center\",positionY:\"bottom\",sizes:\"150px\",src:\"https://framerusercontent.com/images/vRCl83X2u6FN7NVOtlJoOnroGvQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vRCl83X2u6FN7NVOtlJoOnroGvQ.png 768w\"},className:\"framer-701e6s\",\"data-framer-name\":\"image\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sodziw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{background:{alt:\"AI dwarf face\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:1024,pixelWidth:1024,sizes:\"143.1111px\",src:\"https://framerusercontent.com/images/2OKHR7jU45PjZddRh8jaFB9ZCcM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2OKHR7jU45PjZddRh8jaFB9ZCcM.png?scale-down-to=512 512w,https://framerusercontent.com/images/2OKHR7jU45PjZddRh8jaFB9ZCcM.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"AI dwarf face\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:1024,pixelWidth:1024,sizes:\"150px\",src:\"https://framerusercontent.com/images/2OKHR7jU45PjZddRh8jaFB9ZCcM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2OKHR7jU45PjZddRh8jaFB9ZCcM.png?scale-down-to=512 512w,https://framerusercontent.com/images/2OKHR7jU45PjZddRh8jaFB9ZCcM.png 1024w\"},className:\"framer-9uymhu\",\"data-framer-name\":\"image\"})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13lczrw\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8qpif4\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-16e6qh6\",\"data-styles-preset\":\"FHj2jWK6W\",children:\"All Top AI Models\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-pn6edo\",\"data-styles-preset\":\"Xcf3J_wJx\",style:{\"--framer-text-alignment\":\"left\"},children:\"All Top AI Models\"})}),className:\"framer-15nbh7d\",\"data-framer-name\":\"Multiple Models\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y466ty\",\"data-styles-preset\":\"L0IoGTG70\",children:\"Use optimal AI for creating content, coding, customer support, marketing, and studying.\"})}),className:\"framer-yi1qq2\",\"data-framer-name\":\"Switch between models in the same chat: Text, images, web search.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hoofdn hidden-8xpqdh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{background:{alt:\"AI model list\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:1196,pixelWidth:1340,positionX:\"right\",positionY:\"center\",sizes:\"278px\",src:\"https://framerusercontent.com/images/rawNtNnNQwqRlRPYW1z479hZkQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rawNtNnNQwqRlRPYW1z479hZkQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/rawNtNnNQwqRlRPYW1z479hZkQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rawNtNnNQwqRlRPYW1z479hZkQ.png 1340w\"}},KVrspKEWA:{background:{alt:\"AI model list\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:1196,pixelWidth:1340,positionX:\"right\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/rawNtNnNQwqRlRPYW1z479hZkQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rawNtNnNQwqRlRPYW1z479hZkQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/rawNtNnNQwqRlRPYW1z479hZkQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rawNtNnNQwqRlRPYW1z479hZkQ.png 1340w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"AI model list\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:1196,pixelWidth:1340,positionX:\"right\",positionY:\"center\",sizes:\"292px\",src:\"https://framerusercontent.com/images/rawNtNnNQwqRlRPYW1z479hZkQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rawNtNnNQwqRlRPYW1z479hZkQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/rawNtNnNQwqRlRPYW1z479hZkQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rawNtNnNQwqRlRPYW1z479hZkQ.png 1340w\"},className:\"framer-141umsh\",\"data-framer-name\":\"Image\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-dmqb2q hidden-sry8r4 hidden-109axor hidden-1qpceld\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:598,pixelWidth:670,positionX:\"right\",positionY:\"center\",sizes:\"206px\",src:\"https://framerusercontent.com/images/mSLqDlhFZifxqWFSzvIHSrQfI.png\",srcSet:\"https://framerusercontent.com/images/mSLqDlhFZifxqWFSzvIHSrQfI.png?scale-down-to=512 512w,https://framerusercontent.com/images/mSLqDlhFZifxqWFSzvIHSrQfI.png 670w\"},className:\"framer-1b4h6sq\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pq7o4o\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r03bil\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-16e6qh6\",\"data-styles-preset\":\"FHj2jWK6W\",children:\"AI Prompt Library\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-pn6edo\",\"data-styles-preset\":\"Xcf3J_wJx\",style:{\"--framer-text-alignment\":\"left\"},children:\"AI Prompt Library\"})}),className:\"framer-1sk27kc\",\"data-framer-name\":\"Multiple Models\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y466ty\",\"data-styles-preset\":\"L0IoGTG70\",children:\"Don't say the same thing over and over. Keep your favorite prompts organized in a library so you can find them easily with shortcuts.\"})}),className:\"framer-1f6qjn0\",\"data-framer-name\":\"Switch between models in the same chat: Text, images, web search.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{background:{alt:\"ChatLabs AI Prompts\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:478,pixelWidth:543,positionX:\"center\",positionY:\"center\",sizes:\"295px\",src:\"https://framerusercontent.com/images/8RAXYcz50KxiAjUCBgM2WgrSUg.png\",srcSet:\"https://framerusercontent.com/images/8RAXYcz50KxiAjUCBgM2WgrSUg.png?scale-down-to=512 512w,https://framerusercontent.com/images/8RAXYcz50KxiAjUCBgM2WgrSUg.png 978w\"}},KVrspKEWA:{background:{alt:\"ChatLabs AI Prompts\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:478,pixelWidth:543,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 200px) - 40px)`,src:\"https://framerusercontent.com/images/8RAXYcz50KxiAjUCBgM2WgrSUg.png\",srcSet:\"https://framerusercontent.com/images/8RAXYcz50KxiAjUCBgM2WgrSUg.png?scale-down-to=512 512w,https://framerusercontent.com/images/8RAXYcz50KxiAjUCBgM2WgrSUg.png 978w\"}},wyDBVgqED:{background:{alt:\"ChatLabs AI Prompts\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:478,pixelWidth:543,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 200px) - 40px)`,src:\"https://framerusercontent.com/images/8RAXYcz50KxiAjUCBgM2WgrSUg.png\",srcSet:\"https://framerusercontent.com/images/8RAXYcz50KxiAjUCBgM2WgrSUg.png?scale-down-to=512 512w,https://framerusercontent.com/images/8RAXYcz50KxiAjUCBgM2WgrSUg.png 978w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"ChatLabs AI Prompts\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:478,pixelWidth:543,positionX:\"center\",positionY:\"center\",sizes:\"393.3333px\",src:\"https://framerusercontent.com/images/8RAXYcz50KxiAjUCBgM2WgrSUg.png\",srcSet:\"https://framerusercontent.com/images/8RAXYcz50KxiAjUCBgM2WgrSUg.png?scale-down-to=512 512w,https://framerusercontent.com/images/8RAXYcz50KxiAjUCBgM2WgrSUg.png 978w\"},className:\"framer-1ouajee\",\"data-border\":true,\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b116q9\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tgqnwz\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-16e6qh6\",\"data-styles-preset\":\"FHj2jWK6W\",children:[\"AI Art and \",/*#__PURE__*/_jsx(\"br\",{}),\"Image Generation\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-pn6edo\",\"data-styles-preset\":\"Xcf3J_wJx\",style:{\"--framer-text-alignment\":\"left\"},children:[\"AI Art and \",/*#__PURE__*/_jsx(\"br\",{}),\"Image Generation\"]})}),className:\"framer-uvwmge\",\"data-framer-name\":\"Multiple Models\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y466ty\",\"data-styles-preset\":\"L0IoGTG70\",children:\"Create stunning AI images with FLUX.1, DALL-E 3, Recraft V3, and Stable Diffusion 3.\"})}),className:\"framer-t0ageb\",\"data-framer-name\":\"Switch between models in the same chat: Text, images, web search.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{background:{alt:\"AI generated dream scene\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:878,pixelWidth:2048,sizes:`calc(max(${componentViewport?.width||\"100vw\"} - 48px, 200px) - 32px)`,src:\"https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png?scale-down-to=512 512w,https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png 2048w\"}},KVrspKEWA:{background:{alt:\"AI generated dream scene\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:878,pixelWidth:2048,positionX:\"38.7%\",positionY:\"51.5%\",sizes:\"426px\",src:\"https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png?scale-down-to=512 512w,https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png 2048w\"}},wyDBVgqED:{background:{alt:\"AI generated dream scene\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:878,pixelWidth:2048,positionX:\"32.8%\",positionY:\"57.9%\",sizes:\"371px\",src:\"https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png?scale-down-to=512 512w,https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"AI generated dream scene\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:878,pixelWidth:2048,sizes:\"533px\",src:\"https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png?scale-down-to=512 512w,https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YVBNb06XXaUjAq6L2PWcPO9rMY.png 2048w\"},className:\"framer-jsfbfz\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e120p2\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xx6tk\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-16e6qh6\",\"data-styles-preset\":\"FHj2jWK6W\",children:\"AI Model Comparison\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-pn6edo\",\"data-styles-preset\":\"Xcf3J_wJx\",style:{\"--framer-text-alignment\":\"left\"},children:\"AI Model Comparison\"})}),className:\"framer-9r1zuj\",\"data-framer-name\":\"Multiple Models\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y466ty\",\"data-styles-preset\":\"L0IoGTG70\",children:\"You can easily see how different AI models perform side by side on one screen.\"})}),className:\"framer-6zqux7\",\"data-framer-name\":\"Switch between models in the same chat: Text, images, web search.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{background:{alt:\"AI Models Comparison\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:1406,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${componentViewport?.width||\"100vw\"} - 48px, 200px) - 32px)`,src:\"https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png?scale-down-to=512 512w,https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png 2048w\"}},KVrspKEWA:{background:{alt:\"AI Models Comparison\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:1406,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"445.6155px\",src:\"https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png?scale-down-to=512 512w,https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png 2048w\"}},wyDBVgqED:{background:{alt:\"AI Models Comparison\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:1406,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"411px\",src:\"https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png?scale-down-to=512 512w,https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"AI Models Comparison\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:1406,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"565px\",src:\"https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png?scale-down-to=512 512w,https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uEuyRoHe2WPZltyv9YCHPFmMg6M.png 2048w\"},className:\"framer-1fl4chr\",\"data-border\":true,\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kaetw9\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s3xmm1\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-16e6qh6\",\"data-styles-preset\":\"FHj2jWK6W\",children:\"AI Web Search\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-pn6edo\",\"data-styles-preset\":\"Xcf3J_wJx\",style:{\"--framer-text-alignment\":\"left\"},children:\"AI Web Search\"})}),className:\"framer-1bzayh4\",\"data-framer-name\":\"Multiple Models\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y466ty\",\"data-styles-preset\":\"L0IoGTG70\",children:\"Browse the web and get up to date information from Google Search and Perplexity.\"})}),className:\"framer-v6tr7l\",\"data-framer-name\":\"Switch between models in the same chat: Text, images, web search.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:1416,pixelWidth:1812,positionX:\"left\",positionY:\"top\",sizes:\"295px\",src:\"https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png 1812w\"}},KVrspKEWA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:1416,pixelWidth:1812,positionX:\"left\",positionY:\"top\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 200px) - 40px)`,src:\"https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png 1812w\"}},wyDBVgqED:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:1416,pixelWidth:1812,positionX:\"left\",positionY:\"top\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 200px) - 40px)`,src:\"https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png 1812w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:1416,pixelWidth:1812,positionX:\"left\",positionY:\"top\",sizes:\"393.3333px\",src:\"https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv7pxGoOVVW8C2LkytnjgQJB14.png 1812w\"},className:\"framer-q2kpk9\",\"data-border\":true,\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lmtax4\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12x4qs4\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-16e6qh6\",\"data-styles-preset\":\"FHj2jWK6W\",children:\"Voice Input, Text-to-Speech\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-pn6edo\",\"data-styles-preset\":\"Xcf3J_wJx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Voice Input, Text-to-Speech\"})}),className:\"framer-snu9og\",\"data-framer-name\":\"Multiple Models\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y466ty\",\"data-styles-preset\":\"L0IoGTG70\",children:\"Tired of typing? Just use your voice to say your prompts. Then listen to the AI's answers!\"})}),className:\"framer-b8gqc\",\"data-framer-name\":\"Switch between models in the same chat: Text, images, web search.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{background:{alt:\"Voice Input Interface\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:952,pixelWidth:2140,positionX:\"right\",positionY:\"center\",sizes:\"295px\",src:\"https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=512 512w,https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png 2140w\"}},KVrspKEWA:{background:{alt:\"Voice Input Interface\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:952,pixelWidth:2140,positionX:\"right\",positionY:\"center\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 200px) - 40px)`,src:\"https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=512 512w,https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png 2140w\"}},wyDBVgqED:{background:{alt:\"Voice Input Interface\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:952,pixelWidth:2140,positionX:\"right\",positionY:\"center\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 200px) - 40px)`,src:\"https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=512 512w,https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png 2140w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Voice Input Interface\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:952,pixelWidth:2140,positionX:\"right\",positionY:\"center\",sizes:\"393.3333px\",src:\"https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=512 512w,https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kXheeH5k1V3HjwSIzMtU4sgv9I.png 2140w\"},className:\"framer-1hsaefz\",\"data-border\":true,\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5w1mrq\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19odaz8\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-16e6qh6\",\"data-styles-preset\":\"FHj2jWK6W\",children:\"Chat with Files\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-pn6edo\",\"data-styles-preset\":\"Xcf3J_wJx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Chat with Files\"})}),className:\"framer-1dfqst2\",\"data-framer-name\":\"Multiple Models\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y466ty\",\"data-styles-preset\":\"L0IoGTG70\",children:\"Upload your documents, PDFs, or images, and ask any question you want!\"})}),className:\"framer-36j09d\",\"data-framer-name\":\"Switch between models in the same chat: Text, images, web search.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{background:{alt:\"Chat with pdf\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:800,pixelWidth:700,sizes:\"295px\",src:\"https://framerusercontent.com/images/bLN7zn64ZLA6PGtu0CPbWBFBpA.png\",srcSet:\"https://framerusercontent.com/images/bLN7zn64ZLA6PGtu0CPbWBFBpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/bLN7zn64ZLA6PGtu0CPbWBFBpA.png 994w\"}},KVrspKEWA:{background:{alt:\"Chat with pdf\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:800,pixelWidth:700,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 200px) - 40px)`,src:\"https://framerusercontent.com/images/bLN7zn64ZLA6PGtu0CPbWBFBpA.png\",srcSet:\"https://framerusercontent.com/images/bLN7zn64ZLA6PGtu0CPbWBFBpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/bLN7zn64ZLA6PGtu0CPbWBFBpA.png 994w\"}},wyDBVgqED:{background:{alt:\"Chat with pdf\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:800,pixelWidth:700,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 200px) - 40px)`,src:\"https://framerusercontent.com/images/bLN7zn64ZLA6PGtu0CPbWBFBpA.png\",srcSet:\"https://framerusercontent.com/images/bLN7zn64ZLA6PGtu0CPbWBFBpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/bLN7zn64ZLA6PGtu0CPbWBFBpA.png 994w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Chat with pdf\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:800,pixelWidth:700,sizes:\"393.3333px\",src:\"https://framerusercontent.com/images/bLN7zn64ZLA6PGtu0CPbWBFBpA.png\",srcSet:\"https://framerusercontent.com/images/bLN7zn64ZLA6PGtu0CPbWBFBpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/bLN7zn64ZLA6PGtu0CPbWBFBpA.png 994w\"},className:\"framer-1wnzq5z\",\"data-border\":true,\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16aofy6\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-86kw4b\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-16e6qh6\",\"data-styles-preset\":\"FHj2jWK6W\",children:\"Chrome Extension\"})})},KVrspKEWA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-pn6edo\",\"data-styles-preset\":\"Xcf3J_wJx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Crome Extension\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-pn6edo\",\"data-styles-preset\":\"Xcf3J_wJx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Chrome Extension\"})}),className:\"framer-1lzrtbd\",\"data-framer-name\":\"Multiple Models\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y466ty\",\"data-styles-preset\":\"L0IoGTG70\",children:\"Bring AI Chats to every Tab of your Chrome Browser.\"})}),className:\"framer-1hgs9gx\",\"data-framer-name\":\"Switch between models in the same chat: Text, images, web search.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{background:{alt:\"Chrome Extension\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:766,pixelWidth:1346,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${componentViewport?.width||\"100vw\"} - 48px, 200px) - 32px)`,src:\"https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png?scale-down-to=512 512w,https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png 1346w\"}},KVrspKEWA:{background:{alt:\"Chrome Extension\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:766,pixelWidth:1346,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 200px) - 40px)`,src:\"https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png?scale-down-to=512 512w,https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png 1346w\"}},wyDBVgqED:{background:{alt:\"Chrome Extension\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:766,pixelWidth:1346,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 200px) - 40px)`,src:\"https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png?scale-down-to=512 512w,https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png 1346w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Chrome Extension\",fit:\"fit\",intrinsicHeight:496,intrinsicWidth:768,pixelHeight:766,pixelWidth:1346,positionX:\"center\",positionY:\"center\",sizes:\"393.3333px\",src:\"https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png?scale-down-to=512 512w,https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/K48p2rIPoVawbLY7AY3wrcQaXNM.png 1346w\"},className:\"framer-1r44r5f\",\"data-border\":true,\"data-framer-name\":\"Image\"})})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1v6sgl4\",\"data-framer-appear-id\":\"1v6sgl4\",\"data-framer-name\":\"Trusted\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1klztul\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ocsi0r\",\"data-styles-preset\":\"lVyB1TXOo\",style:{\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"Trusted by 100,000+ users\"})}),className:\"framer-njz2fl\",\"data-framer-name\":\"Join 20,000+ users\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"from organizations like\"})})},KVrspKEWA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"from organizations like\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"from organizations like\"})}),className:\"framer-1brz5ue\",\"data-framer-name\":\"leveraging the benefits of ChatGPT, from organizations like\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mjgib\",\"data-framer-name\":\"logos\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Meta Logo\",fit:\"fill\",intrinsicHeight:64,intrinsicWidth:109,pixelHeight:64,pixelWidth:109,src:\"https://framerusercontent.com/images/mDWULf23ddALMWwqJGM5DqdN6TM.svg\"},className:\"framer-iu2fhi\",\"data-framer-name\":\"Meta_lockup_negative_primary_white_RGB_1\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KVrspKEWA:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80 45\"><g transform=\"translate(0.5 0.5)\" id=\"ss11233167974_1\"><path d=\"M -0.152 -0.148 L 79.152 -0.148 L 79.152 44.852 L -0.152 44.852 Z\" fill=\"transparent\"></path><path d=\"M 7.859 9.789 C 5.268 9.789 3.886 9.964 3.282 9.964 C 2.273 9.964 1.381 9.934 0.488 9.934 C -0.001 9.934 -0.088 9.964 -0.088 10.167 C -0.088 10.517 0.027 10.546 1.323 10.546 C 2.129 10.546 2.59 10.808 2.59 13.107 L 2.59 26.494 C 2.59 26.931 2.532 26.989 1.237 26.989 C 0.603 26.989 0.43 27.047 0.43 27.339 C 0.43 27.629 0.632 27.659 0.921 27.659 C 1.842 27.659 2.475 27.542 3.684 27.542 C 4.95 27.542 6.161 27.833 7.37 27.833 C 11.373 27.833 14.05 26.291 14.05 23.031 C 14.05 20.5 12.351 19.51 10.998 18.811 C 10.422 18.52 9.875 18.375 9.875 18.316 C 9.875 18.229 10.508 17.909 11.055 17.53 C 11.977 16.89 13.215 15.871 13.215 13.805 C 13.215 11.738 11.603 9.789 7.859 9.789 Z M 57.196 9.822 C 57.046 9.822 56.094 10.252 54.141 10.379 C 53.715 10.404 53.515 10.379 53.515 10.683 C 53.515 10.961 53.765 11.012 54.216 11.012 C 55.343 11.012 55.493 11.012 55.493 12.606 L 55.493 26.554 C 55.493 27.01 55.067 26.985 54.041 26.985 C 53.439 26.985 53.414 27.137 53.414 27.314 C 53.414 27.517 53.464 27.567 54.041 27.567 C 54.391 27.567 55.718 27.517 56.57 27.517 C 57.021 27.517 57.572 27.567 57.947 27.567 C 58.849 27.567 59.024 27.567 59.024 27.314 C 59.024 27.112 59.074 26.96 57.822 26.96 C 57.371 26.96 57.196 26.681 57.196 24.58 C 57.196 23.846 57.321 21.847 57.321 12.201 C 57.321 11.442 57.446 10.531 57.446 10.227 C 57.446 9.948 57.321 9.822 57.196 9.822 Z M 36.403 9.847 C 36.178 9.847 34.699 10.404 32.897 10.404 C 32.621 10.404 32.571 10.505 32.571 10.758 C 32.571 10.936 32.671 11.012 33.698 11.012 C 34.374 11.012 34.575 11.24 34.575 13.037 C 34.575 18.378 34.499 25.871 34.499 26.605 C 34.499 26.985 34.274 26.985 33.423 26.985 C 32.821 26.985 32.697 27.112 32.697 27.314 C 32.697 27.542 32.847 27.567 33.423 27.567 C 33.773 27.567 34.7 27.517 35.551 27.517 C 36.353 27.517 37.505 27.567 37.881 27.567 C 38.431 27.567 38.557 27.567 38.557 27.314 C 38.557 27.112 38.457 26.985 37.881 26.985 C 36.328 26.985 36.378 26.985 36.378 25.795 L 36.378 24.201 C 36.378 23.973 36.729 23.796 37.129 23.542 C 37.555 23.264 37.906 23.011 38.006 23.011 C 38.156 23.011 39.209 24.606 40.26 25.821 C 41.312 27.036 41.538 27.669 41.988 27.669 C 42.339 27.669 43.09 27.644 43.391 27.644 C 43.616 27.644 43.942 27.669 44.242 27.669 C 44.793 27.669 44.969 27.618 44.969 27.441 C 44.969 27.238 44.768 27.112 44.167 27.112 C 43.316 27.112 42.514 25.871 41.663 24.834 C 39.91 22.707 39.459 22.226 39.459 21.998 C 39.459 21.821 41.012 20.708 42.264 19.467 C 43.04 18.707 43.892 17.62 43.892 17.391 C 43.892 17.315 43.791 17.29 43.591 17.29 C 43.291 17.29 41.838 17.366 41.513 17.366 C 41.212 17.366 40.736 17.29 40.486 17.29 C 40.16 17.29 40.035 17.34 40.035 17.543 C 40.035 17.771 40.16 17.821 40.536 17.821 C 41.638 17.821 41.713 17.873 41.713 18.277 C 41.713 18.809 41.487 19.24 40.511 20.175 C 39.709 20.935 37.104 23.264 36.478 23.264 C 36.403 23.264 36.378 23.188 36.378 23.086 C 36.378 18.96 36.528 16.125 36.528 12.278 C 36.528 11.468 36.578 10.404 36.578 10.075 C 36.578 9.923 36.528 9.847 36.403 9.847 Z M 6.995 10.487 C 9.615 10.487 10.825 13.281 10.825 14.737 C 10.825 17.036 9.874 17.589 9.039 18.229 C 9.039 18.229 7.83 18.055 6.074 18.055 C 5.382 18.055 5.008 18.112 5.008 17.647 L 5.008 11.331 C 5.008 10.749 5.094 10.488 6.995 10.488 Z M 19.622 17.037 C 17.343 17.037 14.964 19.163 14.964 22.732 C 14.964 26.96 18.02 27.973 20.073 27.973 C 22.102 27.973 24.231 26.377 24.231 26.25 C 24.231 26.2 24.156 26.049 24.03 26.049 C 23.881 26.049 22.979 26.656 21.326 26.656 C 19.422 26.656 16.742 25.72 16.742 22.226 C 16.742 21.644 16.818 21.517 17.218 21.492 C 20.073 21.315 22.578 20.758 23.229 20.606 C 23.906 20.454 24.256 20.353 24.256 20.251 C 24.256 20.049 23.855 19.441 23.429 18.935 C 22.527 17.872 20.925 17.037 19.622 17.037 Z M 48.826 17.037 C 46.547 17.037 44.167 19.163 44.167 22.732 C 44.167 26.96 47.223 27.973 49.277 27.973 C 51.305 27.973 53.435 26.377 53.435 26.25 C 53.435 26.2 53.359 26.049 53.234 26.049 C 53.083 26.049 52.182 26.656 50.529 26.656 C 48.626 26.656 45.946 25.72 45.946 22.226 C 45.946 21.644 46.021 21.517 46.422 21.492 C 49.277 21.315 51.781 20.758 52.432 20.606 C 53.108 20.454 53.459 20.353 53.459 20.251 C 53.459 20.049 53.059 19.441 52.633 18.935 C 51.731 17.872 50.128 17.037 48.826 17.037 Z M 63.272 17.037 C 60.993 17.037 58.613 19.163 58.613 22.732 C 58.613 26.96 61.669 27.973 63.723 27.973 C 65.751 27.973 67.881 26.377 67.881 26.25 C 67.881 26.2 67.805 26.049 67.679 26.049 C 67.529 26.049 66.628 26.656 64.975 26.656 C 63.071 26.656 60.392 25.72 60.392 22.226 C 60.392 21.644 60.467 21.517 60.868 21.492 C 63.723 21.315 66.227 20.758 66.878 20.606 C 67.554 20.454 67.906 20.353 67.906 20.251 C 67.906 20.049 67.505 19.441 67.078 18.935 C 66.178 17.872 64.574 17.037 63.272 17.037 Z M 28.338 17.214 C 27.937 17.214 27.462 17.34 27.06 17.34 C 26.559 17.34 26.084 17.289 25.232 17.289 C 24.806 17.289 24.831 17.366 24.831 17.669 C 24.831 17.948 24.831 17.923 25.282 17.923 C 26.685 17.923 26.635 17.973 26.635 19.694 L 26.635 26.631 C 26.635 26.985 26.559 27.01 25.533 27.01 C 24.932 27.01 24.907 27.061 24.907 27.314 C 24.907 27.567 24.957 27.567 25.533 27.567 C 25.883 27.567 26.735 27.441 27.587 27.441 C 28.388 27.441 30.066 27.567 30.417 27.567 C 31.068 27.567 31.093 27.593 31.093 27.314 C 31.093 27.086 31.068 27.01 30.417 27.01 C 28.564 27.01 28.489 27.01 28.489 25.77 L 28.489 20.555 C 28.489 19.492 29.039 18.884 30.492 18.884 C 31.744 18.884 32.045 19.922 32.395 19.922 C 32.546 19.922 32.946 18.809 32.946 18.555 C 32.946 17.897 31.794 17.34 31.343 17.34 C 30.166 17.34 28.989 18.657 28.614 18.657 C 28.514 18.657 28.489 18.479 28.489 18.252 C 28.489 18.176 28.539 17.619 28.539 17.492 C 28.539 17.289 28.438 17.214 28.338 17.214 Z M 78.347 17.238 C 77.996 17.238 77.32 17.34 76.944 17.34 C 76.267 17.34 75.817 17.29 75.141 17.29 C 74.69 17.29 74.615 17.29 74.615 17.619 C 74.615 17.872 74.715 17.872 75.492 17.872 C 76.343 17.872 76.342 18.024 76.342 18.783 C 76.342 19.138 75.442 21.771 74.841 23.593 C 74.44 24.783 74.29 25.137 74.114 25.137 C 74.014 25.137 73.713 24.707 73.513 24.175 C 72.01 20.277 71.359 19.391 71.359 18.656 C 71.359 18.074 71.509 17.923 72.11 17.923 C 72.636 17.923 72.736 17.897 72.736 17.669 C 72.736 17.39 72.636 17.29 72.11 17.29 C 71.309 17.29 70.432 17.365 69.731 17.365 C 69.13 17.365 68.955 17.314 68.253 17.314 C 67.803 17.314 67.727 17.441 67.727 17.669 C 67.727 17.897 67.753 17.923 68.253 17.923 C 68.704 17.923 68.879 18.049 69.506 19.568 C 70.883 22.859 72.886 27.541 72.886 27.82 C 72.886 28.58 70.733 31.567 69.831 32.706 C 68.98 33.794 67.803 33.946 67.803 34.098 C 67.803 34.225 68.053 34.351 68.479 34.351 C 69.03 34.351 69.205 34.149 69.956 34.048 C 70.507 33.971 70.808 33.946 71.083 33.389 C 71.885 31.719 73.012 29.668 74.59 25.795 C 76.569 20.935 77.67 17.897 78.221 17.897 C 78.522 17.897 78.873 17.771 78.873 17.543 C 78.873 17.264 78.747 17.238 78.347 17.238 Z M 19.372 17.568 C 20.524 17.568 22.002 19.441 22.002 20.074 C 22.002 20.226 21.977 20.277 21.702 20.327 C 19.823 20.631 18.47 20.96 17.168 20.96 C 16.868 20.96 16.868 20.935 16.868 20.808 C 16.868 20.454 17.469 17.568 19.372 17.568 Z M 48.575 17.568 C 49.727 17.568 51.205 19.441 51.205 20.074 C 51.205 20.226 51.18 20.277 50.905 20.327 C 49.026 20.631 47.673 20.96 46.372 20.96 C 46.071 20.96 46.071 20.935 46.071 20.808 C 46.071 20.454 46.671 17.568 48.575 17.568 Z M 63.021 17.568 C 64.173 17.568 65.65 19.441 65.65 20.074 C 65.65 20.226 65.626 20.277 65.35 20.327 C 63.472 20.631 62.12 20.96 60.817 20.96 C 60.516 20.96 60.516 20.935 60.516 20.808 C 60.516 20.454 61.117 17.568 63.021 17.568 Z M 6.047 18.607 C 9.186 18.607 11.316 20.644 11.316 23.264 C 11.316 25.795 9.704 27.309 7.515 27.309 C 6.594 27.309 5.673 27.105 5.356 26.756 C 5.097 26.465 5.01 24.836 5.01 24.573 L 5.01 19.363 C 5.01 18.723 5.241 18.607 6.047 18.607 Z M 20.326 30.488 C 19.734 30.488 19.241 30.848 19.241 31.446 C 19.241 32.582 20.722 32.38 20.722 33.012 C 20.722 33.264 20.531 33.481 20.144 33.481 C 19.885 33.481 19.558 33.358 19.284 33.171 L 19.04 33.605 C 19.314 33.798 19.685 33.981 20.145 33.981 C 20.785 33.981 21.318 33.566 21.318 32.993 C 21.318 31.841 19.837 32.188 19.837 31.421 C 19.837 31.169 20.004 30.987 20.326 30.987 C 20.614 30.987 20.838 31.086 21.088 31.214 L 21.298 30.789 C 21.015 30.611 20.677 30.488 20.326 30.488 Z M 32.132 30.488 C 31.125 30.488 30.676 31.214 30.676 32.232 C 30.676 33.2 31.121 33.981 32.132 33.981 C 33.144 33.981 33.589 33.2 33.589 32.232 C 33.589 31.214 33.139 30.488 32.132 30.488 Z M 39.981 30.488 C 38.974 30.488 38.48 31.219 38.48 32.237 C 38.48 33.275 38.93 33.981 39.961 33.981 C 40.411 33.981 40.831 33.793 41.173 33.476 L 40.875 33.092 C 40.601 33.344 40.289 33.481 39.99 33.481 C 39.37 33.481 39.076 33.032 39.076 32.232 C 39.076 31.437 39.389 30.987 39.981 30.987 C 40.299 30.987 40.533 31.101 40.792 31.318 L 41.095 30.923 C 40.743 30.631 40.396 30.488 39.981 30.488 Z M 52.706 30.488 C 51.699 30.488 51.25 31.214 51.25 32.232 C 51.25 33.2 51.695 33.981 52.706 33.981 C 53.718 33.981 54.163 33.2 54.163 32.232 C 54.163 31.214 53.713 30.488 52.706 30.488 Z M 5.935 30.537 L 5.373 30.596 L 5.373 33.926 L 5.954 33.926 L 5.954 31.654 L 5.964 31.654 L 7.376 33.926 L 7.895 33.926 L 7.895 30.543 L 7.313 30.543 L 7.313 32.766 L 7.299 32.766 L 5.935 30.537 Z M 13.397 30.537 L 13.397 33.926 L 15.43 33.926 L 15.474 33.427 L 13.979 33.427 L 13.979 32.47 L 15.235 32.47 L 15.235 31.97 L 13.979 31.97 L 13.979 31.037 L 15.391 31.037 L 15.391 30.538 L 13.397 30.538 Z M 34.337 30.537 L 34.337 33.926 L 34.918 33.926 L 34.918 32.47 L 36.15 32.47 L 36.15 31.97 L 34.919 31.97 L 34.919 31.037 L 36.292 31.037 L 36.292 30.538 L 34.337 30.538 Z M 43.329 30.537 L 42.65 30.591 L 41.472 33.926 L 42.015 33.926 L 42.293 33.111 L 43.643 33.111 L 43.921 33.926 L 44.517 33.926 Z M 48.92 30.537 L 48.92 33.926 L 49.501 33.926 L 49.501 32.47 L 50.733 32.47 L 50.733 31.97 L 49.501 31.97 L 49.501 31.037 L 50.875 31.037 L 50.875 30.538 L 48.92 30.538 Z M 58.078 30.537 L 57.515 30.596 L 57.515 33.926 L 58.097 33.926 L 58.097 31.654 L 58.107 31.654 L 59.519 33.926 L 60.038 33.926 L 60.038 30.543 L 59.456 30.543 L 59.456 32.766 L 59.441 32.766 L 58.077 30.537 Z M 63.683 30.537 L 63.003 30.591 L 61.825 33.926 L 62.367 33.926 L 62.646 33.111 L 63.995 33.111 L 64.274 33.926 L 64.87 33.926 Z M 2.086 30.542 L 2.086 32.75 C 2.086 33.512 2.502 33.981 3.323 33.981 C 4.139 33.981 4.555 33.512 4.555 32.746 L 4.555 30.542 L 3.973 30.542 L 3.973 32.785 C 3.973 33.205 3.798 33.481 3.323 33.481 C 2.844 33.481 2.668 33.205 2.668 32.78 L 2.668 30.543 L 2.086 30.543 Z M 8.723 30.542 L 8.723 33.926 L 9.305 33.926 L 9.305 30.543 L 8.724 30.543 Z M 9.876 30.542 L 11.03 33.926 L 11.67 33.926 L 12.829 30.542 L 12.256 30.542 L 11.616 32.434 C 11.616 32.434 11.553 32.627 11.387 33.205 L 11.357 33.205 C 11.287 32.945 11.212 32.687 11.133 32.429 L 10.493 30.542 Z M 16.244 30.542 L 16.244 33.926 L 16.825 33.926 L 16.825 32.573 L 17.103 32.573 C 17.314 32.573 17.437 32.77 17.535 32.974 L 17.998 33.926 L 18.639 33.926 L 17.999 32.706 C 17.955 32.61 17.883 32.529 17.794 32.474 L 17.794 32.464 C 18.233 32.296 18.424 31.951 18.424 31.546 C 18.424 30.957 18.057 30.542 17.319 30.542 Z M 22.011 30.542 L 22.011 33.926 L 22.591 33.926 L 22.591 30.543 L 22.011 30.543 Z M 23.261 30.542 L 23.261 31.046 L 24.146 31.046 L 24.146 33.926 L 24.728 33.926 L 24.728 31.041 L 25.573 31.041 L 25.618 30.542 L 23.261 30.542 Z M 25.998 30.542 L 27.053 32.479 L 27.053 33.927 L 27.635 33.927 L 27.635 32.479 L 28.692 30.542 L 28.05 30.542 L 27.577 31.506 C 27.577 31.506 27.518 31.629 27.352 32.005 L 27.338 32.005 C 27.161 31.629 27.098 31.506 27.098 31.506 L 26.653 30.542 Z M 44.989 30.542 L 44.989 33.926 L 46.968 33.926 L 47.012 33.427 L 45.57 33.427 L 45.57 30.543 L 44.989 30.543 Z M 47.579 30.542 L 47.579 33.926 L 48.16 33.926 L 48.16 30.543 L 47.579 30.543 Z M 54.665 30.542 L 54.665 33.926 L 55.246 33.926 L 55.246 32.573 L 55.524 32.573 C 55.734 32.573 55.857 32.77 55.955 32.974 L 56.419 33.926 L 57.059 33.926 L 56.419 32.706 C 56.375 32.61 56.303 32.529 56.214 32.474 L 56.214 32.464 C 56.653 32.296 56.845 31.951 56.845 31.546 C 56.845 30.957 56.478 30.542 55.739 30.542 L 54.665 30.542 Z M 60.768 30.542 L 60.768 33.926 L 61.35 33.926 L 61.35 30.543 L 60.768 30.543 Z M 32.131 30.987 C 32.708 30.987 32.987 31.496 32.987 32.231 C 32.987 32.968 32.703 33.481 32.131 33.481 C 31.555 33.481 31.271 32.968 31.271 32.227 C 31.271 31.491 31.555 30.987 32.131 30.987 Z M 52.705 30.987 C 53.282 30.987 53.561 31.496 53.561 32.231 C 53.561 32.968 53.277 33.481 52.705 33.481 C 52.127 33.481 51.845 32.968 51.845 32.227 C 51.845 31.491 52.128 30.987 52.705 30.987 Z M 16.825 31.046 L 17.305 31.046 C 17.701 31.046 17.828 31.234 17.828 31.55 C 17.828 31.871 17.666 32.079 17.314 32.079 L 16.825 32.079 Z M 55.246 31.046 L 55.725 31.046 C 56.121 31.046 56.249 31.234 56.249 31.55 C 56.249 31.871 56.087 32.079 55.735 32.079 L 55.246 32.079 Z M 42.955 31.135 L 42.965 31.135 C 43.195 31.837 43.234 31.945 43.234 31.945 L 43.493 32.691 L 42.432 32.691 L 42.692 31.946 C 42.692 31.946 42.731 31.837 42.956 31.135 Z M 63.309 31.135 L 63.319 31.135 C 63.549 31.837 63.588 31.945 63.588 31.945 L 63.846 32.691 L 62.786 32.691 L 63.045 31.946 C 63.045 31.946 63.084 31.837 63.309 31.135 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:11233167974}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pkce2a\",\"data-framer-name\":\"berkeley_university_seeklogo_com_1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 115 64\"><g transform=\"translate(0.5 0.5)\" id=\"ss8622228517_1\"><path d=\"M 0 0 L 114 0 L 114 64 L 0 64 Z\" fill=\"transparent\"></path><path d=\"M 11.516 14.133 C 7.791 14.133 5.805 14.382 4.936 14.382 C 3.486 14.382 2.204 14.34 0.92 14.34 C 0.217 14.34 0.092 14.382 0.092 14.671 C 0.092 15.168 0.258 15.21 2.121 15.21 C 3.279 15.21 3.942 15.582 3.942 18.852 L 3.942 37.892 C 3.942 38.513 3.859 38.596 1.997 38.596 C 1.086 38.596 0.837 38.678 0.837 39.093 C 0.837 39.506 1.127 39.548 1.542 39.548 C 2.866 39.548 3.776 39.382 5.515 39.382 C 7.335 39.382 9.075 39.796 10.813 39.796 C 16.567 39.796 20.416 37.603 20.416 32.966 C 20.416 29.366 17.974 27.958 16.028 26.964 C 15.2 26.55 14.414 26.344 14.414 26.261 C 14.414 26.137 15.324 25.681 16.111 25.143 C 17.436 24.233 19.216 22.783 19.216 19.845 C 19.216 16.905 16.898 14.133 11.516 14.133 Z M 82.438 14.18 C 82.222 14.18 80.854 14.792 78.046 14.972 C 77.434 15.008 77.146 14.972 77.146 15.404 C 77.146 15.8 77.506 15.873 78.154 15.873 C 79.774 15.873 79.99 15.873 79.99 18.14 L 79.99 37.977 C 79.99 38.626 79.378 38.59 77.902 38.59 C 77.037 38.59 77.002 38.806 77.002 39.058 C 77.002 39.346 77.073 39.418 77.902 39.418 C 78.406 39.418 80.314 39.346 81.538 39.346 C 82.187 39.346 82.978 39.418 83.518 39.418 C 84.814 39.418 85.066 39.418 85.066 39.058 C 85.066 38.77 85.138 38.554 83.338 38.554 C 82.69 38.554 82.438 38.158 82.438 35.17 C 82.438 34.125 82.618 31.282 82.618 17.564 C 82.618 16.484 82.798 15.188 82.798 14.756 C 82.798 14.36 82.618 14.18 82.438 14.18 Z M 52.548 14.216 C 52.224 14.216 50.099 15.008 47.508 15.008 C 47.112 15.008 47.04 15.152 47.04 15.512 C 47.04 15.764 47.184 15.872 48.66 15.872 C 49.631 15.872 49.92 16.197 49.92 18.752 C 49.92 26.349 49.811 37.006 49.811 38.05 C 49.811 38.59 49.487 38.59 48.264 38.59 C 47.399 38.59 47.22 38.77 47.22 39.058 C 47.22 39.382 47.436 39.418 48.264 39.418 C 48.767 39.418 50.1 39.346 51.324 39.346 C 52.476 39.346 54.132 39.418 54.672 39.418 C 55.464 39.418 55.644 39.418 55.644 39.058 C 55.644 38.77 55.5 38.59 54.672 38.59 C 52.44 38.59 52.512 38.59 52.512 36.898 L 52.512 34.63 C 52.512 34.306 53.016 34.054 53.592 33.693 C 54.204 33.297 54.708 32.938 54.852 32.938 C 55.068 32.938 56.581 35.206 58.092 36.934 C 59.605 38.662 59.929 39.562 60.577 39.562 C 61.081 39.562 62.161 39.527 62.593 39.527 C 62.917 39.527 63.385 39.562 63.817 39.562 C 64.609 39.562 64.861 39.49 64.861 39.238 C 64.861 38.95 64.573 38.77 63.709 38.77 C 62.485 38.77 61.333 37.006 60.109 35.53 C 57.589 32.505 56.941 31.822 56.941 31.497 C 56.941 31.245 59.173 29.662 60.973 27.897 C 62.089 26.817 63.313 25.27 63.313 24.945 C 63.313 24.837 63.169 24.801 62.881 24.801 C 62.45 24.801 60.361 24.909 59.893 24.909 C 59.461 24.909 58.777 24.801 58.417 24.801 C 57.949 24.801 57.769 24.873 57.769 25.161 C 57.769 25.486 57.949 25.557 58.489 25.557 C 60.073 25.557 60.181 25.63 60.181 26.205 C 60.181 26.961 59.857 27.574 58.453 28.905 C 57.301 29.985 53.556 33.298 52.656 33.298 C 52.548 33.298 52.512 33.19 52.512 33.045 C 52.512 27.177 52.728 23.145 52.728 17.673 C 52.728 16.521 52.8 15.008 52.8 14.54 C 52.8 14.324 52.728 14.216 52.548 14.216 Z M 10.274 15.126 C 14.041 15.126 15.779 19.1 15.779 21.17 C 15.779 24.44 14.413 25.226 13.213 26.137 C 13.213 26.137 11.474 25.889 8.95 25.889 C 7.956 25.889 7.418 25.971 7.418 25.309 L 7.418 16.327 C 7.418 15.499 7.542 15.127 10.274 15.127 Z M 28.426 24.441 C 25.15 24.441 21.729 27.465 21.729 32.541 C 21.729 38.554 26.122 39.995 29.074 39.995 C 31.99 39.995 35.051 37.725 35.051 37.545 C 35.051 37.474 34.943 37.258 34.762 37.258 C 34.547 37.258 33.251 38.122 30.875 38.122 C 28.138 38.122 24.285 36.79 24.285 31.822 C 24.285 30.994 24.394 30.813 24.97 30.778 C 29.074 30.526 32.674 29.734 33.61 29.518 C 34.583 29.301 35.087 29.158 35.087 29.013 C 35.087 28.725 34.51 27.861 33.898 27.141 C 32.602 25.629 30.298 24.441 28.426 24.441 Z M 70.406 24.441 C 67.13 24.441 63.709 27.465 63.709 32.541 C 63.709 38.554 68.102 39.995 71.054 39.995 C 73.97 39.995 77.031 37.725 77.031 37.545 C 77.031 37.474 76.922 37.258 76.742 37.258 C 76.526 37.258 75.23 38.122 72.854 38.122 C 70.118 38.122 66.266 36.79 66.266 31.822 C 66.266 30.994 66.374 30.813 66.95 30.778 C 71.054 30.526 74.654 29.734 75.59 29.518 C 76.562 29.301 77.066 29.158 77.066 29.013 C 77.066 28.725 76.491 27.861 75.878 27.141 C 74.582 25.629 72.278 24.441 70.406 24.441 Z M 91.172 24.441 C 87.896 24.441 84.475 27.465 84.475 32.541 C 84.475 38.554 88.868 39.995 91.82 39.995 C 94.736 39.995 97.797 37.725 97.797 37.545 C 97.797 37.474 97.688 37.258 97.508 37.258 C 97.292 37.258 95.997 38.122 93.62 38.122 C 90.884 38.122 87.032 36.79 87.032 31.822 C 87.032 30.994 87.14 30.813 87.716 30.778 C 91.82 30.526 95.42 29.734 96.356 29.518 C 97.328 29.301 97.833 29.158 97.833 29.013 C 97.833 28.725 97.257 27.861 96.644 27.141 C 95.349 25.629 93.044 24.441 91.172 24.441 Z M 40.955 24.693 C 40.378 24.693 39.695 24.873 39.118 24.873 C 38.398 24.873 37.714 24.8 36.49 24.8 C 35.878 24.8 35.914 24.909 35.914 25.341 C 35.914 25.737 35.914 25.701 36.562 25.701 C 38.578 25.701 38.506 25.773 38.506 28.221 L 38.506 38.086 C 38.506 38.59 38.398 38.626 36.922 38.626 C 36.058 38.626 36.022 38.698 36.022 39.058 C 36.022 39.418 36.094 39.418 36.922 39.418 C 37.426 39.418 38.651 39.238 39.875 39.238 C 41.027 39.238 43.439 39.418 43.943 39.418 C 44.879 39.418 44.915 39.454 44.915 39.058 C 44.915 38.734 44.879 38.626 43.943 38.626 C 41.279 38.626 41.171 38.626 41.171 36.862 L 41.171 29.445 C 41.171 27.933 41.963 27.069 44.051 27.069 C 45.851 27.069 46.283 28.545 46.787 28.545 C 47.003 28.545 47.579 26.961 47.579 26.601 C 47.579 25.665 45.923 24.872 45.274 24.872 C 43.582 24.872 41.891 26.745 41.351 26.745 C 41.207 26.745 41.171 26.493 41.171 26.169 C 41.171 26.061 41.243 25.269 41.243 25.089 C 41.243 24.8 41.099 24.693 40.955 24.693 Z M 112.842 24.728 C 112.338 24.728 111.366 24.872 110.826 24.872 C 109.853 24.872 109.206 24.801 108.234 24.801 C 107.586 24.801 107.478 24.801 107.478 25.269 C 107.478 25.629 107.622 25.629 108.738 25.629 C 109.962 25.629 109.961 25.845 109.961 26.925 C 109.961 27.429 108.666 31.174 107.802 33.765 C 107.226 35.458 107.01 35.962 106.758 35.962 C 106.614 35.962 106.181 35.35 105.893 34.594 C 103.733 29.049 102.797 27.789 102.797 26.744 C 102.797 25.917 103.013 25.701 103.877 25.701 C 104.633 25.701 104.777 25.665 104.777 25.341 C 104.777 24.944 104.633 24.801 103.877 24.801 C 102.725 24.801 101.465 24.908 100.457 24.908 C 99.593 24.908 99.341 24.836 98.333 24.836 C 97.685 24.836 97.577 25.016 97.577 25.341 C 97.577 25.665 97.613 25.701 98.333 25.701 C 98.981 25.701 99.233 25.881 100.133 28.041 C 102.113 32.721 104.993 39.381 104.993 39.778 C 104.993 40.858 101.898 45.106 100.601 46.726 C 99.377 48.274 97.685 48.49 97.685 48.706 C 97.685 48.886 98.045 49.066 98.657 49.066 C 99.449 49.066 99.701 48.778 100.781 48.635 C 101.573 48.526 102.005 48.49 102.401 47.698 C 103.553 45.322 105.174 42.406 107.442 36.898 C 110.286 29.985 111.87 25.665 112.662 25.665 C 113.094 25.665 113.598 25.485 113.598 25.161 C 113.598 24.764 113.418 24.728 112.842 24.728 Z M 28.066 25.197 C 29.722 25.197 31.846 27.861 31.846 28.761 C 31.846 28.977 31.811 29.049 31.415 29.121 C 28.715 29.553 26.77 30.021 24.898 30.021 C 24.466 30.021 24.466 29.985 24.466 29.805 C 24.466 29.301 25.33 25.197 28.066 25.197 Z M 70.046 25.197 C 71.702 25.197 73.826 27.861 73.826 28.761 C 73.826 28.977 73.79 29.049 73.394 29.121 C 70.694 29.553 68.749 30.021 66.878 30.021 C 66.446 30.021 66.446 29.985 66.446 29.805 C 66.446 29.301 67.309 25.197 70.046 25.197 Z M 90.811 25.197 C 92.467 25.197 94.591 27.861 94.591 28.761 C 94.591 28.977 94.556 29.049 94.16 29.121 C 91.46 29.553 89.516 30.021 87.643 30.021 C 87.211 30.021 87.211 29.985 87.211 29.805 C 87.211 29.301 88.075 25.197 90.811 25.197 Z M 8.911 26.674 C 13.423 26.674 16.485 29.572 16.485 33.297 C 16.485 36.898 14.168 39.051 11.022 39.051 C 9.697 39.051 8.373 38.761 7.918 38.264 C 7.545 37.85 7.421 35.533 7.421 35.16 L 7.421 27.75 C 7.421 26.84 7.752 26.674 8.911 26.674 Z M 29.437 43.572 C 28.587 43.572 27.877 44.084 27.877 44.935 C 27.877 46.55 30.006 46.262 30.006 47.162 C 30.006 47.52 29.732 47.829 29.176 47.829 C 28.804 47.829 28.334 47.654 27.94 47.387 L 27.589 48.005 C 27.982 48.279 28.516 48.54 29.177 48.54 C 30.097 48.54 30.863 47.949 30.863 47.134 C 30.863 45.496 28.734 45.989 28.734 44.899 C 28.734 44.541 28.974 44.282 29.437 44.282 C 29.851 44.282 30.174 44.422 30.533 44.605 L 30.835 44 C 30.428 43.747 29.942 43.572 29.437 43.572 Z M 46.409 43.572 C 44.961 43.572 44.315 44.605 44.315 46.052 C 44.315 47.429 44.955 48.54 46.409 48.54 C 47.863 48.54 48.503 47.429 48.503 46.052 C 48.503 44.605 47.856 43.572 46.409 43.572 Z M 57.691 43.572 C 56.244 43.572 55.534 44.612 55.534 46.059 C 55.534 47.535 56.181 48.539 57.663 48.539 C 58.309 48.539 58.913 48.272 59.405 47.822 L 58.977 47.275 C 58.583 47.633 58.134 47.829 57.705 47.829 C 56.813 47.829 56.391 47.19 56.391 46.052 C 56.391 44.921 56.841 44.282 57.691 44.282 C 58.148 44.282 58.485 44.443 58.857 44.752 L 59.293 44.19 C 58.787 43.775 58.288 43.572 57.691 43.572 Z M 75.984 43.572 C 74.536 43.572 73.89 44.605 73.89 46.052 C 73.89 47.429 74.53 48.54 75.984 48.54 C 77.438 48.54 78.078 47.429 78.078 46.052 C 78.078 44.605 77.431 43.572 75.984 43.572 Z M 8.75 43.642 L 7.942 43.726 L 7.942 48.462 L 8.778 48.462 L 8.778 45.23 L 8.792 45.23 L 10.822 48.462 L 11.568 48.462 L 11.568 43.65 L 10.731 43.65 L 10.731 46.812 L 10.711 46.812 L 8.751 43.642 Z M 19.477 43.642 L 19.477 48.462 L 22.4 48.462 L 22.463 47.752 L 20.313 47.752 L 20.313 46.39 L 22.119 46.39 L 22.119 45.68 L 20.313 45.68 L 20.313 44.353 L 22.343 44.353 L 22.343 43.643 L 19.477 43.643 Z M 49.578 43.642 L 49.578 48.462 L 50.414 48.462 L 50.414 46.39 L 52.185 46.39 L 52.185 45.68 L 50.415 45.68 L 50.415 44.353 L 52.388 44.353 L 52.388 43.643 L 49.578 43.643 Z M 62.504 43.642 L 61.528 43.719 L 59.835 48.462 L 60.615 48.462 L 61.015 47.302 L 62.955 47.302 L 63.355 48.462 L 64.212 48.462 Z M 70.541 43.642 L 70.541 48.462 L 71.376 48.462 L 71.376 46.39 L 73.147 46.39 L 73.147 45.68 L 71.377 45.68 L 71.377 44.353 L 73.351 44.353 L 73.351 43.643 L 70.541 43.643 Z M 83.706 43.642 L 82.897 43.726 L 82.897 48.462 L 83.733 48.462 L 83.733 45.23 L 83.748 45.23 L 85.778 48.462 L 86.523 48.462 L 86.523 43.65 L 85.687 43.65 L 85.687 46.812 L 85.665 46.812 L 83.705 43.642 Z M 91.763 43.642 L 90.786 43.719 L 89.092 48.462 L 89.872 48.462 L 90.272 47.302 L 92.212 47.302 L 92.612 48.462 L 93.47 48.462 Z M 3.218 43.649 L 3.218 46.789 C 3.218 47.872 3.815 48.539 4.996 48.539 C 6.169 48.539 6.766 47.872 6.766 46.783 L 6.766 43.649 L 5.93 43.649 L 5.93 46.839 C 5.93 47.436 5.678 47.829 4.996 47.829 C 4.307 47.829 4.054 47.436 4.054 46.831 L 4.054 43.65 L 3.218 43.65 Z M 12.758 43.649 L 12.758 48.462 L 13.594 48.462 L 13.594 43.65 L 12.759 43.65 Z M 14.416 43.649 L 16.074 48.462 L 16.994 48.462 L 18.66 43.649 L 17.837 43.649 L 16.917 46.34 C 16.917 46.34 16.826 46.614 16.587 47.436 L 16.545 47.436 C 16.443 47.067 16.336 46.699 16.222 46.333 L 15.302 43.649 Z M 23.569 43.649 L 23.569 48.462 L 24.405 48.462 L 24.405 46.537 L 24.805 46.537 C 25.108 46.537 25.284 46.818 25.425 47.107 L 26.091 48.462 L 27.012 48.462 L 26.092 46.726 C 26.029 46.589 25.926 46.474 25.797 46.396 L 25.797 46.382 C 26.429 46.143 26.703 45.652 26.703 45.076 C 26.703 44.239 26.176 43.649 25.115 43.649 Z M 31.859 43.649 L 31.859 48.462 L 32.694 48.462 L 32.694 43.65 L 31.859 43.65 Z M 33.657 43.649 L 33.657 44.366 L 34.929 44.366 L 34.929 48.462 L 35.765 48.462 L 35.765 44.358 L 36.98 44.358 L 37.044 43.648 L 33.657 43.648 Z M 37.591 43.649 L 39.108 46.403 L 39.108 48.463 L 39.944 48.463 L 39.944 46.403 L 41.463 43.649 L 40.541 43.649 L 39.861 45.019 C 39.861 45.019 39.776 45.195 39.537 45.729 L 39.517 45.729 C 39.263 45.195 39.172 45.019 39.172 45.019 L 38.532 43.649 Z M 64.89 43.649 L 64.89 48.462 L 67.735 48.462 L 67.799 47.752 L 65.726 47.752 L 65.726 43.65 L 64.89 43.65 Z M 68.613 43.649 L 68.613 48.462 L 69.449 48.462 L 69.449 43.65 L 68.613 43.65 Z M 78.799 43.649 L 78.799 48.462 L 79.635 48.462 L 79.635 46.537 L 80.035 46.537 C 80.337 46.537 80.513 46.818 80.654 47.107 L 81.321 48.462 L 82.241 48.462 L 81.321 46.726 C 81.258 46.589 81.155 46.474 81.026 46.396 L 81.026 46.382 C 81.658 46.143 81.933 45.652 81.933 45.076 C 81.933 44.239 81.406 43.649 80.344 43.649 L 78.8 43.649 Z M 87.573 43.649 L 87.573 48.462 L 88.409 48.462 L 88.409 43.65 L 87.573 43.65 Z M 46.407 44.281 C 47.237 44.281 47.637 45.005 47.637 46.051 C 47.637 47.099 47.23 47.829 46.407 47.829 C 45.579 47.829 45.171 47.099 45.171 46.045 C 45.171 44.998 45.579 44.281 46.407 44.281 Z M 75.982 44.281 C 76.812 44.281 77.212 45.005 77.212 46.051 C 77.212 47.099 76.804 47.829 75.982 47.829 C 75.152 47.829 74.746 47.099 74.746 46.045 C 74.746 44.998 75.153 44.281 75.982 44.281 Z M 24.405 44.366 L 25.094 44.366 C 25.664 44.366 25.846 44.633 25.846 45.082 C 25.846 45.539 25.614 45.834 25.108 45.834 L 24.405 45.834 Z M 79.635 44.366 L 80.323 44.366 C 80.893 44.366 81.076 44.633 81.076 45.082 C 81.076 45.539 80.844 45.834 80.338 45.834 L 79.635 45.834 Z M 61.967 44.492 L 61.981 44.492 C 62.311 45.49 62.368 45.644 62.368 45.644 L 62.74 46.705 L 61.215 46.705 L 61.588 45.645 C 61.588 45.645 61.644 45.49 61.968 44.492 Z M 91.225 44.492 L 91.24 44.492 C 91.57 45.49 91.626 45.644 91.626 45.644 L 91.998 46.705 L 90.473 46.705 L 90.846 45.645 C 90.846 45.645 90.902 45.49 91.226 44.492 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:8622228517,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KVrspKEWA:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80 46\"><g transform=\"translate(0.5 0.5)\" id=\"ss9902511755_1\"><path d=\"M -0.14 -0.141 L 79.14 -0.141 L 79.14 45.859 L -0.14 45.859 Z\" fill=\"transparent\"></path><path d=\"M 26.962 16.722 C 23.3 16.728 20.487 19.549 20.497 23.204 C 20.508 26.843 23.342 29.639 27.02 29.629 C 30.677 29.621 33.504 26.788 33.489 23.146 C 33.475 19.504 30.641 16.715 26.962 16.722 Z M 28.406 26.774 C 27.035 27.382 25.739 27.14 24.613 26.161 C 23.155 24.891 22.915 22.451 24.054 20.817 C 24.69 19.888 25.729 19.315 26.855 19.272 C 27.982 19.229 29.062 19.722 29.766 20.6 C 30.337 21.299 30.634 22.184 30.634 23.489 C 30.58 24.809 29.937 26.093 28.406 26.774 Z\" fill=\"rgb(234,67,53)\"></path><path d=\"M 41.101 16.718 C 37.416 16.723 34.588 19.543 34.598 23.214 C 34.605 26.836 37.454 29.636 41.127 29.631 C 44.771 29.626 47.601 26.82 47.605 23.212 C 47.607 19.532 44.783 16.713 41.101 16.718 Z M 40.632 27.046 C 39.246 26.892 38.063 25.839 37.631 24.38 C 37.081 22.516 37.86 20.502 39.445 19.685 C 41.744 18.495 44.444 20.012 44.716 22.64 C 44.735 22.823 44.737 23.007 44.741 23.057 C 44.74 25.581 42.908 27.301 40.632 27.046 Z\" fill=\"rgb(244,180,0)\"></path><path d=\"M 70.405 25.122 C 73.263 23.942 76.123 22.76 79.035 21.559 C 78.811 21.047 78.638 20.59 78.42 20.155 C 76.776 16.9 73.239 15.75 70.183 17.525 C 68.178 18.691 67.284 20.552 67.155 22.809 C 66.888 27.689 71.544 30.997 76.043 29.128 C 77.225 28.637 78.154 27.827 78.897 26.768 L 76.695 25.313 C 74.883 27.994 71.282 27.385 70.405 25.122 Z M 72.487 19.336 C 73.782 18.97 75.118 19.481 75.661 20.59 L 69.924 22.969 C 69.781 21.339 70.9 19.785 72.487 19.336 Z\" fill=\"rgb(234,67,53)\"></path><path d=\"M 19.457 18.692 L 10.908 18.692 C 10.742 18.692 10.575 18.714 10.408 18.724 L 10.317 18.724 C 10.291 18.739 10.245 18.752 10.245 18.768 C 10.23 19.608 10.224 20.449 10.228 21.29 C 10.228 21.329 10.391 21.367 10.478 21.405 C 10.583 21.421 10.689 21.432 10.795 21.437 L 16.743 21.437 C 16.603 23.176 15.853 24.569 14.437 25.614 C 11.494 27.789 5.788 27.416 3.681 22.624 C 2.46 19.848 2.816 17.165 4.797 14.833 C 6.75 12.534 9.798 11.732 12.572 12.741 C 13.501 13.079 14.338 13.661 15.161 14.102 L 17.094 12.297 C 17.094 12.297 16.954 12.194 16.9 12.144 C 13.373 8.884 7.957 8.69 3.997 11.686 C -0.76 15.288 -1.344 22.096 2.766 26.412 C 5.186 28.953 8.201 29.952 11.666 29.567 C 15.511 29.141 18.506 26.501 19.349 22.854 C 19.673 21.488 19.71 20.072 19.457 18.692 Z M 61.129 17.144 L 58.459 17.144 L 58.416 18.138 L 57.852 17.711 L 57.21 17.283 C 56.002 16.612 54.726 16.57 53.432 16.933 C 50.965 17.624 49.06 19.833 48.805 22.359 C 48.522 25.156 49.591 27.344 52 28.816 C 53.968 30.017 56.66 29.98 58.313 28.267 C 58.327 28.253 58.367 28.267 58.405 28.267 C 58.405 28.798 58.451 29.33 58.397 29.851 C 58.236 31.386 57.414 32.38 56.059 32.747 C 54.614 33.138 53.171 32.67 52.291 31.506 C 52.081 31.231 51.912 30.922 51.704 30.591 L 49.278 31.597 C 50.645 34.868 54.224 36.224 57.481 34.983 L 59.001 34.108 C 59.011 34.11 59.021 34.108 59.029 34.103 C 59.037 34.097 59.042 34.089 59.044 34.079 L 59.129 34.001 L 59.22 33.909 L 59.53 33.587 L 59.526 33.576 C 59.759 33.281 60.03 33.007 60.216 32.685 C 60.893 31.522 61.145 30.245 61.146 28.911 L 61.146 17.48 C 61.149 17.379 61.137 17.275 61.129 17.144 Z M 58.289 24.955 C 57.667 26.452 56.323 27.221 54.745 27.054 C 53.294 26.899 52.03 25.704 51.703 24.158 C 51.633 23.833 51.61 23.498 51.586 23.281 C 51.64 21.752 52.153 20.582 53.375 19.8 C 54.105 19.32 54.998 19.152 55.853 19.334 C 56.709 19.516 57.455 20.032 57.926 20.767 C 58.784 22.089 58.89 23.511 58.289 24.955 Z\" fill=\"rgb(66,133,244)\"></path><path d=\"M 63.067 10.264 L 63.067 29.22 L 65.865 29.22 L 65.865 10.264 L 63.068 10.264 Z\" fill=\"rgb(15,157,88)\"></path></g></svg>',svgContentId:9902511755}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-k08oox\",\"data-framer-name\":\"google_logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 111 64\"><g transform=\"translate(0.5 0.5)\" id=\"ss9902978685_1\"><path d=\"M 0 0 L 110 0 L 110 64 L 0 64 Z\" fill=\"transparent\"></path><path d=\"M 37.603 23.461 C 32.523 23.47 28.62 27.394 28.634 32.48 C 28.648 37.543 32.581 41.432 37.684 41.419 C 42.758 41.408 46.68 37.466 46.66 32.399 C 46.64 27.332 42.708 23.451 37.603 23.461 Z M 39.607 37.446 C 37.705 38.292 35.907 37.955 34.344 36.593 C 32.321 34.826 31.988 31.432 33.569 29.158 C 34.45 27.866 35.892 27.069 37.455 27.009 C 39.018 26.95 40.517 27.635 41.494 28.856 C 42.287 29.829 42.699 31.061 42.698 32.876 C 42.623 34.713 41.732 36.499 39.607 37.446 Z\" fill=\"rgb(234,67,53)\"></path><path d=\"M 57.222 23.455 C 52.109 23.462 48.184 27.386 48.198 32.493 C 48.208 37.533 52.161 41.428 57.258 41.422 C 62.313 41.415 66.24 37.511 66.245 32.49 C 66.249 27.37 62.33 23.448 57.222 23.455 Z M 56.571 37.825 C 54.647 37.61 53.006 36.145 52.407 34.115 C 51.643 31.522 52.725 28.72 54.923 27.583 C 58.113 25.928 61.86 28.038 62.237 31.695 C 62.263 31.95 62.267 32.205 62.272 32.275 C 62.27 35.787 59.728 38.179 56.571 37.825 Z\" fill=\"rgb(244,180,0)\"></path><path d=\"M 97.88 35.148 C 101.846 33.506 105.814 31.862 109.855 30.191 C 109.544 29.478 109.304 28.842 109.001 28.238 C 106.72 23.708 101.813 22.108 97.573 24.578 C 94.791 26.201 93.55 28.79 93.371 31.93 C 93.001 38.72 99.461 43.322 105.704 40.721 C 107.343 40.038 108.632 38.912 109.663 37.438 L 106.608 35.414 C 104.094 39.144 99.098 38.297 97.881 35.148 Z M 100.77 27.098 C 102.566 26.589 104.42 27.299 105.173 28.842 L 97.213 32.152 C 97.015 29.884 98.568 27.722 100.77 27.098 Z\" fill=\"rgb(234,67,53)\"></path><path d=\"M 27.19 26.202 L 15.329 26.202 C 15.098 26.202 14.867 26.232 14.635 26.247 L 14.508 26.247 C 14.473 26.267 14.408 26.286 14.408 26.307 C 14.388 27.477 14.38 28.647 14.385 29.817 C 14.385 29.871 14.611 29.923 14.732 29.977 C 14.878 29.999 15.025 30.014 15.172 30.021 L 23.425 30.021 C 23.231 32.441 22.19 34.378 20.225 35.833 C 16.141 38.858 8.225 38.34 5.301 31.673 C 3.607 27.81 4.101 24.077 6.849 20.833 C 9.559 17.634 13.788 16.518 17.637 17.922 C 18.926 18.392 20.088 19.202 21.23 19.816 L 23.911 17.305 C 23.911 17.305 23.717 17.161 23.642 17.091 C 18.749 12.556 11.234 12.286 5.739 16.454 C -0.861 21.466 -1.671 30.938 4.032 36.943 C 7.39 40.478 11.572 41.868 16.381 41.333 C 21.715 40.74 25.871 37.066 27.041 31.992 C 27.49 30.092 27.541 28.122 27.191 26.202 Z M 85.01 24.048 L 81.306 24.048 L 81.246 25.431 L 80.464 24.837 L 79.573 24.241 C 77.897 23.308 76.126 23.249 74.331 23.754 C 70.908 24.716 68.265 27.789 67.911 31.304 C 67.518 35.195 69.001 38.24 72.344 40.287 C 75.074 41.959 78.81 41.907 81.103 39.523 C 81.122 39.504 81.178 39.523 81.23 39.523 C 81.23 40.262 81.294 41.003 81.219 41.728 C 80.996 43.863 79.855 45.246 77.976 45.756 C 75.971 46.301 73.969 45.65 72.748 44.03 C 72.456 43.648 72.222 43.217 71.933 42.757 L 68.567 44.157 C 70.464 48.707 75.429 50.594 79.949 48.867 L 82.058 47.65 C 82.071 47.653 82.085 47.65 82.096 47.643 C 82.107 47.635 82.115 47.623 82.117 47.61 L 82.235 47.502 L 82.362 47.374 L 82.792 46.925 L 82.786 46.91 C 83.109 46.499 83.485 46.118 83.744 45.67 C 84.683 44.052 85.033 42.275 85.034 40.42 L 85.034 24.515 C 85.038 24.375 85.021 24.23 85.01 24.048 Z M 81.07 34.916 C 80.207 36.999 78.342 38.068 76.153 37.836 C 74.139 37.621 72.385 35.958 71.931 33.807 C 71.835 33.355 71.803 32.888 71.769 32.587 C 71.844 30.46 72.556 28.831 74.251 27.744 C 75.264 27.076 76.503 26.842 77.69 27.095 C 78.877 27.348 79.913 28.066 80.566 29.089 C 81.756 30.928 81.903 32.906 81.07 34.916 Z\" fill=\"rgb(66,133,244)\"></path><path d=\"M 87.699 14.476 L 87.699 40.85 L 91.581 40.85 L 91.581 14.476 L 87.7 14.476 Z\" fill=\"rgb(15,157,88)\"></path></g></svg>',svgContentId:9902978685,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KVrspKEWA:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 43\"><g transform=\"translate(0.5 0.5)\" id=\"ss12400809730_1\"><path d=\"M -0.165 -0.164 L 119.165 -0.164 L 119.165 42.836 L -0.165 42.836 Z\" fill=\"transparent\"></path><path d=\"M 96.499 16.681 C 97.615 17.451 98.478 18.536 98.977 19.799 C 99.469 21.069 99.579 22.447 99.289 23.771 C 98.994 25.097 98.311 26.305 97.327 27.241 C 97.211 27.353 97.076 27.443 96.929 27.507 C 96.788 27.57 96.624 27.609 96.467 27.617 C 96.307 27.626 96.145 27.607 95.991 27.562 C 95.839 27.513 95.697 27.439 95.569 27.342 C 95.157 27.029 94.694 26.788 94.201 26.63 C 93.707 26.466 93.19 26.381 92.669 26.379 C 92.151 26.38 91.636 26.465 91.144 26.63 C 90.649 26.788 90.184 27.029 89.769 27.342 C 89.514 27.539 89.199 27.639 88.878 27.625 C 88.72 27.611 88.564 27.575 88.417 27.515 C 88.271 27.452 88.138 27.362 88.026 27.248 C 87.032 26.312 86.343 25.098 86.049 23.763 C 85.455 21.034 86.579 18.217 88.886 16.65 C 90.016 15.889 91.346 15.483 92.708 15.483 C 94.068 15.491 95.381 15.913 96.499 16.681 Z M 93.982 25.463 C 94.397 25.296 94.774 25.048 95.092 24.734 C 95.405 24.414 95.655 24.036 95.826 23.622 C 95.991 23.203 96.068 22.755 96.053 22.305 C 96.056 21.405 95.7 20.541 95.065 19.904 C 94.429 19.268 93.567 18.911 92.669 18.914 C 91.771 18.911 90.909 19.269 90.277 19.908 C 89.639 20.542 89.282 21.405 89.285 22.305 C 89.269 22.756 89.349 23.205 89.519 23.622 C 89.685 24.038 89.933 24.416 90.246 24.734 C 90.567 25.047 90.941 25.299 91.356 25.463 C 91.773 25.629 92.22 25.709 92.669 25.698 C 93.118 25.71 93.565 25.63 93.982 25.463 Z\" fill=\"rgb(98,216,78)\"></path><path d=\"M 28.927 15.609 L 29.154 15.625 C 29.307 15.634 29.458 15.655 29.607 15.687 L 29.607 18.672 C 29.508 18.635 29.406 18.604 29.303 18.578 C 28.996 18.5 28.68 18.468 28.364 18.484 C 28.09 18.492 27.817 18.531 27.552 18.601 C 27.286 18.664 27.036 18.766 26.794 18.891 C 26.549 19.014 26.318 19.164 26.106 19.338 C 25.895 19.51 25.708 19.714 25.543 19.925 L 25.543 27.383 L 22.432 27.383 L 22.432 15.726 L 25.426 15.726 L 25.426 16.783 C 25.652 16.594 25.895 16.426 26.153 16.282 C 26.408 16.13 26.678 16.004 26.958 15.906 C 27.234 15.806 27.518 15.731 27.81 15.679 C 28.102 15.627 28.397 15.601 28.694 15.601 C 28.771 15.601 28.85 15.603 28.928 15.608 Z M 1.61 23.826 C 1.829 24.009 2.064 24.173 2.314 24.32 C 2.564 24.466 2.824 24.586 3.095 24.68 C 3.366 24.779 3.642 24.855 3.923 24.908 C 4.21 24.955 4.497 24.978 4.783 24.978 C 5.62 24.978 6.261 24.57 6.261 23.991 C 6.261 22.236 0.648 22.862 0.648 19.111 C 0.648 16.878 2.798 15.484 5.096 15.484 C 5.44 15.484 5.784 15.509 6.128 15.562 C 6.469 15.613 6.806 15.689 7.136 15.789 C 7.801 15.987 8.434 16.282 9.012 16.666 L 7.558 18.923 C 7.397 18.797 7.23 18.687 7.058 18.593 C 6.882 18.5 6.699 18.419 6.511 18.351 C 6.323 18.283 6.129 18.23 5.932 18.194 C 5.736 18.158 5.538 18.134 5.338 18.124 C 4.478 18.124 3.76 18.46 3.76 19.064 C 3.76 20.575 9.38 19.98 9.38 24.015 C 9.38 26.247 7.199 27.618 4.76 27.618 C 4.343 27.613 3.928 27.576 3.517 27.508 C 3.109 27.441 2.706 27.341 2.314 27.21 C 1.92 27.075 1.536 26.913 1.165 26.724 C 0.793 26.531 0.438 26.308 0.101 26.059 L 1.61 23.827 Z M 21.111 21.672 L 21.096 21.9 C 21.09 21.973 21.083 22.046 21.073 22.119 L 21.041 22.346 L 13.006 22.346 C 13.045 22.729 13.155 23.098 13.327 23.442 C 13.502 23.784 13.741 24.09 14.03 24.343 C 14.317 24.6 14.652 24.797 15.015 24.923 C 15.375 25.057 15.757 25.118 16.14 25.103 C 16.417 25.093 16.692 25.056 16.961 24.994 C 17.496 24.866 18 24.634 18.446 24.312 C 18.671 24.144 18.874 23.96 19.056 23.756 L 20.83 25.534 C 20.53 25.867 20.198 26.168 19.838 26.435 C 19.473 26.696 19.082 26.919 18.673 27.101 C 18.263 27.277 17.836 27.411 17.399 27.5 C 16.962 27.589 16.516 27.631 16.07 27.625 C 15.265 27.663 14.461 27.533 13.71 27.242 C 12.958 26.951 12.274 26.508 11.7 25.942 C 11.131 25.37 10.684 24.688 10.388 23.936 C 10.099 23.182 9.966 22.377 9.997 21.57 C 9.997 18.327 12.193 15.491 15.64 15.491 C 18.845 15.491 21.111 18.202 21.111 21.453 Z M 17.93 20.059 C 17.897 19.781 17.815 19.51 17.688 19.26 C 17.556 19.011 17.382 18.788 17.172 18.601 C 16.962 18.415 16.722 18.267 16.461 18.163 C 15.918 17.965 15.323 17.965 14.78 18.163 C 14.507 18.257 14.249 18.398 14.029 18.587 C 13.803 18.771 13.61 18.994 13.46 19.244 C 13.311 19.496 13.208 19.772 13.155 20.059 Z M 40.191 15.727 L 43.419 15.727 L 38.088 27.383 L 35.939 27.383 L 30.608 15.726 L 33.836 15.726 L 37.01 22.846 L 40.191 15.726 Z M 46.03 10.251 C 46.834 10.267 47.551 10.764 47.851 11.512 C 48.148 12.26 47.966 13.114 47.389 13.675 C 46.818 14.239 45.963 14.403 45.224 14.09 C 44.734 13.887 44.345 13.497 44.144 13.006 C 43.943 12.514 43.946 11.962 44.153 11.473 C 44.256 11.23 44.405 11.009 44.591 10.823 C 44.781 10.636 45.007 10.489 45.256 10.393 C 45.501 10.291 45.765 10.243 46.03 10.252 Z M 44.475 15.727 L 47.585 15.727 L 47.585 27.375 L 44.475 27.375 L 44.475 15.726 Z M 60.427 25.01 C 60.135 25.43 59.791 25.811 59.403 26.145 C 59.012 26.474 58.59 26.757 58.129 26.992 C 57.676 27.219 57.191 27.383 56.691 27.493 C 56.19 27.6 55.678 27.644 55.167 27.626 C 53.532 27.668 51.95 27.045 50.78 25.901 C 49.61 24.756 48.951 23.186 48.953 21.548 C 48.953 19.91 49.617 18.343 50.798 17.2 C 51.971 16.059 53.556 15.443 55.19 15.492 C 55.659 15.485 56.121 15.539 56.574 15.641 C 57.035 15.743 57.472 15.892 57.894 16.095 C 58.317 16.299 58.715 16.542 59.082 16.832 C 59.445 17.124 59.775 17.455 60.068 17.819 L 57.864 19.769 C 57.712 19.556 57.536 19.361 57.339 19.189 C 56.74 18.674 55.98 18.386 55.19 18.375 C 54.776 18.375 54.361 18.453 53.979 18.618 C 53.594 18.775 53.245 19.009 52.955 19.307 C 52.658 19.613 52.431 19.965 52.283 20.348 C 52.129 20.737 52.054 21.153 52.064 21.571 C 52.041 22.426 52.369 23.252 52.97 23.858 C 53.272 24.155 53.631 24.387 54.026 24.54 C 54.422 24.689 54.845 24.758 55.268 24.744 C 55.542 24.736 55.816 24.697 56.081 24.626 C 56.615 24.482 57.106 24.211 57.512 23.835 C 57.707 23.647 57.887 23.436 58.035 23.208 Z M 71.721 25.534 C 71.122 26.203 70.386 26.734 69.564 27.093 C 69.156 27.276 68.729 27.413 68.29 27.501 C 67.853 27.59 67.408 27.631 66.961 27.626 C 66.157 27.664 65.353 27.533 64.601 27.242 C 63.848 26.951 63.163 26.506 62.592 25.934 C 62.02 25.369 61.575 24.688 61.287 23.937 C 60.991 23.185 60.856 22.379 60.888 21.571 C 60.888 18.328 63.093 15.492 66.532 15.492 C 69.736 15.492 72.003 18.202 72.003 21.445 L 72.003 21.672 L 71.987 21.892 C 71.982 21.968 71.974 22.043 71.964 22.119 L 71.932 22.338 L 63.905 22.338 C 63.937 22.722 64.046 23.09 64.218 23.435 C 64.398 23.78 64.632 24.085 64.921 24.343 C 65.212 24.594 65.546 24.79 65.906 24.923 C 66.266 25.056 66.649 25.111 67.032 25.103 C 67.583 25.086 68.125 24.958 68.626 24.727 C 68.877 24.611 69.116 24.469 69.337 24.304 C 69.562 24.142 69.765 23.96 69.947 23.756 L 71.721 25.534 Z M 68.829 20.059 C 68.798 19.78 68.716 19.509 68.587 19.26 C 68.458 19.01 68.283 18.787 68.072 18.601 C 67.862 18.415 67.621 18.267 67.36 18.163 C 67.098 18.063 66.82 18.013 66.539 18.014 C 66.25 18.014 65.953 18.061 65.68 18.155 C 65.407 18.255 65.153 18.401 64.929 18.587 C 64.702 18.767 64.506 18.994 64.359 19.244 C 64.211 19.496 64.107 19.772 64.054 20.059 L 68.829 20.059 Z M 73.246 27.383 L 73.246 15.726 L 76.232 15.726 L 76.232 16.666 C 76.461 16.478 76.703 16.308 76.958 16.156 C 77.214 16.011 77.482 15.888 77.763 15.788 C 78.045 15.69 78.331 15.614 78.623 15.561 C 79.292 15.454 79.976 15.47 80.639 15.608 C 81.015 15.694 81.374 15.812 81.718 15.976 C 82.064 16.14 82.391 16.339 82.696 16.572 C 83.001 16.807 83.274 17.073 83.516 17.363 C 83.74 17.65 83.936 17.958 84.102 18.288 C 84.264 18.611 84.397 18.948 84.501 19.298 C 84.6 19.648 84.668 20.003 84.704 20.363 C 84.741 20.724 84.744 21.087 84.712 21.452 L 84.712 27.383 L 81.609 27.383 L 81.609 21.202 C 81.63 21.006 81.63 20.81 81.609 20.614 C 81.587 20.418 81.548 20.224 81.492 20.035 C 81.434 19.847 81.356 19.665 81.258 19.494 C 81.157 19.325 81.042 19.166 80.914 19.017 C 80.797 18.906 80.669 18.809 80.53 18.727 C 80.397 18.644 80.256 18.576 80.108 18.523 C 79.809 18.409 79.49 18.356 79.171 18.366 C 78.896 18.374 78.623 18.414 78.357 18.484 C 78.095 18.553 77.841 18.651 77.599 18.773 C 77.11 19.022 76.682 19.378 76.349 19.815 L 76.349 27.383 L 73.246 27.383 Z M 103.291 27.383 L 98.672 15.727 L 101.775 15.727 L 104.308 22.393 L 106.785 15.727 L 109.38 15.727 L 111.842 22.393 L 114.39 15.727 L 117.494 15.727 L 112.882 27.383 L 110.568 27.383 L 108.083 20.748 L 105.605 27.383 L 103.291 27.383 Z M 117.517 26.059 L 117.259 26.059 L 117.259 26.552 L 117.032 26.552 L 117.032 25.205 L 117.579 25.205 C 117.694 25.204 117.804 25.249 117.884 25.33 C 117.965 25.411 118.01 25.521 118.009 25.635 C 118.009 25.682 118.004 25.724 117.994 25.761 C 117.978 25.801 117.96 25.841 117.939 25.878 C 117.913 25.91 117.884 25.939 117.853 25.964 C 117.822 25.996 117.785 26.02 117.744 26.035 L 118.048 26.559 L 117.806 26.559 Z M 117.259 25.854 L 117.579 25.854 C 117.64 25.855 117.697 25.831 117.74 25.788 C 117.783 25.746 117.806 25.688 117.806 25.627 C 117.806 25.567 117.78 25.51 117.736 25.471 C 117.696 25.426 117.639 25.4 117.579 25.4 L 117.259 25.4 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 118.041 24.561 C 118.22 24.64 118.376 24.742 118.517 24.875 C 118.788 25.151 118.939 25.522 118.94 25.909 C 118.94 26.497 118.588 27.021 118.041 27.248 C 117.5 27.475 116.876 27.351 116.462 26.935 C 116.047 26.52 115.923 25.895 116.149 25.352 C 116.369 24.807 116.898 24.45 117.485 24.452 C 117.681 24.452 117.868 24.491 118.041 24.562 Z M 117.009 24.749 C 116.857 24.811 116.719 24.901 116.603 25.016 C 116.488 25.133 116.398 25.271 116.336 25.423 C 116.272 25.574 116.238 25.737 116.235 25.901 C 116.235 26.41 116.541 26.869 117.01 27.062 C 117.479 27.256 118.019 27.147 118.376 26.786 C 118.732 26.427 118.836 25.89 118.643 25.423 C 118.449 24.954 117.992 24.647 117.485 24.648 C 117.321 24.648 117.157 24.687 117.009 24.75 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:12400809730}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jmx8nd\",\"data-framer-name\":\"NOW_BIG_D_1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 179 64\"><g transform=\"translate(0.5 0.5)\" id=\"ss11345457387_1\"><path d=\"M 0 0 L 178 0 L 178 64 L 0 64 Z\" fill=\"transparent\"></path><path d=\"M 144.19 25.072 C 145.855 26.217 147.142 27.833 147.886 29.712 C 148.621 31.602 148.784 33.653 148.352 35.624 C 147.912 37.598 146.893 39.396 145.426 40.789 C 145.253 40.955 145.051 41.089 144.831 41.185 C 144.621 41.278 144.377 41.337 144.143 41.348 C 143.903 41.362 143.663 41.334 143.432 41.267 C 143.206 41.193 142.993 41.083 142.803 40.94 C 142.188 40.474 141.498 40.115 140.762 39.88 C 140.025 39.635 139.254 39.509 138.477 39.506 C 137.704 39.507 136.936 39.633 136.203 39.879 C 135.464 40.114 134.77 40.473 134.151 40.94 C 133.771 41.232 133.301 41.381 132.822 41.36 C 132.586 41.34 132.354 41.285 132.134 41.197 C 131.916 41.103 131.718 40.968 131.551 40.8 C 130.068 39.407 129.041 37.599 128.602 35.612 C 127.717 31.55 129.392 27.358 132.834 25.026 C 134.52 23.893 136.504 23.288 138.535 23.288 C 140.564 23.3 142.523 23.929 144.19 25.072 Z M 140.436 38.142 C 141.054 37.894 141.617 37.525 142.091 37.058 C 142.559 36.581 142.931 36.019 143.187 35.402 C 143.432 34.779 143.547 34.112 143.525 33.443 C 143.529 32.103 142.998 30.817 142.051 29.869 C 141.103 28.922 139.817 28.391 138.477 28.395 C 137.137 28.39 135.852 28.924 134.909 29.875 C 133.958 30.818 133.424 32.103 133.429 33.443 C 133.405 34.114 133.524 34.782 133.778 35.403 C 134.026 36.021 134.395 36.584 134.863 37.058 C 135.341 37.524 135.9 37.898 136.518 38.142 C 137.14 38.39 137.807 38.509 138.477 38.492 C 139.147 38.51 139.814 38.39 140.436 38.142 Z\" fill=\"rgb(98,216,78)\"></path><path d=\"M 43.396 23.476 L 43.734 23.5 C 43.961 23.513 44.187 23.545 44.41 23.593 L 44.41 28.035 C 44.261 27.98 44.11 27.933 43.956 27.895 C 43.499 27.779 43.027 27.732 42.556 27.755 C 42.147 27.767 41.74 27.825 41.344 27.93 C 40.948 28.023 40.574 28.175 40.214 28.361 C 39.848 28.544 39.504 28.767 39.187 29.026 C 38.873 29.282 38.593 29.586 38.347 29.9 L 38.347 41 L 33.707 41 L 33.707 23.65 L 38.173 23.65 L 38.173 25.224 C 38.51 24.942 38.873 24.692 39.257 24.478 C 39.638 24.252 40.04 24.065 40.458 23.918 C 40.87 23.77 41.294 23.658 41.729 23.58 C 42.164 23.503 42.605 23.464 43.047 23.464 C 43.163 23.464 43.28 23.467 43.397 23.475 Z M 2.647 35.706 C 2.974 35.979 3.324 36.223 3.697 36.441 C 4.07 36.659 4.458 36.838 4.863 36.977 C 5.267 37.125 5.679 37.237 6.098 37.316 C 6.526 37.386 6.954 37.42 7.381 37.42 C 8.629 37.42 9.585 36.814 9.585 35.952 C 9.585 33.34 1.213 34.272 1.213 28.688 C 1.213 25.365 4.42 23.29 7.847 23.29 C 8.36 23.29 8.873 23.328 9.387 23.406 C 9.895 23.483 10.398 23.596 10.89 23.744 C 11.883 24.038 12.826 24.478 13.689 25.05 L 11.52 28.408 C 11.28 28.221 11.03 28.058 10.774 27.918 C 10.511 27.779 10.238 27.658 9.958 27.557 C 9.677 27.456 9.389 27.378 9.095 27.324 C 8.802 27.27 8.506 27.235 8.209 27.219 C 6.926 27.219 5.854 27.72 5.854 28.618 C 5.854 30.868 14.237 29.982 14.237 35.987 C 14.237 39.309 10.984 41.35 7.346 41.35 C 6.725 41.342 6.105 41.288 5.492 41.187 C 4.883 41.087 4.283 40.938 3.697 40.743 C 3.109 40.542 2.537 40.301 1.983 40.02 C 1.429 39.732 0.899 39.401 0.397 39.03 L 2.647 35.707 Z M 31.737 32.5 L 31.714 32.839 C 31.706 32.948 31.694 33.057 31.679 33.165 L 31.632 33.503 L 19.647 33.503 C 19.705 34.074 19.868 34.623 20.125 35.135 C 20.387 35.644 20.743 36.099 21.174 36.476 C 21.602 36.857 22.101 37.151 22.643 37.339 C 23.18 37.538 23.75 37.629 24.322 37.607 C 24.734 37.592 25.144 37.537 25.546 37.444 C 26.343 37.254 27.096 36.909 27.761 36.43 C 28.096 36.18 28.399 35.905 28.671 35.602 L 31.317 38.248 C 30.87 38.743 30.374 39.193 29.837 39.589 C 29.293 39.978 28.711 40.31 28.099 40.58 C 27.488 40.843 26.851 41.042 26.199 41.175 C 25.547 41.307 24.882 41.369 24.217 41.361 C 23.016 41.418 21.817 41.223 20.696 40.79 C 19.575 40.357 18.555 39.698 17.699 38.855 C 16.849 38.004 16.183 36.988 15.741 35.87 C 15.309 34.748 15.111 33.55 15.158 32.349 C 15.158 27.522 18.434 23.301 23.576 23.301 C 28.356 23.301 31.737 27.335 31.737 32.174 Z M 26.992 30.1 C 26.943 29.685 26.82 29.282 26.63 28.91 C 26.434 28.54 26.173 28.208 25.86 27.93 C 25.548 27.652 25.189 27.432 24.8 27.278 C 23.99 26.983 23.103 26.983 22.293 27.278 C 21.885 27.418 21.5 27.628 21.173 27.908 C 20.836 28.183 20.548 28.514 20.323 28.887 C 20.102 29.262 19.948 29.672 19.868 30.1 Z M 60.197 23.652 L 65.012 23.652 L 57.061 41 L 53.855 41 L 45.903 23.65 L 50.718 23.65 L 55.452 34.248 L 60.197 23.65 Z M 68.907 15.502 C 70.107 15.526 71.176 16.265 71.623 17.379 C 72.067 18.492 71.795 19.763 70.935 20.597 C 70.082 21.437 68.808 21.681 67.705 21.215 C 66.974 20.914 66.394 20.333 66.094 19.601 C 65.794 18.87 65.799 18.049 66.108 17.321 C 66.261 16.959 66.483 16.63 66.761 16.353 C 67.044 16.074 67.381 15.856 67.752 15.713 C 68.118 15.562 68.511 15.49 68.907 15.503 Z M 66.587 23.652 L 71.227 23.652 L 71.227 40.989 L 66.587 40.989 L 66.587 23.651 Z M 90.383 37.468 C 89.947 38.093 89.434 38.661 88.856 39.158 C 88.272 39.648 87.643 40.068 86.955 40.418 C 86.279 40.756 85.555 41.001 84.81 41.164 C 84.063 41.323 83.299 41.389 82.536 41.362 C 80.098 41.424 77.738 40.498 75.993 38.794 C 74.247 37.091 73.264 34.754 73.267 32.315 C 73.267 29.878 74.258 27.546 76.019 25.844 C 77.769 24.146 80.133 23.228 82.571 23.302 C 83.271 23.291 83.959 23.372 84.635 23.524 C 85.323 23.675 85.975 23.897 86.605 24.2 C 87.235 24.503 87.829 24.865 88.377 25.296 C 88.918 25.732 89.411 26.224 89.847 26.765 L 86.559 29.668 C 86.333 29.351 86.071 29.061 85.777 28.805 C 84.883 28.038 83.749 27.609 82.571 27.593 C 81.953 27.593 81.335 27.709 80.764 27.954 C 80.19 28.188 79.67 28.537 79.237 28.98 C 78.794 29.435 78.456 29.96 78.234 30.53 C 78.005 31.109 77.894 31.728 77.908 32.35 C 77.874 33.622 78.363 34.852 79.26 35.754 C 79.71 36.196 80.246 36.542 80.834 36.769 C 81.426 36.991 82.056 37.094 82.688 37.072 C 83.096 37.06 83.504 37.002 83.9 36.897 C 84.696 36.683 85.428 36.279 86.034 35.719 C 86.325 35.439 86.594 35.125 86.815 34.787 Z M 107.23 38.249 C 106.336 39.244 105.238 40.035 104.012 40.569 C 103.403 40.841 102.766 41.045 102.112 41.176 C 101.46 41.308 100.795 41.37 100.13 41.362 C 98.929 41.419 97.73 41.224 96.609 40.791 C 95.485 40.358 94.464 39.695 93.612 38.844 C 92.759 38.002 92.096 36.989 91.665 35.871 C 91.224 34.751 91.022 33.552 91.071 32.35 C 91.071 27.523 94.359 23.302 99.489 23.302 C 104.269 23.302 107.65 27.336 107.65 32.163 L 107.65 32.5 L 107.627 32.827 C 107.619 32.94 107.608 33.053 107.592 33.165 L 107.545 33.491 L 95.571 33.491 C 95.618 34.063 95.781 34.611 96.037 35.124 C 96.306 35.637 96.655 36.091 97.087 36.476 C 97.521 36.849 98.019 37.142 98.556 37.339 C 99.092 37.537 99.664 37.619 100.235 37.607 C 101.057 37.582 101.866 37.391 102.613 37.047 C 102.988 36.875 103.343 36.664 103.674 36.417 C 104.009 36.177 104.312 35.905 104.584 35.602 L 107.23 38.248 Z M 102.916 30.099 C 102.869 29.684 102.747 29.281 102.555 28.91 C 102.362 28.538 102.101 28.206 101.786 27.93 C 101.473 27.652 101.114 27.432 100.725 27.278 C 100.334 27.129 99.919 27.054 99.5 27.056 C 99.069 27.056 98.626 27.126 98.218 27.266 C 97.811 27.415 97.432 27.632 97.098 27.908 C 96.76 28.176 96.468 28.514 96.248 28.887 C 96.027 29.262 95.873 29.672 95.793 30.1 L 102.916 30.1 Z M 109.504 41.001 L 109.504 23.65 L 113.958 23.65 L 113.958 25.05 C 114.3 24.77 114.661 24.517 115.042 24.291 C 115.423 24.074 115.823 23.891 116.243 23.743 C 116.663 23.596 117.09 23.483 117.525 23.405 C 118.524 23.245 119.543 23.269 120.533 23.475 C 121.093 23.603 121.629 23.778 122.142 24.023 C 122.658 24.266 123.146 24.563 123.6 24.909 C 124.055 25.259 124.463 25.655 124.824 26.087 C 125.158 26.514 125.45 26.973 125.698 27.463 C 125.939 27.945 126.138 28.446 126.293 28.967 C 126.441 29.487 126.542 30.016 126.596 30.552 C 126.651 31.089 126.655 31.629 126.608 32.172 L 126.608 41 L 121.979 41 L 121.979 31.8 C 122.01 31.509 122.01 31.217 121.979 30.926 C 121.947 30.634 121.889 30.345 121.804 30.064 C 121.718 29.783 121.601 29.513 121.455 29.259 C 121.305 29.008 121.133 28.77 120.942 28.548 C 120.768 28.383 120.576 28.238 120.37 28.117 C 120.171 27.994 119.961 27.892 119.741 27.813 C 119.295 27.644 118.819 27.565 118.342 27.58 C 117.932 27.592 117.525 27.65 117.129 27.755 C 116.738 27.859 116.359 28.003 115.998 28.186 C 115.268 28.556 114.63 29.086 114.133 29.737 L 114.133 41 L 109.504 41 Z M 154.322 41.001 L 147.431 23.652 L 152.06 23.652 L 155.838 33.574 L 159.533 23.652 L 163.404 23.652 L 167.077 33.574 L 170.878 23.652 L 175.507 23.652 L 168.628 41 L 165.177 41 L 161.469 31.125 L 157.773 41 L 154.322 41 Z M 175.542 39.029 L 175.157 39.029 L 175.157 39.763 L 174.819 39.763 L 174.819 37.758 L 175.635 37.758 C 175.805 37.756 175.969 37.823 176.09 37.944 C 176.211 38.065 176.278 38.229 176.276 38.399 C 176.276 38.469 176.268 38.531 176.253 38.586 C 176.23 38.646 176.203 38.705 176.171 38.761 C 176.132 38.807 176.089 38.85 176.043 38.889 C 175.997 38.935 175.941 38.971 175.88 38.994 L 176.334 39.774 L 175.973 39.774 Z M 175.157 38.725 L 175.635 38.725 C 175.725 38.726 175.811 38.69 175.875 38.627 C 175.938 38.563 175.974 38.477 175.973 38.387 C 175.973 38.298 175.935 38.213 175.868 38.154 C 175.809 38.087 175.724 38.049 175.635 38.049 L 175.157 38.049 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 176.323 36.8 C 176.591 36.917 176.824 37.07 177.034 37.267 C 177.438 37.678 177.664 38.231 177.664 38.807 C 177.664 39.681 177.139 40.462 176.323 40.8 C 175.516 41.137 174.586 40.953 173.968 40.334 C 173.349 39.716 173.164 38.785 173.501 37.978 C 173.829 37.166 174.619 36.635 175.495 36.638 C 175.787 36.638 176.066 36.696 176.323 36.801 Z M 174.784 37.08 C 174.558 37.171 174.352 37.306 174.178 37.477 C 174.008 37.651 173.873 37.857 173.781 38.083 C 173.685 38.308 173.634 38.55 173.63 38.795 C 173.629 39.552 174.086 40.235 174.786 40.523 C 175.486 40.812 176.291 40.649 176.824 40.112 C 177.354 39.578 177.51 38.777 177.221 38.083 C 176.932 37.384 176.251 36.929 175.495 36.929 C 175.25 36.929 175.005 36.987 174.784 37.081 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:11345457387,withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11p7wgg\",\"data-framer-name\":\"Pricing\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{width:undefined},KVrspKEWA:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`},wyDBVgqED:{width:\"1024px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1390,width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5kwg2k-container\",nodeId:\"G8gF4Dc44\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{variant:\"OgE4iAfK1\"},KVrspKEWA:{variant:\"RJaxHeoWW\"}},children:/*#__PURE__*/_jsx(PricingChatLabsMoreClear,{height:\"100%\",id:\"G8gF4Dc44\",layoutId:\"G8gF4Dc44\",style:{width:\"100%\"},variant:\"jd0danKlL\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p6chss\",\"data-framer-name\":\"FAQ\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ocsi0r\",\"data-styles-preset\":\"lVyB1TXOo\",children:\"FAQ\"})}),className:\"framer-1az3so8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`},KVrspKEWA:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`},wyDBVgqED:{width:\"880px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ndlmy-container\",nodeId:\"QVnoQeszf\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(FAQAccordionChatLabs,{height:\"100%\",id:\"QVnoQeszf\",layoutId:\"QVnoQeszf\",style:{width:\"100%\"},variant:\"alu4IIAnR\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q6fsrq\",\"data-framer-name\":\"Reviews\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ocsi0r\",\"data-styles-preset\":\"lVyB1TXOo\",style:{\"--framer-text-alignment\":\"center\"},children:\"What people say\"})}),className:\"framer-12ay9rv\",\"data-framer-name\":\"Security\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p9keoq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10ky7m5\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KVrspKEWA:{width:`max((${componentViewport?.width||\"100vw\"} - 104px) / 2, 1px)`},wyDBVgqED:{width:`max((${componentViewport?.width||\"100vw\"} - 128px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"410.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-32pqan-container hidden-1qpceld\",nodeId:\"dbwUKnR1w\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(ReviewCard,{B9Ajnuko1:\"I'm loving the recent update \u2013 now I'm able to launch the split screen mode and compare which model resolves my tasks better.\",height:\"100%\",id:\"dbwUKnR1w\",IVWYUm0WS:\"Jakub Dudkiewicz\",kbPmfQCDy:\"Oct 13, 2023\",layoutId:\"dbwUKnR1w\",S7xrj8DG6:addImageAlt({src:\"https://framerusercontent.com/images/lxRqhePbp0S2rjhH3Wxxkqmv58s.png\"},\"\"),style:{width:\"100%\"},variant:\"FR1beKj_W\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KVrspKEWA:{width:`max((${componentViewport?.width||\"100vw\"} - 104px) / 2, 1px)`},wyDBVgqED:{width:`max((${componentViewport?.width||\"100vw\"} - 128px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"410.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-x1bx6c-container hidden-1qpceld\",nodeId:\"SVom4RCn3\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(ReviewCard,{B9Ajnuko1:\"This app has revolutionized my email writing. It suggests perfect sentences and phrases that I'd never conceive, saving precious time and enhancing the professional and personalized tone of my emails.\",height:\"100%\",id:\"SVom4RCn3\",IVWYUm0WS:\"sidney ingram\",kbPmfQCDy:\"May 15, 2023\",layoutId:\"SVom4RCn3\",S7xrj8DG6:addImageAlt({src:\"https://framerusercontent.com/images/Sdn6dTR6mBgrTWb3yLEbhwJJY.webp\"},\"\"),style:{width:\"100%\"},variant:\"FR1beKj_W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},KVrspKEWA:{width:`max((${componentViewport?.width||\"100vw\"} - 104px) / 2, 1px)`},wyDBVgqED:{width:`max((${componentViewport?.width||\"100vw\"} - 128px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"410.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-i8nnz8-container\",nodeId:\"E3yq9a0Ye\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(ReviewCard,{B9Ajnuko1:\"A breath of fresh air! A tool that provides GPT assistance without the need for an OpenAI account, and it's not limited with OpenAI models!\",height:\"100%\",id:\"E3yq9a0Ye\",IVWYUm0WS:\"Ahmed Rih\",kbPmfQCDy:\"May 15, 2023\",layoutId:\"E3yq9a0Ye\",S7xrj8DG6:addImageAlt({src:\"https://framerusercontent.com/images/BbqrfqMJtuAU0wM20g5XmxEfg.webp\"},\"\"),style:{width:\"100%\"},variant:\"FR1beKj_W\",width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KVrspKEWA:{height:140,width:`max((${componentViewport?.width||\"100vw\"} - 104px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zyw7d-container hidden-sry8r4 hidden-8xpqdh hidden-1qpceld\",nodeId:\"CdO4hehc2\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(ReviewCard,{B9Ajnuko1:\"As a product manager, WritingMate.ai's GPT copilot helps generate interview questions and product copy, identifying jobs-to-be-done with precision. A promising start, I envision using it for comprehensive 1-pagers and communications with vendors and partners. The subscription price is more than fair for its offerings.\",height:\"100%\",id:\"CdO4hehc2\",IVWYUm0WS:\"Andrei Klimovich\",kbPmfQCDy:\"Jan 24, 2023\",layoutId:\"CdO4hehc2\",S7xrj8DG6:addImageAlt({src:\"https://framerusercontent.com/images/6k8jvYTqFqJzLVBSRVkH1b7jaA.webp\"},\"\"),style:{width:\"100%\"},variant:\"FR1beKj_W\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pj8jyv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},KVrspKEWA:{width:`max((${componentViewport?.width||\"100vw\"} - 104px) / 2, 1px)`},wyDBVgqED:{width:`max((${componentViewport?.width||\"100vw\"} - 128px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"410.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-164zp59-container\",nodeId:\"on0_jCoiL\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(ReviewCard,{B9Ajnuko1:\"As a veteran in the AI and writing tech space, I've tried numerous ChatGPT-based apps. Despite being relatively new, this app outshines others with its user-friendly interface and effective problem-solving capabilities. An absolute must-try!\",height:\"100%\",id:\"on0_jCoiL\",IVWYUm0WS:\"Alex Lashkov\",kbPmfQCDy:\"Mar 8, 2023\",layoutId:\"on0_jCoiL\",S7xrj8DG6:addImageAlt({src:\"https://framerusercontent.com/images/64EtkG0TPItYVcoId3uQmf0HOU.webp\"},\"\"),style:{width:\"100%\"},variant:\"FR1beKj_W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},KVrspKEWA:{width:`max((${componentViewport?.width||\"100vw\"} - 104px) / 2, 1px)`},wyDBVgqED:{width:`max((${componentViewport?.width||\"100vw\"} - 128px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"410.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dw8r6c-container\",nodeId:\"Txgcz3XXT\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(ReviewCard,{B9Ajnuko1:\"Very handy to have Chat GPT when browsing other sites. Previously you couldn't hide the activation button from the window, which was a bit annoying, but they fixed that.\",height:\"100%\",id:\"Txgcz3XXT\",IVWYUm0WS:\"Andrew Kondelin\",kbPmfQCDy:\"Feb 20, 2023\",layoutId:\"Txgcz3XXT\",S7xrj8DG6:addImageAlt({src:\"https://framerusercontent.com/images/9VkdIJLzR6JYm5EZjRg5GAus.webp\"},\"\"),style:{width:\"100%\"},variant:\"FR1beKj_W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},KVrspKEWA:{width:`max((${componentViewport?.width||\"100vw\"} - 104px) / 2, 1px)`},wyDBVgqED:{width:`max((${componentViewport?.width||\"100vw\"} - 128px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"410.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-28m2w-container\",nodeId:\"nizgEUQ_e\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(ReviewCard,{B9Ajnuko1:\"Absolutely AMAZING!!!!!! Writingmate.ai, our ChatGPT powered copilot, simplified the daunting task of writing. A lifesaver that is truly worth every penny!!!!!\",height:\"100%\",id:\"nizgEUQ_e\",IVWYUm0WS:\"Kelly M\",kbPmfQCDy:\"Apr 21, 2023\",layoutId:\"nizgEUQ_e\",style:{width:\"100%\"},variant:\"FR1beKj_W\",width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KVrspKEWA:{height:140,width:`max((${componentViewport?.width||\"100vw\"} - 104px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tkmhgz-container hidden-sry8r4 hidden-8xpqdh hidden-1qpceld\",nodeId:\"qArPfbnYi\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(ReviewCard,{B9Ajnuko1:\"I love the premium version of WritingMate.ai \uD83D\uDCAA\uD83C\uDFFCt manager, WritingMate.ai's GPT copilot helps generate interview questions and product copy, identifying jobs-to-be-done with precision. A promising start, I envision using it for comprehensive 1-pagers and communications with vendors and partners. The subscription price is more than fair for its offerings.\",height:\"100%\",id:\"qArPfbnYi\",IVWYUm0WS:\"Kate Gemskaya\",kbPmfQCDy:\"Feb 8, 2023\",layoutId:\"qArPfbnYi\",S7xrj8DG6:addImageAlt({src:\"https://framerusercontent.com/images/J2ssTKLaF4xU26THQZpCisq2M.webp\"},\"\"),style:{width:\"100%\"},variant:\"FR1beKj_W\",width:\"100%\"})})})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-knyi4o hidden-109axor hidden-1qpceld\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wyDBVgqED:{width:`max((${componentViewport?.width||\"100vw\"} - 128px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"410.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l3b4bx-container\",nodeId:\"vP4hBmf5J\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(ReviewCard,{B9Ajnuko1:\"As a product manager, Writingmate helps generate interview questions and product copy, identifying jobs-to-be-done with precision. A promising start, I envision using it for comprehensive 1-pagers and communications with vendors and partners. The subscription price is more than fair for its offerings.\",height:\"100%\",id:\"vP4hBmf5J\",IVWYUm0WS:\"Andrei Klimovich\",kbPmfQCDy:\"Jan 24, 2023\",layoutId:\"vP4hBmf5J\",S7xrj8DG6:addImageAlt({src:\"https://framerusercontent.com/images/6k8jvYTqFqJzLVBSRVkH1b7jaA.webp\"},\"\"),style:{width:\"100%\"},variant:\"FR1beKj_W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wyDBVgqED:{width:`max((${componentViewport?.width||\"100vw\"} - 128px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"410.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1edlnhb-container\",nodeId:\"yoduGkxlM\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(ReviewCard,{B9Ajnuko1:\"I love the Pro version of Writingmate AI \uD83D\uDCAA\uD83C\uDFFC This GPT copilot helps generate interview questions and product copy, identifying jobs-to-be-done with precision. A promising start, I envision using it for comprehensive 1-pagers and communications with vendors and partners. The subscription price is more than fair for its offerings.\",height:\"100%\",id:\"yoduGkxlM\",IVWYUm0WS:\"Kate Gemskaya\",kbPmfQCDy:\"Feb 8, 2023\",layoutId:\"yoduGkxlM\",S7xrj8DG6:addImageAlt({src:\"https://framerusercontent.com/images/J2ssTKLaF4xU26THQZpCisq2M.webp\"},\"\"),style:{width:\"100%\"},variant:\"FR1beKj_W\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12c9vbk\",\"data-framer-name\":\"Security\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bayzia\",\"data-framer-name\":\"Banner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dlxyk5\",\"data-framer-name\":\"Text block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ocsi0r\",\"data-styles-preset\":\"lVyB1TXOo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Secured AI\"})}),className:\"framer-1v9n069\",\"data-framer-name\":\"Security\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-stufpi\",\"data-styles-preset\":\"QRv2CCGrw\",children:\"We take your privacy seriously and are committed to protecting your personal information. We employ necessary measures to ensure the security and protection of your data from unauthorized access.\"})}),className:\"framer-1v276ma\",\"data-framer-name\":\"It has saved me a lot of time and effort when writing, and I highly recommend it to anyone looking to take their writing to the next level.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yqdk2h\",\"data-framer-name\":\"Illustration\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{background:{alt:\"Secured AI\",fit:\"fill\",intrinsicHeight:961,intrinsicWidth:1775,pixelHeight:961,pixelWidth:1775,sizes:`calc(${componentViewport?.width||\"100vw\"} - 31px)`,src:\"https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png\",srcSet:\"https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png 1775w\"}},KVrspKEWA:{background:{alt:\"Secured AI\",fit:\"fill\",intrinsicHeight:961,intrinsicWidth:1775,pixelHeight:961,pixelWidth:1775,sizes:\"632px\",src:\"https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png\",srcSet:\"https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png 1775w\"}},wyDBVgqED:{background:{alt:\"Secured AI\",fit:\"fill\",intrinsicHeight:961,intrinsicWidth:1775,pixelHeight:961,pixelWidth:1775,sizes:\"477px\",src:\"https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png\",srcSet:\"https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png 1775w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Secured AI\",fit:\"fill\",intrinsicHeight:961,intrinsicWidth:1775,pixelHeight:961,pixelWidth:1775,sizes:\"527px\",src:\"https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png\",srcSet:\"https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gi717kA1tPbf9dt47V8X5S6QSW8.png 1775w\"},className:\"framer-1ol8osu\",\"data-framer-name\":\"img\"})})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xsirwv\",\"data-framer-name\":\"For sales, marketing, customer\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ocsi0r\",\"data-styles-preset\":\"lVyB1TXOo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Supercharge Your Business with Writingmate\"})}),className:\"framer-1hv2zin\",\"data-framer-name\":\"Supercharge your business with WritingMate\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-efdyho\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y3t4l0\",\"data-framer-name\":\"Supercharge/Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uv5hb3\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jz78jy\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-onwbzj\",\"data-framer-name\":\"circle\",fill:\"black\",intrinsicHeight:73,intrinsicWidth:72,svg:'<svg width=\"72\" height=\"73\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect y=\".82\" width=\"72\" height=\"72\" rx=\"36\" fill=\"url(#a)\"/><rect x=\"1\" y=\"1.82\" width=\"70\" height=\"70\" rx=\"35\" stroke=\"url(#b)\" stroke-opacity=\".6\" stroke-width=\"2\"/><defs><radialGradient id=\"a\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"matrix(0 54 -54 0 36 36.82)\"><stop offset=\".161\" stop-color=\"#070707\"/><stop offset=\".634\" stop-color=\"#070707\" stop-opacity=\".54\"/></radialGradient><linearGradient id=\"b\" x1=\"111.5\" y1=\"90.32\" x2=\"-18.563\" y2=\"-2.555\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".202\" stop-color=\"#292929\"/><stop offset=\".624\" stop-color=\"#161616\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xlf56f\",\"data-framer-name\":\"Supercharge icons\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-96impz\",\"data-framer-name\":\"evaPricetagsFill0\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25 25\"><g transform=\"translate(0.328 0.149)\" id=\"ss11534752751_1\"><path d=\"M 23.299 10.112 L 14.739 1.566 C 14.521 1.346 14.233 1.21 13.926 1.179 L 1.459 0.006 C 1.264 -0.012 1.067 0.013 0.882 0.08 C 0.698 0.147 0.531 0.253 0.392 0.392 C 0.253 0.531 0.147 0.698 0.08 0.882 C 0.013 1.067 -0.012 1.264 0.006 1.459 L 1.179 13.926 C 1.21 14.233 1.346 14.521 1.566 14.739 L 10.112 23.299 C 10.571 23.751 11.188 24.005 11.832 24.006 C 12.472 24.004 13.085 23.75 13.539 23.299 L 23.299 13.539 C 23.752 13.084 24.007 12.468 24.007 11.826 C 24.007 11.183 23.752 10.567 23.299 10.112 Z M 10.086 10.112 C 9.806 10.392 9.45 10.583 9.062 10.66 C 8.674 10.738 8.271 10.698 7.906 10.547 C 7.54 10.396 7.228 10.139 7.008 9.81 C 6.788 9.481 6.671 9.095 6.671 8.699 C 6.671 8.303 6.788 7.916 7.008 7.588 C 7.228 7.259 7.54 7.002 7.906 6.851 C 8.271 6.7 8.674 6.66 9.062 6.738 C 9.45 6.815 9.806 7.006 10.086 7.286 C 10.455 7.658 10.663 8.161 10.663 8.686 C 10.663 9.21 10.455 9.713 10.086 10.086 Z\" fill=\"rgb(108,70,255)\"></path></g></svg>',svgContentId:11534752751,withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o11rby\",\"data-styles-preset\":\"cnw0TXiW2\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"AI for Sales\"})}),className:\"framer-mwraav\",\"data-framer-name\":\"For Sales\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-stufpi\",\"data-styles-preset\":\"QRv2CCGrw\",children:\"Make your CRM system work better and help your sales team by automating repetitive tasks.\"})}),className:\"framer-sfotym\",\"data-framer-name\":\"Get a draft within seconds by providing a prompt in a few words.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yeus3m\",\"data-framer-name\":\"Supercharge/Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14cumd5\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i2kzbb\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9ddvd7\",\"data-framer-name\":\"circle\",fill:\"black\",intrinsicHeight:73,intrinsicWidth:72,svg:'<svg width=\"72\" height=\"73\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect y=\".82\" width=\"72\" height=\"72\" rx=\"36\" fill=\"url(#a)\"/><rect x=\"1\" y=\"1.82\" width=\"70\" height=\"70\" rx=\"35\" stroke=\"url(#b)\" stroke-opacity=\".6\" stroke-width=\"2\"/><defs><radialGradient id=\"a\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"matrix(0 54 -54 0 36 36.82)\"><stop offset=\".161\" stop-color=\"#070707\"/><stop offset=\".634\" stop-color=\"#070707\" stop-opacity=\".54\"/></radialGradient><linearGradient id=\"b\" x1=\"111.5\" y1=\"90.32\" x2=\"-18.563\" y2=\"-2.555\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".202\" stop-color=\"#292929\"/><stop offset=\".624\" stop-color=\"#161616\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-it7ndh\",\"data-framer-name\":\"Supercharge icons\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14ptwnk\",\"data-framer-name\":\"Iconly/Bold/Bag-2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"24\" viewBox=\"0 0 23 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_bd_2194_5447)\">\\n<path d=\"M11.6779 0.316406C14.4596 0.316406 16.7142 2.61641 16.7478 5.45691H16.9834C20.0791 5.45691 22.5916 8.04441 22.5916 11.2184V17.5664C22.5916 20.7404 20.0791 23.3164 16.9834 23.3164H6.35009C3.25433 23.3164 0.741821 20.7404 0.741821 17.5664V11.2184C0.741821 8.04441 3.25433 5.45691 6.35009 5.45691H6.58564C6.60807 4.07691 7.13525 2.78891 8.08865 1.82291C9.05328 0.845406 10.2871 0.350906 11.6779 0.316406ZM15.929 6.82541C15.4691 6.82541 15.0878 7.21641 15.0878 7.68791V9.02191C15.0878 9.49341 15.4691 9.88441 15.929 9.88441C16.4001 9.88441 16.7703 9.49341 16.7703 9.02191V7.68791C16.7703 7.21641 16.4001 6.82541 15.929 6.82541ZM7.3035 6.82541C6.84362 6.82541 6.46226 7.21641 6.46226 7.68791V9.02191C6.46226 9.49341 6.84362 9.88441 7.3035 9.88441C7.77459 9.88441 8.14474 9.49341 8.14474 9.02191V7.68791C8.14474 7.21641 7.77459 6.82541 7.3035 6.82541ZM11.6779 2.04141C10.8143 2.04141 9.91695 2.39791 9.26639 3.05341C8.63826 3.69741 8.29055 4.54841 8.26812 5.45691H15.0653C15.0317 3.57091 13.5287 2.04141 11.6779 2.04141Z\" fill=\"#6C46FF\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_2194_5447\" x=\"-61.2582\" y=\"-61.6836\" width=\"193.85\" height=\"195\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"15\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_2194_5447\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"24\" dy=\"24\"/>\\n<feGaussianBlur stdDeviation=\"43\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_2194_5447\" result=\"effect2_dropShadow_2194_5447\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_2194_5447\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o11rby\",\"data-styles-preset\":\"cnw0TXiW2\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"AI For Marketing\"})}),className:\"framer-1kptsgq\",\"data-framer-name\":\"For Sales\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-stufpi\",\"data-styles-preset\":\"QRv2CCGrw\",children:\"Easily create media content that fits your audience. You can adjust the style, how long it is, and how easy it is to understand.\"})}),className:\"framer-er3mny\",\"data-framer-name\":\"Get a draft within seconds by providing a prompt in a few words.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tf98xd\",\"data-framer-name\":\"Supercharge/Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yrns74\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6y5amz\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jxvho1\",\"data-framer-name\":\"circle\",fill:\"black\",intrinsicHeight:73,intrinsicWidth:72,svg:'<svg width=\"72\" height=\"73\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect y=\".82\" width=\"72\" height=\"72\" rx=\"36\" fill=\"url(#a)\"/><rect x=\"1\" y=\"1.82\" width=\"70\" height=\"70\" rx=\"35\" stroke=\"url(#b)\" stroke-opacity=\".6\" stroke-width=\"2\"/><defs><radialGradient id=\"a\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"matrix(0 54 -54 0 36 36.82)\"><stop offset=\".161\" stop-color=\"#070707\"/><stop offset=\".634\" stop-color=\"#070707\" stop-opacity=\".54\"/></radialGradient><linearGradient id=\"b\" x1=\"111.5\" y1=\"90.32\" x2=\"-18.563\" y2=\"-2.555\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".202\" stop-color=\"#292929\"/><stop offset=\".624\" stop-color=\"#161616\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14j06ji\",\"data-framer-name\":\"Supercharge icons\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-150cewn\",\"data-framer-name\":\"Iconly/Bold/Profile\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"25\" viewBox=\"0 0 20 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_bd_2194_5060)\">\\n<path d=\"M10.3332 16.6229C15.5395 16.6229 19.9331 17.4689 19.9331 20.733C19.9331 23.9982 15.5107 24.8142 10.3332 24.8142C5.12808 24.8142 0.733276 23.9682 0.733276 20.7042C0.733276 17.4389 5.15569 16.6229 10.3332 16.6229ZM10.3332 0.814209C13.8601 0.814209 16.6859 3.63904 16.6859 7.16347C16.6859 10.6879 13.8601 13.5139 10.3332 13.5139C6.80749 13.5139 3.98046 10.6879 3.98046 7.16347C3.98046 3.63904 6.80749 0.814209 10.3332 0.814209Z\" fill=\"#6C46FF\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_2194_5060\" x=\"-61.2667\" y=\"-61.1858\" width=\"191.2\" height=\"196\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"15\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_2194_5060\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"24\" dy=\"24\"/>\\n<feGaussianBlur stdDeviation=\"43\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_2194_5060\" result=\"effect2_dropShadow_2194_5060\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_2194_5060\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o11rby\",\"data-styles-preset\":\"cnw0TXiW2\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"AI for Customer Success\"})}),className:\"framer-6ixori\",\"data-framer-name\":\"For Sales\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-stufpi\",\"data-styles-preset\":\"QRv2CCGrw\",children:\"Make templates and set the tone of voice so that your replies are in line with your customers.\"})}),className:\"framer-11x4hdi\",\"data-framer-name\":\"Get a draft within seconds by providing a prompt in a few words.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gzmoqj\",\"data-framer-name\":\"Blog \",id:elementId6,ref:ref7,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sd6auj\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ocsi0r\",\"data-styles-preset\":\"lVyB1TXOo\",style:{\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"Latest blog posts\"})}),className:\"framer-fdljxr\",\"data-framer-name\":\"Latest blog posts\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kc53jr\",\"data-framer-name\":\"Buttons\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-104pqy0\",\"data-styles-preset\":\"toyhUkxrK\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tAI3fu49i\"},motionChild:true,nodeId:\"CVMeZLBdL\",openInNewTab:false,scopeId:\"tElDgSeiR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-g8gx41\",\"data-styles-preset\":\"QRzidVBRF\",children:\"All posts\"})})})}),className:\"framer-1o2ebei\",\"data-framer-name\":\"All posts\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19vbusr\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{query:{from:{alias:\"cSpIDDsZS\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"cSpIDDsZS\",name:\"XEStz9WWy\",type:\"Identifier\"},{collection:\"cSpIDDsZS\",name:\"kA2OFHF5E\",type:\"Identifier\"},{collection:\"cSpIDDsZS\",name:\"V8TAyPbkf\",type:\"Identifier\"},{collection:\"cSpIDDsZS\",name:\"TpisDyDT3\",type:\"Identifier\"},{collection:\"cSpIDDsZS\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"cSpIDDsZS\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"cSpIDDsZS\",name:\"XEStz9WWy\",type:\"Identifier\"},{collection:\"cSpIDDsZS\",name:\"kA2OFHF5E\",type:\"Identifier\"},{collection:\"cSpIDDsZS\",name:\"V8TAyPbkf\",type:\"Identifier\"},{collection:\"cSpIDDsZS\",name:\"TpisDyDT3\",type:\"Identifier\"},{collection:\"cSpIDDsZS\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idcSpIDDsZS,kA2OFHF5E:kA2OFHF5EcSpIDDsZS,TpisDyDT3:TpisDyDT3cSpIDDsZS,V8TAyPbkf:V8TAyPbkfcSpIDDsZS,XEStz9WWy:XEStz9WWycSpIDDsZS},index)=>{XEStz9WWycSpIDDsZS??=\"\";V8TAyPbkfcSpIDDsZS??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`cSpIDDsZS-${idcSpIDDsZS}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{XEStz9WWy:XEStz9WWycSpIDDsZS},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{XEStz9WWy:XEStz9WWycSpIDDsZS},webPageId:\"uHbDPLPlM\"},implicitPathVariables:undefined},{href:{pathVariables:{XEStz9WWy:XEStz9WWycSpIDDsZS},webPageId:\"uHbDPLPlM\"},implicitPathVariables:undefined},{href:{pathVariables:{XEStz9WWy:XEStz9WWycSpIDDsZS},webPageId:\"uHbDPLPlM\"},implicitPathVariables:undefined},{href:{pathVariables:{XEStz9WWy:XEStz9WWycSpIDDsZS},webPageId:\"uHbDPLPlM\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},KVrspKEWA:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`},wyDBVgqED:{width:`max((${componentViewport?.width||\"100vw\"} - 128px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:404,width:\"410.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-uua0cw-container\",nodeId:\"sFgI4F3bs\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B4kW2JSmc:{VZsrgKTt0:resolvedLinks[3]},KVrspKEWA:{VZsrgKTt0:resolvedLinks[2]},wyDBVgqED:{VZsrgKTt0:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(BlogPostAdditional,{A1ynmkSbD:V8TAyPbkfcSpIDDsZS,height:\"100%\",id:\"sFgI4F3bs\",layoutId:\"sFgI4F3bs\",NyfrzqGQj:toResponsiveImage(kA2OFHF5EcSpIDDsZS),style:{width:\"100%\"},uRbQj_zko:TpisDyDT3cSpIDDsZS,variant:\"cjVGgCtDf\",VZsrgKTt0:resolvedLinks[0],width:\"100%\"})})})})})})})},idcSpIDDsZS);})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x8u6b0 hidden-1qpceld\",\"data-framer-name\":\"Footer New\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dxtqt5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t4x5rp\",\"data-border\":true,\"data-framer-name\":\"Text+btn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1ocsi0r\",\"data-styles-preset\":\"lVyB1TXOo\",children:[\"The only AI Tool\",/*#__PURE__*/_jsx(\"br\",{}),\"you need\"]})}),className:\"framer-nsac06\",\"data-framer-name\":\"The only AI copilot for Chrome you need\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1181k4k-container\",nodeId:\"MqUuornWf\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(ButtonsPrimary,{height:\"100%\",id:\"MqUuornWf\",layoutId:\"MqUuornWf\",MQMOT0dCM:\"Start your journey\",variant:\"CIvFQuqRr\",width:\"100%\"})})})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xvmrtn hidden-109axor\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gv5x4z\",\"data-framer-name\":\"Sheets\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gwgjkm\",\"data-framer-name\":\"Cursor\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.29886 1.78901C4.67346 1.30139 3.76172 1.74711 3.76172 2.53949V13.3389C3.76172 14.2417 4.9014 14.6379 5.4614 13.9293L8.12172 10.5643C8.21988 10.4402 8.34484 10.34 8.48724 10.2712C8.62964 10.2024 8.78578 10.1667 8.94394 10.1668H13.2944C14.2011 10.1668 14.5954 9.01885 13.8792 8.46266L5.29886 1.78901Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"193.0769px\",src:\"https://framerusercontent.com/images/lbTthsudoOjdAvu3NRFuSHTqnUg.png\",srcSet:\"https://framerusercontent.com/images/lbTthsudoOjdAvu3NRFuSHTqnUg.png?scale-down-to=512 512w,https://framerusercontent.com/images/lbTthsudoOjdAvu3NRFuSHTqnUg.png 776w\"},className:\"framer-1xmc3hb\",\"data-border\":true,\"data-framer-name\":\"Main \",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fe9raj\",\"data-border\":true,\"data-framer-name\":\"Frame 1273\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14x1qhb\",\"data-framer-name\":\"Sheets\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Claude Logo\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"30px\",src:\"https://framerusercontent.com/images/PebeeVL75nt8XZZweAC92KwNEL0.png\",srcSet:\"https://framerusercontent.com/images/PebeeVL75nt8XZZweAC92KwNEL0.png?scale-down-to=512 512w,https://framerusercontent.com/images/PebeeVL75nt8XZZweAC92KwNEL0.png 800w\"},className:\"framer-qh01ok\",\"data-framer-name\":\"claude_app_icon 1\",transformTemplate:transformTemplate3})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24.62px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Claude\"})}),className:\"framer-1xqi25b\",\"data-framer-name\":\"Sheets\",fonts:[\"GF;Figtree-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gb2iyz\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:11,svg:'<svg width=\"11\" height=\"14\" viewBox=\"0 0 11 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.56888 1.04292C0.943484 0.5553 0.0317383 1.00101 0.0317383 1.7934V12.5928C0.0317383 13.4956 1.17142 13.8918 1.73142 13.1832L4.39174 9.81816C4.4899 9.69414 4.61486 9.59395 4.75726 9.52512C4.89966 9.45628 5.0558 9.42058 5.21396 9.4207H9.56444C10.4711 9.4207 10.8654 8.27276 10.1492 7.71657L1.56888 1.04292Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dzfuni\",\"data-framer-name\":\"Left Circle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w55k5z\",\"data-border\":true,\"data-framer-name\":\"Ellipse 109\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b9gmpt\",\"data-framer-name\":\"Ellipse 114\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qb8qdc\",\"data-framer-name\":\"Left Bg circle\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qwt1ii\",\"data-framer-name\":\"Left Line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:230,intrinsicWidth:300,svg:'<svg width=\"300\" height=\"230\" viewBox=\"-1 -1 300 230\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M298 227.82L298 146.32C298 128.647 283.697 114.32 266.024 114.32C233.129 114.32 181.447 114.32 143.282 114.32C108.838 114.32 62.5069 114.32 31.9745 114.32C14.3014 114.32 -1.93426e-05 99.9934 -1.77976e-05 82.3203L-1.06726e-05 0.820317\" stroke=\"url(#paint0_linear_2311_226)\" stroke-opacity=\"0.32\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2311_226\" x1=\"29.5\" y1=\"-86.1798\" x2=\"356.716\" y2=\"-104.151\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.0675942\" stop-color=\"#070707\"/>\\n<stop offset=\"0.32675\" stop-color=\"#242424\"/>\\n<stop offset=\"0.437649\" stop-color=\"#303030\"/>\\n<stop offset=\"0.645077\" stop-color=\"#383838\"/>\\n<stop offset=\"1\" stop-color=\"#868686\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1velvfu hidden-109axor\",\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gt8yp4\",\"data-framer-name\":\"Right bg circle\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cygbck\",\"data-framer-name\":\"Slides\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4vsc3j\",\"data-framer-name\":\"Cursor\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.29886 1.78901C4.67346 1.30139 3.76172 1.74711 3.76172 2.53949V13.3389C3.76172 14.2417 4.9014 14.6379 5.4614 13.9293L8.12172 10.5643C8.21988 10.4402 8.34484 10.34 8.48724 10.2712C8.62964 10.2024 8.78578 10.1667 8.94394 10.1668H13.2944C14.2011 10.1668 14.5954 9.01885 13.8792 8.46266L5.29886 1.78901Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"160px\",src:\"https://framerusercontent.com/images/0Hz5PaC8BqtNP6IIHljFY5zgIzQ.png\",srcSet:\"https://framerusercontent.com/images/0Hz5PaC8BqtNP6IIHljFY5zgIzQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/0Hz5PaC8BqtNP6IIHljFY5zgIzQ.png 640w\"},className:\"framer-11b0kq9\",\"data-border\":true,\"data-framer-name\":\"Frame 1266\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a7ndl\",\"data-border\":true,\"data-framer-name\":\"Frame 1271\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g45eem\",\"data-framer-name\":\"Slides\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"ChatGPT Logo\",fit:\"fill\",src:\"https://framerusercontent.com/images/6F9JGYpzB2lrRkXPskWnuZiG7vY.png\"},className:\"framer-1k0ejkt\",\"data-framer-name\":\"image 49\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"15.24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20.32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"GPT-4o\"})}),className:\"framer-1vx0rbz\",\"data-framer-name\":\"Slides\",fonts:[\"GF;Figtree-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-132bj1a\",\"data-framer-name\":\"Cursor\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.56937 2.04292C4.94397 1.5553 4.03223 2.00101 4.03223 2.7934V13.5928C4.03223 14.4956 5.17191 14.8918 5.73191 14.1832L8.39223 10.8182C8.49038 10.6941 8.61535 10.594 8.75775 10.5251C8.90015 10.4563 9.05628 10.4206 9.21445 10.4207H13.5649C14.4716 10.4207 14.8659 9.27276 14.1497 8.71657L5.56937 2.04292Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vmfu4m\",\"data-framer-name\":\"Right Circle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j1q7v7\",\"data-border\":true,\"data-framer-name\":\"Ellipse 109\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y1x1h9\",\"data-framer-name\":\"Ellipse 114\"})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xnk1e7\",\"data-framer-name\":\"Right Line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:201,intrinsicWidth:229,svg:'<svg width=\"229\" height=\"201\" viewBox=\"-1 -1 229 201\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M227 0.820312L145.5 0.820309C127.827 0.820308 113.5 15.1386 113.5 32.8118C113.5 54.1446 113.5 82.1121 113.5 103.619C113.5 122.754 113.5 147.409 113.5 166.835C113.5 184.508 99.1731 198.82 81.5 198.82L7.55761e-06 198.82\" stroke=\"url(#paint0_linear_2311_245)\" stroke-opacity=\"0.32\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2311_245\" x1=\"312.125\" y1=\"5.72571\" x2=\"298.524\" y2=\"229.092\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.0207844\" stop-color=\"#070707\"/>\\n<stop offset=\"0.246904\" stop-color=\"#242424\"/>\\n<stop offset=\"0.346559\" stop-color=\"#303030\"/>\\n<stop offset=\"0.645077\" stop-color=\"#383838\"/>\\n<stop offset=\"1\" stop-color=\"#868686\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wr4o3c\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-azvqni\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m3to1d\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dv07gs\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z1Jk2LsYx2y4Nvx2DuJ6hFDxtw.png\"},className:\"framer-6u5hqx\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"\\xa9 2023 Writingmate\"})}),className:\"framer-cvkx8o\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c5mx0g\",\"data-framer-name\":\"Socials\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jyxvac-container\",nodeId:\"Dt8mmGD6r\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(SocialNetwork,{height:\"100%\",id:\"Dt8mmGD6r\",layoutId:\"Dt8mmGD6r\",width:\"100%\",xeVZAzrGi:\"LinkedinLogo\",zPfXRrTO_:\"https://www.linkedin.com/company/writingmate/\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1or6lud-container\",nodeId:\"fD75b0gaX\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(SocialNetwork,{height:\"100%\",id:\"fD75b0gaX\",layoutId:\"fD75b0gaX\",width:\"100%\",xeVZAzrGi:\"FacebookLogo\",zPfXRrTO_:\"https://www.facebook.com/writingmateai/\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-alp7r6-container\",nodeId:\"NAsba7zXe\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(SocialNetwork,{height:\"100%\",id:\"NAsba7zXe\",layoutId:\"NAsba7zXe\",width:\"100%\",xeVZAzrGi:\"TwitterLogo\",zPfXRrTO_:\"https://twitter.com/writingmateai\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k2in8u-container\",nodeId:\"SQdOWMCVn\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(SocialNetwork,{height:\"100%\",id:\"SQdOWMCVn\",layoutId:\"SQdOWMCVn\",width:\"100%\",xeVZAzrGi:\"YoutubeLogo\",zPfXRrTO_:\"https://www.youtube.com/@writingmate\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xvn0uv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-roehgs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Company\"})}),className:\"framer-ziav91\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YqlVDJT9q\"},motionChild:true,nodeId:\"fzBKdLB0a\",openInNewTab:false,scopeId:\"tElDgSeiR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16s4r2w\",\"data-styles-preset\":\"W7zz08Z5O\",children:\"About Us\"})})})}),className:\"framer-ukdaf6\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tAI3fu49i\"},motionChild:true,nodeId:\"hVmO6eoj0\",openInNewTab:false,scopeId:\"tElDgSeiR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16s4r2w\",\"data-styles-preset\":\"W7zz08Z5O\",children:\"Blog\"})})})}),className:\"framer-r5bq2z\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@writingmate.ai\",motionChild:true,nodeId:\"ql1VKKeNQ\",openInNewTab:true,scopeId:\"tElDgSeiR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16s4r2w\",\"data-styles-preset\":\"W7zz08Z5O\",children:\"Email Us\"})})})}),className:\"framer-1bu9p8u\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i7p68w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Resources\"})}),className:\"framer-1dnjeqr\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.writingmate.ai/\",motionChild:true,nodeId:\"llwY7W1Eg\",openInNewTab:true,scopeId:\"tElDgSeiR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16s4r2w\",\"data-styles-preset\":\"W7zz08Z5O\",children:\"Writingmate Manual\"})})})}),className:\"framer-1ue3dxg\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.writingmate.ai/security-and-privacy/chatlabs-privacy-policy\",motionChild:true,nodeId:\"G5Znt81cI\",openInNewTab:true,scopeId:\"tElDgSeiR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16s4r2w\",\"data-styles-preset\":\"W7zz08Z5O\",children:\"Privacy Policy\"})})})}),className:\"framer-ji39ll\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.writingmate.ai/subscription-and-billing/chatlabs-refund-policy\",motionChild:true,nodeId:\"ZggECk5Qm\",openInNewTab:true,scopeId:\"tElDgSeiR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16s4r2w\",\"data-styles-preset\":\"W7zz08Z5O\",children:\"Refund Policy\"})})})}),className:\"framer-ic054h\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qxe4lw\",\"data-framer-name\":\"Frame \",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jwscgh\",\"data-styles-preset\":\"FNuPyE1gR\",style:{\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"Design by\"})}),className:\"framer-6gtxvy\",\"data-framer-name\":\"Design by\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://humandone.com/\",motionChild:true,nodeId:\"OnQuxCqK0\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-arjv2v framer-80f08z\",\"data-framer-name\":\"logo_humandone\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:102,svg:'<svg width=\"102\" height=\"17\" viewBox=\"0 0 102 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2194_15309)\">\\n<rect x=\"0.130859\" y=\"0.820312\" width=\"16\" height=\"16\" rx=\"4\" fill=\"#121214\"/>\\n<path d=\"M4.63086 13.1953V4.44531H6.63439V7.98281H9.62733V4.44531H11.6309V13.1953H9.62733V9.72031H6.63439V13.1953H4.63086Z\" fill=\"url(#paint0_linear_2194_15309)\"/>\\n<path d=\"M25.7869 9.73613H22.3989V13.6281H20.1309V3.82812H22.3989V7.79013H25.7869V3.82812H28.0409V13.6281H25.7869V9.73613Z\" fill=\"#8E91AA\"/>\\n<path d=\"M25.7869 9.73613H22.3989V13.6281H20.1309V3.82812H22.3989V7.79013H25.7869V3.82812H28.0409V13.6281H25.7869V9.73613Z\" fill=\"url(#paint1_linear_2194_15309)\"/>\\n<path d=\"M36.2899 6.88013V13.6281H34.1479V12.6621C33.9613 13.0168 33.6766 13.2968 33.2939 13.5021C32.9206 13.6981 32.4679 13.7961 31.9359 13.7961C31.4973 13.7961 31.1193 13.7308 30.8019 13.6001C30.4846 13.4601 30.2326 13.2688 30.0459 13.0261C29.8313 12.7648 29.6913 12.4661 29.6259 12.1301C29.5606 11.7848 29.5279 11.3695 29.5279 10.8841V6.88013H31.6559V10.3381C31.6559 10.8235 31.7399 11.2201 31.9079 11.5281C32.0853 11.8268 32.3979 11.9761 32.8459 11.9761C33.2939 11.9761 33.6206 11.8221 33.8259 11.5141C34.0406 11.2061 34.1479 10.7908 34.1479 10.2681V6.88013H36.2899Z\" fill=\"#8E91AA\"/>\\n<path d=\"M36.2899 6.88013V13.6281H34.1479V12.6621C33.9613 13.0168 33.6766 13.2968 33.2939 13.5021C32.9206 13.6981 32.4679 13.7961 31.9359 13.7961C31.4973 13.7961 31.1193 13.7308 30.8019 13.6001C30.4846 13.4601 30.2326 13.2688 30.0459 13.0261C29.8313 12.7648 29.6913 12.4661 29.6259 12.1301C29.5606 11.7848 29.5279 11.3695 29.5279 10.8841V6.88013H31.6559V10.3381C31.6559 10.8235 31.7399 11.2201 31.9079 11.5281C32.0853 11.8268 32.3979 11.9761 32.8459 11.9761C33.2939 11.9761 33.6206 11.8221 33.8259 11.5141C34.0406 11.2061 34.1479 10.7908 34.1479 10.2681V6.88013H36.2899Z\" fill=\"url(#paint2_linear_2194_15309)\"/>\\n<path d=\"M46.3198 13.6281V9.98813C46.3198 9.53079 46.2358 9.17613 46.0678 8.92413C45.9092 8.66279 45.6478 8.53213 45.2838 8.53213C45.1252 8.53213 44.9758 8.56013 44.8358 8.61613C44.6958 8.67213 44.5745 8.76546 44.4718 8.89613C44.3692 9.02679 44.2898 9.20413 44.2338 9.42813C44.1778 9.64279 44.1498 9.91346 44.1498 10.2401V13.6281H42.0778V9.97413C42.0778 9.51679 41.9985 9.16213 41.8398 8.91013C41.6812 8.65813 41.4245 8.53213 41.0698 8.53213C40.9018 8.53213 40.7478 8.56013 40.6078 8.61613C40.4678 8.67213 40.3465 8.77013 40.2438 8.91013C40.1412 9.04079 40.0572 9.21813 39.9918 9.44213C39.9358 9.66613 39.9078 9.94613 39.9078 10.2821V13.6281H37.8358V6.88013H39.9078V7.86013C40.0572 7.54279 40.2998 7.27213 40.6358 7.04813C40.9718 6.82413 41.3778 6.71213 41.8538 6.71213C42.4418 6.71213 42.8945 6.82879 43.2118 7.06213C43.5292 7.29546 43.7578 7.58479 43.8978 7.93013C44.0752 7.57546 44.3458 7.28613 44.7098 7.06213C45.0738 6.82879 45.5078 6.71213 46.0118 6.71213C46.4972 6.71213 46.8938 6.79146 47.2018 6.95013C47.5098 7.09946 47.7525 7.30479 47.9298 7.56613C48.1072 7.81813 48.2238 8.11213 48.2798 8.44813C48.3452 8.77479 48.3778 9.11546 48.3778 9.47013V13.6281H46.3198Z\" fill=\"#8E91AA\"/>\\n<path d=\"M46.3198 13.6281V9.98813C46.3198 9.53079 46.2358 9.17613 46.0678 8.92413C45.9092 8.66279 45.6478 8.53213 45.2838 8.53213C45.1252 8.53213 44.9758 8.56013 44.8358 8.61613C44.6958 8.67213 44.5745 8.76546 44.4718 8.89613C44.3692 9.02679 44.2898 9.20413 44.2338 9.42813C44.1778 9.64279 44.1498 9.91346 44.1498 10.2401V13.6281H42.0778V9.97413C42.0778 9.51679 41.9985 9.16213 41.8398 8.91013C41.6812 8.65813 41.4245 8.53213 41.0698 8.53213C40.9018 8.53213 40.7478 8.56013 40.6078 8.61613C40.4678 8.67213 40.3465 8.77013 40.2438 8.91013C40.1412 9.04079 40.0572 9.21813 39.9918 9.44213C39.9358 9.66613 39.9078 9.94613 39.9078 10.2821V13.6281H37.8358V6.88013H39.9078V7.86013C40.0572 7.54279 40.2998 7.27213 40.6358 7.04813C40.9718 6.82413 41.3778 6.71213 41.8538 6.71213C42.4418 6.71213 42.8945 6.82879 43.2118 7.06213C43.5292 7.29546 43.7578 7.58479 43.8978 7.93013C44.0752 7.57546 44.3458 7.28613 44.7098 7.06213C45.0738 6.82879 45.5078 6.71213 46.0118 6.71213C46.4972 6.71213 46.8938 6.79146 47.2018 6.95013C47.5098 7.09946 47.7525 7.30479 47.9298 7.56613C48.1072 7.81813 48.2238 8.11213 48.2798 8.44813C48.3452 8.77479 48.3778 9.11546 48.3778 9.47013V13.6281H46.3198Z\" fill=\"url(#paint3_linear_2194_15309)\"/>\\n<path d=\"M53.1648 11.9761C53.4075 11.9761 53.6268 11.9295 53.8228 11.8361C54.0188 11.7428 54.1868 11.6215 54.3268 11.4721C54.4668 11.3135 54.5742 11.1315 54.6488 10.9261C54.7328 10.7115 54.7748 10.4875 54.7748 10.2541C54.7748 10.0208 54.7328 9.80146 54.6488 9.59613C54.5742 9.39079 54.4668 9.20879 54.3268 9.05013C54.1868 8.89146 54.0188 8.76546 53.8228 8.67213C53.6268 8.57879 53.4075 8.53213 53.1648 8.53213C52.9222 8.53213 52.7028 8.57879 52.5068 8.67213C52.3108 8.76546 52.1428 8.89146 52.0028 9.05013C51.8628 9.20879 51.7508 9.39079 51.6668 9.59613C51.5922 9.80146 51.5548 10.0208 51.5548 10.2541C51.5548 10.4875 51.5922 10.7115 51.6668 10.9261C51.7508 11.1315 51.8628 11.3135 52.0028 11.4721C52.1428 11.6215 52.3108 11.7428 52.5068 11.8361C52.7028 11.9295 52.9222 11.9761 53.1648 11.9761ZM56.9168 6.88013V13.6281H54.7748V12.6761C54.6908 12.8348 54.5788 12.9841 54.4388 13.1241C54.2988 13.2548 54.1355 13.3715 53.9488 13.4741C53.7715 13.5675 53.5755 13.6421 53.3608 13.6981C53.1462 13.7635 52.9315 13.7961 52.7168 13.7961C52.2315 13.7961 51.7835 13.7075 51.3728 13.5301C50.9715 13.3435 50.6262 13.0961 50.3368 12.7881C50.0475 12.4708 49.8235 12.0975 49.6648 11.6681C49.5062 11.2295 49.4268 10.7581 49.4268 10.2541C49.4268 9.75013 49.5062 9.28346 49.6648 8.85413C49.8235 8.41546 50.0475 8.04213 50.3368 7.73413C50.6262 7.41679 50.9715 7.16946 51.3728 6.99213C51.7835 6.80546 52.2315 6.71213 52.7168 6.71213C52.9315 6.71213 53.1462 6.74479 53.3608 6.81013C53.5755 6.86613 53.7715 6.94546 53.9488 7.04813C54.1355 7.15079 54.2988 7.27213 54.4388 7.41213C54.5788 7.55213 54.6908 7.69679 54.7748 7.84613V6.88013H56.9168Z\" fill=\"#8E91AA\"/>\\n<path d=\"M53.1648 11.9761C53.4075 11.9761 53.6268 11.9295 53.8228 11.8361C54.0188 11.7428 54.1868 11.6215 54.3268 11.4721C54.4668 11.3135 54.5742 11.1315 54.6488 10.9261C54.7328 10.7115 54.7748 10.4875 54.7748 10.2541C54.7748 10.0208 54.7328 9.80146 54.6488 9.59613C54.5742 9.39079 54.4668 9.20879 54.3268 9.05013C54.1868 8.89146 54.0188 8.76546 53.8228 8.67213C53.6268 8.57879 53.4075 8.53213 53.1648 8.53213C52.9222 8.53213 52.7028 8.57879 52.5068 8.67213C52.3108 8.76546 52.1428 8.89146 52.0028 9.05013C51.8628 9.20879 51.7508 9.39079 51.6668 9.59613C51.5922 9.80146 51.5548 10.0208 51.5548 10.2541C51.5548 10.4875 51.5922 10.7115 51.6668 10.9261C51.7508 11.1315 51.8628 11.3135 52.0028 11.4721C52.1428 11.6215 52.3108 11.7428 52.5068 11.8361C52.7028 11.9295 52.9222 11.9761 53.1648 11.9761ZM56.9168 6.88013V13.6281H54.7748V12.6761C54.6908 12.8348 54.5788 12.9841 54.4388 13.1241C54.2988 13.2548 54.1355 13.3715 53.9488 13.4741C53.7715 13.5675 53.5755 13.6421 53.3608 13.6981C53.1462 13.7635 52.9315 13.7961 52.7168 13.7961C52.2315 13.7961 51.7835 13.7075 51.3728 13.5301C50.9715 13.3435 50.6262 13.0961 50.3368 12.7881C50.0475 12.4708 49.8235 12.0975 49.6648 11.6681C49.5062 11.2295 49.4268 10.7581 49.4268 10.2541C49.4268 9.75013 49.5062 9.28346 49.6648 8.85413C49.8235 8.41546 50.0475 8.04213 50.3368 7.73413C50.6262 7.41679 50.9715 7.16946 51.3728 6.99213C51.7835 6.80546 52.2315 6.71213 52.7168 6.71213C52.9315 6.71213 53.1462 6.74479 53.3608 6.81013C53.5755 6.86613 53.7715 6.94546 53.9488 7.04813C54.1355 7.15079 54.2988 7.27213 54.4388 7.41213C54.5788 7.55213 54.6908 7.69679 54.7748 7.84613V6.88013H56.9168Z\" fill=\"url(#paint4_linear_2194_15309)\"/>\\n<path d=\"M58.4536 6.88013H60.5956V7.86013C60.7822 7.49613 61.0622 7.21613 61.4356 7.02013C61.8182 6.81479 62.2756 6.71213 62.8076 6.71213C63.2462 6.71213 63.6242 6.78213 63.9416 6.92213C64.2589 7.05279 64.5109 7.23946 64.6976 7.48213C64.9122 7.74346 65.0522 8.04679 65.1176 8.39213C65.1922 8.72813 65.2296 9.13879 65.2296 9.62413V13.6281H63.0876V10.1701C63.0876 9.68479 62.9989 9.29279 62.8216 8.99413C62.6536 8.68613 62.3456 8.53213 61.8976 8.53213C61.4589 8.53213 61.1322 8.68613 60.9176 8.99413C60.7029 9.30213 60.5956 9.71746 60.5956 10.2401V13.6281H58.4536V6.88013Z\" fill=\"#8E91AA\"/>\\n<path d=\"M58.4536 6.88013H60.5956V7.86013C60.7822 7.49613 61.0622 7.21613 61.4356 7.02013C61.8182 6.81479 62.2756 6.71213 62.8076 6.71213C63.2462 6.71213 63.6242 6.78213 63.9416 6.92213C64.2589 7.05279 64.5109 7.23946 64.6976 7.48213C64.9122 7.74346 65.0522 8.04679 65.1176 8.39213C65.1922 8.72813 65.2296 9.13879 65.2296 9.62413V13.6281H63.0876V10.1701C63.0876 9.68479 62.9989 9.29279 62.8216 8.99413C62.6536 8.68613 62.3456 8.53213 61.8976 8.53213C61.4589 8.53213 61.1322 8.68613 60.9176 8.99413C60.7029 9.30213 60.5956 9.71746 60.5956 10.2401V13.6281H58.4536V6.88013Z\" fill=\"url(#paint5_linear_2194_15309)\"/>\\n<path d=\"M69.9955 11.9761C70.2381 11.9761 70.4575 11.9295 70.6535 11.8361C70.8495 11.7428 71.0175 11.6215 71.1575 11.4721C71.2975 11.3135 71.4048 11.1315 71.4795 10.9261C71.5635 10.7115 71.6055 10.4875 71.6055 10.2541C71.6055 10.0208 71.5635 9.80146 71.4795 9.59613C71.4048 9.39079 71.2975 9.20879 71.1575 9.05013C71.0175 8.89146 70.8495 8.76546 70.6535 8.67213C70.4575 8.57879 70.2381 8.53213 69.9955 8.53213C69.7528 8.53213 69.5335 8.57879 69.3375 8.67213C69.1415 8.76546 68.9735 8.89146 68.8335 9.05013C68.6935 9.20879 68.5815 9.39079 68.4975 9.59613C68.4228 9.80146 68.3855 10.0208 68.3855 10.2541C68.3855 10.4875 68.4228 10.7115 68.4975 10.9261C68.5815 11.1315 68.6935 11.3135 68.8335 11.4721C68.9735 11.6215 69.1415 11.7428 69.3375 11.8361C69.5335 11.9295 69.7528 11.9761 69.9955 11.9761ZM71.6055 12.6761C71.5215 12.8348 71.4095 12.9841 71.2695 13.1241C71.1295 13.2548 70.9661 13.3715 70.7795 13.4741C70.6021 13.5675 70.4061 13.6421 70.1915 13.6981C69.9768 13.7635 69.7621 13.7961 69.5475 13.7961C69.0621 13.7961 68.6141 13.7075 68.2035 13.5301C67.8021 13.3435 67.4568 13.0961 67.1675 12.7881C66.8781 12.4708 66.6541 12.0975 66.4955 11.6681C66.3368 11.2295 66.2575 10.7581 66.2575 10.2541C66.2575 9.75013 66.3368 9.28346 66.4955 8.85413C66.6541 8.41546 66.8781 8.04213 67.1675 7.73413C67.4568 7.41679 67.8021 7.16946 68.2035 6.99213C68.6141 6.80546 69.0621 6.71213 69.5475 6.71213C69.7621 6.71213 69.9768 6.74479 70.1915 6.81013C70.4061 6.86613 70.6021 6.94546 70.7795 7.04813C70.9661 7.15079 71.1295 7.27213 71.2695 7.41213C71.4095 7.55213 71.5215 7.69679 71.6055 7.84613V3.82812H73.7475V13.6281H71.6055V12.6761Z\" fill=\"#8E91AA\"/>\\n<path d=\"M69.9955 11.9761C70.2381 11.9761 70.4575 11.9295 70.6535 11.8361C70.8495 11.7428 71.0175 11.6215 71.1575 11.4721C71.2975 11.3135 71.4048 11.1315 71.4795 10.9261C71.5635 10.7115 71.6055 10.4875 71.6055 10.2541C71.6055 10.0208 71.5635 9.80146 71.4795 9.59613C71.4048 9.39079 71.2975 9.20879 71.1575 9.05013C71.0175 8.89146 70.8495 8.76546 70.6535 8.67213C70.4575 8.57879 70.2381 8.53213 69.9955 8.53213C69.7528 8.53213 69.5335 8.57879 69.3375 8.67213C69.1415 8.76546 68.9735 8.89146 68.8335 9.05013C68.6935 9.20879 68.5815 9.39079 68.4975 9.59613C68.4228 9.80146 68.3855 10.0208 68.3855 10.2541C68.3855 10.4875 68.4228 10.7115 68.4975 10.9261C68.5815 11.1315 68.6935 11.3135 68.8335 11.4721C68.9735 11.6215 69.1415 11.7428 69.3375 11.8361C69.5335 11.9295 69.7528 11.9761 69.9955 11.9761ZM71.6055 12.6761C71.5215 12.8348 71.4095 12.9841 71.2695 13.1241C71.1295 13.2548 70.9661 13.3715 70.7795 13.4741C70.6021 13.5675 70.4061 13.6421 70.1915 13.6981C69.9768 13.7635 69.7621 13.7961 69.5475 13.7961C69.0621 13.7961 68.6141 13.7075 68.2035 13.5301C67.8021 13.3435 67.4568 13.0961 67.1675 12.7881C66.8781 12.4708 66.6541 12.0975 66.4955 11.6681C66.3368 11.2295 66.2575 10.7581 66.2575 10.2541C66.2575 9.75013 66.3368 9.28346 66.4955 8.85413C66.6541 8.41546 66.8781 8.04213 67.1675 7.73413C67.4568 7.41679 67.8021 7.16946 68.2035 6.99213C68.6141 6.80546 69.0621 6.71213 69.5475 6.71213C69.7621 6.71213 69.9768 6.74479 70.1915 6.81013C70.4061 6.86613 70.6021 6.94546 70.7795 7.04813C70.9661 7.15079 71.1295 7.27213 71.2695 7.41213C71.4095 7.55213 71.5215 7.69679 71.6055 7.84613V3.82812H73.7475V13.6281H71.6055V12.6761Z\" fill=\"url(#paint6_linear_2194_15309)\"/>\\n<path d=\"M78.5602 13.8101C77.9815 13.8101 77.4589 13.7168 76.9922 13.5301C76.5349 13.3341 76.1429 13.0775 75.8162 12.7601C75.4989 12.4335 75.2515 12.0555 75.0742 11.6261C74.9062 11.1968 74.8222 10.7395 74.8222 10.2541C74.8222 9.76879 74.9062 9.31146 75.0742 8.88213C75.2515 8.45279 75.4989 8.07946 75.8162 7.76213C76.1429 7.43546 76.5349 7.17879 76.9922 6.99213C77.4589 6.79613 77.9815 6.69813 78.5602 6.69813C79.1482 6.69813 79.6709 6.79613 80.1282 6.99213C80.5949 7.17879 80.9869 7.43546 81.3042 7.76213C81.6309 8.07946 81.8782 8.45279 82.0462 8.88213C82.2235 9.31146 82.3122 9.76879 82.3122 10.2541C82.3122 10.7395 82.2235 11.1968 82.0462 11.6261C81.8782 12.0555 81.6309 12.4335 81.3042 12.7601C80.9869 13.0775 80.5949 13.3341 80.1282 13.5301C79.6709 13.7168 79.1482 13.8101 78.5602 13.8101ZM78.5602 11.9761C78.8029 11.9761 79.0222 11.9341 79.2182 11.8501C79.4235 11.7568 79.5962 11.6308 79.7362 11.4721C79.8762 11.3135 79.9835 11.1315 80.0582 10.9261C80.1422 10.7208 80.1842 10.4968 80.1842 10.2541C80.1842 10.0208 80.1422 9.80146 80.0582 9.59613C79.9835 9.38146 79.8762 9.19946 79.7362 9.05013C79.5962 8.89146 79.4235 8.76546 79.2182 8.67213C79.0222 8.57879 78.8029 8.53213 78.5602 8.53213C78.3175 8.53213 78.0982 8.57879 77.9022 8.67213C77.7062 8.76546 77.5382 8.89146 77.3982 9.05013C77.2582 9.19946 77.1509 9.38146 77.0762 9.59613C77.0015 9.80146 76.9642 10.0208 76.9642 10.2541C76.9642 10.4968 77.0015 10.7208 77.0762 10.9261C77.1509 11.1315 77.2582 11.3135 77.3982 11.4721C77.5382 11.6308 77.7062 11.7568 77.9022 11.8501C78.0982 11.9341 78.3175 11.9761 78.5602 11.9761Z\" fill=\"#8E91AA\"/>\\n<path d=\"M78.5602 13.8101C77.9815 13.8101 77.4589 13.7168 76.9922 13.5301C76.5349 13.3341 76.1429 13.0775 75.8162 12.7601C75.4989 12.4335 75.2515 12.0555 75.0742 11.6261C74.9062 11.1968 74.8222 10.7395 74.8222 10.2541C74.8222 9.76879 74.9062 9.31146 75.0742 8.88213C75.2515 8.45279 75.4989 8.07946 75.8162 7.76213C76.1429 7.43546 76.5349 7.17879 76.9922 6.99213C77.4589 6.79613 77.9815 6.69813 78.5602 6.69813C79.1482 6.69813 79.6709 6.79613 80.1282 6.99213C80.5949 7.17879 80.9869 7.43546 81.3042 7.76213C81.6309 8.07946 81.8782 8.45279 82.0462 8.88213C82.2235 9.31146 82.3122 9.76879 82.3122 10.2541C82.3122 10.7395 82.2235 11.1968 82.0462 11.6261C81.8782 12.0555 81.6309 12.4335 81.3042 12.7601C80.9869 13.0775 80.5949 13.3341 80.1282 13.5301C79.6709 13.7168 79.1482 13.8101 78.5602 13.8101ZM78.5602 11.9761C78.8029 11.9761 79.0222 11.9341 79.2182 11.8501C79.4235 11.7568 79.5962 11.6308 79.7362 11.4721C79.8762 11.3135 79.9835 11.1315 80.0582 10.9261C80.1422 10.7208 80.1842 10.4968 80.1842 10.2541C80.1842 10.0208 80.1422 9.80146 80.0582 9.59613C79.9835 9.38146 79.8762 9.19946 79.7362 9.05013C79.5962 8.89146 79.4235 8.76546 79.2182 8.67213C79.0222 8.57879 78.8029 8.53213 78.5602 8.53213C78.3175 8.53213 78.0982 8.57879 77.9022 8.67213C77.7062 8.76546 77.5382 8.89146 77.3982 9.05013C77.2582 9.19946 77.1509 9.38146 77.0762 9.59613C77.0015 9.80146 76.9642 10.0208 76.9642 10.2541C76.9642 10.4968 77.0015 10.7208 77.0762 10.9261C77.1509 11.1315 77.2582 11.3135 77.3982 11.4721C77.5382 11.6308 77.7062 11.7568 77.9022 11.8501C78.0982 11.9341 78.3175 11.9761 78.5602 11.9761Z\" fill=\"url(#paint7_linear_2194_15309)\"/>\\n<path d=\"M83.3851 6.88013H85.527V7.86013C85.7137 7.49613 85.9937 7.21613 86.367 7.02013C86.7497 6.81479 87.207 6.71213 87.739 6.71213C88.1777 6.71213 88.5557 6.78213 88.873 6.92213C89.1904 7.05279 89.4424 7.23946 89.629 7.48213C89.8437 7.74346 89.9837 8.04679 90.049 8.39213C90.1237 8.72813 90.161 9.13879 90.161 9.62413V13.6281H88.019V10.1701C88.019 9.68479 87.9304 9.29279 87.753 8.99413C87.585 8.68613 87.277 8.53213 86.829 8.53213C86.3904 8.53213 86.0637 8.68613 85.849 8.99413C85.6344 9.30213 85.527 9.71746 85.527 10.2401V13.6281H83.3851V6.88013Z\" fill=\"#8E91AA\"/>\\n<path d=\"M83.3851 6.88013H85.527V7.86013C85.7137 7.49613 85.9937 7.21613 86.367 7.02013C86.7497 6.81479 87.207 6.71213 87.739 6.71213C88.1777 6.71213 88.5557 6.78213 88.873 6.92213C89.1904 7.05279 89.4424 7.23946 89.629 7.48213C89.8437 7.74346 89.9837 8.04679 90.049 8.39213C90.1237 8.72813 90.161 9.13879 90.161 9.62413V13.6281H88.019V10.1701C88.019 9.68479 87.9304 9.29279 87.753 8.99413C87.585 8.68613 87.277 8.53213 86.829 8.53213C86.3904 8.53213 86.0637 8.68613 85.849 8.99413C85.6344 9.30213 85.527 9.71746 85.527 10.2401V13.6281H83.3851V6.88013Z\" fill=\"url(#paint8_linear_2194_15309)\"/>\\n<path d=\"M93.3029 10.7721C93.3123 10.9775 93.3403 11.1735 93.387 11.3601C93.443 11.5375 93.527 11.6961 93.639 11.8361C93.7603 11.9668 93.9143 12.0741 94.101 12.1581C94.2876 12.2328 94.5209 12.2701 94.8009 12.2701C95.1743 12.2701 95.4543 12.1955 95.641 12.0461C95.837 11.8968 95.9723 11.7148 96.047 11.5001H98.1469C98.1003 11.8175 97.9883 12.1161 97.811 12.3961C97.643 12.6761 97.4143 12.9235 97.125 13.1381C96.845 13.3435 96.509 13.5068 96.117 13.6281C95.7343 13.7495 95.3003 13.8101 94.8149 13.8101C94.2269 13.8101 93.7043 13.7261 93.2469 13.5581C92.7989 13.3808 92.421 13.1335 92.113 12.8161C91.805 12.4988 91.5716 12.1255 91.4129 11.6961C91.2543 11.2575 91.1749 10.7768 91.1749 10.2541C91.1749 9.75946 91.2496 9.29746 91.3989 8.86813C91.5576 8.43879 91.7863 8.06546 92.085 7.74813C92.393 7.42146 92.7663 7.16479 93.2049 6.97813C93.6529 6.79146 94.1709 6.69813 94.7589 6.69813C95.2909 6.69813 95.767 6.78213 96.187 6.95013C96.6163 7.11813 96.9803 7.34213 97.279 7.62213C97.587 7.90213 97.8203 8.22879 97.979 8.60213C98.147 8.97546 98.2309 9.36746 98.2309 9.77813C98.2309 9.91813 98.2263 10.0675 98.2169 10.2261C98.2169 10.3848 98.1983 10.5668 98.1609 10.7721H93.3029ZM94.7449 8.12613C94.3249 8.12613 93.9796 8.24746 93.709 8.49013C93.4383 8.73279 93.3029 9.08279 93.3029 9.54013H96.131C96.131 9.10146 96.0003 8.75613 95.739 8.50413C95.487 8.25213 95.1556 8.12613 94.7449 8.12613Z\" fill=\"#8E91AA\"/>\\n<path d=\"M93.3029 10.7721C93.3123 10.9775 93.3403 11.1735 93.387 11.3601C93.443 11.5375 93.527 11.6961 93.639 11.8361C93.7603 11.9668 93.9143 12.0741 94.101 12.1581C94.2876 12.2328 94.5209 12.2701 94.8009 12.2701C95.1743 12.2701 95.4543 12.1955 95.641 12.0461C95.837 11.8968 95.9723 11.7148 96.047 11.5001H98.1469C98.1003 11.8175 97.9883 12.1161 97.811 12.3961C97.643 12.6761 97.4143 12.9235 97.125 13.1381C96.845 13.3435 96.509 13.5068 96.117 13.6281C95.7343 13.7495 95.3003 13.8101 94.8149 13.8101C94.2269 13.8101 93.7043 13.7261 93.2469 13.5581C92.7989 13.3808 92.421 13.1335 92.113 12.8161C91.805 12.4988 91.5716 12.1255 91.4129 11.6961C91.2543 11.2575 91.1749 10.7768 91.1749 10.2541C91.1749 9.75946 91.2496 9.29746 91.3989 8.86813C91.5576 8.43879 91.7863 8.06546 92.085 7.74813C92.393 7.42146 92.7663 7.16479 93.2049 6.97813C93.6529 6.79146 94.1709 6.69813 94.7589 6.69813C95.2909 6.69813 95.767 6.78213 96.187 6.95013C96.6163 7.11813 96.9803 7.34213 97.279 7.62213C97.587 7.90213 97.8203 8.22879 97.979 8.60213C98.147 8.97546 98.2309 9.36746 98.2309 9.77813C98.2309 9.91813 98.2263 10.0675 98.2169 10.2261C98.2169 10.3848 98.1983 10.5668 98.1609 10.7721H93.3029ZM94.7449 8.12613C94.3249 8.12613 93.9796 8.24746 93.709 8.49013C93.4383 8.73279 93.3029 9.08279 93.3029 9.54013H96.131C96.131 9.10146 96.0003 8.75613 95.739 8.50413C95.487 8.25213 95.1556 8.12613 94.7449 8.12613Z\" fill=\"url(#paint9_linear_2194_15309)\"/>\\n<path d=\"M99.1717 12.3541C99.1717 12.1581 99.209 11.9761 99.2837 11.8081C99.3584 11.6401 99.4564 11.4955 99.5777 11.3741C99.7084 11.2435 99.8577 11.1408 100.026 11.0661C100.203 10.9915 100.39 10.9541 100.586 10.9541C100.782 10.9541 100.964 10.9915 101.132 11.0661C101.309 11.1408 101.458 11.2435 101.58 11.3741C101.71 11.4955 101.813 11.6401 101.888 11.8081C101.962 11.9761 102 12.1581 102 12.3541C102 12.5501 101.962 12.7321 101.888 12.9001C101.813 13.0681 101.71 13.2175 101.58 13.3481C101.458 13.4695 101.309 13.5675 101.132 13.6421C100.964 13.7168 100.782 13.7541 100.586 13.7541C100.39 13.7541 100.203 13.7168 100.026 13.6421C99.8577 13.5675 99.7084 13.4695 99.5777 13.3481C99.4564 13.2175 99.3584 13.0681 99.2837 12.9001C99.209 12.7321 99.1717 12.5501 99.1717 12.3541Z\" fill=\"#8E91AA\"/>\\n<path d=\"M99.1717 12.3541C99.1717 12.1581 99.209 11.9761 99.2837 11.8081C99.3584 11.6401 99.4564 11.4955 99.5777 11.3741C99.7084 11.2435 99.8577 11.1408 100.026 11.0661C100.203 10.9915 100.39 10.9541 100.586 10.9541C100.782 10.9541 100.964 10.9915 101.132 11.0661C101.309 11.1408 101.458 11.2435 101.58 11.3741C101.71 11.4955 101.813 11.6401 101.888 11.8081C101.962 11.9761 102 12.1581 102 12.3541C102 12.5501 101.962 12.7321 101.888 12.9001C101.813 13.0681 101.71 13.2175 101.58 13.3481C101.458 13.4695 101.309 13.5675 101.132 13.6421C100.964 13.7168 100.782 13.7541 100.586 13.7541C100.39 13.7541 100.203 13.7168 100.026 13.6421C99.8577 13.5675 99.7084 13.4695 99.5777 13.3481C99.4564 13.2175 99.3584 13.0681 99.2837 12.9001C99.209 12.7321 99.1717 12.5501 99.1717 12.3541Z\" fill=\"url(#paint10_linear_2194_15309)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_2194_15309\" x1=\"2.53086\" y1=\"6.26823\" x2=\"17.2058\" y2=\"16.2159\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.370138\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint9_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint10_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_2194_15309\">\\n<rect width=\"102\" height=\"16\" fill=\"white\" transform=\"translate(0 0.820312)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})]})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5vj7gx hidden-sry8r4 hidden-8xpqdh hidden-109axor\",\"data-framer-name\":\"Footer New\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i3w6cu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ki8j0l\",\"data-border\":true,\"data-framer-name\":\"Text+btn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1ocsi0r\",\"data-styles-preset\":\"lVyB1TXOo\",children:[\"The only AI Tool\",/*#__PURE__*/_jsx(\"br\",{}),\"you need\"]})}),className:\"framer-1waiofl\",\"data-framer-name\":\"The only AI copilot for Chrome you need\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g6kjrb-container\",nodeId:\"eOLTwcDyA\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(ButtonsPrimary,{height:\"100%\",id:\"eOLTwcDyA\",layoutId:\"eOLTwcDyA\",MQMOT0dCM:\"Start your journey\",variant:\"CIvFQuqRr\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wfdh4i\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cfq2gx\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13rselx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qyvclz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Company\"})}),className:\"framer-2ypt8n\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YqlVDJT9q\"},motionChild:true,nodeId:\"FACEbWxx7\",openInNewTab:false,scopeId:\"tElDgSeiR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16s4r2w\",\"data-styles-preset\":\"W7zz08Z5O\",children:\"About Us\"})})})}),className:\"framer-1e1qfk2\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tAI3fu49i\"},motionChild:true,nodeId:\"jEnMuRxkn\",openInNewTab:false,scopeId:\"tElDgSeiR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16s4r2w\",\"data-styles-preset\":\"W7zz08Z5O\",children:\"Blog\"})})})}),className:\"framer-f624c0\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@writingmate.ai\",motionChild:true,nodeId:\"qSJJVUMQA\",openInNewTab:true,scopeId:\"tElDgSeiR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16s4r2w\",\"data-styles-preset\":\"W7zz08Z5O\",children:\"Email Us\"})})})}),className:\"framer-133eadz\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ww1m1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Resources\"})}),className:\"framer-1d4emav\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.writingmate.ai/\",motionChild:true,nodeId:\"nn1mNzzlZ\",openInNewTab:true,scopeId:\"tElDgSeiR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16s4r2w\",\"data-styles-preset\":\"W7zz08Z5O\",children:\"ChatLabs Manual\"})})})}),className:\"framer-sfwtb8\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.writingmate.ai/security-and-privacy/chatlabs-privacy-policy\",motionChild:true,nodeId:\"lFc21xrAB\",openInNewTab:true,scopeId:\"tElDgSeiR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16s4r2w\",\"data-styles-preset\":\"W7zz08Z5O\",children:\"Privacy Policy\"})})})}),className:\"framer-1gigwoh\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.writingmate.ai/subscription-and-billing/chatlabs-refund-policy\",motionChild:true,nodeId:\"yYcc1769D\",openInNewTab:true,scopeId:\"tElDgSeiR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16s4r2w\",\"data-styles-preset\":\"W7zz08Z5O\",children:\"Refund Policy\"})})})}),className:\"framer-18soqff\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hv9cki\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rrfoq4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"\\xa9 2023 ChatLabs\"})}),className:\"framer-16gzhfm\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qnlgzo\",\"data-framer-name\":\"Socials\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f4u6r6-container\",nodeId:\"SAfL8yVpO\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(SocialNetwork,{height:\"100%\",id:\"SAfL8yVpO\",layoutId:\"SAfL8yVpO\",width:\"100%\",xeVZAzrGi:\"LinkedinLogo\",zPfXRrTO_:\"https://www.linkedin.com/company/writingmate/\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l546qc-container\",nodeId:\"g8hyRA0bN\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(SocialNetwork,{height:\"100%\",id:\"g8hyRA0bN\",layoutId:\"g8hyRA0bN\",width:\"100%\",xeVZAzrGi:\"FacebookLogo\",zPfXRrTO_:\"https://www.facebook.com/writingmateai/\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15kc84g-container\",nodeId:\"yCcS7xf_U\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(SocialNetwork,{height:\"100%\",id:\"yCcS7xf_U\",layoutId:\"yCcS7xf_U\",width:\"100%\",xeVZAzrGi:\"TwitterLogo\",zPfXRrTO_:\"https://twitter.com/writingmateai\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y8fymh-container\",nodeId:\"POLv8sWmj\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(SocialNetwork,{height:\"100%\",id:\"POLv8sWmj\",layoutId:\"POLv8sWmj\",width:\"100%\",xeVZAzrGi:\"YoutubeLogo\",zPfXRrTO_:\"https://www.youtube.com/@writingmate\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jlfqmo\",\"data-framer-name\":\"Frame \",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jwscgh\",\"data-styles-preset\":\"FNuPyE1gR\",style:{\"--framer-text-color\":\"var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, rgb(255, 255, 255))\"},children:\"Design by\"})}),className:\"framer-og6ouu\",\"data-framer-name\":\"Design by\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://humandone.com/\",motionChild:true,nodeId:\"ihB7XRrHp\",scopeId:\"tElDgSeiR\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-ovwf5d framer-80f08z\",\"data-framer-name\":\"logo_humandone\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:102,svg:'<svg width=\"102\" height=\"17\" viewBox=\"0 0 102 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2194_15309)\">\\n<rect x=\"0.130859\" y=\"0.820312\" width=\"16\" height=\"16\" rx=\"4\" fill=\"#121214\"/>\\n<path d=\"M4.63086 13.1953V4.44531H6.63439V7.98281H9.62733V4.44531H11.6309V13.1953H9.62733V9.72031H6.63439V13.1953H4.63086Z\" fill=\"url(#paint0_linear_2194_15309)\"/>\\n<path d=\"M25.7869 9.73613H22.3989V13.6281H20.1309V3.82812H22.3989V7.79013H25.7869V3.82812H28.0409V13.6281H25.7869V9.73613Z\" fill=\"#8E91AA\"/>\\n<path d=\"M25.7869 9.73613H22.3989V13.6281H20.1309V3.82812H22.3989V7.79013H25.7869V3.82812H28.0409V13.6281H25.7869V9.73613Z\" fill=\"url(#paint1_linear_2194_15309)\"/>\\n<path d=\"M36.2899 6.88013V13.6281H34.1479V12.6621C33.9613 13.0168 33.6766 13.2968 33.2939 13.5021C32.9206 13.6981 32.4679 13.7961 31.9359 13.7961C31.4973 13.7961 31.1193 13.7308 30.8019 13.6001C30.4846 13.4601 30.2326 13.2688 30.0459 13.0261C29.8313 12.7648 29.6913 12.4661 29.6259 12.1301C29.5606 11.7848 29.5279 11.3695 29.5279 10.8841V6.88013H31.6559V10.3381C31.6559 10.8235 31.7399 11.2201 31.9079 11.5281C32.0853 11.8268 32.3979 11.9761 32.8459 11.9761C33.2939 11.9761 33.6206 11.8221 33.8259 11.5141C34.0406 11.2061 34.1479 10.7908 34.1479 10.2681V6.88013H36.2899Z\" fill=\"#8E91AA\"/>\\n<path d=\"M36.2899 6.88013V13.6281H34.1479V12.6621C33.9613 13.0168 33.6766 13.2968 33.2939 13.5021C32.9206 13.6981 32.4679 13.7961 31.9359 13.7961C31.4973 13.7961 31.1193 13.7308 30.8019 13.6001C30.4846 13.4601 30.2326 13.2688 30.0459 13.0261C29.8313 12.7648 29.6913 12.4661 29.6259 12.1301C29.5606 11.7848 29.5279 11.3695 29.5279 10.8841V6.88013H31.6559V10.3381C31.6559 10.8235 31.7399 11.2201 31.9079 11.5281C32.0853 11.8268 32.3979 11.9761 32.8459 11.9761C33.2939 11.9761 33.6206 11.8221 33.8259 11.5141C34.0406 11.2061 34.1479 10.7908 34.1479 10.2681V6.88013H36.2899Z\" fill=\"url(#paint2_linear_2194_15309)\"/>\\n<path d=\"M46.3198 13.6281V9.98813C46.3198 9.53079 46.2358 9.17613 46.0678 8.92413C45.9092 8.66279 45.6478 8.53213 45.2838 8.53213C45.1252 8.53213 44.9758 8.56013 44.8358 8.61613C44.6958 8.67213 44.5745 8.76546 44.4718 8.89613C44.3692 9.02679 44.2898 9.20413 44.2338 9.42813C44.1778 9.64279 44.1498 9.91346 44.1498 10.2401V13.6281H42.0778V9.97413C42.0778 9.51679 41.9985 9.16213 41.8398 8.91013C41.6812 8.65813 41.4245 8.53213 41.0698 8.53213C40.9018 8.53213 40.7478 8.56013 40.6078 8.61613C40.4678 8.67213 40.3465 8.77013 40.2438 8.91013C40.1412 9.04079 40.0572 9.21813 39.9918 9.44213C39.9358 9.66613 39.9078 9.94613 39.9078 10.2821V13.6281H37.8358V6.88013H39.9078V7.86013C40.0572 7.54279 40.2998 7.27213 40.6358 7.04813C40.9718 6.82413 41.3778 6.71213 41.8538 6.71213C42.4418 6.71213 42.8945 6.82879 43.2118 7.06213C43.5292 7.29546 43.7578 7.58479 43.8978 7.93013C44.0752 7.57546 44.3458 7.28613 44.7098 7.06213C45.0738 6.82879 45.5078 6.71213 46.0118 6.71213C46.4972 6.71213 46.8938 6.79146 47.2018 6.95013C47.5098 7.09946 47.7525 7.30479 47.9298 7.56613C48.1072 7.81813 48.2238 8.11213 48.2798 8.44813C48.3452 8.77479 48.3778 9.11546 48.3778 9.47013V13.6281H46.3198Z\" fill=\"#8E91AA\"/>\\n<path d=\"M46.3198 13.6281V9.98813C46.3198 9.53079 46.2358 9.17613 46.0678 8.92413C45.9092 8.66279 45.6478 8.53213 45.2838 8.53213C45.1252 8.53213 44.9758 8.56013 44.8358 8.61613C44.6958 8.67213 44.5745 8.76546 44.4718 8.89613C44.3692 9.02679 44.2898 9.20413 44.2338 9.42813C44.1778 9.64279 44.1498 9.91346 44.1498 10.2401V13.6281H42.0778V9.97413C42.0778 9.51679 41.9985 9.16213 41.8398 8.91013C41.6812 8.65813 41.4245 8.53213 41.0698 8.53213C40.9018 8.53213 40.7478 8.56013 40.6078 8.61613C40.4678 8.67213 40.3465 8.77013 40.2438 8.91013C40.1412 9.04079 40.0572 9.21813 39.9918 9.44213C39.9358 9.66613 39.9078 9.94613 39.9078 10.2821V13.6281H37.8358V6.88013H39.9078V7.86013C40.0572 7.54279 40.2998 7.27213 40.6358 7.04813C40.9718 6.82413 41.3778 6.71213 41.8538 6.71213C42.4418 6.71213 42.8945 6.82879 43.2118 7.06213C43.5292 7.29546 43.7578 7.58479 43.8978 7.93013C44.0752 7.57546 44.3458 7.28613 44.7098 7.06213C45.0738 6.82879 45.5078 6.71213 46.0118 6.71213C46.4972 6.71213 46.8938 6.79146 47.2018 6.95013C47.5098 7.09946 47.7525 7.30479 47.9298 7.56613C48.1072 7.81813 48.2238 8.11213 48.2798 8.44813C48.3452 8.77479 48.3778 9.11546 48.3778 9.47013V13.6281H46.3198Z\" fill=\"url(#paint3_linear_2194_15309)\"/>\\n<path d=\"M53.1648 11.9761C53.4075 11.9761 53.6268 11.9295 53.8228 11.8361C54.0188 11.7428 54.1868 11.6215 54.3268 11.4721C54.4668 11.3135 54.5742 11.1315 54.6488 10.9261C54.7328 10.7115 54.7748 10.4875 54.7748 10.2541C54.7748 10.0208 54.7328 9.80146 54.6488 9.59613C54.5742 9.39079 54.4668 9.20879 54.3268 9.05013C54.1868 8.89146 54.0188 8.76546 53.8228 8.67213C53.6268 8.57879 53.4075 8.53213 53.1648 8.53213C52.9222 8.53213 52.7028 8.57879 52.5068 8.67213C52.3108 8.76546 52.1428 8.89146 52.0028 9.05013C51.8628 9.20879 51.7508 9.39079 51.6668 9.59613C51.5922 9.80146 51.5548 10.0208 51.5548 10.2541C51.5548 10.4875 51.5922 10.7115 51.6668 10.9261C51.7508 11.1315 51.8628 11.3135 52.0028 11.4721C52.1428 11.6215 52.3108 11.7428 52.5068 11.8361C52.7028 11.9295 52.9222 11.9761 53.1648 11.9761ZM56.9168 6.88013V13.6281H54.7748V12.6761C54.6908 12.8348 54.5788 12.9841 54.4388 13.1241C54.2988 13.2548 54.1355 13.3715 53.9488 13.4741C53.7715 13.5675 53.5755 13.6421 53.3608 13.6981C53.1462 13.7635 52.9315 13.7961 52.7168 13.7961C52.2315 13.7961 51.7835 13.7075 51.3728 13.5301C50.9715 13.3435 50.6262 13.0961 50.3368 12.7881C50.0475 12.4708 49.8235 12.0975 49.6648 11.6681C49.5062 11.2295 49.4268 10.7581 49.4268 10.2541C49.4268 9.75013 49.5062 9.28346 49.6648 8.85413C49.8235 8.41546 50.0475 8.04213 50.3368 7.73413C50.6262 7.41679 50.9715 7.16946 51.3728 6.99213C51.7835 6.80546 52.2315 6.71213 52.7168 6.71213C52.9315 6.71213 53.1462 6.74479 53.3608 6.81013C53.5755 6.86613 53.7715 6.94546 53.9488 7.04813C54.1355 7.15079 54.2988 7.27213 54.4388 7.41213C54.5788 7.55213 54.6908 7.69679 54.7748 7.84613V6.88013H56.9168Z\" fill=\"#8E91AA\"/>\\n<path d=\"M53.1648 11.9761C53.4075 11.9761 53.6268 11.9295 53.8228 11.8361C54.0188 11.7428 54.1868 11.6215 54.3268 11.4721C54.4668 11.3135 54.5742 11.1315 54.6488 10.9261C54.7328 10.7115 54.7748 10.4875 54.7748 10.2541C54.7748 10.0208 54.7328 9.80146 54.6488 9.59613C54.5742 9.39079 54.4668 9.20879 54.3268 9.05013C54.1868 8.89146 54.0188 8.76546 53.8228 8.67213C53.6268 8.57879 53.4075 8.53213 53.1648 8.53213C52.9222 8.53213 52.7028 8.57879 52.5068 8.67213C52.3108 8.76546 52.1428 8.89146 52.0028 9.05013C51.8628 9.20879 51.7508 9.39079 51.6668 9.59613C51.5922 9.80146 51.5548 10.0208 51.5548 10.2541C51.5548 10.4875 51.5922 10.7115 51.6668 10.9261C51.7508 11.1315 51.8628 11.3135 52.0028 11.4721C52.1428 11.6215 52.3108 11.7428 52.5068 11.8361C52.7028 11.9295 52.9222 11.9761 53.1648 11.9761ZM56.9168 6.88013V13.6281H54.7748V12.6761C54.6908 12.8348 54.5788 12.9841 54.4388 13.1241C54.2988 13.2548 54.1355 13.3715 53.9488 13.4741C53.7715 13.5675 53.5755 13.6421 53.3608 13.6981C53.1462 13.7635 52.9315 13.7961 52.7168 13.7961C52.2315 13.7961 51.7835 13.7075 51.3728 13.5301C50.9715 13.3435 50.6262 13.0961 50.3368 12.7881C50.0475 12.4708 49.8235 12.0975 49.6648 11.6681C49.5062 11.2295 49.4268 10.7581 49.4268 10.2541C49.4268 9.75013 49.5062 9.28346 49.6648 8.85413C49.8235 8.41546 50.0475 8.04213 50.3368 7.73413C50.6262 7.41679 50.9715 7.16946 51.3728 6.99213C51.7835 6.80546 52.2315 6.71213 52.7168 6.71213C52.9315 6.71213 53.1462 6.74479 53.3608 6.81013C53.5755 6.86613 53.7715 6.94546 53.9488 7.04813C54.1355 7.15079 54.2988 7.27213 54.4388 7.41213C54.5788 7.55213 54.6908 7.69679 54.7748 7.84613V6.88013H56.9168Z\" fill=\"url(#paint4_linear_2194_15309)\"/>\\n<path d=\"M58.4536 6.88013H60.5956V7.86013C60.7822 7.49613 61.0622 7.21613 61.4356 7.02013C61.8182 6.81479 62.2756 6.71213 62.8076 6.71213C63.2462 6.71213 63.6242 6.78213 63.9416 6.92213C64.2589 7.05279 64.5109 7.23946 64.6976 7.48213C64.9122 7.74346 65.0522 8.04679 65.1176 8.39213C65.1922 8.72813 65.2296 9.13879 65.2296 9.62413V13.6281H63.0876V10.1701C63.0876 9.68479 62.9989 9.29279 62.8216 8.99413C62.6536 8.68613 62.3456 8.53213 61.8976 8.53213C61.4589 8.53213 61.1322 8.68613 60.9176 8.99413C60.7029 9.30213 60.5956 9.71746 60.5956 10.2401V13.6281H58.4536V6.88013Z\" fill=\"#8E91AA\"/>\\n<path d=\"M58.4536 6.88013H60.5956V7.86013C60.7822 7.49613 61.0622 7.21613 61.4356 7.02013C61.8182 6.81479 62.2756 6.71213 62.8076 6.71213C63.2462 6.71213 63.6242 6.78213 63.9416 6.92213C64.2589 7.05279 64.5109 7.23946 64.6976 7.48213C64.9122 7.74346 65.0522 8.04679 65.1176 8.39213C65.1922 8.72813 65.2296 9.13879 65.2296 9.62413V13.6281H63.0876V10.1701C63.0876 9.68479 62.9989 9.29279 62.8216 8.99413C62.6536 8.68613 62.3456 8.53213 61.8976 8.53213C61.4589 8.53213 61.1322 8.68613 60.9176 8.99413C60.7029 9.30213 60.5956 9.71746 60.5956 10.2401V13.6281H58.4536V6.88013Z\" fill=\"url(#paint5_linear_2194_15309)\"/>\\n<path d=\"M69.9955 11.9761C70.2381 11.9761 70.4575 11.9295 70.6535 11.8361C70.8495 11.7428 71.0175 11.6215 71.1575 11.4721C71.2975 11.3135 71.4048 11.1315 71.4795 10.9261C71.5635 10.7115 71.6055 10.4875 71.6055 10.2541C71.6055 10.0208 71.5635 9.80146 71.4795 9.59613C71.4048 9.39079 71.2975 9.20879 71.1575 9.05013C71.0175 8.89146 70.8495 8.76546 70.6535 8.67213C70.4575 8.57879 70.2381 8.53213 69.9955 8.53213C69.7528 8.53213 69.5335 8.57879 69.3375 8.67213C69.1415 8.76546 68.9735 8.89146 68.8335 9.05013C68.6935 9.20879 68.5815 9.39079 68.4975 9.59613C68.4228 9.80146 68.3855 10.0208 68.3855 10.2541C68.3855 10.4875 68.4228 10.7115 68.4975 10.9261C68.5815 11.1315 68.6935 11.3135 68.8335 11.4721C68.9735 11.6215 69.1415 11.7428 69.3375 11.8361C69.5335 11.9295 69.7528 11.9761 69.9955 11.9761ZM71.6055 12.6761C71.5215 12.8348 71.4095 12.9841 71.2695 13.1241C71.1295 13.2548 70.9661 13.3715 70.7795 13.4741C70.6021 13.5675 70.4061 13.6421 70.1915 13.6981C69.9768 13.7635 69.7621 13.7961 69.5475 13.7961C69.0621 13.7961 68.6141 13.7075 68.2035 13.5301C67.8021 13.3435 67.4568 13.0961 67.1675 12.7881C66.8781 12.4708 66.6541 12.0975 66.4955 11.6681C66.3368 11.2295 66.2575 10.7581 66.2575 10.2541C66.2575 9.75013 66.3368 9.28346 66.4955 8.85413C66.6541 8.41546 66.8781 8.04213 67.1675 7.73413C67.4568 7.41679 67.8021 7.16946 68.2035 6.99213C68.6141 6.80546 69.0621 6.71213 69.5475 6.71213C69.7621 6.71213 69.9768 6.74479 70.1915 6.81013C70.4061 6.86613 70.6021 6.94546 70.7795 7.04813C70.9661 7.15079 71.1295 7.27213 71.2695 7.41213C71.4095 7.55213 71.5215 7.69679 71.6055 7.84613V3.82812H73.7475V13.6281H71.6055V12.6761Z\" fill=\"#8E91AA\"/>\\n<path d=\"M69.9955 11.9761C70.2381 11.9761 70.4575 11.9295 70.6535 11.8361C70.8495 11.7428 71.0175 11.6215 71.1575 11.4721C71.2975 11.3135 71.4048 11.1315 71.4795 10.9261C71.5635 10.7115 71.6055 10.4875 71.6055 10.2541C71.6055 10.0208 71.5635 9.80146 71.4795 9.59613C71.4048 9.39079 71.2975 9.20879 71.1575 9.05013C71.0175 8.89146 70.8495 8.76546 70.6535 8.67213C70.4575 8.57879 70.2381 8.53213 69.9955 8.53213C69.7528 8.53213 69.5335 8.57879 69.3375 8.67213C69.1415 8.76546 68.9735 8.89146 68.8335 9.05013C68.6935 9.20879 68.5815 9.39079 68.4975 9.59613C68.4228 9.80146 68.3855 10.0208 68.3855 10.2541C68.3855 10.4875 68.4228 10.7115 68.4975 10.9261C68.5815 11.1315 68.6935 11.3135 68.8335 11.4721C68.9735 11.6215 69.1415 11.7428 69.3375 11.8361C69.5335 11.9295 69.7528 11.9761 69.9955 11.9761ZM71.6055 12.6761C71.5215 12.8348 71.4095 12.9841 71.2695 13.1241C71.1295 13.2548 70.9661 13.3715 70.7795 13.4741C70.6021 13.5675 70.4061 13.6421 70.1915 13.6981C69.9768 13.7635 69.7621 13.7961 69.5475 13.7961C69.0621 13.7961 68.6141 13.7075 68.2035 13.5301C67.8021 13.3435 67.4568 13.0961 67.1675 12.7881C66.8781 12.4708 66.6541 12.0975 66.4955 11.6681C66.3368 11.2295 66.2575 10.7581 66.2575 10.2541C66.2575 9.75013 66.3368 9.28346 66.4955 8.85413C66.6541 8.41546 66.8781 8.04213 67.1675 7.73413C67.4568 7.41679 67.8021 7.16946 68.2035 6.99213C68.6141 6.80546 69.0621 6.71213 69.5475 6.71213C69.7621 6.71213 69.9768 6.74479 70.1915 6.81013C70.4061 6.86613 70.6021 6.94546 70.7795 7.04813C70.9661 7.15079 71.1295 7.27213 71.2695 7.41213C71.4095 7.55213 71.5215 7.69679 71.6055 7.84613V3.82812H73.7475V13.6281H71.6055V12.6761Z\" fill=\"url(#paint6_linear_2194_15309)\"/>\\n<path d=\"M78.5602 13.8101C77.9815 13.8101 77.4589 13.7168 76.9922 13.5301C76.5349 13.3341 76.1429 13.0775 75.8162 12.7601C75.4989 12.4335 75.2515 12.0555 75.0742 11.6261C74.9062 11.1968 74.8222 10.7395 74.8222 10.2541C74.8222 9.76879 74.9062 9.31146 75.0742 8.88213C75.2515 8.45279 75.4989 8.07946 75.8162 7.76213C76.1429 7.43546 76.5349 7.17879 76.9922 6.99213C77.4589 6.79613 77.9815 6.69813 78.5602 6.69813C79.1482 6.69813 79.6709 6.79613 80.1282 6.99213C80.5949 7.17879 80.9869 7.43546 81.3042 7.76213C81.6309 8.07946 81.8782 8.45279 82.0462 8.88213C82.2235 9.31146 82.3122 9.76879 82.3122 10.2541C82.3122 10.7395 82.2235 11.1968 82.0462 11.6261C81.8782 12.0555 81.6309 12.4335 81.3042 12.7601C80.9869 13.0775 80.5949 13.3341 80.1282 13.5301C79.6709 13.7168 79.1482 13.8101 78.5602 13.8101ZM78.5602 11.9761C78.8029 11.9761 79.0222 11.9341 79.2182 11.8501C79.4235 11.7568 79.5962 11.6308 79.7362 11.4721C79.8762 11.3135 79.9835 11.1315 80.0582 10.9261C80.1422 10.7208 80.1842 10.4968 80.1842 10.2541C80.1842 10.0208 80.1422 9.80146 80.0582 9.59613C79.9835 9.38146 79.8762 9.19946 79.7362 9.05013C79.5962 8.89146 79.4235 8.76546 79.2182 8.67213C79.0222 8.57879 78.8029 8.53213 78.5602 8.53213C78.3175 8.53213 78.0982 8.57879 77.9022 8.67213C77.7062 8.76546 77.5382 8.89146 77.3982 9.05013C77.2582 9.19946 77.1509 9.38146 77.0762 9.59613C77.0015 9.80146 76.9642 10.0208 76.9642 10.2541C76.9642 10.4968 77.0015 10.7208 77.0762 10.9261C77.1509 11.1315 77.2582 11.3135 77.3982 11.4721C77.5382 11.6308 77.7062 11.7568 77.9022 11.8501C78.0982 11.9341 78.3175 11.9761 78.5602 11.9761Z\" fill=\"#8E91AA\"/>\\n<path d=\"M78.5602 13.8101C77.9815 13.8101 77.4589 13.7168 76.9922 13.5301C76.5349 13.3341 76.1429 13.0775 75.8162 12.7601C75.4989 12.4335 75.2515 12.0555 75.0742 11.6261C74.9062 11.1968 74.8222 10.7395 74.8222 10.2541C74.8222 9.76879 74.9062 9.31146 75.0742 8.88213C75.2515 8.45279 75.4989 8.07946 75.8162 7.76213C76.1429 7.43546 76.5349 7.17879 76.9922 6.99213C77.4589 6.79613 77.9815 6.69813 78.5602 6.69813C79.1482 6.69813 79.6709 6.79613 80.1282 6.99213C80.5949 7.17879 80.9869 7.43546 81.3042 7.76213C81.6309 8.07946 81.8782 8.45279 82.0462 8.88213C82.2235 9.31146 82.3122 9.76879 82.3122 10.2541C82.3122 10.7395 82.2235 11.1968 82.0462 11.6261C81.8782 12.0555 81.6309 12.4335 81.3042 12.7601C80.9869 13.0775 80.5949 13.3341 80.1282 13.5301C79.6709 13.7168 79.1482 13.8101 78.5602 13.8101ZM78.5602 11.9761C78.8029 11.9761 79.0222 11.9341 79.2182 11.8501C79.4235 11.7568 79.5962 11.6308 79.7362 11.4721C79.8762 11.3135 79.9835 11.1315 80.0582 10.9261C80.1422 10.7208 80.1842 10.4968 80.1842 10.2541C80.1842 10.0208 80.1422 9.80146 80.0582 9.59613C79.9835 9.38146 79.8762 9.19946 79.7362 9.05013C79.5962 8.89146 79.4235 8.76546 79.2182 8.67213C79.0222 8.57879 78.8029 8.53213 78.5602 8.53213C78.3175 8.53213 78.0982 8.57879 77.9022 8.67213C77.7062 8.76546 77.5382 8.89146 77.3982 9.05013C77.2582 9.19946 77.1509 9.38146 77.0762 9.59613C77.0015 9.80146 76.9642 10.0208 76.9642 10.2541C76.9642 10.4968 77.0015 10.7208 77.0762 10.9261C77.1509 11.1315 77.2582 11.3135 77.3982 11.4721C77.5382 11.6308 77.7062 11.7568 77.9022 11.8501C78.0982 11.9341 78.3175 11.9761 78.5602 11.9761Z\" fill=\"url(#paint7_linear_2194_15309)\"/>\\n<path d=\"M83.3851 6.88013H85.527V7.86013C85.7137 7.49613 85.9937 7.21613 86.367 7.02013C86.7497 6.81479 87.207 6.71213 87.739 6.71213C88.1777 6.71213 88.5557 6.78213 88.873 6.92213C89.1904 7.05279 89.4424 7.23946 89.629 7.48213C89.8437 7.74346 89.9837 8.04679 90.049 8.39213C90.1237 8.72813 90.161 9.13879 90.161 9.62413V13.6281H88.019V10.1701C88.019 9.68479 87.9304 9.29279 87.753 8.99413C87.585 8.68613 87.277 8.53213 86.829 8.53213C86.3904 8.53213 86.0637 8.68613 85.849 8.99413C85.6344 9.30213 85.527 9.71746 85.527 10.2401V13.6281H83.3851V6.88013Z\" fill=\"#8E91AA\"/>\\n<path d=\"M83.3851 6.88013H85.527V7.86013C85.7137 7.49613 85.9937 7.21613 86.367 7.02013C86.7497 6.81479 87.207 6.71213 87.739 6.71213C88.1777 6.71213 88.5557 6.78213 88.873 6.92213C89.1904 7.05279 89.4424 7.23946 89.629 7.48213C89.8437 7.74346 89.9837 8.04679 90.049 8.39213C90.1237 8.72813 90.161 9.13879 90.161 9.62413V13.6281H88.019V10.1701C88.019 9.68479 87.9304 9.29279 87.753 8.99413C87.585 8.68613 87.277 8.53213 86.829 8.53213C86.3904 8.53213 86.0637 8.68613 85.849 8.99413C85.6344 9.30213 85.527 9.71746 85.527 10.2401V13.6281H83.3851V6.88013Z\" fill=\"url(#paint8_linear_2194_15309)\"/>\\n<path d=\"M93.3029 10.7721C93.3123 10.9775 93.3403 11.1735 93.387 11.3601C93.443 11.5375 93.527 11.6961 93.639 11.8361C93.7603 11.9668 93.9143 12.0741 94.101 12.1581C94.2876 12.2328 94.5209 12.2701 94.8009 12.2701C95.1743 12.2701 95.4543 12.1955 95.641 12.0461C95.837 11.8968 95.9723 11.7148 96.047 11.5001H98.1469C98.1003 11.8175 97.9883 12.1161 97.811 12.3961C97.643 12.6761 97.4143 12.9235 97.125 13.1381C96.845 13.3435 96.509 13.5068 96.117 13.6281C95.7343 13.7495 95.3003 13.8101 94.8149 13.8101C94.2269 13.8101 93.7043 13.7261 93.2469 13.5581C92.7989 13.3808 92.421 13.1335 92.113 12.8161C91.805 12.4988 91.5716 12.1255 91.4129 11.6961C91.2543 11.2575 91.1749 10.7768 91.1749 10.2541C91.1749 9.75946 91.2496 9.29746 91.3989 8.86813C91.5576 8.43879 91.7863 8.06546 92.085 7.74813C92.393 7.42146 92.7663 7.16479 93.2049 6.97813C93.6529 6.79146 94.1709 6.69813 94.7589 6.69813C95.2909 6.69813 95.767 6.78213 96.187 6.95013C96.6163 7.11813 96.9803 7.34213 97.279 7.62213C97.587 7.90213 97.8203 8.22879 97.979 8.60213C98.147 8.97546 98.2309 9.36746 98.2309 9.77813C98.2309 9.91813 98.2263 10.0675 98.2169 10.2261C98.2169 10.3848 98.1983 10.5668 98.1609 10.7721H93.3029ZM94.7449 8.12613C94.3249 8.12613 93.9796 8.24746 93.709 8.49013C93.4383 8.73279 93.3029 9.08279 93.3029 9.54013H96.131C96.131 9.10146 96.0003 8.75613 95.739 8.50413C95.487 8.25213 95.1556 8.12613 94.7449 8.12613Z\" fill=\"#8E91AA\"/>\\n<path d=\"M93.3029 10.7721C93.3123 10.9775 93.3403 11.1735 93.387 11.3601C93.443 11.5375 93.527 11.6961 93.639 11.8361C93.7603 11.9668 93.9143 12.0741 94.101 12.1581C94.2876 12.2328 94.5209 12.2701 94.8009 12.2701C95.1743 12.2701 95.4543 12.1955 95.641 12.0461C95.837 11.8968 95.9723 11.7148 96.047 11.5001H98.1469C98.1003 11.8175 97.9883 12.1161 97.811 12.3961C97.643 12.6761 97.4143 12.9235 97.125 13.1381C96.845 13.3435 96.509 13.5068 96.117 13.6281C95.7343 13.7495 95.3003 13.8101 94.8149 13.8101C94.2269 13.8101 93.7043 13.7261 93.2469 13.5581C92.7989 13.3808 92.421 13.1335 92.113 12.8161C91.805 12.4988 91.5716 12.1255 91.4129 11.6961C91.2543 11.2575 91.1749 10.7768 91.1749 10.2541C91.1749 9.75946 91.2496 9.29746 91.3989 8.86813C91.5576 8.43879 91.7863 8.06546 92.085 7.74813C92.393 7.42146 92.7663 7.16479 93.2049 6.97813C93.6529 6.79146 94.1709 6.69813 94.7589 6.69813C95.2909 6.69813 95.767 6.78213 96.187 6.95013C96.6163 7.11813 96.9803 7.34213 97.279 7.62213C97.587 7.90213 97.8203 8.22879 97.979 8.60213C98.147 8.97546 98.2309 9.36746 98.2309 9.77813C98.2309 9.91813 98.2263 10.0675 98.2169 10.2261C98.2169 10.3848 98.1983 10.5668 98.1609 10.7721H93.3029ZM94.7449 8.12613C94.3249 8.12613 93.9796 8.24746 93.709 8.49013C93.4383 8.73279 93.3029 9.08279 93.3029 9.54013H96.131C96.131 9.10146 96.0003 8.75613 95.739 8.50413C95.487 8.25213 95.1556 8.12613 94.7449 8.12613Z\" fill=\"url(#paint9_linear_2194_15309)\"/>\\n<path d=\"M99.1717 12.3541C99.1717 12.1581 99.209 11.9761 99.2837 11.8081C99.3584 11.6401 99.4564 11.4955 99.5777 11.3741C99.7084 11.2435 99.8577 11.1408 100.026 11.0661C100.203 10.9915 100.39 10.9541 100.586 10.9541C100.782 10.9541 100.964 10.9915 101.132 11.0661C101.309 11.1408 101.458 11.2435 101.58 11.3741C101.71 11.4955 101.813 11.6401 101.888 11.8081C101.962 11.9761 102 12.1581 102 12.3541C102 12.5501 101.962 12.7321 101.888 12.9001C101.813 13.0681 101.71 13.2175 101.58 13.3481C101.458 13.4695 101.309 13.5675 101.132 13.6421C100.964 13.7168 100.782 13.7541 100.586 13.7541C100.39 13.7541 100.203 13.7168 100.026 13.6421C99.8577 13.5675 99.7084 13.4695 99.5777 13.3481C99.4564 13.2175 99.3584 13.0681 99.2837 12.9001C99.209 12.7321 99.1717 12.5501 99.1717 12.3541Z\" fill=\"#8E91AA\"/>\\n<path d=\"M99.1717 12.3541C99.1717 12.1581 99.209 11.9761 99.2837 11.8081C99.3584 11.6401 99.4564 11.4955 99.5777 11.3741C99.7084 11.2435 99.8577 11.1408 100.026 11.0661C100.203 10.9915 100.39 10.9541 100.586 10.9541C100.782 10.9541 100.964 10.9915 101.132 11.0661C101.309 11.1408 101.458 11.2435 101.58 11.3741C101.71 11.4955 101.813 11.6401 101.888 11.8081C101.962 11.9761 102 12.1581 102 12.3541C102 12.5501 101.962 12.7321 101.888 12.9001C101.813 13.0681 101.71 13.2175 101.58 13.3481C101.458 13.4695 101.309 13.5675 101.132 13.6421C100.964 13.7168 100.782 13.7541 100.586 13.7541C100.39 13.7541 100.203 13.7168 100.026 13.6421C99.8577 13.5675 99.7084 13.4695 99.5777 13.3481C99.4564 13.2175 99.3584 13.0681 99.2837 12.9001C99.209 12.7321 99.1717 12.5501 99.1717 12.3541Z\" fill=\"url(#paint10_linear_2194_15309)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_2194_15309\" x1=\"2.53086\" y1=\"6.26823\" x2=\"17.2058\" y2=\"16.2159\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.370138\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint9_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<linearGradient id=\"paint10_linear_2194_15309\" x1=\"20.8508\" y1=\"4.07793\" x2=\"109.647\" y2=\"9.72377\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B608FF\"/>\\n<stop offset=\"0.333333\" stop-color=\"#FF5C00\"/>\\n<stop offset=\"0.666667\" stop-color=\"#FFA927\"/>\\n<stop offset=\"1\" stop-color=\"#FFDEAC\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_2194_15309\">\\n<rect width=\"102\" height=\"16\" fill=\"white\" transform=\"translate(0 0.820312)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-c5StK.framer-80f08z, .framer-c5StK .framer-80f08z { display: block; }\",\".framer-c5StK.framer-sry8r4 { align-content: center; align-items: center; background-color: var(--token-b4a97cb8-24ee-4c12-9aad-524b93823879, #070707); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-c5StK .framer-8xovl9-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-c5StK .framer-1roaygr { 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: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-c5StK .framer-19vs2mz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 1px; z-index: 1; }\",\".framer-c5StK .framer-12bfo57 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-ut9l1w { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(15px); align-content: center; align-items: center; backdrop-filter: blur(15px); background: radial-gradient(39.300000000000004% 50% at 1.4000000000000001% 4.7%, #161616 0%, #121212 100%); border-bottom-left-radius: 56px; border-bottom-right-radius: 56px; border-top-left-radius: 56px; border-top-right-radius: 56px; box-shadow: 28px 43px 80px 0px rgba(0, 0, 0, 0.4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 72px 20px 64px 20px; position: relative; width: 860px; }\",\".framer-c5StK .framer-1abyqen { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-c5StK .framer-24y0cb, .framer-c5StK .framer-fdljxr { --framer-paragraph-spacing: 8px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-c5StK .framer-1nblxwj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 627px; word-break: break-word; word-wrap: break-word; }\",\".framer-c5StK .framer-10gmqvu-container, .framer-c5StK .framer-1181k4k-container, .framer-c5StK .framer-1jyxvac-container, .framer-c5StK .framer-1or6lud-container, .framer-c5StK .framer-alp7r6-container, .framer-c5StK .framer-1k2in8u-container, .framer-c5StK .framer-g6kjrb-container, .framer-c5StK .framer-1f4u6r6-container, .framer-c5StK .framer-l546qc-container, .framer-c5StK .framer-15kc84g-container, .framer-c5StK .framer-1y8fymh-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-c5StK .framer-1hks7j1 { flex: none; height: 310px; left: -336px; overflow: visible; position: absolute; top: calc(50.00000000000002% - 310px / 2); width: 424px; z-index: 1; }\",\".framer-c5StK .framer-d5um0x, .framer-c5StK .framer-1gv5x4z { bottom: 0px; flex: none; height: 80px; overflow: visible; position: absolute; right: 1px; width: 193px; }\",\".framer-c5StK .framer-1mpzxu4, .framer-c5StK .framer-1gwgjkm { flex: none; height: 16px; left: 137px; position: absolute; top: 51px; width: 16px; }\",\".framer-c5StK .framer-xb8zhz { --border-bottom-width: 0.8px; --border-color: rgba(255, 255, 255, 0.04); --border-left-width: 0.8px; --border-right-width: 0.8px; --border-style: solid; --border-top-width: 0.8px; -webkit-backdrop-filter: blur(12px); align-content: center; align-items: center; backdrop-filter: blur(12px); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 3.0769202709198px 55.38456344604492px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 13.84614086151123px; position: absolute; top: 50%; transform: translateY(-50%); width: 189px; }\",\".framer-c5StK .framer-1r6rf99, .framer-c5StK .framer-fe9raj { --border-bottom-width: 0.8px; --border-color: rgba(255, 255, 255, 0.08); --border-left-width: 0.8px; --border-right-width: 0.8px; --border-style: solid; --border-top-width: 0.8px; align-content: center; align-items: center; background: radial-gradient(74.99999776482588% 74.99999776482589% at 49.999995529651585% 49.99999776482575%, rgba(7, 7, 7, 0.48) 16.14445596933365%, rgba(7, 7, 7, 0.48) 100%); border-bottom-left-radius: 77px; border-bottom-right-radius: 77px; border-top-left-radius: 77px; border-top-right-radius: 77px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15.384601593017578px; position: relative; width: min-content; }\",\".framer-c5StK .framer-p2eupb, .framer-c5StK .framer-14x1qhb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); overflow: visible; position: relative; width: 22px; }\",\".framer-c5StK .framer-178etd5, .framer-c5StK .framer-qh01ok { aspect-ratio: 1.0385965001250386 / 1; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 30px; }\",\".framer-c5StK .framer-hkao07, .framer-c5StK .framer-55cpi0, .framer-c5StK .framer-1o2ebei, .framer-c5StK .framer-1xqi25b, .framer-c5StK .framer-1vx0rbz, .framer-c5StK .framer-6gtxvy, .framer-c5StK .framer-og6ouu { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-c5StK .framer-xan4g5, .framer-c5StK .framer-1gb2iyz { bottom: 7px; flex: none; left: 142px; position: absolute; right: 41px; top: 60px; }\",\".framer-c5StK .framer-74dw6c, .framer-c5StK .framer-dzfuni { bottom: 76px; flex: none; height: 8px; overflow: visible; position: absolute; right: 120px; width: 8px; }\",\".framer-c5StK .framer-idynin, .framer-c5StK .framer-1wo34w2, .framer-c5StK .framer-1w55k5z, .framer-c5StK .framer-j1q7v7 { --border-bottom-width: 0.5px; --border-color: rgba(255, 255, 255, 0.24); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; aspect-ratio: 1 / 1; background-color: #9d9d9d; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.24); flex: none; height: var(--framer-aspect-ratio-supported, 8px); left: 0px; position: absolute; top: 0px; width: 8px; }\",\".framer-c5StK .framer-53l4cb, .framer-c5StK .framer-b9gmpt, .framer-c5StK .framer-y1x1h9 { aspect-ratio: 1 / 1; background-color: #070707; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.24); flex: none; height: var(--framer-aspect-ratio-supported, 4px); left: 2px; position: absolute; top: 2px; width: 4px; }\",\".framer-c5StK .framer-18il73a, .framer-c5StK .framer-qb8qdc { -webkit-filter: blur(74.5px); background-color: rgba(255, 255, 255, 0.24); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -50px; filter: blur(74.5px); flex: none; height: 84px; position: absolute; right: -1px; width: 84px; }\",\".framer-c5StK .framer-1tpksyy { flex: none; height: 230px; left: 1px; position: absolute; top: -3px; width: 300px; }\",\".framer-c5StK .framer-15c2lw8 { flex: none; height: 400px; overflow: visible; position: absolute; right: -300px; top: 36px; width: 398px; z-index: 1; }\",\".framer-c5StK .framer-pll4ui, .framer-c5StK .framer-gt8yp4 { -webkit-filter: blur(74.5px); background-color: rgba(255, 255, 255, 0.24); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 114px; filter: blur(74.5px); flex: none; height: 84px; left: 87px; position: absolute; width: 84px; }\",\".framer-c5StK .framer-niye22, .framer-c5StK .framer-cygbck { flex: none; height: 80px; left: 6px; overflow: visible; position: absolute; top: calc(50.62344139650875% - 80px / 2); width: 160px; }\",\".framer-c5StK .framer-1xjls1p, .framer-c5StK .framer-11b0kq9 { --border-bottom-width: 0.4px; --border-color: rgba(255, 255, 255, 0.04); --border-left-width: 0.4px; --border-right-width: 0.4px; --border-style: solid; --border-top-width: 0.4px; -webkit-backdrop-filter: blur(9.523809432983398px); align-content: center; align-items: center; backdrop-filter: blur(9.523809432983398px); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 17.77777671813965px 27.301586151123047px 50.79365158081055px 0px rgba(0, 0, 0, 0.4); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 71px; justify-content: flex-start; left: 0px; overflow: visible; padding: 12.698412895202637px; position: absolute; top: 0px; width: 160px; }\",\".framer-c5StK .framer-1rd486w, .framer-c5StK .framer-a7ndl { --border-bottom-width: 0.8px; --border-color: rgba(255, 255, 255, 0.08); --border-left-width: 0.8px; --border-right-width: 0.8px; --border-style: solid; --border-top-width: 0.8px; background: radial-gradient(74.99999776482588% 74.99999776482589% at 49.999995529651585% 49.99999776482575%, rgba(7, 7, 7, 0.36) 16.14445596933365%, rgba(7, 7, 7, 0.36) 100%); border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; flex: none; height: 48px; overflow: visible; position: relative; width: 48px; }\",\".framer-c5StK .framer-11ta9ag, .framer-c5StK .framer-1g45eem { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); left: 49%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 18px; }\",\".framer-c5StK .framer-1ne807, .framer-c5StK .framer-1k0ejkt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); left: -6px; position: absolute; right: -6px; top: -6px; }\",\".framer-c5StK .framer-1w6h2cz { flex: none; height: 8px; left: 163px; overflow: visible; position: absolute; top: calc(49.50000000000002% - 8px / 2); width: 8px; }\",\".framer-c5StK .framer-p0jpwn { aspect-ratio: 1 / 1; background-color: #070707; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.24); flex: none; height: var(--framer-aspect-ratio-supported, 4px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 4px; }\",\".framer-c5StK .framer-6g1khz { flex: none; height: 201px; position: absolute; right: 0px; top: -2px; width: 229px; }\",\".framer-c5StK .framer-suhwhx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 879px; justify-content: center; overflow: hidden; padding: 60px 0px 56px 0px; position: relative; width: 90%; }\",\".framer-c5StK .framer-1piyg1c-container { flex: 0.9 0 0px; height: 819px; max-width: 1200px; position: relative; width: 1px; }\",\".framer-c5StK .framer-37uo67 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 867px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; z-index: 0; }\",\".framer-c5StK .framer-rlsgv5 { align-content: center; align-items: center; aspect-ratio: 1.3847058823529412 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 867px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; z-index: 0; }\",\".framer-c5StK .framer-maujrz { align-content: center; align-items: center; aspect-ratio: 1.3847058823529412 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 867px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1201px; z-index: 1; }\",\".framer-c5StK .framer-16nr25c { aspect-ratio: 1.3847058823529412 / 1; height: var(--framer-aspect-ratio-supported, 867px); overflow: visible; position: relative; width: 1200px; z-index: 1; }\",\".framer-c5StK .framer-1a0zm0n { align-content: center; align-items: center; background-color: #070707; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-c5StK .framer-c88x9b { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 616px; word-break: break-word; word-wrap: break-word; }\",\".framer-c5StK .framer-1mde8pe-container { flex: none; height: 82px; max-width: 1200px; position: relative; width: 1200px; }\",\".framer-c5StK .framer-rid7nd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-c5StK .framer-3426u1, .framer-c5StK .framer-12800fm, .framer-c5StK .framer-qjr35m, .framer-c5StK .framer-dwvr0m, .framer-c5StK .framer-fer2zr, .framer-c5StK .framer-7d0bab, .framer-c5StK .framer-14u8llt, .framer-c5StK .framer-irpbnr, .framer-c5StK .framer-oz1xti, .framer-c5StK .framer-1ibpvey { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; opacity: 0.8; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-c5StK .framer-vjrwgd { aspect-ratio: 1.0766666639285618 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 38px; }\",\".framer-c5StK .framer-1qtwkwc, .framer-c5StK .framer-noogsy, .framer-c5StK .framer-jfhtnf, .framer-c5StK .framer-up31g, .framer-c5StK .framer-cymh20, .framer-c5StK .framer-1xr4c9h, .framer-c5StK .framer-nxtqzh, .framer-c5StK .framer-g8u2m8, .framer-c5StK .framer-1xwguds, .framer-c5StK .framer-b5m3ld, .framer-c5StK .framer-1wnwdyg, .framer-c5StK .framer-ziav91, .framer-c5StK .framer-1dnjeqr, .framer-c5StK .framer-2ypt8n, .framer-c5StK .framer-1d4emav { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-c5StK .framer-12y2gr7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 35px; }\",\".framer-c5StK .framer-1f8iyv0 { aspect-ratio: 1 / 1; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 35px; }\",\".framer-c5StK .framer-17btc37 { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 36px); justify-content: center; padding: 0px; position: relative; width: 36px; }\",\".framer-c5StK .framer-ncthim { aspect-ratio: 1 / 1; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 36px; }\",\".framer-c5StK .framer-znn08v { aspect-ratio: 1.0467592725201946 / 1; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 38px; }\",\".framer-c5StK .framer-21mt61 { aspect-ratio: 1.010695223865152 / 1; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 36px; }\",\".framer-c5StK .framer-1e9ctez { aspect-ratio: 1.0869565217391304 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 36px; }\",\".framer-c5StK .framer-1jf7n25, .framer-c5StK .framer-12oy770 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 36px; }\",\".framer-c5StK .framer-gwh2ac { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; opacity: 0.8; overflow: visible; padding: 0px 30px 0px 0px; position: relative; width: min-content; }\",\".framer-c5StK .framer-1qnhtd5 { aspect-ratio: 1.0420712246841257 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 36px; }\",\".framer-c5StK .framer-82r0x7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 80px 40px; position: relative; scroll-margin-top: 200px; width: 1440px; }\",\".framer-c5StK .framer-ouvbto, .framer-c5StK .framer-njz2fl, .framer-c5StK .framer-12ay9rv, .framer-c5StK .framer-1v9n069 { --framer-paragraph-spacing: 8px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-c5StK .framer-1n7vgwg { display: grid; flex: none; gap: 30px; grid-auto-rows: 200px; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, 200px); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-1xtu6ir { --border-bottom-width: 1px; --border-color: var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, #ffffff); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: #f6f6f8; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 0.24145061431045178px 0.9175123343797167px -0.5px rgba(240, 243, 245, 0.07), 0px 2px 7.6px -1px rgba(240, 243, 245, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; grid-column: auto / span 2; grid-row: auto / span 2; height: 428px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-bnjtrh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-c5StK .framer-svhd44, .framer-c5StK .framer-11dapej, .framer-c5StK .framer-15nbh7d, .framer-c5StK .framer-yi1qq2, .framer-c5StK .framer-1sk27kc, .framer-c5StK .framer-1f6qjn0, .framer-c5StK .framer-uvwmge, .framer-c5StK .framer-t0ageb, .framer-c5StK .framer-9r1zuj, .framer-c5StK .framer-6zqux7, .framer-c5StK .framer-1bzayh4, .framer-c5StK .framer-v6tr7l, .framer-c5StK .framer-snu9og, .framer-c5StK .framer-b8gqc, .framer-c5StK .framer-1dfqst2, .framer-c5StK .framer-36j09d, .framer-c5StK .framer-1lzrtbd, .framer-c5StK .framer-1hgs9gx { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-c5StK .framer-1yx0qz2 { --border-bottom-width: 1px; --border-color: var(--token-bfd0cf4e-aa19-40ed-9607-b112edb7bb1a, #e4e5eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 391px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 536px; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-1rb0yl4, .framer-c5StK .framer-g4rlat, .framer-c5StK .framer-sodziw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-c5StK .framer-gbz4o, .framer-c5StK .framer-9uymhu { aspect-ratio: 0.6388888888888888 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 235px); overflow: visible; position: relative; width: 150px; }\",\".framer-c5StK .framer-1mb78jv { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 235px; overflow: hidden; position: relative; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-701e6s { aspect-ratio: 0.6388888888888888 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 234px); overflow: visible; position: relative; width: 150px; }\",\".framer-c5StK .framer-13lczrw, .framer-c5StK .framer-pq7o4o, .framer-c5StK .framer-kaetw9, .framer-c5StK .framer-lmtax4, .framer-c5StK .framer-5w1mrq, .framer-c5StK .framer-16aofy6 { --border-bottom-width: 1px; --border-color: var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, #ffffff); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: #f6f6f8; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 0.24145061431045178px 0.9175123343797167px -0.5px rgba(240, 243, 245, 0.07), 0px 2px 7.6px -1px rgba(240, 243, 245, 0.2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; grid-row: auto / span 2; height: 428px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-8qpif4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-1hoofdn, .framer-c5StK .framer-dmqb2q { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 6px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-141umsh { aspect-ratio: 1.125 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 260px); overflow: hidden; position: relative; width: 292px; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-1b4h6sq { aspect-ratio: 1.125 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 183px); overflow: hidden; position: relative; width: 206px; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-r03bil, .framer-c5StK .framer-s3xmm1, .framer-c5StK .framer-12x4qs4, .framer-c5StK .framer-19odaz8, .framer-c5StK .framer-86kw4b { 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-c5StK .framer-1ouajee { --border-bottom-width: 1px; --border-color: var(--token-bfd0cf4e-aa19-40ed-9607-b112edb7bb1a, #e4e5eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 236px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-1b116q9, .framer-c5StK .framer-1e120p2 { --border-bottom-width: 1px; --border-color: var(--token-68424464-ba57-46d4-bb4b-687f4134bb5a, #ffffff); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: #f6f6f8; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 0.24145061431045178px 0.9175123343797167px -0.5px rgba(240, 243, 245, 0.07), 0px 2px 7.6px -1px rgba(240, 243, 245, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; grid-column: auto / span 2; grid-row: auto / span 2; height: 428px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-tgqnwz, .framer-c5StK .framer-xx6tk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-c5StK .framer-jsfbfz { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 100%; overflow: hidden; position: relative; width: 533px; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-1fl4chr { --border-bottom-width: 1px; --border-color: var(--token-bfd0cf4e-aa19-40ed-9607-b112edb7bb1a, #e4e5eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 100%; overflow: hidden; position: relative; width: 565px; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-q2kpk9 { --border-bottom-width: 1px; --border-color: var(--token-bfd0cf4e-aa19-40ed-9607-b112edb7bb1a, #e4e5eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 258px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-1hsaefz { --border-bottom-width: 1px; --border-color: var(--token-bfd0cf4e-aa19-40ed-9607-b112edb7bb1a, #e4e5eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 255px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-1wnzq5z { --border-bottom-width: 1px; --border-color: var(--token-bfd0cf4e-aa19-40ed-9607-b112edb7bb1a, #e4e5eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 138px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-1r44r5f { --border-bottom-width: 1px; --border-color: var(--token-bfd0cf4e-aa19-40ed-9607-b112edb7bb1a, #e4e5eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 228px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-1v6sgl4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 64px 80px 64px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-c5StK .framer-1klztul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-1brz5ue, .framer-c5StK .framer-1v276ma { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-c5StK .framer-1mjgib { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-around; overflow: hidden; padding: 0px; position: relative; width: 80%; }\",\".framer-c5StK .framer-iu2fhi { aspect-ratio: 1.703125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 109px; }\",\".framer-c5StK .framer-1pkce2a { flex: none; height: 64px; position: relative; width: 115px; }\",\".framer-c5StK .framer-k08oox { flex: none; height: 64px; position: relative; width: 111px; }\",\".framer-c5StK .framer-1jmx8nd { flex: none; height: 64px; position: relative; width: 179px; }\",\".framer-c5StK .framer-11p7wgg { align-content: center; align-items: center; background-color: #f6f6f8; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 30px 50px 30px; position: relative; width: 100%; }\",\".framer-c5StK .framer-5kwg2k-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-c5StK .framer-1p6chss { align-content: center; align-items: center; background-color: var(--token-b4a97cb8-24ee-4c12-9aad-524b93823879, #070707); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-c5StK .framer-1az3so8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-c5StK .framer-16ndlmy-container { flex: none; height: auto; position: relative; width: 1000px; }\",\".framer-c5StK .framer-1q6fsrq { align-content: center; align-items: center; background-color: #070707; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 100px 80px 120px 80px; position: relative; width: 1440px; }\",\".framer-c5StK .framer-1p9keoq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-10ky7m5, .framer-c5StK .framer-1pj8jyv, .framer-c5StK .framer-knyi4o { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-c5StK .framer-32pqan-container, .framer-c5StK .framer-x1bx6c-container, .framer-c5StK .framer-i8nnz8-container, .framer-c5StK .framer-zyw7d-container, .framer-c5StK .framer-164zp59-container, .framer-c5StK .framer-dw8r6c-container, .framer-c5StK .framer-28m2w-container, .framer-c5StK .framer-1tkmhgz-container, .framer-c5StK .framer-1l3b4bx-container, .framer-c5StK .framer-1edlnhb-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-c5StK .framer-12c9vbk { align-content: flex-start; align-items: flex-start; background-color: #070707; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 80px 64px 80px; position: relative; width: 1440px; }\",\".framer-c5StK .framer-bayzia { align-content: center; align-items: center; background: radial-gradient(39.300000000000004% 50% at 1.4000000000000001% 4.7%, #161616 0%, #121212 100%); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 56px; position: relative; width: 1280px; will-change: var(--framer-will-change-override, transform); }\",\".framer-c5StK .framer-1dlxyk5 { 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: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-c5StK .framer-1yqdk2h { aspect-ratio: 1.6717557251908397 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 372px); overflow: hidden; position: relative; width: 622px; }\",\".framer-c5StK .framer-1ol8osu { bottom: -3px; flex: none; left: 72px; position: absolute; right: 23px; top: 60px; }\",\".framer-c5StK .framer-1xsirwv { align-content: flex-start; align-items: flex-start; background-color: #070707; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 80px 64px 80px; position: relative; width: 1440px; }\",\".framer-c5StK .framer-1hv2zin { --framer-paragraph-spacing: 8px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 693px; word-break: break-word; word-wrap: break-word; }\",\".framer-c5StK .framer-efdyho { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-y3t4l0, .framer-c5StK .framer-yeus3m, .framer-c5StK .framer-tf98xd { align-content: flex-start; align-items: flex-start; background: radial-gradient(39.300000000000004% 50% at 1.4000000000000001% 4.7%, #161616 0%, #121212 100%); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 268px; justify-content: flex-start; overflow: visible; padding: 24px 24px 32px 24px; position: relative; width: 1px; }\",\".framer-c5StK .framer-1uv5hb3, .framer-c5StK .framer-14cumd5, .framer-c5StK .framer-1yrns74 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-1jz78jy, .framer-c5StK .framer-1i2kzbb, .framer-c5StK .framer-6y5amz { flex: none; height: 72px; overflow: hidden; position: relative; width: 72px; }\",\".framer-c5StK .framer-onwbzj, .framer-c5StK .framer-9ddvd7, .framer-c5StK .framer-jxvho1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-c5StK .framer-1xlf56f { flex: none; height: 32px; left: calc(50.00000000000002% - 32px / 2); overflow: hidden; position: absolute; top: calc(50.68493150684934% - 32px / 2); width: 32px; }\",\".framer-c5StK .framer-96impz { flex: none; height: 25px; left: 5px; position: absolute; top: 5px; width: 25px; }\",\".framer-c5StK .framer-mwraav, .framer-c5StK .framer-1kptsgq, .framer-c5StK .framer-6ixori { flex: 1 0 0px; height: 72px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-c5StK .framer-sfotym, .framer-c5StK .framer-er3mny, .framer-c5StK .framer-11x4hdi { flex: none; height: 120px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-c5StK .framer-it7ndh, .framer-c5StK .framer-14j06ji { flex: none; height: 32px; left: 20px; overflow: hidden; position: absolute; top: 20px; width: 32px; }\",\".framer-c5StK .framer-14ptwnk { flex: none; height: 24px; left: 5px; position: absolute; top: 4px; width: 23px; }\",\".framer-c5StK .framer-150cewn { flex: none; height: 25px; left: 6px; position: absolute; top: 3px; width: 20px; }\",\".framer-c5StK .framer-1gzmoqj { align-content: flex-start; align-items: flex-start; background-color: #070707; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 626px; justify-content: center; overflow: visible; padding: 64px 80px 64px 80px; position: relative; scroll-margin-top: 160px; width: 1440px; }\",\".framer-c5StK .framer-sd6auj { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-1kc53jr, .framer-c5StK .framer-qnlgzo { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-c5StK .framer-19vbusr { display: grid; flex: 1 0 0px; gap: 24px; grid-auto-rows: 200px; grid-template-columns: repeat(3, minmax(200px, 1fr)); height: 1px; justify-content: center; padding: 0px; position: relative; width: 1280px; }\",\".framer-c5StK .framer-uua0cw-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-c5StK .framer-x8u6b0 { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 60px 50px 60px; position: relative; width: 100%; }\",\".framer-c5StK .framer-1dxtqt5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-1t4x5rp { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(15px); align-content: center; align-items: center; backdrop-filter: blur(15px); background: radial-gradient(39.300000000000004% 50% at 1.4000000000000001% 4.7%, #161616 0%, #121212 100%); border-bottom-left-radius: 56px; border-bottom-right-radius: 56px; border-top-left-radius: 56px; border-top-right-radius: 56px; box-shadow: 28px 43px 80px 0px rgba(0, 0, 0, 0.4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 20px 60px 20px; position: relative; width: 860px; }\",\".framer-c5StK .framer-nsac06, .framer-c5StK .framer-1waiofl { --framer-paragraph-spacing: 8px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; }\",\".framer-c5StK .framer-xvmrtn { flex: none; height: 310px; left: calc(7.424242424242447% - 424px / 2); overflow: visible; position: absolute; top: calc(35.869565217391326% - 310px / 2); width: 424px; z-index: 1; }\",\".framer-c5StK .framer-1xmc3hb { --border-bottom-width: 0.8px; --border-color: rgba(255, 255, 255, 0.04); --border-left-width: 0.8px; --border-right-width: 0.8px; --border-style: solid; --border-top-width: 0.8px; -webkit-backdrop-filter: blur(12px); align-content: center; align-items: center; backdrop-filter: blur(12px); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 3.0769202709198px 55.38456344604492px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 13.84614086151123px; position: absolute; top: 0px; width: 193px; }\",\".framer-c5StK .framer-qwt1ii { flex: none; height: 230px; left: 0px; position: absolute; top: 0px; width: 300px; }\",\".framer-c5StK .framer-1velvfu { bottom: 0px; flex: none; height: 401px; left: calc(90.46875000000001% - 398px / 2); overflow: visible; position: absolute; width: 398px; z-index: 1; }\",\".framer-c5StK .framer-4vsc3j { flex: none; height: 16px; left: 121px; position: absolute; top: 56px; width: 16px; }\",\".framer-c5StK .framer-132bj1a { flex: none; height: 16px; left: 122px; position: absolute; top: 64px; width: 16px; }\",\".framer-c5StK .framer-vmfu4m { flex: none; height: 8px; left: 163px; overflow: visible; position: absolute; top: calc(49.625935162094784% - 8px / 2); width: 8px; }\",\".framer-c5StK .framer-xnk1e7 { flex: none; height: 201px; position: absolute; right: 0px; top: 0px; width: 229px; }\",\".framer-c5StK .framer-1wr4o3c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 59px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 80px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-c5StK .framer-azvqni { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-m3to1d { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-c5StK .framer-1dv07gs { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 8px 0px; position: relative; width: auto; }\",\".framer-c5StK .framer-6u5hqx { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 50px; }\",\".framer-c5StK .framer-cvkx8o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 290px; word-break: break-word; word-wrap: break-word; }\",\".framer-c5StK .framer-1c5mx0g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-c5StK .framer-xvn0uv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 5px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-c5StK .framer-roehgs, .framer-c5StK .framer-1i7p68w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-c5StK .framer-ukdaf6, .framer-c5StK .framer-r5bq2z, .framer-c5StK .framer-1bu9p8u, .framer-c5StK .framer-1ue3dxg, .framer-c5StK .framer-ji39ll, .framer-c5StK .framer-ic054h, .framer-c5StK .framer-1e1qfk2, .framer-c5StK .framer-f624c0, .framer-c5StK .framer-133eadz, .framer-c5StK .framer-sfwtb8, .framer-c5StK .framer-1gigwoh, .framer-c5StK .framer-18soqff { flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre; width: auto; }\",\".framer-c5StK .framer-qxe4lw, .framer-c5StK .framer-1jlfqmo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-arjv2v, .framer-c5StK .framer-ovwf5d { flex: none; height: 17px; position: relative; text-decoration: none; width: 102px; }\",\".framer-c5StK .framer-5vj7gx { align-content: flex-start; align-items: flex-start; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-1i3w6cu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-ki8j0l { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(15px); align-content: center; align-items: center; backdrop-filter: blur(15px); background: radial-gradient(39.300000000000004% 50% at 1.4000000000000001% 4.7%, #161616 0%, #121212 100%); border-bottom-left-radius: 56px; border-bottom-right-radius: 56px; border-top-left-radius: 56px; border-top-right-radius: 56px; box-shadow: 28px 43px 80px 0px rgba(0, 0, 0, 0.4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 50px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-c5StK .framer-1wfdh4i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: visible; padding: 60px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-1cfq2gx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 130px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-13rselx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-around; overflow: visible; padding: 5px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-c5StK .framer-1qyvclz, .framer-c5StK .framer-14ww1m1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-c5StK .framer-1hv9cki { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-1rrfoq4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-c5StK .framer-16gzhfm { --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; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-c5StK.framer-sry8r4, .framer-c5StK .framer-1roaygr, .framer-c5StK .framer-19vs2mz, .framer-c5StK .framer-12bfo57, .framer-c5StK .framer-ut9l1w, .framer-c5StK .framer-1abyqen, .framer-c5StK .framer-xb8zhz, .framer-c5StK .framer-1r6rf99, .framer-c5StK .framer-1xjls1p, .framer-c5StK .framer-suhwhx, .framer-c5StK .framer-37uo67, .framer-c5StK .framer-rlsgv5, .framer-c5StK .framer-maujrz, .framer-c5StK .framer-1a0zm0n, .framer-c5StK .framer-rid7nd, .framer-c5StK .framer-3426u1, .framer-c5StK .framer-12800fm, .framer-c5StK .framer-qjr35m, .framer-c5StK .framer-dwvr0m, .framer-c5StK .framer-17btc37, .framer-c5StK .framer-fer2zr, .framer-c5StK .framer-7d0bab, .framer-c5StK .framer-14u8llt, .framer-c5StK .framer-irpbnr, .framer-c5StK .framer-oz1xti, .framer-c5StK .framer-1ibpvey, .framer-c5StK .framer-gwh2ac, .framer-c5StK .framer-82r0x7, .framer-c5StK .framer-1xtu6ir, .framer-c5StK .framer-bnjtrh, .framer-c5StK .framer-1yx0qz2, .framer-c5StK .framer-1rb0yl4, .framer-c5StK .framer-g4rlat, .framer-c5StK .framer-sodziw, .framer-c5StK .framer-13lczrw, .framer-c5StK .framer-8qpif4, .framer-c5StK .framer-1hoofdn, .framer-c5StK .framer-dmqb2q, .framer-c5StK .framer-pq7o4o, .framer-c5StK .framer-r03bil, .framer-c5StK .framer-1b116q9, .framer-c5StK .framer-tgqnwz, .framer-c5StK .framer-1e120p2, .framer-c5StK .framer-xx6tk, .framer-c5StK .framer-kaetw9, .framer-c5StK .framer-s3xmm1, .framer-c5StK .framer-lmtax4, .framer-c5StK .framer-12x4qs4, .framer-c5StK .framer-5w1mrq, .framer-c5StK .framer-19odaz8, .framer-c5StK .framer-16aofy6, .framer-c5StK .framer-86kw4b, .framer-c5StK .framer-1v6sgl4, .framer-c5StK .framer-1klztul, .framer-c5StK .framer-11p7wgg, .framer-c5StK .framer-1p6chss, .framer-c5StK .framer-1q6fsrq, .framer-c5StK .framer-1p9keoq, .framer-c5StK .framer-10ky7m5, .framer-c5StK .framer-1pj8jyv, .framer-c5StK .framer-knyi4o, .framer-c5StK .framer-12c9vbk, .framer-c5StK .framer-bayzia, .framer-c5StK .framer-1dlxyk5, .framer-c5StK .framer-1xsirwv, .framer-c5StK .framer-efdyho, .framer-c5StK .framer-y3t4l0, .framer-c5StK .framer-1uv5hb3, .framer-c5StK .framer-yeus3m, .framer-c5StK .framer-14cumd5, .framer-c5StK .framer-tf98xd, .framer-c5StK .framer-1yrns74, .framer-c5StK .framer-1gzmoqj, .framer-c5StK .framer-1kc53jr, .framer-c5StK .framer-x8u6b0, .framer-c5StK .framer-1dxtqt5, .framer-c5StK .framer-1t4x5rp, .framer-c5StK .framer-1xmc3hb, .framer-c5StK .framer-fe9raj, .framer-c5StK .framer-11b0kq9, .framer-c5StK .framer-1wr4o3c, .framer-c5StK .framer-m3to1d, .framer-c5StK .framer-1dv07gs, .framer-c5StK .framer-1c5mx0g, .framer-c5StK .framer-xvn0uv, .framer-c5StK .framer-roehgs, .framer-c5StK .framer-1i7p68w, .framer-c5StK .framer-qxe4lw, .framer-c5StK .framer-5vj7gx, .framer-c5StK .framer-1i3w6cu, .framer-c5StK .framer-ki8j0l, .framer-c5StK .framer-1wfdh4i, .framer-c5StK .framer-1cfq2gx, .framer-c5StK .framer-1qyvclz, .framer-c5StK .framer-14ww1m1, .framer-c5StK .framer-1hv9cki, .framer-c5StK .framer-1rrfoq4, .framer-c5StK .framer-qnlgzo, .framer-c5StK .framer-1jlfqmo { gap: 0px; } .framer-c5StK.framer-sry8r4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-c5StK.framer-sry8r4 > :first-child, .framer-c5StK .framer-19vs2mz > :first-child, .framer-c5StK .framer-12bfo57 > :first-child, .framer-c5StK .framer-ut9l1w > :first-child, .framer-c5StK .framer-1abyqen > :first-child, .framer-c5StK .framer-1a0zm0n > :first-child, .framer-c5StK .framer-82r0x7 > :first-child, .framer-c5StK .framer-bnjtrh > :first-child, .framer-c5StK .framer-1rb0yl4 > :first-child, .framer-c5StK .framer-g4rlat > :first-child, .framer-c5StK .framer-sodziw > :first-child, .framer-c5StK .framer-13lczrw > :first-child, .framer-c5StK .framer-8qpif4 > :first-child, .framer-c5StK .framer-1hoofdn > :first-child, .framer-c5StK .framer-dmqb2q > :first-child, .framer-c5StK .framer-pq7o4o > :first-child, .framer-c5StK .framer-r03bil > :first-child, .framer-c5StK .framer-tgqnwz > :first-child, .framer-c5StK .framer-xx6tk > :first-child, .framer-c5StK .framer-kaetw9 > :first-child, .framer-c5StK .framer-s3xmm1 > :first-child, .framer-c5StK .framer-lmtax4 > :first-child, .framer-c5StK .framer-12x4qs4 > :first-child, .framer-c5StK .framer-5w1mrq > :first-child, .framer-c5StK .framer-19odaz8 > :first-child, .framer-c5StK .framer-16aofy6 > :first-child, .framer-c5StK .framer-86kw4b > :first-child, .framer-c5StK .framer-1v6sgl4 > :first-child, .framer-c5StK .framer-1klztul > :first-child, .framer-c5StK .framer-1p6chss > :first-child, .framer-c5StK .framer-1q6fsrq > :first-child, .framer-c5StK .framer-10ky7m5 > :first-child, .framer-c5StK .framer-1pj8jyv > :first-child, .framer-c5StK .framer-knyi4o > :first-child, .framer-c5StK .framer-12c9vbk > :first-child, .framer-c5StK .framer-1dlxyk5 > :first-child, .framer-c5StK .framer-1xsirwv > :first-child, .framer-c5StK .framer-y3t4l0 > :first-child, .framer-c5StK .framer-yeus3m > :first-child, .framer-c5StK .framer-tf98xd > :first-child, .framer-c5StK .framer-1gzmoqj > :first-child, .framer-c5StK .framer-x8u6b0 > :first-child, .framer-c5StK .framer-1dxtqt5 > :first-child, .framer-c5StK .framer-1t4x5rp > :first-child, .framer-c5StK .framer-1wr4o3c > :first-child, .framer-c5StK .framer-m3to1d > :first-child, .framer-c5StK .framer-1dv07gs > :first-child, .framer-c5StK .framer-roehgs > :first-child, .framer-c5StK .framer-1i7p68w > :first-child, .framer-c5StK .framer-5vj7gx > :first-child, .framer-c5StK .framer-1i3w6cu > :first-child, .framer-c5StK .framer-ki8j0l > :first-child, .framer-c5StK .framer-1wfdh4i > :first-child, .framer-c5StK .framer-1cfq2gx > :first-child, .framer-c5StK .framer-1qyvclz > :first-child, .framer-c5StK .framer-14ww1m1 > :first-child, .framer-c5StK .framer-1hv9cki > :first-child { margin-top: 0px; } .framer-c5StK.framer-sry8r4 > :last-child, .framer-c5StK .framer-19vs2mz > :last-child, .framer-c5StK .framer-12bfo57 > :last-child, .framer-c5StK .framer-ut9l1w > :last-child, .framer-c5StK .framer-1abyqen > :last-child, .framer-c5StK .framer-1a0zm0n > :last-child, .framer-c5StK .framer-82r0x7 > :last-child, .framer-c5StK .framer-bnjtrh > :last-child, .framer-c5StK .framer-1rb0yl4 > :last-child, .framer-c5StK .framer-g4rlat > :last-child, .framer-c5StK .framer-sodziw > :last-child, .framer-c5StK .framer-13lczrw > :last-child, .framer-c5StK .framer-8qpif4 > :last-child, .framer-c5StK .framer-1hoofdn > :last-child, .framer-c5StK .framer-dmqb2q > :last-child, .framer-c5StK .framer-pq7o4o > :last-child, .framer-c5StK .framer-r03bil > :last-child, .framer-c5StK .framer-tgqnwz > :last-child, .framer-c5StK .framer-xx6tk > :last-child, .framer-c5StK .framer-kaetw9 > :last-child, .framer-c5StK .framer-s3xmm1 > :last-child, .framer-c5StK .framer-lmtax4 > :last-child, .framer-c5StK .framer-12x4qs4 > :last-child, .framer-c5StK .framer-5w1mrq > :last-child, .framer-c5StK .framer-19odaz8 > :last-child, .framer-c5StK .framer-16aofy6 > :last-child, .framer-c5StK .framer-86kw4b > :last-child, .framer-c5StK .framer-1v6sgl4 > :last-child, .framer-c5StK .framer-1klztul > :last-child, .framer-c5StK .framer-1p6chss > :last-child, .framer-c5StK .framer-1q6fsrq > :last-child, .framer-c5StK .framer-10ky7m5 > :last-child, .framer-c5StK .framer-1pj8jyv > :last-child, .framer-c5StK .framer-knyi4o > :last-child, .framer-c5StK .framer-12c9vbk > :last-child, .framer-c5StK .framer-1dlxyk5 > :last-child, .framer-c5StK .framer-1xsirwv > :last-child, .framer-c5StK .framer-y3t4l0 > :last-child, .framer-c5StK .framer-yeus3m > :last-child, .framer-c5StK .framer-tf98xd > :last-child, .framer-c5StK .framer-1gzmoqj > :last-child, .framer-c5StK .framer-x8u6b0 > :last-child, .framer-c5StK .framer-1dxtqt5 > :last-child, .framer-c5StK .framer-1t4x5rp > :last-child, .framer-c5StK .framer-1wr4o3c > :last-child, .framer-c5StK .framer-m3to1d > :last-child, .framer-c5StK .framer-1dv07gs > :last-child, .framer-c5StK .framer-roehgs > :last-child, .framer-c5StK .framer-1i7p68w > :last-child, .framer-c5StK .framer-5vj7gx > :last-child, .framer-c5StK .framer-1i3w6cu > :last-child, .framer-c5StK .framer-ki8j0l > :last-child, .framer-c5StK .framer-1wfdh4i > :last-child, .framer-c5StK .framer-1cfq2gx > :last-child, .framer-c5StK .framer-1qyvclz > :last-child, .framer-c5StK .framer-14ww1m1 > :last-child, .framer-c5StK .framer-1hv9cki > :last-child { margin-bottom: 0px; } .framer-c5StK .framer-1roaygr > *, .framer-c5StK .framer-suhwhx > *, .framer-c5StK .framer-17btc37 > *, .framer-c5StK .framer-11p7wgg > *, .framer-c5StK .framer-1kc53jr > *, .framer-c5StK .framer-qnlgzo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-c5StK .framer-1roaygr > :first-child, .framer-c5StK .framer-xb8zhz > :first-child, .framer-c5StK .framer-1r6rf99 > :first-child, .framer-c5StK .framer-1xjls1p > :first-child, .framer-c5StK .framer-suhwhx > :first-child, .framer-c5StK .framer-37uo67 > :first-child, .framer-c5StK .framer-rlsgv5 > :first-child, .framer-c5StK .framer-maujrz > :first-child, .framer-c5StK .framer-rid7nd > :first-child, .framer-c5StK .framer-3426u1 > :first-child, .framer-c5StK .framer-12800fm > :first-child, .framer-c5StK .framer-qjr35m > :first-child, .framer-c5StK .framer-dwvr0m > :first-child, .framer-c5StK .framer-17btc37 > :first-child, .framer-c5StK .framer-fer2zr > :first-child, .framer-c5StK .framer-7d0bab > :first-child, .framer-c5StK .framer-14u8llt > :first-child, .framer-c5StK .framer-irpbnr > :first-child, .framer-c5StK .framer-oz1xti > :first-child, .framer-c5StK .framer-1ibpvey > :first-child, .framer-c5StK .framer-gwh2ac > :first-child, .framer-c5StK .framer-1xtu6ir > :first-child, .framer-c5StK .framer-1yx0qz2 > :first-child, .framer-c5StK .framer-1b116q9 > :first-child, .framer-c5StK .framer-1e120p2 > :first-child, .framer-c5StK .framer-11p7wgg > :first-child, .framer-c5StK .framer-1p9keoq > :first-child, .framer-c5StK .framer-bayzia > :first-child, .framer-c5StK .framer-efdyho > :first-child, .framer-c5StK .framer-1uv5hb3 > :first-child, .framer-c5StK .framer-14cumd5 > :first-child, .framer-c5StK .framer-1yrns74 > :first-child, .framer-c5StK .framer-1kc53jr > :first-child, .framer-c5StK .framer-1xmc3hb > :first-child, .framer-c5StK .framer-fe9raj > :first-child, .framer-c5StK .framer-11b0kq9 > :first-child, .framer-c5StK .framer-1c5mx0g > :first-child, .framer-c5StK .framer-xvn0uv > :first-child, .framer-c5StK .framer-qxe4lw > :first-child, .framer-c5StK .framer-1rrfoq4 > :first-child, .framer-c5StK .framer-qnlgzo > :first-child, .framer-c5StK .framer-1jlfqmo > :first-child { margin-left: 0px; } .framer-c5StK .framer-1roaygr > :last-child, .framer-c5StK .framer-xb8zhz > :last-child, .framer-c5StK .framer-1r6rf99 > :last-child, .framer-c5StK .framer-1xjls1p > :last-child, .framer-c5StK .framer-suhwhx > :last-child, .framer-c5StK .framer-37uo67 > :last-child, .framer-c5StK .framer-rlsgv5 > :last-child, .framer-c5StK .framer-maujrz > :last-child, .framer-c5StK .framer-rid7nd > :last-child, .framer-c5StK .framer-3426u1 > :last-child, .framer-c5StK .framer-12800fm > :last-child, .framer-c5StK .framer-qjr35m > :last-child, .framer-c5StK .framer-dwvr0m > :last-child, .framer-c5StK .framer-17btc37 > :last-child, .framer-c5StK .framer-fer2zr > :last-child, .framer-c5StK .framer-7d0bab > :last-child, .framer-c5StK .framer-14u8llt > :last-child, .framer-c5StK .framer-irpbnr > :last-child, .framer-c5StK .framer-oz1xti > :last-child, .framer-c5StK .framer-1ibpvey > :last-child, .framer-c5StK .framer-gwh2ac > :last-child, .framer-c5StK .framer-1xtu6ir > :last-child, .framer-c5StK .framer-1yx0qz2 > :last-child, .framer-c5StK .framer-1b116q9 > :last-child, .framer-c5StK .framer-1e120p2 > :last-child, .framer-c5StK .framer-11p7wgg > :last-child, .framer-c5StK .framer-1p9keoq > :last-child, .framer-c5StK .framer-bayzia > :last-child, .framer-c5StK .framer-efdyho > :last-child, .framer-c5StK .framer-1uv5hb3 > :last-child, .framer-c5StK .framer-14cumd5 > :last-child, .framer-c5StK .framer-1yrns74 > :last-child, .framer-c5StK .framer-1kc53jr > :last-child, .framer-c5StK .framer-1xmc3hb > :last-child, .framer-c5StK .framer-fe9raj > :last-child, .framer-c5StK .framer-11b0kq9 > :last-child, .framer-c5StK .framer-1c5mx0g > :last-child, .framer-c5StK .framer-xvn0uv > :last-child, .framer-c5StK .framer-qxe4lw > :last-child, .framer-c5StK .framer-1rrfoq4 > :last-child, .framer-c5StK .framer-qnlgzo > :last-child, .framer-c5StK .framer-1jlfqmo > :last-child { margin-right: 0px; } .framer-c5StK .framer-19vs2mz > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-c5StK .framer-12bfo57 > *, .framer-c5StK .framer-82r0x7 > *, .framer-c5StK .framer-1dxtqt5 > *, .framer-c5StK .framer-1i3w6cu > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-c5StK .framer-ut9l1w > *, .framer-c5StK .framer-1v6sgl4 > *, .framer-c5StK .framer-1gzmoqj > *, .framer-c5StK .framer-x8u6b0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-c5StK .framer-1abyqen > *, .framer-c5StK .framer-y3t4l0 > *, .framer-c5StK .framer-yeus3m > *, .framer-c5StK .framer-tf98xd > *, .framer-c5StK .framer-roehgs > *, .framer-c5StK .framer-1i7p68w > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-c5StK .framer-xb8zhz > *, .framer-c5StK .framer-1xmc3hb > * { margin: 0px; margin-left: calc(12.3076810836792px / 2); margin-right: calc(12.3076810836792px / 2); } .framer-c5StK .framer-1r6rf99 > *, .framer-c5StK .framer-fe9raj > * { margin: 0px; margin-left: calc(7.692300796508789px / 2); margin-right: calc(7.692300796508789px / 2); } .framer-c5StK .framer-1xjls1p > *, .framer-c5StK .framer-11b0kq9 > * { margin: 0px; margin-left: calc(10.158729553222656px / 2); margin-right: calc(10.158729553222656px / 2); } .framer-c5StK .framer-37uo67 > *, .framer-c5StK .framer-rlsgv5 > *, .framer-c5StK .framer-maujrz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-c5StK .framer-1a0zm0n > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-c5StK .framer-rid7nd > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-c5StK .framer-3426u1 > *, .framer-c5StK .framer-12800fm > *, .framer-c5StK .framer-qjr35m > *, .framer-c5StK .framer-dwvr0m > *, .framer-c5StK .framer-fer2zr > *, .framer-c5StK .framer-7d0bab > *, .framer-c5StK .framer-14u8llt > *, .framer-c5StK .framer-irpbnr > *, .framer-c5StK .framer-oz1xti > *, .framer-c5StK .framer-1ibpvey > *, .framer-c5StK .framer-gwh2ac > *, .framer-c5StK .framer-qxe4lw > *, .framer-c5StK .framer-1jlfqmo > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-c5StK .framer-1xtu6ir > *, .framer-c5StK .framer-1yx0qz2 > *, .framer-c5StK .framer-1b116q9 > *, .framer-c5StK .framer-1e120p2 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-c5StK .framer-bnjtrh > *, .framer-c5StK .framer-8qpif4 > *, .framer-c5StK .framer-r03bil > *, .framer-c5StK .framer-tgqnwz > *, .framer-c5StK .framer-xx6tk > *, .framer-c5StK .framer-s3xmm1 > *, .framer-c5StK .framer-12x4qs4 > *, .framer-c5StK .framer-19odaz8 > *, .framer-c5StK .framer-86kw4b > *, .framer-c5StK .framer-12c9vbk > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-c5StK .framer-1rb0yl4 > *, .framer-c5StK .framer-g4rlat > *, .framer-c5StK .framer-sodziw > *, .framer-c5StK .framer-1hoofdn > *, .framer-c5StK .framer-dmqb2q > *, .framer-c5StK .framer-5vj7gx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-c5StK .framer-13lczrw > *, .framer-c5StK .framer-pq7o4o > *, .framer-c5StK .framer-kaetw9 > *, .framer-c5StK .framer-lmtax4 > *, .framer-c5StK .framer-5w1mrq > *, .framer-c5StK .framer-16aofy6 > *, .framer-c5StK .framer-1dlxyk5 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-c5StK .framer-1klztul > *, .framer-c5StK .framer-1dv07gs > *, .framer-c5StK .framer-1qyvclz > *, .framer-c5StK .framer-14ww1m1 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-c5StK .framer-1p6chss > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-c5StK .framer-1q6fsrq > *, .framer-c5StK .framer-1xsirwv > *, .framer-c5StK .framer-1t4x5rp > *, .framer-c5StK .framer-ki8j0l > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-c5StK .framer-1p9keoq > *, .framer-c5StK .framer-efdyho > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-c5StK .framer-10ky7m5 > *, .framer-c5StK .framer-1pj8jyv > *, .framer-c5StK .framer-knyi4o > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-c5StK .framer-bayzia > *, .framer-c5StK .framer-xvn0uv > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-c5StK .framer-1uv5hb3 > *, .framer-c5StK .framer-14cumd5 > *, .framer-c5StK .framer-1yrns74 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-c5StK .framer-1wr4o3c > * { margin: 0px; margin-bottom: calc(59px / 2); margin-top: calc(59px / 2); } .framer-c5StK .framer-m3to1d > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-c5StK .framer-1c5mx0g > *, .framer-c5StK .framer-1rrfoq4 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-c5StK .framer-1wfdh4i > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-c5StK .framer-1cfq2gx > * { margin: 0px; margin-bottom: calc(130px / 2); margin-top: calc(130px / 2); } .framer-c5StK .framer-1hv9cki > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,'.framer-c5StK[data-border=\"true\"]::after, .framer-c5StK [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1024px) and (max-width: 1439px) { .framer-c5StK.framer-sry8r4 { width: 1024px; } .framer-c5StK .framer-8xovl9-container { left: 50%; order: 0; position: fixed; transform: translateX(-50%); } .framer-c5StK .framer-1roaygr, .framer-c5StK .framer-yi1qq2 { order: 1; } .framer-c5StK .framer-19vs2mz { flex: none; overflow: hidden; padding: 96px 60px 0px 60px; width: 100%; } .framer-c5StK .framer-24y0cb { align-self: stretch; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-c5StK .framer-1nblxwj { width: 600px; } .framer-c5StK .framer-1hks7j1 { left: -275px; top: calc(52.48868778280546% - 310px / 2); } .framer-c5StK .framer-15c2lw8 { bottom: 36px; height: unset; right: -305px; } .framer-c5StK .framer-suhwhx { height: 753px; order: 2; width: 100%; } .framer-c5StK .framer-1piyg1c-container { height: 711px; order: 0; } .framer-c5StK .framer-1a0zm0n { order: 3; padding: 20px 40px 40px 40px; } .framer-c5StK .framer-c88x9b { white-space: pre; width: auto; } .framer-c5StK .framer-1mde8pe-container { width: 952px; } .framer-c5StK .framer-82r0x7 { order: 4; width: 100%; } .framer-c5StK .framer-1yx0qz2 { width: 383px; } .framer-c5StK .framer-8qpif4, .framer-c5StK .framer-15nbh7d, .framer-c5StK .framer-86kw4b { order: 0; } .framer-c5StK .framer-dmqb2q { order: 2; } .framer-c5StK .framer-jsfbfz { width: 371px; } .framer-c5StK .framer-1e120p2 { flex-direction: column; gap: 7px; } .framer-c5StK .framer-xx6tk { flex: none; height: min-content; width: 100%; } .framer-c5StK .framer-1fl4chr { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 284px; justify-content: center; padding: 0px; width: 411px; } .framer-c5StK .framer-q2kpk9 { height: 207px; } .framer-c5StK .framer-1hsaefz { height: 155px; } .framer-c5StK .framer-1wnzq5z { height: 93px; } .framer-c5StK .framer-1r44r5f { height: 146px; order: 1; } .framer-c5StK .framer-1v6sgl4 { order: 5; } .framer-c5StK .framer-11p7wgg { order: 6; } .framer-c5StK .framer-5kwg2k-container { flex: none; width: 1024px; } .framer-c5StK .framer-1p6chss { order: 7; } .framer-c5StK .framer-16ndlmy-container { width: 880px; } .framer-c5StK .framer-1q6fsrq { order: 11; padding: 100px 40px 120px 40px; width: 100%; } .framer-c5StK .framer-12c9vbk { order: 12; padding: 64px 40px 64px 40px; width: 100%; } .framer-c5StK .framer-bayzia { gap: 44px; width: 100%; } .framer-c5StK .framer-1yqdk2h { height: var(--framer-aspect-ratio-supported, 308px); width: 515px; } .framer-c5StK .framer-1ol8osu { bottom: -25px; left: 45px; right: -7px; top: 27px; } .framer-c5StK .framer-1xsirwv { order: 13; padding: 64px 40px 64px 40px; width: 100%; } .framer-c5StK .framer-efdyho { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-c5StK .framer-y3t4l0, .framer-c5StK .framer-yeus3m, .framer-c5StK .framer-tf98xd { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-c5StK .framer-1gzmoqj { height: 583px; order: 15; padding: 64px 40px 64px 40px; width: 100%; } .framer-c5StK .framer-19vbusr { flex: none; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(1px, 1fr)); height: min-content; width: 100%; } .framer-c5StK .framer-x8u6b0 { order: 16; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-c5StK .framer-1e120p2, .framer-c5StK .framer-1fl4chr, .framer-c5StK .framer-bayzia, .framer-c5StK .framer-efdyho { gap: 0px; } .framer-c5StK .framer-1e120p2 > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-c5StK .framer-1e120p2 > :first-child { margin-top: 0px; } .framer-c5StK .framer-1e120p2 > :last-child { margin-bottom: 0px; } .framer-c5StK .framer-1fl4chr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-c5StK .framer-1fl4chr > :first-child, .framer-c5StK .framer-bayzia > :first-child { margin-left: 0px; } .framer-c5StK .framer-1fl4chr > :last-child, .framer-c5StK .framer-bayzia > :last-child { margin-right: 0px; } .framer-c5StK .framer-bayzia > * { margin: 0px; margin-left: calc(44px / 2); margin-right: calc(44px / 2); } .framer-c5StK .framer-efdyho > *, .framer-c5StK .framer-efdyho > :first-child, .framer-c5StK .framer-efdyho > :last-child { margin: 0px; } }}\",\"@media (min-width: 768px) and (max-width: 1023px) { .framer-c5StK.framer-sry8r4 { width: 768px; } .framer-c5StK .framer-1roaygr { align-content: center; align-items: center; flex-direction: column; gap: 0px; padding: 48px 40px 0px 40px; } .framer-c5StK .framer-19vs2mz { flex: none; gap: 40px; padding: 5px 60px 0px 60px; width: 100%; } .framer-c5StK .framer-12bfo57, .framer-c5StK .framer-86kw4b { order: 0; } .framer-c5StK .framer-ut9l1w { padding: 64px 20px 64px 20px; width: 669px; } .framer-c5StK .framer-1abyqen { gap: 24px; } .framer-c5StK .framer-1nblxwj { align-self: stretch; width: auto; } .framer-c5StK .framer-1hks7j1 { left: -288px; top: calc(46.118721461187235% - 310px / 2); } .framer-c5StK .framer-xb8zhz { bottom: 0px; left: unset; right: -20px; top: unset; transform: unset; } .framer-c5StK .framer-p2eupb { height: var(--framer-aspect-ratio-supported, 21px); } .framer-c5StK .framer-178etd5 { height: var(--framer-aspect-ratio-supported, 28px); } .framer-c5StK .framer-15c2lw8 { bottom: -94px; height: unset; top: 66px; } .framer-c5StK .framer-1xjls1p { left: -30px; } .framer-c5StK .framer-suhwhx { height: 650px; padding: 10px 25px 30px 25px; width: 100%; } .framer-c5StK .framer-1piyg1c-container { flex: 1 0 0px; height: 487px; } .framer-c5StK .framer-1a0zm0n { gap: 4px; padding: 60px 40px 5px 40px; } .framer-c5StK .framer-1mde8pe-container { width: 712px; } .framer-c5StK .framer-82r0x7, .framer-c5StK .framer-16ndlmy-container { width: 100%; } .framer-c5StK .framer-1n7vgwg { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-c5StK .framer-1yx0qz2 { gap: 8px; height: 382px; width: 405px; } .framer-c5StK .framer-gbz4o, .framer-c5StK .framer-9uymhu { height: var(--framer-aspect-ratio-supported, 234px); } .framer-c5StK .framer-701e6s { height: var(--framer-aspect-ratio-supported, 235px); } .framer-c5StK .framer-8qpif4 { flex: none; height: min-content; } .framer-c5StK .framer-1hoofdn { padding: 10px; } .framer-c5StK .framer-141umsh { height: var(--framer-aspect-ratio-supported, 232px); width: 261px; } .framer-c5StK .framer-jsfbfz { width: 426px; } .framer-c5StK .framer-1e120p2, .framer-c5StK .framer-efdyho { flex-direction: column; } .framer-c5StK .framer-xx6tk, .framer-c5StK .framer-y3t4l0, .framer-c5StK .framer-yeus3m, .framer-c5StK .framer-tf98xd { flex: none; height: min-content; width: 100%; } .framer-c5StK .framer-1fl4chr { aspect-ratio: 1.4561855670103092 / 1; height: 79%; width: var(--framer-aspect-ratio-supported, 446px); } .framer-c5StK .framer-1hsaefz { height: 205px; } .framer-c5StK .framer-1wnzq5z { height: 111px; } .framer-c5StK .framer-1r44r5f { height: 170px; order: 1; } .framer-c5StK .framer-1v6sgl4 { gap: 8px; padding: 4px 64px 38px 64px; } .framer-c5StK .framer-iu2fhi { height: var(--framer-aspect-ratio-supported, 47px); width: 80px; } .framer-c5StK .framer-1pkce2a { height: 45px; width: 80px; } .framer-c5StK .framer-k08oox { height: 46px; width: 80px; } .framer-c5StK .framer-1jmx8nd { height: 43px; width: 120px; } .framer-c5StK .framer-11p7wgg { padding: 30px 30px 20px 30px; } .framer-c5StK .framer-5kwg2k-container { flex: none; width: 100%; } .framer-c5StK .framer-1p6chss { padding: 80px 40px 80px 40px; } .framer-c5StK .framer-1q6fsrq { padding: 60px 40px 80px 40px; width: 100%; } .framer-c5StK .framer-12c9vbk { padding: 24px 40px 24px 40px; width: 100%; } .framer-c5StK .framer-bayzia { flex-direction: column; gap: 40px; padding: 0px; width: 100%; } .framer-c5StK .framer-1dlxyk5 { flex: none; padding: 56px 56px 0px 56px; width: 100%; } .framer-c5StK .framer-1yqdk2h { height: var(--framer-aspect-ratio-supported, 412px); width: 100%; } .framer-c5StK .framer-1ol8osu { bottom: unset; height: 404px; left: calc(54.069767441860485% - 632px / 2); right: unset; top: calc(50.24271844660196% - 404px / 2); width: 632px; } .framer-c5StK .framer-1xsirwv { padding: 80px 40px 80px 40px; width: 100%; } .framer-c5StK .framer-sfotym, .framer-c5StK .framer-er3mny, .framer-c5StK .framer-11x4hdi { height: auto; } .framer-c5StK .framer-1gzmoqj { height: min-content; padding: 24px 40px 64px 40px; width: 100%; } .framer-c5StK .framer-19vbusr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: flex-start; width: 100%; } .framer-c5StK .framer-uua0cw-container { align-self: unset; } .framer-c5StK .framer-1t4x5rp { gap: 27px; padding: 30px 20px 30px 20px; width: min-content; } .framer-c5StK .framer-1wr4o3c { align-content: flex-start; align-items: flex-start; gap: 50px; justify-content: flex-start; padding: 60px 0px 0px 0px; } .framer-c5StK .framer-azvqni { align-content: flex-start; align-items: flex-start; } .framer-c5StK .framer-m3to1d { align-self: unset; flex: 1 0 0px; gap: 12px; height: min-content; width: 1px; } .framer-c5StK .framer-1dv07gs { align-self: unset; width: 288px; } .framer-c5StK .framer-xvn0uv { flex: 1 0 0px; justify-content: flex-end; width: 1px; } .framer-c5StK .framer-roehgs, .framer-c5StK .framer-1i7p68w { gap: 12px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-c5StK .framer-1roaygr, .framer-c5StK .framer-19vs2mz, .framer-c5StK .framer-1abyqen, .framer-c5StK .framer-1a0zm0n, .framer-c5StK .framer-1yx0qz2, .framer-c5StK .framer-1e120p2, .framer-c5StK .framer-1v6sgl4, .framer-c5StK .framer-bayzia, .framer-c5StK .framer-efdyho, .framer-c5StK .framer-19vbusr, .framer-c5StK .framer-1t4x5rp, .framer-c5StK .framer-1wr4o3c, .framer-c5StK .framer-m3to1d, .framer-c5StK .framer-roehgs, .framer-c5StK .framer-1i7p68w { gap: 0px; } .framer-c5StK .framer-1roaygr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-c5StK .framer-1roaygr > :first-child, .framer-c5StK .framer-19vs2mz > :first-child, .framer-c5StK .framer-1abyqen > :first-child, .framer-c5StK .framer-1a0zm0n > :first-child, .framer-c5StK .framer-1e120p2 > :first-child, .framer-c5StK .framer-1v6sgl4 > :first-child, .framer-c5StK .framer-bayzia > :first-child, .framer-c5StK .framer-efdyho > :first-child, .framer-c5StK .framer-19vbusr > :first-child, .framer-c5StK .framer-1t4x5rp > :first-child, .framer-c5StK .framer-1wr4o3c > :first-child, .framer-c5StK .framer-m3to1d > :first-child, .framer-c5StK .framer-roehgs > :first-child, .framer-c5StK .framer-1i7p68w > :first-child { margin-top: 0px; } .framer-c5StK .framer-1roaygr > :last-child, .framer-c5StK .framer-19vs2mz > :last-child, .framer-c5StK .framer-1abyqen > :last-child, .framer-c5StK .framer-1a0zm0n > :last-child, .framer-c5StK .framer-1e120p2 > :last-child, .framer-c5StK .framer-1v6sgl4 > :last-child, .framer-c5StK .framer-bayzia > :last-child, .framer-c5StK .framer-efdyho > :last-child, .framer-c5StK .framer-19vbusr > :last-child, .framer-c5StK .framer-1t4x5rp > :last-child, .framer-c5StK .framer-1wr4o3c > :last-child, .framer-c5StK .framer-m3to1d > :last-child, .framer-c5StK .framer-roehgs > :last-child, .framer-c5StK .framer-1i7p68w > :last-child { margin-bottom: 0px; } .framer-c5StK .framer-19vs2mz > *, .framer-c5StK .framer-bayzia > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-c5StK .framer-1abyqen > *, .framer-c5StK .framer-efdyho > *, .framer-c5StK .framer-19vbusr > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-c5StK .framer-1a0zm0n > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-c5StK .framer-1yx0qz2 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-c5StK .framer-1yx0qz2 > :first-child { margin-left: 0px; } .framer-c5StK .framer-1yx0qz2 > :last-child { margin-right: 0px; } .framer-c5StK .framer-1e120p2 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-c5StK .framer-1v6sgl4 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-c5StK .framer-1t4x5rp > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-c5StK .framer-1wr4o3c > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-c5StK .framer-m3to1d > *, .framer-c5StK .framer-roehgs > *, .framer-c5StK .framer-1i7p68w > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}\",\"@media (max-width: 767px) { .framer-c5StK.framer-sry8r4 { overflow: hidden; padding: 80px 0px 0px 0px; width: 375px; } .framer-c5StK .framer-8xovl9-container { left: 0px; order: 0; position: fixed; right: 0px; width: unset; z-index: 5; } .framer-c5StK .framer-1roaygr { align-content: center; align-items: center; flex-direction: column; gap: 0px; order: 1; padding: 20px 24px 0px 24px; } .framer-c5StK .framer-19vs2mz { flex: none; gap: 24px; height: 336px; padding: 20px 10px 0px 10px; width: 100%; } .framer-c5StK .framer-12bfo57, .framer-c5StK .framer-1az3so8, .framer-c5StK .framer-1i3w6cu, .framer-c5StK .framer-1hv9cki { order: 0; } .framer-c5StK .framer-ut9l1w { gap: 20px; order: 0; padding: 35px 20px 35px 20px; width: 100%; } .framer-c5StK .framer-1abyqen { gap: 18px; } .framer-c5StK .framer-1nblxwj { align-self: stretch; width: auto; } .framer-c5StK .framer-suhwhx { gap: 0px; height: min-content; order: 2; padding: 40px 0px 20px 0px; width: 100%; } .framer-c5StK .framer-1piyg1c-container { flex: 1 0 0px; height: 268px; max-width: 760px; z-index: 1; } .framer-c5StK .framer-82r0x7 { gap: 31px; order: 3; padding: 60px 24px 51px 24px; width: 100%; } .framer-c5StK .framer-1n7vgwg { gap: 20px; grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-c5StK .framer-1xtu6ir { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex-direction: column; grid-column: auto / span 1; height: 100%; order: 0; padding: 16px; } .framer-c5StK .framer-bnjtrh { flex: none; gap: 2px; width: 100%; } .framer-c5StK .framer-1yx0qz2 { height: 224px; width: 297px; } .framer-c5StK .framer-gbz4o, .framer-c5StK .framer-9uymhu { height: var(--framer-aspect-ratio-supported, 224px); width: 143px; } .framer-c5StK .framer-13lczrw { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 100%; order: 1; padding: 16px; } .framer-c5StK .framer-8qpif4, .framer-c5StK .framer-r03bil, .framer-c5StK .framer-s3xmm1, .framer-c5StK .framer-12x4qs4, .framer-c5StK .framer-19odaz8, .framer-c5StK .framer-86kw4b { gap: 2px; } .framer-c5StK .framer-1hoofdn { height: 267px; padding: 10px; width: 298px; } .framer-c5StK .framer-141umsh { height: var(--framer-aspect-ratio-supported, 247px); width: 278px; } .framer-c5StK .framer-pq7o4o { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; gap: 60px; height: 100%; order: 2; padding: 16px; } .framer-c5StK .framer-1ouajee { height: 181px; width: 295px; } .framer-c5StK .framer-1b116q9 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex-direction: column; grid-column: auto / span 1; height: 100%; order: 3; padding: 16px; } .framer-c5StK .framer-tgqnwz { flex: none; gap: 2px; height: min-content; width: 100%; } .framer-c5StK .framer-jsfbfz { height: 239px; width: 100%; } .framer-c5StK .framer-1e120p2 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex-direction: column; grid-column: auto / span 1; height: 100%; order: 8; padding: 16px; } .framer-c5StK .framer-xx6tk { flex: none; gap: 2px; height: min-content; order: 0; width: 100%; } .framer-c5StK .framer-1fl4chr { height: 188px; order: 1; width: 100%; } .framer-c5StK .framer-kaetw9 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 100%; order: 4; padding: 16px; } .framer-c5StK .framer-q2kpk9 { height: 228px; width: 295px; } .framer-c5StK .framer-lmtax4 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 100%; order: 5; padding: 16px; } .framer-c5StK .framer-1hsaefz { height: 132px; width: 295px; } .framer-c5StK .framer-5w1mrq { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; gap: 60px; height: 100%; order: 7; padding: 16px; } .framer-c5StK .framer-1wnzq5z { height: 102px; width: 295px; } .framer-c5StK .framer-16aofy6 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 100%; order: 9; padding: 16px; } .framer-c5StK .framer-1v6sgl4 { order: 4; padding: 50px 64px 80px 64px; } .framer-c5StK .framer-11p7wgg { order: 6; padding: 0px 30px 50px 30px; } .framer-c5StK .framer-5kwg2k-container { flex: none; order: 0; width: auto; } .framer-c5StK .framer-1p6chss { order: 7; padding: 60px 20px 60px 20px; } .framer-c5StK .framer-16ndlmy-container { order: 1; width: 100%; } .framer-c5StK .framer-1q6fsrq { gap: 32px; order: 11; padding: 44px 24px 44px 24px; width: 100%; } .framer-c5StK .framer-1p9keoq, .framer-c5StK .framer-efdyho { flex-direction: column; gap: 16px; } .framer-c5StK .framer-10ky7m5, .framer-c5StK .framer-1pj8jyv { flex: none; gap: 16px; width: 100%; } .framer-c5StK .framer-12c9vbk { order: 12; padding: 24px; width: 100%; } .framer-c5StK .framer-bayzia { flex-direction: column; gap: 32px; padding: 0px; width: 100%; } .framer-c5StK .framer-1dlxyk5 { flex: none; gap: 8px; padding: 24px 24px 0px 24px; width: 100%; } .framer-c5StK .framer-1yqdk2h { height: var(--framer-aspect-ratio-supported, 196px); width: 100%; } .framer-c5StK .framer-1ol8osu { bottom: -10px; left: 7px; right: -24px; top: 0px; } .framer-c5StK .framer-1xsirwv { gap: 24px; order: 13; padding: 44px 24px 44px 24px; width: 100%; } .framer-c5StK .framer-1hv2zin { width: 100%; } .framer-c5StK .framer-y3t4l0, .framer-c5StK .framer-yeus3m, .framer-c5StK .framer-tf98xd { flex: none; height: min-content; width: 100%; } .framer-c5StK .framer-1jz78jy, .framer-c5StK .framer-1i2kzbb, .framer-c5StK .framer-6y5amz { aspect-ratio: 1 / 1; height: 48px; width: var(--framer-aspect-ratio-supported, 48px); } .framer-c5StK .framer-onwbzj { height: var(--framer-aspect-ratio-supported, 48px); } .framer-c5StK .framer-1xlf56f, .framer-c5StK .framer-it7ndh { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 24px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 24px; } .framer-c5StK .framer-mwraav, .framer-c5StK .framer-sfotym, .framer-c5StK .framer-1kptsgq, .framer-c5StK .framer-er3mny, .framer-c5StK .framer-6ixori, .framer-c5StK .framer-11x4hdi { height: auto; } .framer-c5StK .framer-9ddvd7, .framer-c5StK .framer-jxvho1 { aspect-ratio: unset; bottom: 0px; height: unset; } .framer-c5StK .framer-14ptwnk { height: 20px; left: calc(50.00000000000002% - 19px / 2); top: calc(45.83333333333336% - 20px / 2); width: 19px; } .framer-c5StK .framer-14j06ji { height: 24px; left: calc(50.00000000000002% - 24px / 2); top: calc(50.00000000000002% - 24px / 2); width: 24px; } .framer-c5StK .framer-150cewn { height: 21px; left: calc(50.00000000000002% - 16px / 2); top: calc(50.00000000000002% - 21px / 2); width: 16px; } .framer-c5StK .framer-1gzmoqj { gap: 24px; height: min-content; order: 15; padding: 24px 24px 44px 24px; width: 100%; } .framer-c5StK .framer-19vbusr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; width: 100%; } .framer-c5StK .framer-uua0cw-container { align-self: unset; } .framer-c5StK .framer-5vj7gx { order: 24; } .framer-c5StK .framer-1wfdh4i, .framer-c5StK .framer-1cfq2gx { order: 1; } .framer-c5StK .framer-1jlfqmo { order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-c5StK .framer-1roaygr, .framer-c5StK .framer-19vs2mz, .framer-c5StK .framer-ut9l1w, .framer-c5StK .framer-1abyqen, .framer-c5StK .framer-suhwhx, .framer-c5StK .framer-82r0x7, .framer-c5StK .framer-1n7vgwg, .framer-c5StK .framer-1xtu6ir, .framer-c5StK .framer-bnjtrh, .framer-c5StK .framer-8qpif4, .framer-c5StK .framer-pq7o4o, .framer-c5StK .framer-r03bil, .framer-c5StK .framer-1b116q9, .framer-c5StK .framer-tgqnwz, .framer-c5StK .framer-1e120p2, .framer-c5StK .framer-xx6tk, .framer-c5StK .framer-s3xmm1, .framer-c5StK .framer-12x4qs4, .framer-c5StK .framer-5w1mrq, .framer-c5StK .framer-19odaz8, .framer-c5StK .framer-86kw4b, .framer-c5StK .framer-1q6fsrq, .framer-c5StK .framer-1p9keoq, .framer-c5StK .framer-10ky7m5, .framer-c5StK .framer-1pj8jyv, .framer-c5StK .framer-bayzia, .framer-c5StK .framer-1dlxyk5, .framer-c5StK .framer-1xsirwv, .framer-c5StK .framer-efdyho, .framer-c5StK .framer-1gzmoqj, .framer-c5StK .framer-19vbusr { gap: 0px; } .framer-c5StK .framer-1roaygr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-c5StK .framer-1roaygr > :first-child, .framer-c5StK .framer-19vs2mz > :first-child, .framer-c5StK .framer-ut9l1w > :first-child, .framer-c5StK .framer-1abyqen > :first-child, .framer-c5StK .framer-82r0x7 > :first-child, .framer-c5StK .framer-1xtu6ir > :first-child, .framer-c5StK .framer-bnjtrh > :first-child, .framer-c5StK .framer-8qpif4 > :first-child, .framer-c5StK .framer-pq7o4o > :first-child, .framer-c5StK .framer-r03bil > :first-child, .framer-c5StK .framer-1b116q9 > :first-child, .framer-c5StK .framer-tgqnwz > :first-child, .framer-c5StK .framer-1e120p2 > :first-child, .framer-c5StK .framer-xx6tk > :first-child, .framer-c5StK .framer-s3xmm1 > :first-child, .framer-c5StK .framer-12x4qs4 > :first-child, .framer-c5StK .framer-5w1mrq > :first-child, .framer-c5StK .framer-19odaz8 > :first-child, .framer-c5StK .framer-86kw4b > :first-child, .framer-c5StK .framer-1q6fsrq > :first-child, .framer-c5StK .framer-1p9keoq > :first-child, .framer-c5StK .framer-10ky7m5 > :first-child, .framer-c5StK .framer-1pj8jyv > :first-child, .framer-c5StK .framer-bayzia > :first-child, .framer-c5StK .framer-1dlxyk5 > :first-child, .framer-c5StK .framer-1xsirwv > :first-child, .framer-c5StK .framer-efdyho > :first-child, .framer-c5StK .framer-1gzmoqj > :first-child, .framer-c5StK .framer-19vbusr > :first-child { margin-top: 0px; } .framer-c5StK .framer-1roaygr > :last-child, .framer-c5StK .framer-19vs2mz > :last-child, .framer-c5StK .framer-ut9l1w > :last-child, .framer-c5StK .framer-1abyqen > :last-child, .framer-c5StK .framer-82r0x7 > :last-child, .framer-c5StK .framer-1xtu6ir > :last-child, .framer-c5StK .framer-bnjtrh > :last-child, .framer-c5StK .framer-8qpif4 > :last-child, .framer-c5StK .framer-pq7o4o > :last-child, .framer-c5StK .framer-r03bil > :last-child, .framer-c5StK .framer-1b116q9 > :last-child, .framer-c5StK .framer-tgqnwz > :last-child, .framer-c5StK .framer-1e120p2 > :last-child, .framer-c5StK .framer-xx6tk > :last-child, .framer-c5StK .framer-s3xmm1 > :last-child, .framer-c5StK .framer-12x4qs4 > :last-child, .framer-c5StK .framer-5w1mrq > :last-child, .framer-c5StK .framer-19odaz8 > :last-child, .framer-c5StK .framer-86kw4b > :last-child, .framer-c5StK .framer-1q6fsrq > :last-child, .framer-c5StK .framer-1p9keoq > :last-child, .framer-c5StK .framer-10ky7m5 > :last-child, .framer-c5StK .framer-1pj8jyv > :last-child, .framer-c5StK .framer-bayzia > :last-child, .framer-c5StK .framer-1dlxyk5 > :last-child, .framer-c5StK .framer-1xsirwv > :last-child, .framer-c5StK .framer-efdyho > :last-child, .framer-c5StK .framer-1gzmoqj > :last-child, .framer-c5StK .framer-19vbusr > :last-child { margin-bottom: 0px; } .framer-c5StK .framer-19vs2mz > *, .framer-c5StK .framer-1xsirwv > *, .framer-c5StK .framer-1gzmoqj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-c5StK .framer-ut9l1w > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-c5StK .framer-1abyqen > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-c5StK .framer-suhwhx > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-c5StK .framer-suhwhx > :first-child { margin-left: 0px; } .framer-c5StK .framer-suhwhx > :last-child { margin-right: 0px; } .framer-c5StK .framer-82r0x7 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-c5StK .framer-1n7vgwg > *, .framer-c5StK .framer-1n7vgwg > :first-child, .framer-c5StK .framer-1n7vgwg > :last-child { margin: 0px; } .framer-c5StK .framer-1xtu6ir > *, .framer-c5StK .framer-1b116q9 > *, .framer-c5StK .framer-1e120p2 > *, .framer-c5StK .framer-1p9keoq > *, .framer-c5StK .framer-10ky7m5 > *, .framer-c5StK .framer-1pj8jyv > *, .framer-c5StK .framer-efdyho > *, .framer-c5StK .framer-19vbusr > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-c5StK .framer-bnjtrh > *, .framer-c5StK .framer-8qpif4 > *, .framer-c5StK .framer-r03bil > *, .framer-c5StK .framer-tgqnwz > *, .framer-c5StK .framer-xx6tk > *, .framer-c5StK .framer-s3xmm1 > *, .framer-c5StK .framer-12x4qs4 > *, .framer-c5StK .framer-19odaz8 > *, .framer-c5StK .framer-86kw4b > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-c5StK .framer-pq7o4o > *, .framer-c5StK .framer-5w1mrq > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-c5StK .framer-1q6fsrq > *, .framer-c5StK .framer-bayzia > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-c5StK .framer-1dlxyk5 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10009\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wyDBVgqED\":{\"layout\":[\"fixed\",\"auto\"]},\"KVrspKEWA\":{\"layout\":[\"fixed\",\"auto\"]},\"B4kW2JSmc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"J2b4wPiYk\":{\"pattern\":\":J2b4wPiYk\",\"name\":\"scroll-section\"},\"JeuOwEJ5a\":{\"pattern\":\":JeuOwEJ5a\",\"name\":\"main\"},\"qYcd6Z661\":{\"pattern\":\":qYcd6Z661\",\"name\":\"title\"},\"lurV6lfqi\":{\"pattern\":\":lurV6lfqi\",\"name\":\"features\"},\"KyxpD_T4r\":{\"pattern\":\":KyxpD_T4r\",\"name\":\"pricing\"},\"gIjMKPk9S\":{\"pattern\":\":gIjMKPk9S\",\"name\":\"faq\"},\"WSQ8rIq3m\":{\"pattern\":\":WSQ8rIq3m\",\"name\":\"blog\"},\"MNnZP9TjK\":{\"pattern\":\":MNnZP9TjK\",\"name\":\"cases\"}}\n * @framerResponsiveScreen\n */const FramertElDgSeiR=withCSS(Component,css,\"framer-c5StK\");export default FramertElDgSeiR;FramertElDgSeiR.displayName=\"Home\";FramertElDgSeiR.defaultProps={height:10009,width:1440};addFonts(FramertElDgSeiR,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.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://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15bwkEU4HTy.woff2\",weight:\"700\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5bwkEU4HTy.woff2\",weight:\"500\"}]},...NavigationFonts,...ButtonsPrimaryFonts,...SlideshowFonts,...TickerFonts,...PricingChatLabsMoreClearFonts,...FAQAccordionChatLabsFonts,...ReviewCardFonts,...BlogPostAdditionalFonts,...SocialNetworkFonts,...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),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertElDgSeiR\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wyDBVgqED\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KVrspKEWA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"B4kW2JSmc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"J2b4wPiYk\\\":{\\\"pattern\\\":\\\":J2b4wPiYk\\\",\\\"name\\\":\\\"scroll-section\\\"},\\\"JeuOwEJ5a\\\":{\\\"pattern\\\":\\\":JeuOwEJ5a\\\",\\\"name\\\":\\\"main\\\"},\\\"qYcd6Z661\\\":{\\\"pattern\\\":\\\":qYcd6Z661\\\",\\\"name\\\":\\\"title\\\"},\\\"lurV6lfqi\\\":{\\\"pattern\\\":\\\":lurV6lfqi\\\",\\\"name\\\":\\\"features\\\"},\\\"KyxpD_T4r\\\":{\\\"pattern\\\":\\\":KyxpD_T4r\\\",\\\"name\\\":\\\"pricing\\\"},\\\"gIjMKPk9S\\\":{\\\"pattern\\\":\\\":gIjMKPk9S\\\",\\\"name\\\":\\\"faq\\\"},\\\"WSQ8rIq3m\\\":{\\\"pattern\\\":\\\":WSQ8rIq3m\\\",\\\"name\\\":\\\"blog\\\"},\\\"MNnZP9TjK\\\":{\\\"pattern\\\":\\\":MNnZP9TjK\\\",\\\"name\\\":\\\"cases\\\"}}\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"10009\"}},\"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", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "NavigationFonts", "getFonts", "aJcjIi1_D_default", "NavigationWithVariantAppearEffect", "withVariantAppearEffect", "ButtonsPrimaryFonts", "U0E8TTRjN_default", "SlideshowFonts", "Slideshow", "TickerFonts", "Ticker", "MotionDivWithFX", "withFX", "motion", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "PricingChatLabsMoreClearFonts", "J_3t8mtW2_default", "FAQAccordionChatLabsFonts", "MQ4deqfo9_default", "ReviewCardFonts", "FXwGVUttZ_default", "BlogPostAdditionalFonts", "I2gpXQSbx_default", "SocialNetworkFonts", "Al1wSe_OD_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "animation4", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "XEStz9WWycSpIDDsZS", "kA2OFHF5EcSpIDDsZS", "V8TAyPbkfcSpIDDsZS", "TpisDyDT3cSpIDDsZS", "idcSpIDDsZS", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "ref2", "elementId1", "elementId2", "ref3", "isDisplayed", "elementId3", "ref4", "isDisplayed1", "isDisplayed2", "elementId4", "ref5", "elementId5", "ref6", "isDisplayed3", "isDisplayed4", "elementId6", "ref7", "router", "useRouter", "elementId7", "ref8", "isDisplayed5", "isDisplayed6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "RichText2", "SVG", "Image2", "Link", "ChildrenCanSuspend", "ULZ8d2e1M_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "css", "FramertElDgSeiR", "withCSS", "tElDgSeiR_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
