{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/KXXr6BSQcDAfN1bqPIQ8/myutq9w8EdQUr4LFtu0V/Examples_1.js", "ssg:https://framerusercontent.com/modules/CsTodFIEju1yNj367i5H/7VomsUbgMpFPPyOjcql2/YZFwFqOix.js", "ssg:https://framerusercontent.com/modules/AebX8AtQlTUUeKrgE7re/zTjCCDI4wGIOXLksMFVu/eTFvcAHlT.js", "ssg:https://framerusercontent.com/modules/hCkk8dZJHaKjeafAXK1r/CpojXomVVShxGAlSFzxH/jXTtAJtRU.js", "ssg:https://framerusercontent.com/modules/cSjrbtQUGW6WUUzAx5ZJ/kLpQ5npwBW9OKZlwFm4K/rKmtMVlJd.js", "ssg:https://framerusercontent.com/modules/pMK54OkgFoW3isgVJmxT/4Raz2VTo0LlIalRaYykn/KpAblWMdA.js", "ssg:https://framerusercontent.com/modules/12NaUTh9aDPUI3Q2flTS/tMtYlmB0osLDJPqkXLjg/xvPshJTYj.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", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/developers/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}export function withPreserve3d(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{transformStyle:\"preserve-3d\"}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withPreserve3d\":{\"type\":\"reactHoc\",\"name\":\"withPreserve3d\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples_1.map", "// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withPreserve3d}from\"https://framerusercontent.com/modules/KXXr6BSQcDAfN1bqPIQ8/myutq9w8EdQUr4LFtu0V/Examples_1.js\";const MotionDivWithPreserve3d=withPreserve3d(motion.div);const cycleOrder=[\"K5n5lwlRm\",\"GfZYAM95X\",\"OxjZ6JDfr\"];const serializationHash=\"framer-aTkgW\";const variantClassNames={GfZYAM95X:\"framer-v-1nlmvm9\",K5n5lwlRm:\"framer-v-1cy682p\",OxjZ6JDfr:\"framer-v-tivmvh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Arrive:\"OxjZ6JDfr\",Idle:\"K5n5lwlRm\",Start:\"GfZYAM95X\"};const getProps=({click,flag,flagStart,flagStart1,height,id,idleStart,image,imageStart,screenshotStart,width,...props})=>{return{...props,BIs7FFGRv:image??props.BIs7FFGRv??{alt:\"\",src:\"https://framerusercontent.com/images/0st4KIoSEaCzSBsNjvR0axQiNE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0st4KIoSEaCzSBsNjvR0axQiNE.png?scale-down-to=1024 671w,https://framerusercontent.com/images/0st4KIoSEaCzSBsNjvR0axQiNE.png 790w\"},cNVbb4YK8:flagStart??props.cNVbb4YK8??{alt:\"\",src:\"https://framerusercontent.com/images/rDMpfCYwCcjwWzZrVt6lStPWXkA.png\"},ILLh9Wssr:click??props.ILLh9Wssr,ll2VXj9c9:imageStart??props.ll2VXj9c9??{alt:\"\",src:\"https://framerusercontent.com/images/0st4KIoSEaCzSBsNjvR0axQiNE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0st4KIoSEaCzSBsNjvR0axQiNE.png?scale-down-to=1024 671w,https://framerusercontent.com/images/0st4KIoSEaCzSBsNjvR0axQiNE.png 790w\"},LrBDhQ8QM:screenshotStart??props.LrBDhQ8QM??{alt:\"\",src:\"https://framerusercontent.com/images/BJBLexSBBi1DRU2fwO46QsLE.png\",srcSet:\"https://framerusercontent.com/images/BJBLexSBBi1DRU2fwO46QsLE.png?scale-down-to=512 512w,https://framerusercontent.com/images/BJBLexSBBi1DRU2fwO46QsLE.png 946w\"},NywESlmT0:flagStart1??props.NywESlmT0??{alt:\"\",src:\"https://framerusercontent.com/images/rDMpfCYwCcjwWzZrVt6lStPWXkA.png\"},RPpA5h59J:flag??props.RPpA5h59J??{alt:\"\",src:\"https://framerusercontent.com/images/rDMpfCYwCcjwWzZrVt6lStPWXkA.png\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"K5n5lwlRm\",ytAe9Vdbl:idleStart??props.ytAe9Vdbl??{alt:\"\",src:\"https://framerusercontent.com/images/0st4KIoSEaCzSBsNjvR0axQiNE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0st4KIoSEaCzSBsNjvR0axQiNE.png?scale-down-to=1024 671w,https://framerusercontent.com/images/0st4KIoSEaCzSBsNjvR0axQiNE.png 790w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,BIs7FFGRv,RPpA5h59J,ll2VXj9c9,cNVbb4YK8,ytAe9Vdbl,NywESlmT0,LrBDhQ8QM,ILLh9Wssr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"K5n5lwlRm\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap172ucq0=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(ILLh9Wssr){const res=await ILLh9Wssr(...args);if(res===false)return false;}});const onAppeartgxibe=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"OxjZ6JDfr\"),250);});useOnVariantChange(baseVariant,{GfZYAM95X:onAppeartgxibe});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(MotionDivWithPreserve3d,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1cy682p\",className,classNames),\"data-framer-name\":\"Idle\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"K5n5lwlRm\",onTap:onTap172ucq0,ref:ref??ref1,style:{...style},...addPropertyOverrides({GfZYAM95X:{\"data-framer-name\":\"Start\"},OxjZ6JDfr:{\"data-framer-name\":\"Arrive\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jf4e26\",layoutDependency:layoutDependency,layoutId:\"lCoKY7fkk\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:80,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+311.23950157328954),pixelHeight:160,pixelWidth:160,sizes:\"62.6847px\",...toResponsiveImage(NywESlmT0)},className:\"framer-iz8flu\",\"data-framer-name\":\"Flag\",layoutDependency:layoutDependency,layoutId:\"gVB7NS2f7\",style:{filter:\"none\",opacity:0,scale:.5,WebkitFilter:\"none\",z:29},transformTemplate:transformTemplate1,variants:{OxjZ6JDfr:{filter:\"drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.08))\",opacity:1,scale:1,WebkitFilter:\"drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.08))\"}},...addPropertyOverrides({GfZYAM95X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:80,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+311.23950157328954),pixelHeight:160,pixelWidth:160,sizes:\"62.6847px\",...toResponsiveImage(cNVbb4YK8)}},OxjZ6JDfr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:80,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+311.23950157328954),pixelHeight:160,pixelWidth:160,sizes:\"62.6847px\",...toResponsiveImage(RPpA5h59J)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:602,intrinsicWidth:395,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1204,pixelWidth:790,sizes:\"347.9221px\",...toResponsiveImage(ytAe9Vdbl),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-141374i\",\"data-framer-name\":\"Photo 1\",layoutDependency:layoutDependency,layoutId:\"UFDiK2ojj\",...addPropertyOverrides({GfZYAM95X:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:602,intrinsicWidth:395,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1204,pixelWidth:790,sizes:\"347.9221px\",...toResponsiveImage(ll2VXj9c9),...{positionX:\"center\",positionY:\"center\"}}},OxjZ6JDfr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:602,intrinsicWidth:395,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1204,pixelWidth:790,sizes:\"347.9221px\",...toResponsiveImage(BIs7FFGRv),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qzrtta\",layoutDependency:layoutDependency,layoutId:\"Xoj4MXfpH\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:180,intrinsicWidth:273.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+18.4296788482835+0+50.2570880398671),pixelHeight:540,pixelWidth:946,sizes:\"274px\",...toResponsiveImage(LrBDhQ8QM),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-9ilqf9\",\"data-framer-name\":\"Screenshot\",layoutDependency:layoutDependency,layoutId:\"Sf5A8fG_F\",style:{opacity:0,scale:.5,z:50},variants:{OxjZ6JDfr:{opacity:1,scale:1}}})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aTkgW.framer-62xvcu, .framer-aTkgW .framer-62xvcu { display: block; }\",\".framer-aTkgW.framer-1cy682p { cursor: pointer; height: 529px; overflow: visible; position: relative; width: 347px; }\",\".framer-aTkgW .framer-1jf4e26 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; transform-style: preserve-3d; width: min-content; }\",\".framer-aTkgW .framer-iz8flu { aspect-ratio: 1 / 1; backface-visibility: hidden; flex: none; height: var(--framer-aspect-ratio-supported, 63px); left: -33px; overflow: visible; position: absolute; top: 65%; transform-style: preserve-3d; width: 63px; z-index: 1; }\",\".framer-aTkgW .framer-141374i { aspect-ratio: 0.6561461794019934 / 1; backface-visibility: hidden; flex: none; height: var(--framer-aspect-ratio-supported, 530px); overflow: visible; position: relative; transform-style: preserve-3d; width: 348px; }\",\".framer-aTkgW .framer-1qzrtta { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 281px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -169px; top: 18px; width: 268px; z-index: 1; }\",\".framer-aTkgW .framer-9ilqf9 { aspect-ratio: 1.5194444444444444 / 1; backface-visibility: hidden; flex: none; height: var(--framer-aspect-ratio-supported, 180px); overflow: visible; position: relative; transform-style: preserve-3d; width: 274px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aTkgW .framer-1jf4e26, .framer-aTkgW .framer-1qzrtta { gap: 0px; } .framer-aTkgW .framer-1jf4e26 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-aTkgW .framer-1jf4e26 > :first-child { margin-left: 0px; } .framer-aTkgW .framer-1jf4e26 > :last-child { margin-right: 0px; } .framer-aTkgW .framer-1qzrtta > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-aTkgW .framer-1qzrtta > :first-child { margin-top: 0px; } .framer-aTkgW .framer-1qzrtta > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 529\n * @framerIntrinsicWidth 347\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"GfZYAM95X\":{\"layout\":[\"fixed\",\"fixed\"]},\"OxjZ6JDfr\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"BIs7FFGRv\":\"image\",\"RPpA5h59J\":\"flag\",\"ll2VXj9c9\":\"imageStart\",\"cNVbb4YK8\":\"flagStart\",\"ytAe9Vdbl\":\"idleStart\",\"NywESlmT0\":\"flagStart1\",\"LrBDhQ8QM\":\"screenshotStart\",\"ILLh9Wssr\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYZFwFqOix=withCSS(Component,css,\"framer-aTkgW\");export default FramerYZFwFqOix;FramerYZFwFqOix.displayName=\"Card\";FramerYZFwFqOix.defaultProps={height:529,width:347};addPropertyControls(FramerYZFwFqOix,{variant:{options:[\"K5n5lwlRm\",\"GfZYAM95X\",\"OxjZ6JDfr\"],optionTitles:[\"Idle\",\"Start\",\"Arrive\"],title:\"Variant\",type:ControlType.Enum},BIs7FFGRv:{__defaultAssetReference:\"data:framer/asset-reference,0st4KIoSEaCzSBsNjvR0axQiNE.png?originalFilename=1.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,0st4KIoSEaCzSBsNjvR0axQiNE.png?originalFilename=1.png&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},RPpA5h59J:{__defaultAssetReference:\"data:framer/asset-reference,rDMpfCYwCcjwWzZrVt6lStPWXkA.png?originalFilename=flag-1.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,rDMpfCYwCcjwWzZrVt6lStPWXkA.png?originalFilename=flag-1.png&preferredSize=auto\"},title:\"Flag\",type:ControlType.ResponsiveImage},ll2VXj9c9:{__defaultAssetReference:\"data:framer/asset-reference,0st4KIoSEaCzSBsNjvR0axQiNE.png?originalFilename=1.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,0st4KIoSEaCzSBsNjvR0axQiNE.png?originalFilename=1.png&preferredSize=auto\"},title:\"Image Start\",type:ControlType.ResponsiveImage},cNVbb4YK8:{__defaultAssetReference:\"data:framer/asset-reference,rDMpfCYwCcjwWzZrVt6lStPWXkA.png?originalFilename=flag-1.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,rDMpfCYwCcjwWzZrVt6lStPWXkA.png?originalFilename=flag-1.png&preferredSize=auto\"},title:\"Flag Start\",type:ControlType.ResponsiveImage},ytAe9Vdbl:{__defaultAssetReference:\"data:framer/asset-reference,0st4KIoSEaCzSBsNjvR0axQiNE.png?originalFilename=1.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,0st4KIoSEaCzSBsNjvR0axQiNE.png?originalFilename=1.png&preferredSize=auto\"},title:\"Idle Start\",type:ControlType.ResponsiveImage},NywESlmT0:{__defaultAssetReference:\"data:framer/asset-reference,rDMpfCYwCcjwWzZrVt6lStPWXkA.png?originalFilename=flag-1.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,rDMpfCYwCcjwWzZrVt6lStPWXkA.png?originalFilename=flag-1.png&preferredSize=auto\"},title:\"Flag Start\",type:ControlType.ResponsiveImage},LrBDhQ8QM:{__defaultAssetReference:\"data:framer/asset-reference,BJBLexSBBi1DRU2fwO46QsLE.png?originalFilename=screenshot-1.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,BJBLexSBBi1DRU2fwO46QsLE.png?originalFilename=screenshot-1.png&preferredSize=auto\"},title:\"Screenshot Start\",type:ControlType.ResponsiveImage},ILLh9Wssr:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerYZFwFqOix,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYZFwFqOix\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GfZYAM95X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OxjZ6JDfr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"529\",\"framerVariables\":\"{\\\"BIs7FFGRv\\\":\\\"image\\\",\\\"RPpA5h59J\\\":\\\"flag\\\",\\\"ll2VXj9c9\\\":\\\"imageStart\\\",\\\"cNVbb4YK8\\\":\\\"flagStart\\\",\\\"ytAe9Vdbl\\\":\\\"idleStart\\\",\\\"NywESlmT0\\\":\\\"flagStart1\\\",\\\"LrBDhQ8QM\\\":\\\"screenshotStart\\\",\\\"ILLh9Wssr\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"347\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YZFwFqOix.map", "// Generated by Framer (bc39543)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withPreserve3d}from\"https://framerusercontent.com/modules/KXXr6BSQcDAfN1bqPIQ8/myutq9w8EdQUr4LFtu0V/Examples_1.js\";import Card from\"https://framerusercontent.com/modules/CsTodFIEju1yNj367i5H/7VomsUbgMpFPPyOjcql2/YZFwFqOix.js\";const CardFonts=getFonts(Card);const MotionDivWithPreserve3dw78ega=withCodeBoundaryForOverrides(motion.div,{nodeId:\"ZdAk0MMVN\",override:withPreserve3d,scopeId:\"eTFvcAHlT\"});const cycleOrder=[\"ZdAk0MMVN\",\"amJtPmSMM\",\"Hb2n50bo2\",\"dc67ffp_A\",\"I3z8aeN7p\",\"DWfJk7RfD\",\"yzC4jJh_q\",\"iN6Kd9BwO\",\"ayocFVdVc\",\"ofq4qEO10\",\"bX3Jtw_jC\",\"NB3JGNqVB\",\"DgE4dymfm\",\"svUl0f50E\",\"CPeUog9dm\"];const serializationHash=\"framer-KCgQr\";const variantClassNames={amJtPmSMM:\"framer-v-1g9zqvq\",ayocFVdVc:\"framer-v-1kkbjth\",bX3Jtw_jC:\"framer-v-zinjjk\",CPeUog9dm:\"framer-v-1su6mqb\",dc67ffp_A:\"framer-v-udpeji\",DgE4dymfm:\"framer-v-wxf6lz\",DWfJk7RfD:\"framer-v-3clsg7\",Hb2n50bo2:\"framer-v-tznepb\",I3z8aeN7p:\"framer-v-1d3ve2i\",iN6Kd9BwO:\"framer-v-1r1v4rl\",NB3JGNqVB:\"framer-v-1vssqs4\",ofq4qEO10:\"framer-v-1l9aa69\",svUl0f50E:\"framer-v-qei5g7\",yzC4jJh_q:\"framer-v-zs0wsv\",ZdAk0MMVN:\"framer-v-w78ega\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1\":\"amJtPmSMM\",\"10\":\"bX3Jtw_jC\",\"11\":\"NB3JGNqVB\",\"12\":\"DgE4dymfm\",\"2\":\"Hb2n50bo2\",\"3\":\"dc67ffp_A\",\"4\":\"I3z8aeN7p\",\"5\":\"DWfJk7RfD\",\"6\":\"yzC4jJh_q\",\"7\":\"iN6Kd9BwO\",\"8\":\"ayocFVdVc\",\"9\":\"ofq4qEO10\",\"Variant 14\":\"svUl0f50E\",\"Variant 15\":\"CPeUog9dm\",Entry:\"ZdAk0MMVN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZdAk0MMVN\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZdAk0MMVN\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearoqcjh2=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"amJtPmSMM\"),4e3);});const onAppearec01ex=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Hb2n50bo2\"),250);});const onAppear14crvvc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"dc67ffp_A\"),250);});const onAppear103lj45=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"I3z8aeN7p\"),250);});const onAppear1ntf89m=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"svUl0f50E\"),400);});const onAppear1dlvvjp=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"yzC4jJh_q\"),250);});const onAppear7t5h4c=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"iN6Kd9BwO\"),250);});const onAppear1ezp6bo=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ayocFVdVc\"),250);});const onAppearqh3wgk=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"CPeUog9dm\"),400);});const onAppear1m7pr26=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"bX3Jtw_jC\"),250);});const onAppearg72z1x=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"NB3JGNqVB\"),250);});const onAppearlvckv6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"DgE4dymfm\"),250);});const onAppear1dwo0y3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ZdAk0MMVN\"),450);});const onAppear1i2f4xj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"DWfJk7RfD\"),4e3);});const onAppear1uf8iwh=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ofq4qEO10\"),4e3);});useOnVariantChange(baseVariant,{amJtPmSMM:onAppearec01ex,ayocFVdVc:onAppearqh3wgk,bX3Jtw_jC:onAppearg72z1x,CPeUog9dm:onAppear1uf8iwh,dc67ffp_A:onAppear103lj45,default:onAppearoqcjh2,DgE4dymfm:onAppear1dwo0y3,DWfJk7RfD:onAppear1dlvvjp,Hb2n50bo2:onAppear14crvvc,I3z8aeN7p:onAppear1ntf89m,iN6Kd9BwO:onAppear1ezp6bo,NB3JGNqVB:onAppearlvckv6,ofq4qEO10:onAppear1m7pr26,svUl0f50E:onAppear1i2f4xj,yzC4jJh_q:onAppear7t5h4c});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"iN6Kd9BwO\",\"ayocFVdVc\",\"ofq4qEO10\",\"bX3Jtw_jC\",\"NB3JGNqVB\",\"CPeUog9dm\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"ayocFVdVc\",\"ofq4qEO10\",\"bX3Jtw_jC\",\"NB3JGNqVB\",\"DgE4dymfm\",\"CPeUog9dm\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"I3z8aeN7p\",\"DWfJk7RfD\",\"yzC4jJh_q\",\"iN6Kd9BwO\",\"ayocFVdVc\",\"svUl0f50E\",\"CPeUog9dm\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionDivWithPreserve3dw78ega,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-w78ega\",className,classNames),\"data-framer-name\":\"Entry\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZdAk0MMVN\",ref:refBinding,style:{...style},...addPropertyOverrides({amJtPmSMM:{\"data-framer-name\":\"1\"},ayocFVdVc:{\"data-framer-name\":\"8\"},bX3Jtw_jC:{\"data-framer-name\":\"10\"},CPeUog9dm:{\"data-framer-name\":\"Variant 15\"},dc67ffp_A:{\"data-framer-name\":\"3\"},DgE4dymfm:{\"data-framer-name\":\"12\"},DWfJk7RfD:{\"data-framer-name\":\"5\"},Hb2n50bo2:{\"data-framer-name\":\"2\"},I3z8aeN7p:{\"data-framer-name\":\"4\"},iN6Kd9BwO:{\"data-framer-name\":\"7\"},NB3JGNqVB:{\"data-framer-name\":\"11\"},ofq4qEO10:{\"data-framer-name\":\"9\"},svUl0f50E:{\"data-framer-name\":\"Variant 14\"},yzC4jJh_q:{\"data-framer-name\":\"6\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({ayocFVdVc:{height:(componentViewport?.height||602)-0,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0},bX3Jtw_jC:{height:(componentViewport?.height||602)-0,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0},CPeUog9dm:{height:(componentViewport?.height||602)-0,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0},iN6Kd9BwO:{height:(componentViewport?.height||602)-0,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0},NB3JGNqVB:{height:(componentViewport?.height||602)-0,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0},ofq4qEO10:{height:(componentViewport?.height||602)-0,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8hkh7b-container\",\"data-framer-name\":\"Lea\",layoutDependency:layoutDependency,layoutId:\"sG4gMjIhg-container\",name:\"Lea\",nodeId:\"sG4gMjIhg\",rendersWithMotion:true,scopeId:\"eTFvcAHlT\",style:{opacity:0,rotateY:0},variants:{ayocFVdVc:{opacity:1,rotateY:0},bX3Jtw_jC:{rotateY:90},CPeUog9dm:{opacity:1,rotateY:0},iN6Kd9BwO:{opacity:1,rotateY:-90},NB3JGNqVB:{rotateY:90},ofq4qEO10:{opacity:1,rotateY:90}},children:/*#__PURE__*/_jsx(Card,{BIs7FFGRv:addImageAlt({pixelHeight:1204,pixelWidth:790,src:\"https://framerusercontent.com/images/0sHKSaEXqveIjaIq4Qv3iiXHk.png\",srcSet:\"https://framerusercontent.com/images/0sHKSaEXqveIjaIq4Qv3iiXHk.png?scale-down-to=1024 671w,https://framerusercontent.com/images/0sHKSaEXqveIjaIq4Qv3iiXHk.png 790w\"},\"\"),cNVbb4YK8:addImageAlt({pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/voynw948X5XjLra97a7iTx7nY.png\"},\"\"),height:\"100%\",id:\"sG4gMjIhg\",layoutId:\"sG4gMjIhg\",ll2VXj9c9:addImageAlt({pixelHeight:1204,pixelWidth:790,src:\"https://framerusercontent.com/images/0sHKSaEXqveIjaIq4Qv3iiXHk.png\",srcSet:\"https://framerusercontent.com/images/0sHKSaEXqveIjaIq4Qv3iiXHk.png?scale-down-to=1024 671w,https://framerusercontent.com/images/0sHKSaEXqveIjaIq4Qv3iiXHk.png 790w\"},\"\"),LrBDhQ8QM:addImageAlt({pixelHeight:376,pixelWidth:608,src:\"https://framerusercontent.com/images/9zK4Rl6ahq8QQ8F63KzAgP6wk.png\"},\"\"),name:\"Lea\",NywESlmT0:addImageAlt({pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/voynw948X5XjLra97a7iTx7nY.png\"},\"\"),RPpA5h59J:addImageAlt({pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/n9JjYzAasRGpDyLJlRTYN4JdZw.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"OxjZ6JDfr\",width:\"100%\",ytAe9Vdbl:addImageAlt({pixelHeight:1204,pixelWidth:790,src:\"https://framerusercontent.com/images/0sHKSaEXqveIjaIq4Qv3iiXHk.png\",srcSet:\"https://framerusercontent.com/images/0sHKSaEXqveIjaIq4Qv3iiXHk.png?scale-down-to=1024 671w,https://framerusercontent.com/images/0sHKSaEXqveIjaIq4Qv3iiXHk.png 790w\"},\"\"),...addPropertyOverrides({ayocFVdVc:{variant:\"GfZYAM95X\"},bX3Jtw_jC:{variant:\"K5n5lwlRm\"},iN6Kd9BwO:{variant:\"K5n5lwlRm\"},NB3JGNqVB:{variant:\"K5n5lwlRm\"},ofq4qEO10:{variant:\"K5n5lwlRm\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(componentViewport?.height||602)-0,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12xmu60-container\",\"data-framer-name\":\"Akihito\",layoutDependency:layoutDependency,layoutId:\"aVsCEpGsv-container\",name:\"Akihito\",nodeId:\"aVsCEpGsv\",rendersWithMotion:true,scopeId:\"eTFvcAHlT\",style:{opacity:0,rotateY:0},variants:{amJtPmSMM:{rotateY:-90},dc67ffp_A:{opacity:1,rotateY:-90},DWfJk7RfD:{opacity:1,rotateY:90},Hb2n50bo2:{rotateY:-90},I3z8aeN7p:{opacity:1,rotateY:0},iN6Kd9BwO:{rotateY:90},svUl0f50E:{opacity:1,rotateY:0},yzC4jJh_q:{rotateY:90}},children:/*#__PURE__*/_jsx(Card,{BIs7FFGRv:addImageAlt({pixelHeight:1204,pixelWidth:790,src:\"https://framerusercontent.com/images/bza3UnPxZ1jevCtTqkWfFcDMC0.png\",srcSet:\"https://framerusercontent.com/images/bza3UnPxZ1jevCtTqkWfFcDMC0.png?scale-down-to=1024 671w,https://framerusercontent.com/images/bza3UnPxZ1jevCtTqkWfFcDMC0.png 790w\"},\"\"),cNVbb4YK8:addImageAlt({pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/SdiT8wk23Nd9JZsvmprMD86LtQ.png\"},\"\"),height:\"100%\",id:\"aVsCEpGsv\",layoutId:\"aVsCEpGsv\",ll2VXj9c9:addImageAlt({pixelHeight:1204,pixelWidth:790,src:\"https://framerusercontent.com/images/bza3UnPxZ1jevCtTqkWfFcDMC0.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/bza3UnPxZ1jevCtTqkWfFcDMC0.png?scale-down-to=1024&lossless=1 671w,https://framerusercontent.com/images/bza3UnPxZ1jevCtTqkWfFcDMC0.png?lossless=1 790w\"},\"\"),LrBDhQ8QM:addImageAlt({pixelHeight:376,pixelWidth:608,src:\"https://framerusercontent.com/images/psfos7Cu9tmfnqSOFGrUvDfkg.png\"},\"\"),name:\"Akihito\",NywESlmT0:addImageAlt({pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/SdiT8wk23Nd9JZsvmprMD86LtQ.png\"},\"\"),RPpA5h59J:addImageAlt({pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/SdiT8wk23Nd9JZsvmprMD86LtQ.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"OxjZ6JDfr\",width:\"100%\",ytAe9Vdbl:addImageAlt({pixelHeight:1204,pixelWidth:790,src:\"https://framerusercontent.com/images/bza3UnPxZ1jevCtTqkWfFcDMC0.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/bza3UnPxZ1jevCtTqkWfFcDMC0.png?scale-down-to=1024&lossless=1 671w,https://framerusercontent.com/images/bza3UnPxZ1jevCtTqkWfFcDMC0.png?lossless=1 790w\"},\"\"),...addPropertyOverrides({dc67ffp_A:{LrBDhQ8QM:addImageAlt({pixelHeight:380,pixelWidth:612,src:\"https://framerusercontent.com/images/usVxEX07wos9iKBVYMX6fvcphAs.svg\",srcSet:\"https://framerusercontent.com/images/usVxEX07wos9iKBVYMX6fvcphAs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/usVxEX07wos9iKBVYMX6fvcphAs.svg 612w\"},\"\"),variant:\"K5n5lwlRm\"},DWfJk7RfD:{LrBDhQ8QM:addImageAlt({pixelHeight:380,pixelWidth:612,src:\"https://framerusercontent.com/images/usVxEX07wos9iKBVYMX6fvcphAs.svg\",srcSet:\"https://framerusercontent.com/images/usVxEX07wos9iKBVYMX6fvcphAs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/usVxEX07wos9iKBVYMX6fvcphAs.svg 612w\"},\"\"),variant:\"K5n5lwlRm\"},I3z8aeN7p:{LrBDhQ8QM:addImageAlt({pixelHeight:380,pixelWidth:612,src:\"https://framerusercontent.com/images/usVxEX07wos9iKBVYMX6fvcphAs.svg\",srcSet:\"https://framerusercontent.com/images/usVxEX07wos9iKBVYMX6fvcphAs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/usVxEX07wos9iKBVYMX6fvcphAs.svg 612w\"},\"\"),variant:\"GfZYAM95X\"},svUl0f50E:{LrBDhQ8QM:addImageAlt({pixelHeight:380,pixelWidth:612,src:\"https://framerusercontent.com/images/usVxEX07wos9iKBVYMX6fvcphAs.svg\",srcSet:\"https://framerusercontent.com/images/usVxEX07wos9iKBVYMX6fvcphAs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/usVxEX07wos9iKBVYMX6fvcphAs.svg 612w\"},\"\")}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(componentViewport?.height||602)-0,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gtn9ny-container\",\"data-framer-name\":\"Alex\",layoutDependency:layoutDependency,layoutId:\"qYAeFQOtP-container\",name:\"Alex\",nodeId:\"qYAeFQOtP\",rendersWithMotion:true,scopeId:\"eTFvcAHlT\",style:{opacity:1,rotateY:0},variants:{amJtPmSMM:{rotateY:90},bX3Jtw_jC:{opacity:0,rotateY:-90},dc67ffp_A:{opacity:0,rotateY:90},DgE4dymfm:{opacity:1,rotateY:0},Hb2n50bo2:{opacity:0,rotateY:90},NB3JGNqVB:{opacity:1,rotateY:-90},ofq4qEO10:{opacity:0,rotateY:-90}},children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"qYAeFQOtP\",layoutId:\"qYAeFQOtP\",LrBDhQ8QM:addImageAlt({pixelHeight:376,pixelWidth:608,src:\"https://framerusercontent.com/images/fWGVVI5IFFnDu4uKASJT709l8Wo.png\"},\"\"),name:\"Alex\",style:{height:\"100%\",width:\"100%\"},variant:\"OxjZ6JDfr\",width:\"100%\",...addPropertyOverrides({amJtPmSMM:{variant:\"K5n5lwlRm\"},DgE4dymfm:{variant:\"GfZYAM95X\"},NB3JGNqVB:{variant:\"K5n5lwlRm\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KCgQr.framer-9h5uhs, .framer-KCgQr .framer-9h5uhs { display: block; }\",\".framer-KCgQr.framer-w78ega { height: 602px; overflow: visible; position: relative; width: 395px; }\",\".framer-KCgQr .framer-8hkh7b-container, .framer-KCgQr .framer-12xmu60-container, .framer-KCgQr .framer-1gtn9ny-container { backface-visibility: hidden; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; transform-style: preserve-3d; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 602\n * @framerIntrinsicWidth 395\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"amJtPmSMM\":{\"layout\":[\"fixed\",\"fixed\"]},\"Hb2n50bo2\":{\"layout\":[\"fixed\",\"fixed\"]},\"dc67ffp_A\":{\"layout\":[\"fixed\",\"fixed\"]},\"I3z8aeN7p\":{\"layout\":[\"fixed\",\"fixed\"]},\"DWfJk7RfD\":{\"layout\":[\"fixed\",\"fixed\"]},\"yzC4jJh_q\":{\"layout\":[\"fixed\",\"fixed\"]},\"iN6Kd9BwO\":{\"layout\":[\"fixed\",\"fixed\"]},\"ayocFVdVc\":{\"layout\":[\"fixed\",\"fixed\"]},\"ofq4qEO10\":{\"layout\":[\"fixed\",\"fixed\"]},\"bX3Jtw_jC\":{\"layout\":[\"fixed\",\"fixed\"]},\"NB3JGNqVB\":{\"layout\":[\"fixed\",\"fixed\"]},\"DgE4dymfm\":{\"layout\":[\"fixed\",\"fixed\"]},\"svUl0f50E\":{\"layout\":[\"fixed\",\"fixed\"]},\"CPeUog9dm\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramereTFvcAHlT=withCSS(Component,css,\"framer-KCgQr\");export default FramereTFvcAHlT;FramereTFvcAHlT.displayName=\"Bio Card\";FramereTFvcAHlT.defaultProps={height:602,width:395};addPropertyControls(FramereTFvcAHlT,{variant:{options:[\"ZdAk0MMVN\",\"amJtPmSMM\",\"Hb2n50bo2\",\"dc67ffp_A\",\"I3z8aeN7p\",\"DWfJk7RfD\",\"yzC4jJh_q\",\"iN6Kd9BwO\",\"ayocFVdVc\",\"ofq4qEO10\",\"bX3Jtw_jC\",\"NB3JGNqVB\",\"DgE4dymfm\",\"svUl0f50E\",\"CPeUog9dm\"],optionTitles:[\"Entry\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"Variant 14\",\"Variant 15\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramereTFvcAHlT,[{explicitInter:true,fonts:[]},...CardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereTFvcAHlT\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"amJtPmSMM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Hb2n50bo2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dc67ffp_A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I3z8aeN7p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DWfJk7RfD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yzC4jJh_q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iN6Kd9BwO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ayocFVdVc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ofq4qEO10\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bX3Jtw_jC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NB3JGNqVB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DgE4dymfm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"svUl0f50E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CPeUog9dm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"395\",\"framerIntrinsicHeight\":\"602\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eTFvcAHlT.map", "// Generated by Framer (7d037c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={BySMi120G:{hover:true}};const serializationHash=\"framer-wllGC\";const variantClassNames={BySMi120G:\"framer-v-2frcmu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({flag,height,id,image,link,name1,testimonial,title,width,...props})=>{return{...props,cUVZmPnFb:name1??props.cUVZmPnFb??\"Software Engineer\",E_FrKphUN:title??props.E_FrKphUN??\"Carlos Matheus S.\",guo_ebKQD:link??props.guo_ebKQD,pWV_tRANo:flag??props.pWV_tRANo??{alt:\"\",src:\"https://framerusercontent.com/images/bgJxrVrwv8JvMdTpvtjUBTmLew.png\"},RkdvdwVj_:testimonial??props.RkdvdwVj_??'\"It\\'s easy to use and i received a fast and efficient support, easy to use and easy to integrate with my bank account\"',s3IthGIku:image??props.s3IthGIku??{alt:\"\",src:\"https://framerusercontent.com/images/cGFqkLisHbkLgFdGW3QYI8bXws.png\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,E_FrKphUN,cUVZmPnFb,RkdvdwVj_,s3IthGIku,guo_ebKQD,pWV_tRANo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"BySMi120G\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"BySMi120G-hover\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:guo_ebKQD,nodeId:\"BySMi120G\",openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-2frcmu\",className,classNames)} framer-3d9wgv`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"BySMi120G\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"BySMi120G-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5n7zbn\",\"data-framer-name\":\"Frame 1751\",layoutDependency:layoutDependency,layoutId:\"Lp9WNWEjE\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},variants:{\"BySMi120G-hover\":{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:190,intrinsicWidth:185,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||220)-0-412)/2+0+0)+148-161.8665),pixelHeight:380,pixelWidth:370,sizes:\"144px\",...toResponsiveImage(s3IthGIku)},className:\"framer-gdlht0\",\"data-framer-name\":\"Carlos Matheus S.\",layoutDependency:layoutDependency,layoutId:\"nOET4r5q8\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5tdigt\",layoutDependency:layoutDependency,layoutId:\"oD9VOrwM1\",style:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||220)-86+7105427357601002e-30),pixelHeight:248,pixelWidth:248,sizes:\"28px\",...toResponsiveImage(pWV_tRANo)},className:\"framer-lfihum\",layoutDependency:layoutDependency,layoutId:\"KFMMZwEW9\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lda248\",layoutDependency:layoutDependency,layoutId:\"lrraDgHfE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(204, 153, 254))\"},children:\"Carlos Matheus S.\"})}),className:\"framer-1k3w1iv\",\"data-framer-name\":\"\u201CPlane is very useful, easy to understand and user friendly, there's a good number of features on the platform.\u201D\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bV_4Z1Xjh\",style:{\"--extracted-r6o4lv\":\"rgb(204, 153, 254)\",\"--framer-paragraph-spacing\":\"0px\"},text:E_FrKphUN,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Software Engineer\"})}),className:\"framer-1kqvdx1\",\"data-framer-name\":\"\u201CPlane is very useful, easy to understand and user friendly, there's a good number of features on the platform.\u201D\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"g33TNMFfz\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:cUVZmPnFb,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-b60f3r\",layoutDependency:layoutDependency,layoutId:\"H8337HgKY\",style:{backgroundColor:\"rgb(52, 7, 85)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,originX:0,originY:0},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w6fngv\",layoutDependency:layoutDependency,layoutId:\"aJB43wyQU\",style:{originX:0,originY:0},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9a11efe-1211-4173-a405-f912a7f8adf1, rgb(234, 204, 255)))\"},children:'\"It\\'s easy to use and i received a fast and efficient support, easy to use and easy to integrate with my bank account\"'})}),className:\"framer-fhsnlk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XOJuV9Ppn\",style:{\"--extracted-r6o4lv\":\"var(--token-a9a11efe-1211-4173-a405-f912a7f8adf1, rgb(234, 204, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:RkdvdwVj_,verticalAlignment:\"top\",withExternalLayout:true})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wllGC.framer-3d9wgv, .framer-wllGC .framer-3d9wgv { display: block; }\",\".framer-wllGC.framer-2frcmu { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 240px; }\",\".framer-wllGC .framer-5n7zbn { flex: none; height: 148px; overflow: hidden; position: relative; width: 144px; will-change: var(--framer-will-change-override, transform); }\",\".framer-wllGC .framer-gdlht0 { aspect-ratio: 0.9736842105263158 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 148px); left: 0px; overflow: visible; position: absolute; right: 0px; }\",\".framer-wllGC .framer-5tdigt { aspect-ratio: 1 / 1; bottom: 58px; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 50%; overflow: hidden; position: absolute; width: 28px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-wllGC .framer-lfihum { flex: none; height: 28px; left: calc(50.00000000000002% - 28px / 2); position: absolute; top: calc(50.00000000000002% - 28px / 2); width: 28px; }\",\".framer-wllGC .framer-lda248 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wllGC .framer-1k3w1iv, .framer-wllGC .framer-1kqvdx1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wllGC .framer-b60f3r { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: -149px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-wllGC .framer-1w6fngv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 140px; justify-content: center; padding: 24px; position: relative; width: 240px; }\",\".framer-wllGC .framer-fhsnlk { 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 (font-palette:dark)) { .framer-wllGC.framer-2frcmu, .framer-wllGC .framer-lda248, .framer-wllGC .framer-b60f3r, .framer-wllGC .framer-1w6fngv { gap: 0px; } .framer-wllGC.framer-2frcmu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-wllGC.framer-2frcmu > :first-child, .framer-wllGC .framer-lda248 > :first-child { margin-top: 0px; } .framer-wllGC.framer-2frcmu > :last-child, .framer-wllGC .framer-lda248 > :last-child { margin-bottom: 0px; } .framer-wllGC .framer-lda248 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wllGC .framer-b60f3r > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-wllGC .framer-b60f3r > :first-child, .framer-wllGC .framer-1w6fngv > :first-child { margin-left: 0px; } .framer-wllGC .framer-b60f3r > :last-child, .framer-wllGC .framer-1w6fngv > :last-child { margin-right: 0px; } .framer-wllGC .framer-1w6fngv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-wllGC.framer-v-2frcmu.hover .framer-5tdigt { height: var(--framer-aspect-ratio-supported, 36px); }\",\".framer-wllGC.framer-v-2frcmu.hover .framer-1w6fngv { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 220\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EI5rGeOdw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"E_FrKphUN\":\"title\",\"cUVZmPnFb\":\"name1\",\"RkdvdwVj_\":\"testimonial\",\"s3IthGIku\":\"image\",\"guo_ebKQD\":\"link\",\"pWV_tRANo\":\"flag\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjXTtAJtRU=withCSS(Component,css,\"framer-wllGC\");export default FramerjXTtAJtRU;FramerjXTtAJtRU.displayName=\"G2 Testimonials\";FramerjXTtAJtRU.defaultProps={height:220,width:240};addPropertyControls(FramerjXTtAJtRU,{E_FrKphUN:{defaultValue:\"Carlos Matheus S.\",displayTextArea:false,title:\"Title\",type:ControlType.String},cUVZmPnFb:{defaultValue:\"Software Engineer\",displayTextArea:false,title:\"Name\",type:ControlType.String},RkdvdwVj_:{defaultValue:'\"It\\'s easy to use and i received a fast and efficient support, easy to use and easy to integrate with my bank account\"',displayTextArea:false,title:\"Testimonial\",type:ControlType.String},s3IthGIku:{__defaultAssetReference:\"data:framer/asset-reference,cGFqkLisHbkLgFdGW3QYI8bXws.png?originalFilename=Carlos+Matheus+S..png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,cGFqkLisHbkLgFdGW3QYI8bXws.png?originalFilename=Carlos+Matheus+S..png&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},guo_ebKQD:{title:\"Link\",type:ControlType.Link},pWV_tRANo:{__defaultAssetReference:\"data:framer/asset-reference,bgJxrVrwv8JvMdTpvtjUBTmLew.png?originalFilename=Brazil.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,bgJxrVrwv8JvMdTpvtjUBTmLew.png?originalFilename=Brazil.png&preferredSize=auto\"},title:\"Flag\",type:ControlType.ResponsiveImage}});addFonts(FramerjXTtAJtRU,[{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjXTtAJtRU\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EI5rGeOdw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"240\",\"framerIntrinsicHeight\":\"220\",\"framerVariables\":\"{\\\"E_FrKphUN\\\":\\\"title\\\",\\\"cUVZmPnFb\\\":\\\"name1\\\",\\\"RkdvdwVj_\\\":\\\"testimonial\\\",\\\"s3IthGIku\\\":\\\"image\\\",\\\"guo_ebKQD\\\":\\\"link\\\",\\\"pWV_tRANo\\\":\\\"flag\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jXTtAJtRU.map", "// Generated by Framer (fd8545d)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={v_4tDieT8:{hover:true}};const cycleOrder=[\"v_4tDieT8\",\"EFh9rqiC4\"];const serializationHash=\"framer-8uHxx\";const variantClassNames={EFh9rqiC4:\"framer-v-19ki99\",v_4tDieT8:\"framer-v-7yw65\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"v_4tDieT8\",disabled:\"EFh9rqiC4\"};const getProps=({height,id,tap,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"v_4tDieT8\",xsTq_uibW:tap??props.xsTq_uibW};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,xsTq_uibW,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"v_4tDieT8\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapjxd9p8=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(xsTq_uibW){const res=await xsTq_uibW(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-7yw65\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"v_4tDieT8\",onTap:onTapjxd9p8,ref:ref??ref1,style:{backgroundColor:\"rgba(22, 51, 0, 0.08)\",borderBottomLeftRadius:39,borderBottomRightRadius:39,borderTopLeftRadius:39,borderTopRightRadius:39,opacity:1,...style},variants:{\"v_4tDieT8-hover\":{backgroundColor:\"rgba(22, 51, 0, 0.14)\"},EFh9rqiC4:{opacity:.4}},...addPropertyOverrides({\"v_4tDieT8-hover\":{\"data-framer-name\":undefined,style:{backgroundColor:\"rgba(22, 51, 0, 0.08)\",borderBottomLeftRadius:39,borderBottomRightRadius:39,borderTopLeftRadius:39,borderTopRightRadius:39,...style}},EFh9rqiC4:{\"data-framer-name\":\"disabled\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rgc90z\",\"data-framer-name\":\"svg\",layoutDependency:layoutDependency,layoutId:\"dr8Zt3NsZ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fih2gj\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:43,intrinsicWidth:43,layoutDependency:layoutDependency,layoutId:\"T19ROfxaT\",svg:'<svg width=\"43\" height=\"43\" viewBox=\"0 0 43 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M39.2844 21.1605L24.2834 6.15955L22.1834 8.25955L34.6347 20.709H3.73145V23.7103H34.6329L22.1817 36.1598L24.2817 38.2598L39.2827 23.2588C39.4248 23.1233 39.5379 22.9604 39.6152 22.7799C39.6925 22.5994 39.7324 22.4051 39.7324 22.2088C39.7324 22.0125 39.6925 21.8182 39.6152 21.6377C39.5379 21.4572 39.4248 21.2943 39.2827 21.1588L39.2844 21.1605Z\" fill=\"#454745\"/>\\n</svg>\\n',withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8uHxx.framer-12sne2q, .framer-8uHxx .framer-12sne2q { display: block; }\",\".framer-8uHxx.framer-7yw65 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 78px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 64px; }\",\".framer-8uHxx .framer-1rgc90z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 42px; }\",\".framer-8uHxx .framer-fih2gj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8uHxx.framer-7yw65, .framer-8uHxx .framer-1rgc90z { gap: 0px; } .framer-8uHxx.framer-7yw65 > *, .framer-8uHxx .framer-1rgc90z > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-8uHxx.framer-7yw65 > :first-child, .framer-8uHxx .framer-1rgc90z > :first-child { margin-left: 0px; } .framer-8uHxx.framer-7yw65 > :last-child, .framer-8uHxx .framer-1rgc90z > :last-child { margin-right: 0px; } }\",\".framer-8uHxx.framer-v-19ki99.framer-7yw65, .framer-8uHxx.framer-v-7yw65.hover.framer-7yw65 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 64px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"EFh9rqiC4\":{\"layout\":[\"fixed\",\"fixed\"]},\"oruiJG02e\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"xsTq_uibW\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrKmtMVlJd=withCSS(Component,css,\"framer-8uHxx\");export default FramerrKmtMVlJd;FramerrKmtMVlJd.displayName=\"button-right 2\";FramerrKmtMVlJd.defaultProps={height:64,width:64};addPropertyControls(FramerrKmtMVlJd,{variant:{options:[\"v_4tDieT8\",\"EFh9rqiC4\"],optionTitles:[\"Variant 1\",\"disabled\"],title:\"Variant\",type:ControlType.Enum},xsTq_uibW:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerrKmtMVlJd,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrKmtMVlJd\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"64\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EFh9rqiC4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oruiJG02e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"64\",\"framerVariables\":\"{\\\"xsTq_uibW\\\":\\\"tap\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rKmtMVlJd.map", "// Generated by Framer (74b1a33)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Button from\"https://framerusercontent.com/modules/KuppGdupNBnUA7GqRGQs/dXyu4QPpzYy3kcavJwnk/C8gGkBsPY.js\";import ButtonRight2 from\"https://framerusercontent.com/modules/cSjrbtQUGW6WUUzAx5ZJ/kLpQ5npwBW9OKZlwFm4K/rKmtMVlJd.js\";import HeadingAndIntro from\"https://framerusercontent.com/modules/lIGbRSJhz13tZSWgyLDn/2bojVZ4z6N1JMSC8iErf/ZfU8SRnAg.js\";const HeadingAndIntroFonts=getFonts(HeadingAndIntro);const ButtonRight2Fonts=getFonts(ButtonRight2);const ButtonFonts=getFonts(Button);const cycleOrder=[\"tWs4x_DG9\",\"TpLjgxsWa\",\"rdF_6Jb2k\",\"Je0GRN_cw\",\"PQLe1ujS1\",\"q27rXfcoB\",\"ItOsecFyw\",\"FA22SHrP6\",\"mLdgNhH8b\"];const serializationHash=\"framer-cu3bR\";const variantClassNames={FA22SHrP6:\"framer-v-1fleiu\",ItOsecFyw:\"framer-v-cob0i8\",Je0GRN_cw:\"framer-v-y2uguw\",mLdgNhH8b:\"framer-v-3vfi8t\",PQLe1ujS1:\"framer-v-lhmtqy\",q27rXfcoB:\"framer-v-tvk6x\",rdF_6Jb2k:\"framer-v-97lidt\",TpLjgxsWa:\"framer-v-1pful52\",tWs4x_DG9:\"framer-v-1babcsf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1\":\"tWs4x_DG9\",\"2\":\"TpLjgxsWa\",\"3\":\"rdF_6Jb2k\",\"Mobile 1\":\"Je0GRN_cw\",\"Mobile 2\":\"PQLe1ujS1\",\"Mobile 3\":\"q27rXfcoB\",\"Tablet-1\":\"ItOsecFyw\",\"Tablet-2\":\"FA22SHrP6\",\"Tablet-3\":\"mLdgNhH8b\"};const getProps=({click,height,id,width,...props})=>{return{...props,fiasu9zo9:click??props.fiasu9zo9,variant:humanReadableVariantMap[props.variant]??props.variant??\"tWs4x_DG9\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,fiasu9zo9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tWs4x_DG9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const xsTq_uibW1oa9gzl=activeVariantCallback(async(...args)=>{setVariant(\"tWs4x_DG9\");});const xsTq_uibW124jdvs=activeVariantCallback(async(...args)=>{setVariant(\"TpLjgxsWa\");});const xsTq_uibWc7fhxn=activeVariantCallback(async(...args)=>{setVariant(\"Je0GRN_cw\");});const xsTq_uibW2tdxby=activeVariantCallback(async(...args)=>{setVariant(\"PQLe1ujS1\");});const xsTq_uibWafhc2f=activeVariantCallback(async(...args)=>{setVariant(\"ItOsecFyw\");});const xsTq_uibW1y6yyht=activeVariantCallback(async(...args)=>{setVariant(\"FA22SHrP6\");});const xsTq_uibW1bv2yd3=activeVariantCallback(async(...args)=>{if(fiasu9zo9){const res=await fiasu9zo9(...args);if(res===false)return false;}setVariant(\"TpLjgxsWa\");});const xsTq_uibW1bsggke=activeVariantCallback(async(...args)=>{if(fiasu9zo9){const res=await fiasu9zo9(...args);if(res===false)return false;}setVariant(\"rdF_6Jb2k\");});const xsTq_uibW3zykl1=activeVariantCallback(async(...args)=>{if(fiasu9zo9){const res=await fiasu9zo9(...args);if(res===false)return false;}setVariant(\"PQLe1ujS1\");});const xsTq_uibWf2k3k8=activeVariantCallback(async(...args)=>{if(fiasu9zo9){const res=await fiasu9zo9(...args);if(res===false)return false;}setVariant(\"q27rXfcoB\");});const xsTq_uibWonve8p=activeVariantCallback(async(...args)=>{if(fiasu9zo9){const res=await fiasu9zo9(...args);if(res===false)return false;}setVariant(\"FA22SHrP6\");});const xsTq_uibWyg4bps=activeVariantCallback(async(...args)=>{if(fiasu9zo9){const res=await fiasu9zo9(...args);if(res===false)return false;}setVariant(\"mLdgNhH8b\");});const xsTq_uibW1941so6=activeVariantCallback(async(...args)=>{if(fiasu9zo9){const res=await fiasu9zo9(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"q27rXfcoB\",\"FA22SHrP6\",\"mLdgNhH8b\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"mLdgNhH8b\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1babcsf\",className,classNames),\"data-border\":true,\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"tWs4x_DG9\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.08)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",...style},...addPropertyOverrides({FA22SHrP6:{\"data-framer-name\":\"Tablet-2\"},ItOsecFyw:{\"data-framer-name\":\"Tablet-1\"},Je0GRN_cw:{\"data-framer-name\":\"Mobile 1\"},mLdgNhH8b:{\"data-framer-name\":\"Tablet-3\"},PQLe1ujS1:{\"data-framer-name\":\"Mobile 2\"},q27rXfcoB:{\"data-framer-name\":\"Mobile 3\"},rdF_6Jb2k:{\"data-framer-name\":\"3\"},TpLjgxsWa:{\"data-framer-name\":\"2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1td1uk4\",\"data-framer-name\":\"Frame 1356\",layoutDependency:layoutDependency,layoutId:\"y2ZspIkPW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2te4or\",\"data-framer-name\":\"Copy\",layoutDependency:layoutDependency,layoutId:\"pOTknf2Aj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:152,width:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.3937)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||832)-0-832)/2)+128+0+0,...addPropertyOverrides({FA22SHrP6:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||711)-0-711)/2)+128+0+0},ItOsecFyw:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||722)-0-722)/2)+133.5+0+0},Je0GRN_cw:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 48px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+0+0+0},mLdgNhH8b:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||711)-0-711)/2)+128+0+0},PQLe1ujS1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 48px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+0+0+0},q27rXfcoB:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 48px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-141psac-container\",layoutDependency:layoutDependency,layoutId:\"otNGxxMdX-container\",children:/*#__PURE__*/_jsx(HeadingAndIntro,{FYNO2kSOt:16,height:\"100%\",HrpP6N7ov:8,hsobbYJOT:24,hUqgzIlxF:4,id:\"otNGxxMdX\",layoutId:\"otNGxxMdX\",MKbDxCkdU:\"var(--token-27a27431-fe37-48c5-ba99-6f2fbb127864, rgb(92, 102, 112))\",p0CuyMG90:\"var(--token-f56e7fe6-9c5b-4788-a232-ca0e487c6938, rgb(46, 51, 56))\",style:{width:\"100%\"},variant:\"TB11bTnw0\",width:\"100%\",wkIQd2vD7:\"Customer stories\",xwR2bII6x:\"Hear how Plane has made payroll and HR easier for our customers.\",ZBzt7yy4b:16})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sgszy1\",\"data-framer-name\":\"Arrows\",layoutDependency:layoutDependency,layoutId:\"aXtQhAeP9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+(0+((componentViewport?.height||832)-0-832)/2)+128+0+498+7,...addPropertyOverrides({FA22SHrP6:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||711)-0-711)/2)+128+0+377+7},ItOsecFyw:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||722)-0-722)/2)+133.5+0+377+7},Je0GRN_cw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+0+0+152+24},mLdgNhH8b:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||711)-0-711)/2)+128+0+377+7},PQLe1ujS1:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+0+0+152+24},q27rXfcoB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+0+0+152+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ychor7-container\",layoutDependency:layoutDependency,layoutId:\"lpYZwRZG1-container\",style:{rotate:180},children:/*#__PURE__*/_jsx(ButtonRight2,{height:\"100%\",id:\"lpYZwRZG1\",layoutId:\"lpYZwRZG1\",variant:\"EFh9rqiC4\",width:\"100%\",xsTq_uibW:xsTq_uibW1oa9gzl,...addPropertyOverrides({FA22SHrP6:{style:{height:\"100%\"},variant:\"v_4tDieT8\",xsTq_uibW:xsTq_uibWafhc2f},ItOsecFyw:{xsTq_uibW:undefined},Je0GRN_cw:{xsTq_uibW:xsTq_uibWc7fhxn},mLdgNhH8b:{style:{height:\"100%\"},variant:\"v_4tDieT8\",xsTq_uibW:xsTq_uibW1y6yyht},PQLe1ujS1:{style:{height:\"100%\"},variant:\"v_4tDieT8\",xsTq_uibW:xsTq_uibWc7fhxn},q27rXfcoB:{style:{height:\"100%\"},variant:\"v_4tDieT8\",xsTq_uibW:xsTq_uibW2tdxby},rdF_6Jb2k:{style:{height:\"100%\"},variant:\"v_4tDieT8\",xsTq_uibW:xsTq_uibW124jdvs},TpLjgxsWa:{style:{height:\"100%\"},variant:\"v_4tDieT8\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+(0+((componentViewport?.height||832)-0-832)/2)+128+0+498+7,...addPropertyOverrides({FA22SHrP6:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||711)-0-711)/2)+128+0+377+7},ItOsecFyw:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||722)-0-722)/2)+133.5+0+377+7},Je0GRN_cw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+0+0+152+24},mLdgNhH8b:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||711)-0-711)/2)+128+0+377+7},PQLe1ujS1:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+0+0+152+24},q27rXfcoB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+0+0+152+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ts7xj-container\",layoutDependency:layoutDependency,layoutId:\"j5Pjewnmw-container\",children:/*#__PURE__*/_jsx(ButtonRight2,{height:\"100%\",id:\"j5Pjewnmw\",layoutId:\"j5Pjewnmw\",style:{height:\"100%\"},variant:\"v_4tDieT8\",width:\"100%\",xsTq_uibW:xsTq_uibW1bv2yd3,...addPropertyOverrides({FA22SHrP6:{xsTq_uibW:xsTq_uibWyg4bps},ItOsecFyw:{xsTq_uibW:xsTq_uibWonve8p},Je0GRN_cw:{xsTq_uibW:xsTq_uibW3zykl1},mLdgNhH8b:{variant:\"EFh9rqiC4\",xsTq_uibW:xsTq_uibW1941so6},PQLe1ujS1:{xsTq_uibW:xsTq_uibWf2k3k8},q27rXfcoB:{variant:\"EFh9rqiC4\",xsTq_uibW:xsTq_uibWf2k3k8},rdF_6Jb2k:{variant:\"EFh9rqiC4\",xsTq_uibW:xsTq_uibW1bsggke},TpLjgxsWa:{xsTq_uibW:xsTq_uibW1bsggke}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gycz8x\",\"data-framer-name\":\"Cards\",layoutDependency:layoutDependency,layoutId:\"hGJslAKd9\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pidtt9\",\"data-border\":true,\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"koozEt1xK\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-355f0346-c679-4c89-aa65-31d8ac173d6d, rgb(203, 238, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({PQLe1ujS1:{transformTemplate:transformTemplate2},rdF_6Jb2k:{transformTemplate:transformTemplate1},TpLjgxsWa:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gy1gd0\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"jLZ_Jp2qJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10etsck\",\"data-framer-name\":\"Heading and Icon\",layoutDependency:layoutDependency,layoutId:\"T75PzWRyZ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r13nu3\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"enTeop4CJ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-n6ce4e\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:139,layoutDependency:layoutDependency,layoutId:\"AR6B_5UGC\",svg:'<svg width=\"139\" height=\"25\" viewBox=\"0 0 139 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_6227_28363)\">\\n<path d=\"M28.935 12.0447L26.4246 4.84008H26.3688L23.7748 12.0447H28.935ZM28.6839 5.52518e-05L36.1314 19.6342H31.5847L30.0786 15.262H22.6313L21.0691 19.6342H16.6621L24.1931 5.52518e-05H28.6839\" fill=\"#2E3338\"/>\\n<path d=\"M41.1773 5.41744V7.39736H41.2614C41.7635 6.57236 42.4139 5.97216 43.2135 5.59619C44.0131 5.22068 44.8317 5.03254 45.6685 5.03254C46.7284 5.03254 47.5973 5.17458 48.2765 5.45866C48.9548 5.74315 49.4898 6.137 49.8799 6.64114C50.2708 7.14556 50.5447 7.75947 50.7027 8.48364C50.8608 9.20797 50.9402 10.0097 50.9402 10.8898V19.6342H46.9794V11.6047C46.9794 10.4318 46.7931 9.55602 46.4216 8.97866C46.0493 8.40099 45.3895 8.11229 44.4412 8.11229C43.3623 8.11229 42.5813 8.42857 42.0978 9.061C41.6143 9.69355 41.3726 10.7342 41.3726 12.1821V19.6342H37.4121V5.41744H41.1773Z\" fill=\"#2E3338\"/>\\n<path d=\"M61.7815 15.9492C62.2092 15.7292 62.5625 15.4362 62.8415 15.0691C63.1204 14.7027 63.3296 14.2855 63.4691 13.818C63.6085 13.3505 63.6783 12.8602 63.6783 12.3467C63.6783 11.7602 63.6225 11.2056 63.5109 10.6831C63.3993 10.1606 63.213 9.69782 62.953 9.29458C62.6923 8.89131 62.3483 8.57041 61.921 8.33201C61.4929 8.09388 60.9537 7.97452 60.3032 7.97452C59.7454 7.97452 59.2662 8.08433 58.8667 8.3044C58.4666 8.52446 58.1318 8.82267 57.8626 9.19807C57.593 9.574 57.3977 10.005 57.2769 10.4906C57.1556 10.9767 57.0955 11.4854 57.0955 12.0169C57.0955 12.5302 57.1467 13.039 57.249 13.5429C57.3508 14.0473 57.5279 14.501 57.7789 14.9043C58.03 15.3077 58.3596 15.6376 58.7691 15.8942C59.1778 16.1511 59.6896 16.2791 60.3032 16.2791C60.8611 16.2791 61.3535 16.1693 61.7815 15.9492V15.9492ZM67.2067 20.6789C67.0486 21.4122 66.7089 22.0951 66.1886 22.7277C65.6676 23.3598 64.9145 23.8962 63.9293 24.3363C62.9434 24.7764 61.6231 24.9965 59.9685 24.9965C59.2615 24.9965 58.5409 24.9092 57.8068 24.7351C57.0719 24.5608 56.4025 24.29 55.7985 23.9238C55.1942 23.5568 54.6921 23.0853 54.2923 22.5075C53.8921 21.9303 53.6647 21.238 53.6089 20.4312H57.5418C57.7274 21.1645 58.09 21.6732 58.6297 21.9574C59.1685 22.2417 59.7915 22.3841 60.4985 22.3841C61.6142 22.3841 62.4273 22.0537 62.9391 21.394C63.4505 20.7341 63.6965 19.8994 63.6783 18.8916V17.0216H63.6225C63.1944 17.7735 62.5858 18.3276 61.7955 18.6854C61.0048 19.043 60.1731 19.2213 59.2991 19.2213C58.2206 19.2213 57.2908 19.0338 56.5098 18.6578C55.7288 18.2821 55.0873 17.7688 54.5852 17.1179C54.0831 16.4674 53.7159 15.7064 53.4834 14.8354C53.2506 13.9648 53.1348 13.0436 53.1348 12.0719C53.1348 11.1553 53.2692 10.2706 53.5392 9.4181C53.8085 8.56579 54.2036 7.81415 54.7247 7.16323C55.2449 6.51262 55.8911 5.99465 56.6632 5.60959C57.4345 5.22464 58.3228 5.03219 59.327 5.03219C60.2753 5.03219 61.1071 5.20646 61.8234 5.55466C62.5389 5.90302 63.1386 6.48951 63.6225 7.31451H63.6783V5.41709H67.4438V18.7267C67.4438 19.2951 67.3644 19.9456 67.2067 20.6789\" fill=\"#2E3338\"/>\\n<path d=\"M78.9988 8.74504C78.5242 8.23195 77.8037 7.97518 76.8371 7.97518C76.2045 7.97518 75.6792 8.08067 75.2608 8.29134C74.8424 8.50243 74.508 8.76352 74.257 9.07518C74.0056 9.38713 73.8289 9.71701 73.7267 10.0651C73.6244 10.4136 73.564 10.7249 73.5457 11.0001H79.9886C79.803 10.01 79.4726 9.25869 78.9988 8.74504V8.74504ZM74.5216 16.2247C75.1167 16.7933 75.972 17.0773 77.0881 17.0773C77.8873 17.0773 78.5754 16.8804 79.1522 16.4859C79.7283 16.0921 80.0816 15.6748 80.2121 15.2348H83.6987C83.1405 16.9398 82.2851 18.159 81.1326 18.8922C79.9793 19.6255 78.5847 19.9921 76.9487 19.9921C75.814 19.9921 74.7912 19.8135 73.8801 19.4562C72.9689 19.0986 72.1972 18.5898 71.5654 17.93C70.9327 17.2698 70.4446 16.4816 70.101 15.5648C69.7566 14.6484 69.585 13.64 69.585 12.5398C69.585 11.4769 69.7612 10.487 70.1149 9.57004C70.4678 8.65356 70.9699 7.86091 71.6211 7.19135C72.2716 6.52252 73.0479 5.9953 73.9502 5.61024C74.8517 5.2253 75.8512 5.03284 76.9487 5.03284C78.176 5.03284 79.2448 5.26651 80.1564 5.73406C81.0671 6.20147 81.8156 6.82955 82.4013 7.61774C82.9875 8.40623 83.4101 9.30448 83.6709 10.3124C83.9308 11.321 84.0238 12.375 83.9494 13.475H73.5457C73.6015 14.7399 73.9266 15.6569 74.5216 16.2247\" fill=\"#2E3338\"/>\\n<path d=\"M90.018 5.52518e-05V19.6342H86.0576V5.52518e-05H90.018\" fill=\"#2E3338\"/>\\n<path d=\"M97.5559 5.52518e-05V16.0045H107.262V19.6342H93.1768V5.52518e-05H97.5559\" fill=\"#2E3338\"/>\\n<path d=\"M112.864 5.41744V19.6342H108.902V5.41744H112.864ZM108.902 3.21765V5.52518e-05H112.864V3.21765H108.902Z\" fill=\"#2E3338\"/>\\n<path d=\"M119.04 16.101C119.217 16.4036 119.445 16.6511 119.724 16.8436C120.003 17.036 120.324 17.1782 120.686 17.2698C121.049 17.3617 121.425 17.4072 121.816 17.4072C122.095 17.4072 122.388 17.3755 122.694 17.311C123.001 17.247 123.28 17.146 123.531 17.0086C123.782 16.8711 123.992 16.6879 124.159 16.4586C124.326 16.2296 124.41 15.941 124.41 15.5923C124.41 15.0058 124.015 14.5659 123.225 14.2724C122.434 13.9794 121.332 13.6859 119.919 13.3923C119.342 13.2645 118.78 13.1132 118.231 12.9386C117.683 12.7647 117.195 12.5357 116.767 12.2511C116.339 11.9673 115.996 11.6097 115.735 11.1788C115.474 10.7484 115.345 10.2211 115.345 9.59765C115.345 8.68102 115.526 7.92954 115.889 7.34263C116.251 6.75614 116.729 6.29351 117.325 5.95409C117.92 5.61502 118.589 5.37643 119.333 5.23905C120.077 5.10163 120.84 5.03284 121.62 5.03284C122.401 5.03284 123.159 5.10625 123.894 5.25276C124.628 5.39957 125.283 5.64721 125.86 5.9953C126.437 6.34366 126.915 6.80644 127.297 7.3838C127.677 7.96132 127.906 8.69011 127.98 9.57004H124.214C124.159 8.81856 123.87 8.30968 123.35 8.04382C122.829 7.77826 122.215 7.6452 121.509 7.6452C121.286 7.6452 121.044 7.65891 120.784 7.68637C120.523 7.71398 120.286 7.77364 120.072 7.86523C119.858 7.95716 119.678 8.08991 119.528 8.26388C119.379 8.43827 119.305 8.67205 119.305 8.96507C119.305 9.31358 119.435 9.59765 119.696 9.81757C119.956 10.0376 120.295 10.2162 120.714 10.3539C121.133 10.4913 121.611 10.615 122.15 10.7249C122.69 10.835 123.238 10.9545 123.796 11.0826C124.372 11.211 124.935 11.3669 125.484 11.55C126.032 11.7335 126.52 11.9763 126.948 12.2788C127.376 12.5813 127.72 12.9573 127.98 13.4062C128.24 13.8555 128.37 14.4098 128.37 15.0698C128.37 16.0048 128.18 16.7885 127.799 17.4211C127.417 18.0535 126.92 18.5622 126.306 18.9475C125.693 19.3324 124.991 19.6031 124.201 19.7583C123.41 19.9142 122.606 19.9921 121.788 19.9921C120.951 19.9921 120.133 19.9097 119.333 19.7448C118.534 19.5797 117.822 19.3047 117.199 18.9198C116.576 18.5349 116.065 18.0262 115.666 17.3935C115.265 16.761 115.047 15.9683 115.01 15.0148H118.776C118.776 15.4368 118.863 15.7986 119.04 16.101\" fill=\"#2E3338\"/>\\n<path d=\"M138.409 5.41806V8.03057H135.508V15.0701C135.508 15.7301 135.62 16.1703 135.843 16.39C136.066 16.6101 136.513 16.7202 137.182 16.7202C137.405 16.7202 137.618 16.7109 137.823 16.6926C138.028 16.6744 138.223 16.6471 138.409 16.6101V19.6348C138.075 19.69 137.702 19.7265 137.294 19.7452C136.884 19.7631 136.485 19.7725 136.095 19.7725C135.481 19.7725 134.899 19.731 134.351 19.6489C133.802 19.5661 133.319 19.4058 132.901 19.1675C132.482 18.9294 132.152 18.5901 131.91 18.15C131.668 17.71 131.548 17.1327 131.548 16.4176V8.03057H129.148V5.41806H131.548V1.15585H135.508V5.41806H138.409\" fill=\"#2E3338\"/>\\n<path d=\"M10.595 8.43631C11.2032 6.80712 11.6778 5.4622 12.0183 4.40143C12.3588 3.3407 12.529 2.68947 12.529 2.44779C12.529 2.18819 12.4723 1.98676 12.3588 1.84354C12.2451 1.70062 12.0885 1.62871 11.8889 1.62871C11.6347 1.62871 11.3759 1.83686 11.1126 2.25308C10.8491 2.66935 10.5587 3.33875 10.2409 4.26046L8.87898 8.14089L10.595 8.43631ZM8.78364 12.0482C8.39322 12.0303 8.02306 11.99 7.67362 11.9274C7.32407 11.8648 6.9904 11.7752 6.67262 11.6588C6.81774 11.9455 6.94713 12.2317 7.06075 12.5182C7.17426 12.8049 7.26716 13.0869 7.33995 13.3641C7.55787 13.0955 7.78713 12.8519 8.02774 12.6323C8.2682 12.413 8.52017 12.2183 8.78364 12.0482ZM7.24461 7.97976L5.77373 3.7905C5.39238 2.72526 5.09729 2.02962 4.88844 1.70257C4.67944 1.37583 4.45262 1.21248 4.20747 1.21248C4.01679 1.21248 3.86229 1.2844 3.7444 1.42732C3.62636 1.57054 3.56735 1.76299 3.56735 2.00468C3.56735 2.41643 3.72609 3.13255 4.04403 4.15302C4.36181 5.1735 4.83851 6.51174 5.47408 8.16774C5.52855 8.06928 5.6056 7.99992 5.70563 7.95963C5.8055 7.91933 5.94167 7.89921 6.11422 7.89921C6.16869 7.89921 6.27762 7.90383 6.44107 7.91265C6.60451 7.92159 6.87221 7.94427 7.24461 7.97976V7.97976ZM5.9099 14.4651C6.06428 14.4651 6.20483 14.396 6.33213 14.257C6.45924 14.1182 6.52277 13.9683 6.52277 13.8072C6.52277 13.6374 6.39795 13.2413 6.14823 12.6188C5.8984 11.9967 5.58759 11.3858 5.21529 10.7861C4.94291 10.3385 4.67506 10.0006 4.41175 9.7723C4.14828 9.54406 3.89875 9.4299 3.66268 9.4299C3.47201 9.4299 3.26091 9.54883 3.02938 9.78574C2.79784 10.023 2.68207 10.2445 2.68207 10.4504C2.68207 10.6652 2.79557 10.9874 3.02256 11.4171C3.2494 11.8468 3.55373 12.3033 3.93509 12.7867C4.33458 13.3151 4.7114 13.7266 5.06549 14.022C5.41961 14.3174 5.70094 14.4651 5.9099 14.4651V14.4651ZM1.82404 14.1429C1.95116 14.2953 2.12821 14.5188 2.35521 14.8142C2.95447 15.6288 3.50817 16.0361 4.01679 16.0361C4.18915 16.0361 4.34364 15.9824 4.47985 15.8749C4.61606 15.7675 4.68417 15.6556 4.68417 15.5393C4.68417 15.405 4.59336 15.1814 4.41175 14.8679C4.23002 14.5546 3.98045 14.2012 3.66268 13.8072C3.29949 13.3506 2.99744 13.0172 2.75698 12.8068C2.51637 12.5968 2.32328 12.4913 2.17815 12.4913C1.86021 12.4913 1.56739 12.6591 1.29969 12.9948C1.03184 13.3305 0.897913 13.7266 0.897913 14.1831C0.897913 14.5505 0.990982 14.96 1.17712 15.4117C1.3631 15.8637 1.63337 16.3181 1.98748 16.7746C2.52318 17.4818 3.18812 18.0254 3.98274 18.4058C4.77722 18.7867 5.65569 18.9765 6.61811 18.9765C8.38869 18.9765 9.87092 18.3252 11.0649 17.023C12.2587 15.7205 12.8559 14.0891 12.8559 12.1288C12.8559 11.5292 12.8103 11.0527 12.7197 10.6988C12.6289 10.3452 12.4791 10.0878 12.2702 9.92671C11.8978 9.62251 11.1739 9.34935 10.0979 9.10767C9.02197 8.86598 7.89835 8.74514 6.72709 8.74514C6.4002 8.74514 6.16869 8.79884 6.03248 8.90624C5.89631 9.01367 5.8282 9.19715 5.8282 9.45675C5.8282 10.0658 6.17322 10.5063 6.8633 10.7793C7.55318 11.0527 8.66998 11.1889 10.2137 11.1889H10.7721C10.8992 11.1889 11.0014 11.2358 11.0785 11.3298C11.1555 11.4238 11.2079 11.5648 11.2351 11.7528C11.0807 11.896 10.763 12.0597 10.2818 12.2429C9.80041 12.4264 9.43269 12.6077 9.1786 12.7867C8.63383 13.1809 8.19572 13.6483 7.8643 14.1898C7.53276 14.7317 7.36719 15.2439 7.36719 15.7272C7.36719 16.0226 7.43742 16.3785 7.57832 16.7947C7.71903 17.211 7.78942 17.4683 7.78942 17.5668V17.6608L7.76218 17.7816C7.3625 17.7548 7.04716 17.5246 6.81561 17.0901C6.58406 16.6559 6.4683 16.0764 6.4683 15.3513V15.2304C6.39551 15.2931 6.32531 15.3379 6.25721 15.3647C6.1891 15.3916 6.11422 15.405 6.03248 15.405C5.95077 15.405 5.8736 15.3983 5.80097 15.3849C5.72817 15.3714 5.64643 15.3513 5.55582 15.3244C5.58305 15.423 5.60347 15.5191 5.61711 15.6131C5.6307 15.7071 5.63752 15.7809 5.63752 15.8347C5.63752 16.1659 5.50584 16.4504 5.24257 16.6873C4.9791 16.9245 4.66584 17.0431 4.30281 17.0431C3.73078 17.0431 3.14968 16.7679 2.5595 16.2173C1.96917 15.6668 1.67423 15.1278 1.67423 14.5994C1.67423 14.5009 1.68558 14.4136 1.70828 14.3375C1.73082 14.2616 1.76956 14.1966 1.82404 14.1429V14.1429ZM11.5756 8.66455C12.3928 8.81702 12.9694 9.1569 13.3053 9.68503C13.6411 10.2135 13.8092 11.046 13.8092 12.1825C13.8092 14.4382 13.1214 16.2845 11.7459 17.7212C10.3703 19.1577 8.61113 19.8761 6.4683 19.8761C5.62389 19.8761 4.80446 19.7262 4.00998 19.4263C3.21535 19.1264 2.53226 18.7079 1.96024 18.1709C1.3065 17.5802 0.816198 16.9558 0.489329 16.2979C0.162458 15.64 -0.000976562 14.9665 -0.000976562 14.2771C-0.000976562 13.5073 0.166998 12.9122 0.502946 12.4913C0.838745 12.0706 1.36991 11.7844 2.09643 11.6319C1.96024 11.3186 1.86021 11.0546 1.79681 10.8397C1.73325 10.6249 1.70147 10.4593 1.70147 10.3429C1.70147 9.94016 1.91711 9.52867 2.34839 9.10767C2.77953 8.68693 3.186 8.47657 3.56735 8.47657C3.73078 8.47657 3.90313 8.50567 4.0849 8.56384C4.26647 8.62235 4.47517 8.71825 4.7114 8.85254C4.01211 6.90111 3.50379 5.39505 3.186 4.33429C2.86806 3.27356 2.70931 2.54178 2.70931 2.13896C2.70931 1.58398 2.85444 1.14339 3.14514 0.816384C3.43569 0.489644 3.83066 0.326292 4.33005 0.326292C5.18337 0.326292 6.26403 2.20611 7.5715 5.96569C7.79833 6.6102 7.97099 7.10701 8.08903 7.45613C8.1889 7.17893 8.32949 6.78474 8.51126 6.27452C9.81874 2.55072 10.9444 0.688819 11.8889 0.688819C12.3519 0.688819 12.7218 0.843233 12.9989 1.15206C13.2758 1.46089 13.4143 1.8752 13.4143 2.39405C13.4143 2.78824 13.2622 3.50852 12.958 4.55584C12.6537 5.60317 12.1931 6.97272 11.5756 8.66455\" fill=\"#2E3338\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6227_28363\">\\n<rect width=\"138.41\" height=\"24.9972\" rx=\"6.43471\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lkxuwc\",\"data-framer-name\":\"Feature Sections/Feature\",layoutDependency:layoutDependency,layoutId:\"dMWLiyqhp\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:152,width:`max(min(((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 1.7922 - 100px) / 4.216, 490px) - 96px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||832)-0-832)/2)+128+15+48+0+0+0+0+70+0,...addPropertyOverrides({ItOsecFyw:{width:`max(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.5377, 490px) - 96px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||722)-0-722)/2)+128+0+48+0+0+0+0+70+0},Je0GRN_cw:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+0+48+0+0+0+0+70+0},PQLe1ujS1:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+8526512829121202e-29+48+0+0+0+0+70+0},rdF_6Jb2k:{width:`max(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) / 2.464, 490px) - 96px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||832)-0-832)/2)+128+15.000000000000114+48+0+0+0+0+70+0},TpLjgxsWa:{width:`max(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) / 2.464, 490px) - 96px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||832)-0-832)/2)+128+15.000000000000114+48+0+0+0+0+70+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16m1ae7-container\",layoutDependency:layoutDependency,layoutId:\"wmIC4d0kM-container\",children:/*#__PURE__*/_jsx(HeadingAndIntro,{FYNO2kSOt:16,height:\"100%\",HrpP6N7ov:8,hsobbYJOT:24,hUqgzIlxF:4,id:\"wmIC4d0kM\",layoutId:\"wmIC4d0kM\",MKbDxCkdU:\"var(--token-27a27431-fe37-48c5-ba99-6f2fbb127864, rgb(92, 102, 112))\",p0CuyMG90:\"var(--token-f56e7fe6-9c5b-4788-a232-ca0e487c6938, rgb(46, 51, 56))\",style:{width:\"100%\"},variant:\"PwDDpvdZu\",width:\"100%\",wkIQd2vD7:\"How AngelList streamlined contractor payments using Plane\",xwR2bII6x:\"Since partnering with Plane, AngelList has seen significant time savings and no longer pays costly transaction fees.\",ZBzt7yy4b:16})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rme8tv\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"F6p8oaeFY\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,width:`calc(min(((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 1.7922 - 100px) / 4.216, 490px) - 96px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||832)-0-832)/2)+128+15+48+0+0+409+0+0,...addPropertyOverrides({ItOsecFyw:{width:`calc(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.5377, 490px) - 96px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||722)-0-722)/2)+128+0+48+0+0+329+0+0},Je0GRN_cw:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+0+48+0+0+259+0+0},PQLe1ujS1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+8526512829121202e-29+48+0+0+259+0+0},rdF_6Jb2k:{width:`calc(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) / 2.464, 490px) - 96px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||832)-0-832)/2)+128+15.000000000000114+48+0+0+409+0+0},TpLjgxsWa:{width:`calc(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) / 2.464, 490px) - 96px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||832)-0-832)/2)+128+15.000000000000114+48+0+0+409+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hpcv48-container\",layoutDependency:layoutDependency,layoutId:\"B5VZB5zr8-container\",children:/*#__PURE__*/_jsx(Button,{DhryqTLbd:{borderColor:\"rgba(0, 0, 0, 0.08)\",borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"B5VZB5zr8\",ja5H8whs6:false,layoutId:\"B5VZB5zr8\",MOuy7REKx:\"Case Study\",style:{height:\"100%\",width:\"100%\"},UKBjfkzPd:\"var(--token-e5b886d0-a1ef-4526-b382-0a2c92520ef8, rgb(153, 51, 255))\",variant:\"EVst4bu3o\",width:\"100%\",Zg5IEHU8D:\"https://plane.com/customers/angellist\"})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d8u7v7\",\"data-border\":true,\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"XU9OEDDqH\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-8c8ee361-ed92-4f5b-ac8d-62f3415a2879, rgb(74, 0, 128))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({q27rXfcoB:{transformTemplate:transformTemplate2},rdF_6Jb2k:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-omzxs1\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"cVJlWuAqd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jfz2lq\",\"data-framer-name\":\"Heading and Icon\",layoutDependency:layoutDependency,layoutId:\"FoMXbO_La\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mt6vgh\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"YbEpRM5GS\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mb5iri\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"f6r_KdeXK-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 123 29\"><g transform=\"translate(0 0.993)\" id=\"ss9769028359_1\"><path d=\"M 0 27.007 L 0 0.007 L 122 0.007 L 122 27.007 Z\" fill=\"transparent\"></path><path d=\"M 49.288 21.797 L 45.603 5.684 C 46.424 5.317 47.306 5.113 48.202 5.085 C 48.975 5.085 49.54 5.251 49.898 5.582 C 50.295 6.009 50.547 6.555 50.615 7.139 L 52.016 14.05 C 52.504 16.506 52.86 18.522 53.085 20.098 C 53.133 20.297 53.231 20.399 53.38 20.399 L 55.922 5.525 C 56.874 5.362 57.839 5.29 58.804 5.309 C 59.742 5.291 60.679 5.367 61.603 5.535 L 64.147 20.108 C 64.169 20.307 64.269 20.409 64.44 20.409 C 64.884 17.805 65.266 15.688 65.585 14.06 L 67.427 5.423 C 68.146 5.249 68.884 5.173 69.623 5.197 C 70.387 5.162 71.15 5.303 71.853 5.61 L 71.999 5.911 L 67.573 24.05 C 66.529 24.191 65.476 24.254 64.423 24.239 C 63.133 24.239 62.255 24.089 61.788 23.789 C 61.321 23.489 61.014 22.85 60.866 21.874 L 60.056 17.253 C 59.568 14.373 59.175 11.895 58.877 9.817 L 58.655 9.817 C 58.492 11.117 58.086 13.583 57.435 17.216 L 56.183 24.05 C 55.12 24.189 54.049 24.252 52.977 24.239 C 51.699 24.239 50.82 24.073 50.342 23.742 C 49.864 23.41 49.512 22.762 49.288 21.797 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 73.873 7.676 C 73.997 7.169 74.203 6.687 74.483 6.249 C 74.729 5.82 75.047 5.439 75.422 5.122 C 77.41 5.373 78.773 6.499 79.512 8.502 C 80.447 6.274 82.007 5.159 84.192 5.159 C 84.937 5.151 85.68 5.24 86.402 5.423 C 86.44 7.033 86.032 8.62 85.224 10.004 C 84.671 9.849 84.102 9.762 83.528 9.743 C 82.103 9.743 80.949 10.519 80.066 12.071 L 80.066 24.05 C 79.279 24.18 78.484 24.243 77.687 24.239 C 76.87 24.241 76.054 24.178 75.247 24.05 L 75.247 11.543 C 75.24 9.768 74.782 8.479 73.873 7.676 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 102.321 16.313 L 92.151 16.313 C 92.224 17.691 92.537 18.774 93.091 19.563 C 93.644 20.353 94.608 20.746 95.984 20.745 C 97.409 20.745 99.043 20.32 100.886 19.469 C 101.63 20.29 102.106 21.327 102.248 22.436 C 100.284 23.863 97.926 24.577 95.172 24.577 C 92.569 24.577 90.598 23.757 89.257 22.118 C 87.917 20.478 87.248 18.042 87.249 14.811 C 87.233 13.435 87.406 12.064 87.764 10.738 C 88.066 9.609 88.579 8.55 89.274 7.619 C 89.926 6.767 90.76 6.08 91.714 5.61 C 92.74 5.119 93.861 4.875 94.994 4.896 C 96.124 4.874 97.247 5.072 98.305 5.478 C 99.227 5.84 100.06 6.405 100.745 7.132 C 101.414 7.857 101.923 8.722 102.236 9.666 C 102.572 10.695 102.737 11.774 102.724 12.859 C 102.725 13.455 102.687 14.051 102.611 14.642 C 102.541 15.207 102.445 15.764 102.321 16.313 Z M 95.211 8.427 C 93.293 8.427 92.261 9.904 92.115 12.859 L 98.232 12.859 L 98.232 12.409 C 98.232 11.205 97.988 10.241 97.5 9.516 C 97.012 8.792 96.249 8.429 95.211 8.427 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 121.227 11.506 L 121.227 19.695 C 121.227 21.297 121.484 22.486 122 23.262 C 121.217 23.962 120.204 24.337 119.162 24.314 C 118.105 24.314 117.38 24.07 116.988 23.582 C 116.595 23.085 116.398 22.324 116.398 21.272 L 116.398 12.521 C 116.398 11.393 116.263 10.605 115.993 10.156 C 115.722 9.703 115.219 9.479 114.482 9.479 C 113.181 9.479 111.965 10.08 110.835 11.282 L 110.835 24.05 C 110.452 24.128 110.063 24.179 109.673 24.202 C 109.268 24.226 108.856 24.239 108.439 24.239 C 108.021 24.239 107.611 24.239 107.204 24.202 C 106.815 24.179 106.427 24.128 106.045 24.05 L 106.045 5.46 L 106.265 5.197 L 108.107 5.197 C 109.483 5.197 110.343 5.948 110.688 7.45 C 112.478 5.873 114.258 5.085 116.029 5.085 C 117.801 5.085 119.109 5.665 119.955 6.826 C 120.801 7.993 121.225 9.553 121.227 11.506 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 37.042 7.052 L 30.942 5.56 C 30.188 3.322 28.965 1.509 27.374 0.606 C 23.265 -1.734 14.396 3.24 7.774 6.383 C 5.308 7.566 2.691 8.39 0 8.83 C 0 8.83 5.495 29.387 19.905 26.778 C 29.578 25.037 32.657 15.562 31.617 8.375 Z M 14.418 15.923 C 9.699 16.669 7.898 10.877 7.898 10.877 C 7.898 10.877 10.321 11.441 11.544 10.611 C 13.42 9.33 15.518 7.895 16.868 8.554 C 19.066 9.628 19.139 15.177 14.418 15.923 Z M 24.983 6.525 C 24.624 6.611 24.245 6.548 23.931 6.35 C 23.617 6.153 23.393 5.836 23.307 5.47 C 23.255 5.295 23.237 5.112 23.256 4.93 C 23.274 4.748 23.328 4.571 23.414 4.411 C 23.501 4.251 23.618 4.109 23.758 3.996 C 23.899 3.882 24.06 3.798 24.233 3.749 C 24.406 3.7 24.587 3.686 24.765 3.709 C 24.943 3.732 25.114 3.791 25.27 3.883 C 25.425 3.974 25.561 4.096 25.669 4.242 C 25.778 4.388 25.856 4.555 25.901 4.732 C 25.955 4.91 25.975 5.098 25.959 5.284 C 25.942 5.47 25.89 5.651 25.805 5.816 C 25.719 5.982 25.603 6.128 25.462 6.248 C 25.321 6.367 25.158 6.457 24.983 6.512 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:9769028359,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i3fmji\",\"data-framer-name\":\"Feature Sections/Feature\",layoutDependency:layoutDependency,layoutId:\"yCmKxSZIb\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:152,width:`max(min(((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 1.7922 - 100px) / 4.216, 490px) - 96px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||832)-0-832)/2)+128+15+48+0+0+0+0+70+0,...addPropertyOverrides({FA22SHrP6:{width:`max(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.5377, 490px) - 96px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||711)-0-711)/2)+132.5+0+48+0+0+0+0+70+0},ItOsecFyw:{width:`max(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.5377, 490px) - 96px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||722)-0-722)/2)+128+10+48+0+0+0+0+70+0},Je0GRN_cw:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+0+48+0+0+0+0+70+0},PQLe1ujS1:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+0+48+0+0+0+0+70+0},q27rXfcoB:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+8526512829121202e-29+48+0+0+0+0+70+0},rdF_6Jb2k:{width:`max(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) / 2.464, 490px) - 96px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||832)-0-832)/2)+128+15.000000000000114+48+0+0+0+0+70+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cyyyoa-container\",layoutDependency:layoutDependency,layoutId:\"ugBMKZPr4-container\",children:/*#__PURE__*/_jsx(HeadingAndIntro,{FYNO2kSOt:16,height:\"100%\",HrpP6N7ov:8,hsobbYJOT:24,hUqgzIlxF:4,id:\"ugBMKZPr4\",layoutId:\"ugBMKZPr4\",MKbDxCkdU:\"rgb(255, 255, 255)\",p0CuyMG90:\"rgb(255, 255, 255)\",style:{width:\"100%\"},variant:\"PwDDpvdZu\",width:\"100%\",wkIQd2vD7:\"How Wren used Plane\u2019s EOR services to hire and move a team member internationally\",xwR2bII6x:\"Enlisting Plane to move a team member from being a contractor in Switzerland to an employee in Canada (during a pandemic).\",ZBzt7yy4b:16,...addPropertyOverrides({FA22SHrP6:{wkIQd2vD7:\"How Wren used Plane\u2019 to hire and move a team member internationally\"}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kpmxek\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"AEoSZLBw7\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,width:`calc(min(((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 1.7922 - 100px) / 4.216, 490px) - 96px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||832)-0-832)/2)+128+15+48+0+0+409+0+0,...addPropertyOverrides({FA22SHrP6:{width:`calc(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.5377, 490px) - 96px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||711)-0-711)/2)+132.5+0+48+0+0+309+0+0},ItOsecFyw:{width:`calc(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.5377, 490px) - 96px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||722)-0-722)/2)+128+10+48+0+0+309+0+0},Je0GRN_cw:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+0+48+0+0+259+0+0},PQLe1ujS1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+0+48+0+0+259+0+0},q27rXfcoB:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+8526512829121202e-29+48+0+0+259+0+0},rdF_6Jb2k:{width:`calc(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) / 2.464, 490px) - 96px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||832)-0-832)/2)+128+15.000000000000114+48+0+0+409+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-60ht36-container\",layoutDependency:layoutDependency,layoutId:\"d6x6j0cqI-container\",children:/*#__PURE__*/_jsx(Button,{DhryqTLbd:{borderColor:\"rgba(0, 0, 0, 0.08)\",borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"d6x6j0cqI\",ja5H8whs6:false,layoutId:\"d6x6j0cqI\",MOuy7REKx:\"Case Study\",style:{height:\"100%\",width:\"100%\"},UKBjfkzPd:\"var(--token-e5b886d0-a1ef-4526-b382-0a2c92520ef8, rgb(153, 51, 255))\",variant:\"EVst4bu3o\",width:\"100%\",Zg5IEHU8D:\"https://plane.com/customers/wren\"})})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p8b3fy\",\"data-border\":true,\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"Z6FGY2QIl\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-ba2dbc03-4dfb-46bb-b76c-1ebbfc5456dd, rgb(204, 255, 153))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1edu0vc\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"ZNCifJk1E\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oehfik\",\"data-framer-name\":\"Heading and Icon\",layoutDependency:layoutDependency,layoutId:\"d6vtOVvdO\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xemv1h\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"gjQ8K7yzI\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-190e597\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"zU41ta9__-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 167 28\"><g transform=\"translate(0.544 0.289)\" id=\"ss10904493060_1\"><g id=\"ss10904493060_2\"><path d=\"M 15.932 4.824 C 15.093 4.67 14.234 4.673 13.396 4.832 C 13.564 4.1 13.562 3.339 13.392 2.608 C 14.232 2.761 15.093 2.758 15.932 2.598 C 15.763 3.33 15.763 4.092 15.932 4.824 Z M 17.419 0 C 16.671 0.591 15.707 0.925 14.704 0.94 C 13.721 0.967 12.756 0.667 11.962 0.086 L 10.559 1.34 C 11.824 2.703 11.858 4.63 10.662 6.005 L 5.024 11.037 L 3.744 9.895 L 2.31 11.174 L 3.59 12.316 L 2.713 13.098 L 1.433 11.956 L 0 13.236 L 2.714 15.656 L 12.065 7.309 C 13.621 6.199 15.788 6.206 17.335 7.327 L 18.737 6.075 C 18.126 5.417 17.791 4.549 17.801 3.651 C 17.817 2.768 18.183 1.915 18.832 1.251 L 17.419 0.001 Z\" fill=\"rgb(69,77,84)\"></path></g><path d=\"M 13.882 22.02 C 14.782 22.177 15.703 22.174 16.602 22.011 C 16.422 22.761 16.423 23.542 16.606 24.291 C 15.704 24.134 14.782 24.138 13.881 24.302 C 14.062 23.552 14.062 22.77 13.881 22.02 Z M 12.287 26.964 C 13.09 26.357 14.124 26.015 15.199 26.001 C 16.247 25.971 17.278 26.278 18.139 26.876 L 19.644 25.59 C 18.288 24.194 18.251 22.219 19.534 20.81 L 25.581 15.652 L 26.954 16.822 L 28.491 15.512 L 27.118 14.342 L 28.058 13.54 L 29.431 14.71 L 30.969 13.4 L 28.058 10.919 L 18.028 19.473 C 16.361 20.611 14.037 20.603 12.378 19.454 L 10.873 20.737 C 11.538 21.435 11.895 22.317 11.878 23.221 C 11.86 24.127 11.468 25.001 10.772 25.681 L 12.287 26.963 Z M 152.754 4.593 L 150.978 6.224 L 149.202 4.593 L 150.978 2.961 Z M 56.252 7.636 C 56.252 6.182 55.658 5.622 54.113 5.622 L 46.628 5.622 L 46.628 13.678 L 54.113 13.678 C 55.658 13.678 56.252 13.118 56.252 11.664 Z M 54.232 3.776 C 57.054 3.776 58.391 5.036 58.391 7.692 L 58.391 11.608 C 58.391 14.265 57.054 15.524 54.231 15.524 L 46.628 15.524 L 46.628 21.621 L 50.073 21.621 L 50.073 23.356 L 41.518 23.356 L 41.518 21.621 L 44.489 21.621 L 44.489 5.511 L 41.519 5.511 L 41.519 3.776 Z M 66.57 16.191 C 64.978 16.361 64.342 16.761 64.342 18.926 C 64.342 21.091 64.978 21.776 67.207 21.776 C 70.041 21.776 71.442 21.12 73.321 19.923 L 73.321 15.507 L 66.57 16.19 Z M 78.161 23.371 L 73.321 23.371 L 73.321 21.261 C 71.887 22.771 70.295 23.484 67.175 23.484 C 63.577 23.484 62.176 22.116 62.176 18.925 C 62.176 15.733 63.577 14.85 66.507 14.594 C 68.067 14.451 70.519 14.281 73.321 14.167 L 73.321 11.687 C 73.321 10.263 72.684 9.693 71.092 9.693 L 67.144 9.693 C 65.552 9.693 64.915 10.263 64.915 11.688 L 64.915 12.115 L 62.749 12.115 L 62.749 11.858 C 62.749 9.237 64.151 7.983 67.08 7.983 L 71.155 7.983 C 74.085 7.983 75.486 9.237 75.486 11.858 L 75.486 21.718 L 78.161 21.718 L 78.161 23.37 Z M 92.908 11.873 C 91.074 10.706 89.705 10.067 86.782 10.067 C 84.45 10.067 83.827 10.622 83.827 12.012 L 83.827 19.903 C 83.827 21.293 84.45 21.848 86.782 21.848 C 89.705 21.848 91.074 21.208 92.908 20.042 L 92.908 11.872 Z M 97.697 23.46 L 92.908 23.46 L 92.908 21.404 C 91.26 22.654 89.954 23.571 86.751 23.571 C 83.081 23.571 81.713 22.348 81.713 19.792 L 81.713 12.123 C 81.713 9.567 83.081 8.344 86.751 8.344 C 89.954 8.344 91.26 9.261 92.908 10.511 L 92.908 4.788 L 89.798 4.788 L 89.798 3.176 L 95.023 3.176 L 95.023 21.848 L 97.697 21.848 Z M 113.05 7.525 C 113.05 6.07 112.463 5.511 110.936 5.511 L 105.535 5.511 C 104.008 5.511 103.421 6.071 103.421 7.525 L 103.421 9.511 C 103.421 10.993 104.096 11.468 105.535 11.776 L 111.23 13.035 C 113.52 13.538 115.457 14.098 115.457 17.035 L 115.457 19.439 C 115.457 22.097 114.136 23.356 111.347 23.356 L 105.358 23.356 C 102.569 23.356 101.248 22.097 101.248 19.439 L 101.248 17.454 L 103.362 17.454 L 103.362 19.608 C 103.362 21.062 103.949 21.621 105.476 21.621 L 111.23 21.621 C 112.756 21.621 113.343 21.062 113.343 19.608 L 113.343 17.258 C 113.343 15.776 112.668 15.3 111.23 14.992 L 105.535 13.734 C 103.245 13.23 101.308 12.671 101.308 9.734 L 101.308 7.691 C 101.308 5.034 102.628 3.775 105.417 3.775 L 111.053 3.775 C 113.842 3.775 115.164 5.034 115.164 7.691 L 115.164 9.481 L 113.05 9.481 L 113.05 7.524 Z M 131.119 11.656 C 131.119 10.265 130.502 9.708 128.187 9.708 C 125.287 9.708 123.929 10.348 122.109 11.517 L 122.109 19.693 C 123.929 20.861 125.287 21.501 128.187 21.501 C 130.502 21.501 131.119 20.945 131.119 19.554 Z M 133.217 11.766 L 133.217 19.443 C 133.217 22.002 131.86 23.225 128.218 23.225 C 125.04 23.225 123.744 22.307 122.109 21.055 L 122.109 25.951 L 125.379 25.951 L 125.379 27.564 L 117.233 27.564 L 117.233 25.951 L 120.01 25.951 L 120.01 9.708 L 117.233 9.708 L 117.233 8.096 L 122.109 8.096 L 122.109 10.154 C 123.744 8.902 125.04 7.984 128.218 7.984 C 131.86 7.984 133.217 9.208 133.217 11.767 Z M 145.65 23.407 L 137.658 23.407 L 137.658 21.852 L 140.606 21.852 L 140.606 5.384 L 137.658 5.384 L 137.658 3.828 L 142.833 3.828 L 142.833 21.852 L 145.65 21.852 Z M 156.306 23.408 L 148.314 23.408 L 148.314 21.82 L 151.262 21.82 L 151.262 9.649 L 148.314 9.649 L 148.314 7.984 L 153.489 7.984 L 153.489 21.821 L 156.306 21.821 L 156.306 23.409 Z M 161.838 20.045 C 161.838 21.445 162.465 22.005 164.034 22.005 L 166.074 22.005 L 166.074 23.742 L 163.971 23.742 C 161.085 23.742 159.704 22.51 159.704 19.933 L 159.704 10.301 L 157.194 10.301 L 157.194 8.621 L 159.704 8.621 L 159.704 4.98 L 161.838 4.98 L 161.838 8.62 L 166.074 8.62 L 166.074 10.3 L 161.838 10.3 L 161.838 20.046 Z\" fill=\"rgb(69,77,84)\"></path></g></svg>',svgContentId:10904493060,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ei96vv\",\"data-framer-name\":\"Feature Sections/Feature\",layoutDependency:layoutDependency,layoutId:\"pKCqDwBpz\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:152,width:`max(min(((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 1.7922 - 100px) / 4.216, 490px) - 96px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||832)-0-832)/2)+128+15+48+0+0+0+0+70+0,...addPropertyOverrides({FA22SHrP6:{width:`max(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.5377, 490px) - 96px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||711)-0-711)/2)+132.5+0+48+0+0+0+0+70+0},ItOsecFyw:{width:`max(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.5377, 490px) - 96px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||722)-0-722)/2)+128+10+48+0+0+0+0+70+0},Je0GRN_cw:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+0+48+0+0+0+0+70+0},mLdgNhH8b:{width:`max(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.5377, 490px) - 96px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||711)-0-711)/2)+132.5+0+48+0+0+0+0+70+0},PQLe1ujS1:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+0+48+0+0+0+0+70+0},q27rXfcoB:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+0+48+0+0+0+0+70+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gc3tsr-container\",layoutDependency:layoutDependency,layoutId:\"GHd0ZznMD-container\",children:/*#__PURE__*/_jsx(HeadingAndIntro,{FYNO2kSOt:16,height:\"100%\",HrpP6N7ov:8,hsobbYJOT:24,hUqgzIlxF:4,id:\"GHd0ZznMD\",layoutId:\"GHd0ZznMD\",MKbDxCkdU:\"var(--token-27a27431-fe37-48c5-ba99-6f2fbb127864, rgb(92, 102, 112))\",p0CuyMG90:\"var(--token-f56e7fe6-9c5b-4788-a232-ca0e487c6938, rgb(46, 51, 56))\",style:{width:\"100%\"},variant:\"PwDDpvdZu\",width:\"100%\",wkIQd2vD7:\"How PadSplit reduced fees and automated payments using Plane\",xwR2bII6x:\"Since switching to Plane, PadSplit has streamlined payments and significantly reduced fees for their contractors.\",ZBzt7yy4b:16})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-glkmm1\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"uFua8o7NZ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,width:`calc(min(((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 1.7922 - 100px) / 4.216, 490px) - 96px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||832)-0-832)/2)+128+15+48+0+0+409+0+0,...addPropertyOverrides({FA22SHrP6:{width:`calc(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.5377, 490px) - 96px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||711)-0-711)/2)+132.5+0+48+0+0+309+0+0},ItOsecFyw:{width:`calc(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.5377, 490px) - 96px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||722)-0-722)/2)+128+10+48+0+0+309+0+0},Je0GRN_cw:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+0+48+0+0+259+0+0},mLdgNhH8b:{width:`calc(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.5377, 490px) - 96px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||711)-0-711)/2)+132.5+0+48+0+0+309+0+0},PQLe1ujS1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+0+48+0+0+259+0+0},q27rXfcoB:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 144px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||728)-0-768)/2+0+0)+48+276+0+48+0+0+259+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eap6fp-container\",layoutDependency:layoutDependency,layoutId:\"I7JXolfkb-container\",children:/*#__PURE__*/_jsx(Button,{DhryqTLbd:{borderColor:\"rgba(0, 0, 0, 0.08)\",borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"I7JXolfkb\",ja5H8whs6:false,layoutId:\"I7JXolfkb\",MOuy7REKx:\"Case Study\",style:{height:\"100%\",width:\"100%\"},UKBjfkzPd:\"var(--token-e5b886d0-a1ef-4526-b382-0a2c92520ef8, rgb(153, 51, 255))\",variant:\"EVst4bu3o\",width:\"100%\",Zg5IEHU8D:\"https://plane.com/customers/padsplit\"})})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-io8yiw\",\"data-framer-name\":\"Spacer\",layoutDependency:layoutDependency,layoutId:\"vLeswh8Uh\",style:{backgroundColor:\"rgb(203, 237, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:0},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-80iux\",\"data-framer-name\":\"Frame 1361\",layoutDependency:layoutDependency,layoutId:\"YZVKov4Gu\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7ux60c\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"bnqicgrZH\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19pti94\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:139,layoutDependency:layoutDependency,layoutId:\"y3O8z8nHq\",svg:'<svg width=\"139\" height=\"25\" viewBox=\"0 0 139 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_6227_28363)\">\\n<path d=\"M28.935 12.0447L26.4246 4.84008H26.3688L23.7748 12.0447H28.935ZM28.6839 5.52518e-05L36.1314 19.6342H31.5847L30.0786 15.262H22.6313L21.0691 19.6342H16.6621L24.1931 5.52518e-05H28.6839\" fill=\"#2E3338\"/>\\n<path d=\"M41.1773 5.41744V7.39736H41.2614C41.7635 6.57236 42.4139 5.97216 43.2135 5.59619C44.0131 5.22068 44.8317 5.03254 45.6685 5.03254C46.7284 5.03254 47.5973 5.17458 48.2765 5.45866C48.9548 5.74315 49.4898 6.137 49.8799 6.64114C50.2708 7.14556 50.5447 7.75947 50.7027 8.48364C50.8608 9.20797 50.9402 10.0097 50.9402 10.8898V19.6342H46.9794V11.6047C46.9794 10.4318 46.7931 9.55602 46.4216 8.97866C46.0493 8.40099 45.3895 8.11229 44.4412 8.11229C43.3623 8.11229 42.5813 8.42857 42.0978 9.061C41.6143 9.69355 41.3726 10.7342 41.3726 12.1821V19.6342H37.4121V5.41744H41.1773Z\" fill=\"#2E3338\"/>\\n<path d=\"M61.7815 15.9492C62.2092 15.7292 62.5625 15.4362 62.8415 15.0691C63.1204 14.7027 63.3296 14.2855 63.4691 13.818C63.6085 13.3505 63.6783 12.8602 63.6783 12.3467C63.6783 11.7602 63.6225 11.2056 63.5109 10.6831C63.3993 10.1606 63.213 9.69782 62.953 9.29458C62.6923 8.89131 62.3483 8.57041 61.921 8.33201C61.4929 8.09388 60.9537 7.97452 60.3032 7.97452C59.7454 7.97452 59.2662 8.08433 58.8667 8.3044C58.4666 8.52446 58.1318 8.82267 57.8626 9.19807C57.593 9.574 57.3977 10.005 57.2769 10.4906C57.1556 10.9767 57.0955 11.4854 57.0955 12.0169C57.0955 12.5302 57.1467 13.039 57.249 13.5429C57.3508 14.0473 57.5279 14.501 57.7789 14.9043C58.03 15.3077 58.3596 15.6376 58.7691 15.8942C59.1778 16.1511 59.6896 16.2791 60.3032 16.2791C60.8611 16.2791 61.3535 16.1693 61.7815 15.9492V15.9492ZM67.2067 20.6789C67.0486 21.4122 66.7089 22.0951 66.1886 22.7277C65.6676 23.3598 64.9145 23.8962 63.9293 24.3363C62.9434 24.7764 61.6231 24.9965 59.9685 24.9965C59.2615 24.9965 58.5409 24.9092 57.8068 24.7351C57.0719 24.5608 56.4025 24.29 55.7985 23.9238C55.1942 23.5568 54.6921 23.0853 54.2923 22.5075C53.8921 21.9303 53.6647 21.238 53.6089 20.4312H57.5418C57.7274 21.1645 58.09 21.6732 58.6297 21.9574C59.1685 22.2417 59.7915 22.3841 60.4985 22.3841C61.6142 22.3841 62.4273 22.0537 62.9391 21.394C63.4505 20.7341 63.6965 19.8994 63.6783 18.8916V17.0216H63.6225C63.1944 17.7735 62.5858 18.3276 61.7955 18.6854C61.0048 19.043 60.1731 19.2213 59.2991 19.2213C58.2206 19.2213 57.2908 19.0338 56.5098 18.6578C55.7288 18.2821 55.0873 17.7688 54.5852 17.1179C54.0831 16.4674 53.7159 15.7064 53.4834 14.8354C53.2506 13.9648 53.1348 13.0436 53.1348 12.0719C53.1348 11.1553 53.2692 10.2706 53.5392 9.4181C53.8085 8.56579 54.2036 7.81415 54.7247 7.16323C55.2449 6.51262 55.8911 5.99465 56.6632 5.60959C57.4345 5.22464 58.3228 5.03219 59.327 5.03219C60.2753 5.03219 61.1071 5.20646 61.8234 5.55466C62.5389 5.90302 63.1386 6.48951 63.6225 7.31451H63.6783V5.41709H67.4438V18.7267C67.4438 19.2951 67.3644 19.9456 67.2067 20.6789\" fill=\"#2E3338\"/>\\n<path d=\"M78.9988 8.74504C78.5242 8.23195 77.8037 7.97518 76.8371 7.97518C76.2045 7.97518 75.6792 8.08067 75.2608 8.29134C74.8424 8.50243 74.508 8.76352 74.257 9.07518C74.0056 9.38713 73.8289 9.71701 73.7267 10.0651C73.6244 10.4136 73.564 10.7249 73.5457 11.0001H79.9886C79.803 10.01 79.4726 9.25869 78.9988 8.74504V8.74504ZM74.5216 16.2247C75.1167 16.7933 75.972 17.0773 77.0881 17.0773C77.8873 17.0773 78.5754 16.8804 79.1522 16.4859C79.7283 16.0921 80.0816 15.6748 80.2121 15.2348H83.6987C83.1405 16.9398 82.2851 18.159 81.1326 18.8922C79.9793 19.6255 78.5847 19.9921 76.9487 19.9921C75.814 19.9921 74.7912 19.8135 73.8801 19.4562C72.9689 19.0986 72.1972 18.5898 71.5654 17.93C70.9327 17.2698 70.4446 16.4816 70.101 15.5648C69.7566 14.6484 69.585 13.64 69.585 12.5398C69.585 11.4769 69.7612 10.487 70.1149 9.57004C70.4678 8.65356 70.9699 7.86091 71.6211 7.19135C72.2716 6.52252 73.0479 5.9953 73.9502 5.61024C74.8517 5.2253 75.8512 5.03284 76.9487 5.03284C78.176 5.03284 79.2448 5.26651 80.1564 5.73406C81.0671 6.20147 81.8156 6.82955 82.4013 7.61774C82.9875 8.40623 83.4101 9.30448 83.6709 10.3124C83.9308 11.321 84.0238 12.375 83.9494 13.475H73.5457C73.6015 14.7399 73.9266 15.6569 74.5216 16.2247\" fill=\"#2E3338\"/>\\n<path d=\"M90.018 5.52518e-05V19.6342H86.0576V5.52518e-05H90.018\" fill=\"#2E3338\"/>\\n<path d=\"M97.5559 5.52518e-05V16.0045H107.262V19.6342H93.1768V5.52518e-05H97.5559\" fill=\"#2E3338\"/>\\n<path d=\"M112.864 5.41744V19.6342H108.902V5.41744H112.864ZM108.902 3.21765V5.52518e-05H112.864V3.21765H108.902Z\" fill=\"#2E3338\"/>\\n<path d=\"M119.04 16.101C119.217 16.4036 119.445 16.6511 119.724 16.8436C120.003 17.036 120.324 17.1782 120.686 17.2698C121.049 17.3617 121.425 17.4072 121.816 17.4072C122.095 17.4072 122.388 17.3755 122.694 17.311C123.001 17.247 123.28 17.146 123.531 17.0086C123.782 16.8711 123.992 16.6879 124.159 16.4586C124.326 16.2296 124.41 15.941 124.41 15.5923C124.41 15.0058 124.015 14.5659 123.225 14.2724C122.434 13.9794 121.332 13.6859 119.919 13.3923C119.342 13.2645 118.78 13.1132 118.231 12.9386C117.683 12.7647 117.195 12.5357 116.767 12.2511C116.339 11.9673 115.996 11.6097 115.735 11.1788C115.474 10.7484 115.345 10.2211 115.345 9.59765C115.345 8.68102 115.526 7.92954 115.889 7.34263C116.251 6.75614 116.729 6.29351 117.325 5.95409C117.92 5.61502 118.589 5.37643 119.333 5.23905C120.077 5.10163 120.84 5.03284 121.62 5.03284C122.401 5.03284 123.159 5.10625 123.894 5.25276C124.628 5.39957 125.283 5.64721 125.86 5.9953C126.437 6.34366 126.915 6.80644 127.297 7.3838C127.677 7.96132 127.906 8.69011 127.98 9.57004H124.214C124.159 8.81856 123.87 8.30968 123.35 8.04382C122.829 7.77826 122.215 7.6452 121.509 7.6452C121.286 7.6452 121.044 7.65891 120.784 7.68637C120.523 7.71398 120.286 7.77364 120.072 7.86523C119.858 7.95716 119.678 8.08991 119.528 8.26388C119.379 8.43827 119.305 8.67205 119.305 8.96507C119.305 9.31358 119.435 9.59765 119.696 9.81757C119.956 10.0376 120.295 10.2162 120.714 10.3539C121.133 10.4913 121.611 10.615 122.15 10.7249C122.69 10.835 123.238 10.9545 123.796 11.0826C124.372 11.211 124.935 11.3669 125.484 11.55C126.032 11.7335 126.52 11.9763 126.948 12.2788C127.376 12.5813 127.72 12.9573 127.98 13.4062C128.24 13.8555 128.37 14.4098 128.37 15.0698C128.37 16.0048 128.18 16.7885 127.799 17.4211C127.417 18.0535 126.92 18.5622 126.306 18.9475C125.693 19.3324 124.991 19.6031 124.201 19.7583C123.41 19.9142 122.606 19.9921 121.788 19.9921C120.951 19.9921 120.133 19.9097 119.333 19.7448C118.534 19.5797 117.822 19.3047 117.199 18.9198C116.576 18.5349 116.065 18.0262 115.666 17.3935C115.265 16.761 115.047 15.9683 115.01 15.0148H118.776C118.776 15.4368 118.863 15.7986 119.04 16.101\" fill=\"#2E3338\"/>\\n<path d=\"M138.409 5.41806V8.03057H135.508V15.0701C135.508 15.7301 135.62 16.1703 135.843 16.39C136.066 16.6101 136.513 16.7202 137.182 16.7202C137.405 16.7202 137.618 16.7109 137.823 16.6926C138.028 16.6744 138.223 16.6471 138.409 16.6101V19.6348C138.075 19.69 137.702 19.7265 137.294 19.7452C136.884 19.7631 136.485 19.7725 136.095 19.7725C135.481 19.7725 134.899 19.731 134.351 19.6489C133.802 19.5661 133.319 19.4058 132.901 19.1675C132.482 18.9294 132.152 18.5901 131.91 18.15C131.668 17.71 131.548 17.1327 131.548 16.4176V8.03057H129.148V5.41806H131.548V1.15585H135.508V5.41806H138.409\" fill=\"#2E3338\"/>\\n<path d=\"M10.595 8.43631C11.2032 6.80712 11.6778 5.4622 12.0183 4.40143C12.3588 3.3407 12.529 2.68947 12.529 2.44779C12.529 2.18819 12.4723 1.98676 12.3588 1.84354C12.2451 1.70062 12.0885 1.62871 11.8889 1.62871C11.6347 1.62871 11.3759 1.83686 11.1126 2.25308C10.8491 2.66935 10.5587 3.33875 10.2409 4.26046L8.87898 8.14089L10.595 8.43631ZM8.78364 12.0482C8.39322 12.0303 8.02306 11.99 7.67362 11.9274C7.32407 11.8648 6.9904 11.7752 6.67262 11.6588C6.81774 11.9455 6.94713 12.2317 7.06075 12.5182C7.17426 12.8049 7.26716 13.0869 7.33995 13.3641C7.55787 13.0955 7.78713 12.8519 8.02774 12.6323C8.2682 12.413 8.52017 12.2183 8.78364 12.0482ZM7.24461 7.97976L5.77373 3.7905C5.39238 2.72526 5.09729 2.02962 4.88844 1.70257C4.67944 1.37583 4.45262 1.21248 4.20747 1.21248C4.01679 1.21248 3.86229 1.2844 3.7444 1.42732C3.62636 1.57054 3.56735 1.76299 3.56735 2.00468C3.56735 2.41643 3.72609 3.13255 4.04403 4.15302C4.36181 5.1735 4.83851 6.51174 5.47408 8.16774C5.52855 8.06928 5.6056 7.99992 5.70563 7.95963C5.8055 7.91933 5.94167 7.89921 6.11422 7.89921C6.16869 7.89921 6.27762 7.90383 6.44107 7.91265C6.60451 7.92159 6.87221 7.94427 7.24461 7.97976V7.97976ZM5.9099 14.4651C6.06428 14.4651 6.20483 14.396 6.33213 14.257C6.45924 14.1182 6.52277 13.9683 6.52277 13.8072C6.52277 13.6374 6.39795 13.2413 6.14823 12.6188C5.8984 11.9967 5.58759 11.3858 5.21529 10.7861C4.94291 10.3385 4.67506 10.0006 4.41175 9.7723C4.14828 9.54406 3.89875 9.4299 3.66268 9.4299C3.47201 9.4299 3.26091 9.54883 3.02938 9.78574C2.79784 10.023 2.68207 10.2445 2.68207 10.4504C2.68207 10.6652 2.79557 10.9874 3.02256 11.4171C3.2494 11.8468 3.55373 12.3033 3.93509 12.7867C4.33458 13.3151 4.7114 13.7266 5.06549 14.022C5.41961 14.3174 5.70094 14.4651 5.9099 14.4651V14.4651ZM1.82404 14.1429C1.95116 14.2953 2.12821 14.5188 2.35521 14.8142C2.95447 15.6288 3.50817 16.0361 4.01679 16.0361C4.18915 16.0361 4.34364 15.9824 4.47985 15.8749C4.61606 15.7675 4.68417 15.6556 4.68417 15.5393C4.68417 15.405 4.59336 15.1814 4.41175 14.8679C4.23002 14.5546 3.98045 14.2012 3.66268 13.8072C3.29949 13.3506 2.99744 13.0172 2.75698 12.8068C2.51637 12.5968 2.32328 12.4913 2.17815 12.4913C1.86021 12.4913 1.56739 12.6591 1.29969 12.9948C1.03184 13.3305 0.897913 13.7266 0.897913 14.1831C0.897913 14.5505 0.990982 14.96 1.17712 15.4117C1.3631 15.8637 1.63337 16.3181 1.98748 16.7746C2.52318 17.4818 3.18812 18.0254 3.98274 18.4058C4.77722 18.7867 5.65569 18.9765 6.61811 18.9765C8.38869 18.9765 9.87092 18.3252 11.0649 17.023C12.2587 15.7205 12.8559 14.0891 12.8559 12.1288C12.8559 11.5292 12.8103 11.0527 12.7197 10.6988C12.6289 10.3452 12.4791 10.0878 12.2702 9.92671C11.8978 9.62251 11.1739 9.34935 10.0979 9.10767C9.02197 8.86598 7.89835 8.74514 6.72709 8.74514C6.4002 8.74514 6.16869 8.79884 6.03248 8.90624C5.89631 9.01367 5.8282 9.19715 5.8282 9.45675C5.8282 10.0658 6.17322 10.5063 6.8633 10.7793C7.55318 11.0527 8.66998 11.1889 10.2137 11.1889H10.7721C10.8992 11.1889 11.0014 11.2358 11.0785 11.3298C11.1555 11.4238 11.2079 11.5648 11.2351 11.7528C11.0807 11.896 10.763 12.0597 10.2818 12.2429C9.80041 12.4264 9.43269 12.6077 9.1786 12.7867C8.63383 13.1809 8.19572 13.6483 7.8643 14.1898C7.53276 14.7317 7.36719 15.2439 7.36719 15.7272C7.36719 16.0226 7.43742 16.3785 7.57832 16.7947C7.71903 17.211 7.78942 17.4683 7.78942 17.5668V17.6608L7.76218 17.7816C7.3625 17.7548 7.04716 17.5246 6.81561 17.0901C6.58406 16.6559 6.4683 16.0764 6.4683 15.3513V15.2304C6.39551 15.2931 6.32531 15.3379 6.25721 15.3647C6.1891 15.3916 6.11422 15.405 6.03248 15.405C5.95077 15.405 5.8736 15.3983 5.80097 15.3849C5.72817 15.3714 5.64643 15.3513 5.55582 15.3244C5.58305 15.423 5.60347 15.5191 5.61711 15.6131C5.6307 15.7071 5.63752 15.7809 5.63752 15.8347C5.63752 16.1659 5.50584 16.4504 5.24257 16.6873C4.9791 16.9245 4.66584 17.0431 4.30281 17.0431C3.73078 17.0431 3.14968 16.7679 2.5595 16.2173C1.96917 15.6668 1.67423 15.1278 1.67423 14.5994C1.67423 14.5009 1.68558 14.4136 1.70828 14.3375C1.73082 14.2616 1.76956 14.1966 1.82404 14.1429V14.1429ZM11.5756 8.66455C12.3928 8.81702 12.9694 9.1569 13.3053 9.68503C13.6411 10.2135 13.8092 11.046 13.8092 12.1825C13.8092 14.4382 13.1214 16.2845 11.7459 17.7212C10.3703 19.1577 8.61113 19.8761 6.4683 19.8761C5.62389 19.8761 4.80446 19.7262 4.00998 19.4263C3.21535 19.1264 2.53226 18.7079 1.96024 18.1709C1.3065 17.5802 0.816198 16.9558 0.489329 16.2979C0.162458 15.64 -0.000976562 14.9665 -0.000976562 14.2771C-0.000976562 13.5073 0.166998 12.9122 0.502946 12.4913C0.838745 12.0706 1.36991 11.7844 2.09643 11.6319C1.96024 11.3186 1.86021 11.0546 1.79681 10.8397C1.73325 10.6249 1.70147 10.4593 1.70147 10.3429C1.70147 9.94016 1.91711 9.52867 2.34839 9.10767C2.77953 8.68693 3.186 8.47657 3.56735 8.47657C3.73078 8.47657 3.90313 8.50567 4.0849 8.56384C4.26647 8.62235 4.47517 8.71825 4.7114 8.85254C4.01211 6.90111 3.50379 5.39505 3.186 4.33429C2.86806 3.27356 2.70931 2.54178 2.70931 2.13896C2.70931 1.58398 2.85444 1.14339 3.14514 0.816384C3.43569 0.489644 3.83066 0.326292 4.33005 0.326292C5.18337 0.326292 6.26403 2.20611 7.5715 5.96569C7.79833 6.6102 7.97099 7.10701 8.08903 7.45613C8.1889 7.17893 8.32949 6.78474 8.51126 6.27452C9.81874 2.55072 10.9444 0.688819 11.8889 0.688819C12.3519 0.688819 12.7218 0.843233 12.9989 1.15206C13.2758 1.46089 13.4143 1.8752 13.4143 2.39405C13.4143 2.78824 13.2622 3.50852 12.958 4.55584C12.6537 5.60317 12.1931 6.97272 11.5756 8.66455\" fill=\"#2E3338\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6227_28363\">\\n<rect width=\"138.41\" height=\"24.9972\" rx=\"6.43471\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ybtjx8\",\"data-framer-name\":\"Feature Sections/Feature\",layoutDependency:layoutDependency,layoutId:\"wG8AB9aOl\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kvocal\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"v2csoAijg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2lyY3VsYXIgU3RkLTcwMA==\",\"--framer-font-family\":'\"Circular Std\", \"Circular Std Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(25, 25, 25))\"},children:\"How AngelList streamlined contractor payments using Plane\"})}),className:\"framer-1by0sfq\",\"data-framer-name\":\"Title\",fonts:[\"GF;Circular Std-700\"],layoutDependency:layoutDependency,layoutId:\"DLJ2kWCuM\",style:{\"--extracted-r6o4lv\":\"rgb(25, 25, 25)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U0YgVUkgRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"SF UI Display\", \"SF UI Display Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 114, 131))\"},children:\"Since partnering with Plane, AngelList has seen significant time savings and no longer pays costly transaction fees.\"})}),className:\"framer-18nn4mh\",\"data-framer-name\":\"Description\",fonts:[\"GF;SF UI Display-regular\"],layoutDependency:layoutDependency,layoutId:\"RAfeKKgoX\",style:{\"--extracted-r6o4lv\":\"rgb(97, 114, 131)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-37xpc9\",\"data-framer-name\":\"Headers/Button link\",layoutDependency:layoutDependency,layoutId:\"fE3ECbliz\",style:{backgroundColor:\"rgb(153, 51, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Read the story\"})}),className:\"framer-w1kjj6\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"WlN7RqsM2\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cu3bR.framer-16kjz8e, .framer-cu3bR .framer-16kjz8e { display: block; }\",\".framer-cu3bR.framer-1babcsf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-cu3bR .framer-1td1uk4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 128px 64px 128px 64px; position: relative; width: 1px; }\",\".framer-cu3bR .framer-2te4or { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 576px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 39%; }\",\".framer-cu3bR .framer-141psac-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-cu3bR .framer-sgszy1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 78px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-cu3bR .framer-ychor7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-cu3bR .framer-4ts7xj-container { flex: none; height: 64px; position: relative; width: auto; }\",\".framer-cu3bR .framer-gycz8x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 100px; position: relative; width: 179%; }\",\".framer-cu3bR .framer-1pidtt9, .framer-cu3bR .framer-1d8u7v7, .framer-cu3bR .framer-p8b3fy { 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; max-width: 490px; overflow: hidden; padding: 48px; position: relative; width: 24%; will-change: var(--framer-will-change-override, transform); }\",\".framer-cu3bR .framer-1gy1gd0, .framer-cu3bR .framer-omzxs1, .framer-cu3bR .framer-1edu0vc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 450px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cu3bR .framer-10etsck, .framer-cu3bR .framer-jfz2lq, .framer-cu3bR .framer-1oehfik { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cu3bR .framer-1r13nu3, .framer-cu3bR .framer-mt6vgh, .framer-cu3bR .framer-7ux60c { aspect-ratio: 3.0434782608695654 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 140px; }\",\".framer-cu3bR .framer-n6ce4e, .framer-cu3bR .framer-19pti94 { flex: none; height: 25px; left: 0px; position: absolute; top: 12px; width: 139px; }\",\".framer-cu3bR .framer-lkxuwc, .framer-cu3bR .framer-i3fmji, .framer-cu3bR .framer-ei96vv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cu3bR .framer-16m1ae7-container, .framer-cu3bR .framer-cyyyoa-container, .framer-cu3bR .framer-1gc3tsr-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-cu3bR .framer-1rme8tv, .framer-cu3bR .framer-1kpmxek, .framer-cu3bR .framer-glkmm1 { 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-cu3bR .framer-1hpcv48-container, .framer-cu3bR .framer-60ht36-container, .framer-cu3bR .framer-1eap6fp-container { cursor: pointer; flex: none; height: 41px; position: relative; width: 100%; }\",\".framer-cu3bR .framer-mb5iri { flex: none; height: 29px; left: 0px; position: absolute; top: 1px; width: 123px; }\",\".framer-cu3bR .framer-1xemv1h { flex: none; height: 46px; overflow: visible; position: relative; width: 183px; }\",\".framer-cu3bR .framer-190e597 { flex: none; height: 28px; left: 0px; position: absolute; top: 0px; width: 167px; }\",\".framer-cu3bR .framer-io8yiw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 576px; justify-content: flex-start; max-width: 500px; overflow: hidden; padding: 32px; position: relative; width: 24%; will-change: var(--framer-will-change-override, transform); }\",\".framer-cu3bR .framer-80iux { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 137px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-cu3bR .framer-1ybtjx8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 334px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cu3bR .framer-kvocal { 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-cu3bR .framer-1by0sfq, .framer-cu3bR .framer-18nn4mh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 436px; word-break: break-word; word-wrap: break-word; }\",\".framer-cu3bR .framer-37xpc9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 9px 17px 9px 17px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-cu3bR .framer-w1kjj6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cu3bR.framer-1babcsf, .framer-cu3bR .framer-1td1uk4, .framer-cu3bR .framer-sgszy1, .framer-cu3bR .framer-gycz8x, .framer-cu3bR .framer-1pidtt9, .framer-cu3bR .framer-10etsck, .framer-cu3bR .framer-lkxuwc, .framer-cu3bR .framer-1rme8tv, .framer-cu3bR .framer-1d8u7v7, .framer-cu3bR .framer-jfz2lq, .framer-cu3bR .framer-i3fmji, .framer-cu3bR .framer-1kpmxek, .framer-cu3bR .framer-p8b3fy, .framer-cu3bR .framer-1oehfik, .framer-cu3bR .framer-ei96vv, .framer-cu3bR .framer-glkmm1, .framer-cu3bR .framer-io8yiw, .framer-cu3bR .framer-80iux, .framer-cu3bR .framer-1ybtjx8, .framer-cu3bR .framer-kvocal, .framer-cu3bR .framer-37xpc9 { gap: 0px; } .framer-cu3bR.framer-1babcsf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cu3bR.framer-1babcsf > :first-child, .framer-cu3bR .framer-1td1uk4 > :first-child, .framer-cu3bR .framer-sgszy1 > :first-child, .framer-cu3bR .framer-gycz8x > :first-child, .framer-cu3bR .framer-lkxuwc > :first-child, .framer-cu3bR .framer-i3fmji > :first-child, .framer-cu3bR .framer-ei96vv > :first-child, .framer-cu3bR .framer-1ybtjx8 > :first-child, .framer-cu3bR .framer-37xpc9 > :first-child { margin-left: 0px; } .framer-cu3bR.framer-1babcsf > :last-child, .framer-cu3bR .framer-1td1uk4 > :last-child, .framer-cu3bR .framer-sgszy1 > :last-child, .framer-cu3bR .framer-gycz8x > :last-child, .framer-cu3bR .framer-lkxuwc > :last-child, .framer-cu3bR .framer-i3fmji > :last-child, .framer-cu3bR .framer-ei96vv > :last-child, .framer-cu3bR .framer-1ybtjx8 > :last-child, .framer-cu3bR .framer-37xpc9 > :last-child { margin-right: 0px; } .framer-cu3bR .framer-1td1uk4 > *, .framer-cu3bR .framer-gycz8x > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-cu3bR .framer-sgszy1 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-cu3bR .framer-1pidtt9 > *, .framer-cu3bR .framer-1rme8tv > *, .framer-cu3bR .framer-1d8u7v7 > *, .framer-cu3bR .framer-1kpmxek > *, .framer-cu3bR .framer-p8b3fy > *, .framer-cu3bR .framer-glkmm1 > *, .framer-cu3bR .framer-io8yiw > *, .framer-cu3bR .framer-80iux > *, .framer-cu3bR .framer-kvocal > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-cu3bR .framer-1pidtt9 > :first-child, .framer-cu3bR .framer-10etsck > :first-child, .framer-cu3bR .framer-1rme8tv > :first-child, .framer-cu3bR .framer-1d8u7v7 > :first-child, .framer-cu3bR .framer-jfz2lq > :first-child, .framer-cu3bR .framer-1kpmxek > :first-child, .framer-cu3bR .framer-p8b3fy > :first-child, .framer-cu3bR .framer-1oehfik > :first-child, .framer-cu3bR .framer-glkmm1 > :first-child, .framer-cu3bR .framer-io8yiw > :first-child, .framer-cu3bR .framer-80iux > :first-child, .framer-cu3bR .framer-kvocal > :first-child { margin-top: 0px; } .framer-cu3bR .framer-1pidtt9 > :last-child, .framer-cu3bR .framer-10etsck > :last-child, .framer-cu3bR .framer-1rme8tv > :last-child, .framer-cu3bR .framer-1d8u7v7 > :last-child, .framer-cu3bR .framer-jfz2lq > :last-child, .framer-cu3bR .framer-1kpmxek > :last-child, .framer-cu3bR .framer-p8b3fy > :last-child, .framer-cu3bR .framer-1oehfik > :last-child, .framer-cu3bR .framer-glkmm1 > :last-child, .framer-cu3bR .framer-io8yiw > :last-child, .framer-cu3bR .framer-80iux > :last-child, .framer-cu3bR .framer-kvocal > :last-child { margin-bottom: 0px; } .framer-cu3bR .framer-10etsck > *, .framer-cu3bR .framer-jfz2lq > *, .framer-cu3bR .framer-1oehfik > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-cu3bR .framer-lkxuwc > *, .framer-cu3bR .framer-i3fmji > *, .framer-cu3bR .framer-ei96vv > *, .framer-cu3bR .framer-1ybtjx8 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-cu3bR .framer-37xpc9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-cu3bR.framer-v-1pful52 .framer-ychor7-container, .framer-cu3bR.framer-v-97lidt .framer-ychor7-container, .framer-cu3bR.framer-v-lhmtqy .framer-ychor7-container, .framer-cu3bR.framer-v-tvk6x .framer-ychor7-container, .framer-cu3bR.framer-v-1fleiu .framer-ychor7-container, .framer-cu3bR.framer-v-3vfi8t .framer-ychor7-container { height: 64px; }\",\".framer-cu3bR.framer-v-1pful52 .framer-1pidtt9, .framer-cu3bR.framer-v-97lidt .framer-1pidtt9, .framer-cu3bR.framer-v-97lidt .framer-1d8u7v7 { left: 100px; position: absolute; top: 50%; width: 23%; z-index: 0; }\",\".framer-cu3bR.framer-v-y2uguw.framer-1babcsf, .framer-cu3bR.framer-v-lhmtqy.framer-1babcsf, .framer-cu3bR.framer-v-tvk6x.framer-1babcsf { flex-direction: column; }\",\".framer-cu3bR.framer-v-y2uguw .framer-1td1uk4, .framer-cu3bR.framer-v-lhmtqy .framer-1td1uk4, .framer-cu3bR.framer-v-tvk6x .framer-1td1uk4 { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; padding: 48px 24px 48px 24px; width: 100%; }\",\".framer-cu3bR.framer-v-y2uguw .framer-2te4or, .framer-cu3bR.framer-v-lhmtqy .framer-2te4or, .framer-cu3bR.framer-v-tvk6x .framer-2te4or { gap: 0px; height: min-content; justify-content: center; width: 100%; }\",\".framer-cu3bR.framer-v-y2uguw .framer-sgszy1, .framer-cu3bR.framer-v-lhmtqy .framer-sgszy1, .framer-cu3bR.framer-v-tvk6x .framer-sgszy1 { height: min-content; padding: 24px 0px 0px 0px; }\",\".framer-cu3bR.framer-v-y2uguw .framer-gycz8x, .framer-cu3bR.framer-v-lhmtqy .framer-gycz8x, .framer-cu3bR.framer-v-tvk6x .framer-gycz8x { padding: 0px; width: 100%; }\",\".framer-cu3bR.framer-v-y2uguw .framer-1pidtt9, .framer-cu3bR.framer-v-y2uguw .framer-1d8u7v7, .framer-cu3bR.framer-v-y2uguw .framer-p8b3fy, .framer-cu3bR.framer-v-lhmtqy .framer-1d8u7v7, .framer-cu3bR.framer-v-lhmtqy .framer-p8b3fy, .framer-cu3bR.framer-v-tvk6x .framer-p8b3fy { max-width: unset; width: 100%; }\",\".framer-cu3bR.framer-v-y2uguw .framer-1gy1gd0, .framer-cu3bR.framer-v-y2uguw .framer-omzxs1, .framer-cu3bR.framer-v-y2uguw .framer-1edu0vc, .framer-cu3bR.framer-v-lhmtqy .framer-1gy1gd0, .framer-cu3bR.framer-v-lhmtqy .framer-omzxs1, .framer-cu3bR.framer-v-lhmtqy .framer-1edu0vc, .framer-cu3bR.framer-v-tvk6x .framer-omzxs1, .framer-cu3bR.framer-v-tvk6x .framer-1edu0vc { height: 300px; }\",\".framer-cu3bR.framer-v-y2uguw .framer-io8yiw, .framer-cu3bR.framer-v-lhmtqy .framer-io8yiw, .framer-cu3bR.framer-v-tvk6x .framer-io8yiw { height: 20px; max-width: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cu3bR.framer-v-y2uguw.framer-1babcsf, .framer-cu3bR.framer-v-y2uguw .framer-1td1uk4, .framer-cu3bR.framer-v-y2uguw .framer-2te4or { gap: 0px; } .framer-cu3bR.framer-v-y2uguw.framer-1babcsf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cu3bR.framer-v-y2uguw.framer-1babcsf > :first-child, .framer-cu3bR.framer-v-y2uguw .framer-1td1uk4 > :first-child, .framer-cu3bR.framer-v-y2uguw .framer-2te4or > :first-child { margin-top: 0px; } .framer-cu3bR.framer-v-y2uguw.framer-1babcsf > :last-child, .framer-cu3bR.framer-v-y2uguw .framer-1td1uk4 > :last-child, .framer-cu3bR.framer-v-y2uguw .framer-2te4or > :last-child { margin-bottom: 0px; } .framer-cu3bR.framer-v-y2uguw .framer-1td1uk4 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-cu3bR.framer-v-y2uguw .framer-2te4or > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-cu3bR.framer-v-lhmtqy .framer-1pidtt9, .framer-cu3bR.framer-v-tvk6x .framer-1d8u7v7 { left: 50%; max-width: unset; position: absolute; top: 50%; width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cu3bR.framer-v-lhmtqy.framer-1babcsf, .framer-cu3bR.framer-v-lhmtqy .framer-1td1uk4, .framer-cu3bR.framer-v-lhmtqy .framer-2te4or { gap: 0px; } .framer-cu3bR.framer-v-lhmtqy.framer-1babcsf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cu3bR.framer-v-lhmtqy.framer-1babcsf > :first-child, .framer-cu3bR.framer-v-lhmtqy .framer-1td1uk4 > :first-child, .framer-cu3bR.framer-v-lhmtqy .framer-2te4or > :first-child { margin-top: 0px; } .framer-cu3bR.framer-v-lhmtqy.framer-1babcsf > :last-child, .framer-cu3bR.framer-v-lhmtqy .framer-1td1uk4 > :last-child, .framer-cu3bR.framer-v-lhmtqy .framer-2te4or > :last-child { margin-bottom: 0px; } .framer-cu3bR.framer-v-lhmtqy .framer-1td1uk4 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-cu3bR.framer-v-lhmtqy .framer-2te4or > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cu3bR.framer-v-tvk6x.framer-1babcsf, .framer-cu3bR.framer-v-tvk6x .framer-1td1uk4, .framer-cu3bR.framer-v-tvk6x .framer-2te4or { gap: 0px; } .framer-cu3bR.framer-v-tvk6x.framer-1babcsf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cu3bR.framer-v-tvk6x.framer-1babcsf > :first-child, .framer-cu3bR.framer-v-tvk6x .framer-1td1uk4 > :first-child, .framer-cu3bR.framer-v-tvk6x .framer-2te4or > :first-child { margin-top: 0px; } .framer-cu3bR.framer-v-tvk6x.framer-1babcsf > :last-child, .framer-cu3bR.framer-v-tvk6x .framer-1td1uk4 > :last-child, .framer-cu3bR.framer-v-tvk6x .framer-2te4or > :last-child { margin-bottom: 0px; } .framer-cu3bR.framer-v-tvk6x .framer-1td1uk4 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-cu3bR.framer-v-tvk6x .framer-2te4or > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-cu3bR.framer-v-cob0i8.framer-1babcsf, .framer-cu3bR.framer-v-1fleiu.framer-1babcsf, .framer-cu3bR.framer-v-3vfi8t.framer-1babcsf { width: 1024px; }\",\".framer-cu3bR.framer-v-cob0i8 .framer-2te4or, .framer-cu3bR.framer-v-1fleiu .framer-2te4or, .framer-cu3bR.framer-v-3vfi8t .framer-2te4or { height: 455px; }\",\".framer-cu3bR.framer-v-cob0i8 .framer-gycz8x, .framer-cu3bR.framer-v-1fleiu .framer-gycz8x, .framer-cu3bR.framer-v-3vfi8t .framer-gycz8x { padding: 0px; }\",\".framer-cu3bR.framer-v-cob0i8 .framer-1pidtt9, .framer-cu3bR.framer-v-cob0i8 .framer-1d8u7v7, .framer-cu3bR.framer-v-cob0i8 .framer-p8b3fy, .framer-cu3bR.framer-v-1fleiu .framer-1d8u7v7, .framer-cu3bR.framer-v-1fleiu .framer-p8b3fy, .framer-cu3bR.framer-v-3vfi8t .framer-p8b3fy { width: 30%; }\",\".framer-cu3bR.framer-v-cob0i8 .framer-1gy1gd0 { height: 370px; }\",\".framer-cu3bR.framer-v-cob0i8 .framer-omzxs1, .framer-cu3bR.framer-v-cob0i8 .framer-1edu0vc, .framer-cu3bR.framer-v-1fleiu .framer-omzxs1, .framer-cu3bR.framer-v-1fleiu .framer-1edu0vc, .framer-cu3bR.framer-v-3vfi8t .framer-1edu0vc { height: 350px; }\",\".framer-cu3bR.framer-v-cob0i8 .framer-io8yiw, .framer-cu3bR.framer-v-1fleiu .framer-io8yiw, .framer-cu3bR.framer-v-3vfi8t .framer-io8yiw { height: 300px; width: 30%; }\",'.framer-cu3bR[data-border=\"true\"]::after, .framer-cu3bR [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 832\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TpLjgxsWa\":{\"layout\":[\"fixed\",\"auto\"]},\"rdF_6Jb2k\":{\"layout\":[\"fixed\",\"auto\"]},\"Je0GRN_cw\":{\"layout\":[\"fixed\",\"auto\"]},\"PQLe1ujS1\":{\"layout\":[\"fixed\",\"auto\"]},\"q27rXfcoB\":{\"layout\":[\"fixed\",\"auto\"]},\"ItOsecFyw\":{\"layout\":[\"fixed\",\"auto\"]},\"FA22SHrP6\":{\"layout\":[\"fixed\",\"auto\"]},\"mLdgNhH8b\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"fiasu9zo9\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKpAblWMdA=withCSS(Component,css,\"framer-cu3bR\");export default FramerKpAblWMdA;FramerKpAblWMdA.displayName=\"Customer Stories\";FramerKpAblWMdA.defaultProps={height:832,width:1280};addPropertyControls(FramerKpAblWMdA,{variant:{options:[\"tWs4x_DG9\",\"TpLjgxsWa\",\"rdF_6Jb2k\",\"Je0GRN_cw\",\"PQLe1ujS1\",\"q27rXfcoB\",\"ItOsecFyw\",\"FA22SHrP6\",\"mLdgNhH8b\"],optionTitles:[\"1\",\"2\",\"3\",\"Mobile 1\",\"Mobile 2\",\"Mobile 3\",\"Tablet-1\",\"Tablet-2\",\"Tablet-3\"],title:\"Variant\",type:ControlType.Enum},fiasu9zo9:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerKpAblWMdA,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...HeadingAndIntroFonts,...ButtonRight2Fonts,...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKpAblWMdA\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"fiasu9zo9\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"832\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TpLjgxsWa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rdF_6Jb2k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Je0GRN_cw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PQLe1ujS1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"q27rXfcoB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ItOsecFyw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FA22SHrP6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mLdgNhH8b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (dc5e905)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import FramerIcon from\"https://framerusercontent.com/modules/bjUTEQt5uFu8cIOVtWXD/ySWZTeQlUTMamSsroYZy/FramerIcon.js\";import Button from\"#framer/local/canvasComponent/C8gGkBsPY/C8gGkBsPY.js\";import SupportYourWholeTeam from\"#framer/local/canvasComponent/dBaxddP_c/dBaxddP_c.js\";import BioCard from\"#framer/local/canvasComponent/eTFvcAHlT/eTFvcAHlT.js\";import Card from\"#framer/local/canvasComponent/f8Aqaiqcq/f8Aqaiqcq.js\";import Navigation from\"#framer/local/canvasComponent/fzlJsWEVm/fzlJsWEVm.js\";import G2Testimonials from\"#framer/local/canvasComponent/jXTtAJtRU/jXTtAJtRU.js\";import CustomerStories from\"#framer/local/canvasComponent/KpAblWMdA/KpAblWMdA.js\";import G2Badges from\"#framer/local/canvasComponent/ncAVb0W_d/ncAVb0W_d.js\";import Footer from\"#framer/local/canvasComponent/QMXRYdw_I/QMXRYdw_I.js\";import Testimonials from\"#framer/local/canvasComponent/QrPFdSb_N/QrPFdSb_N.js\";import MainCTA from\"#framer/local/canvasComponent/xYGlbluV0/xYGlbluV0.js\";import HeadingAndIntro from\"#framer/local/canvasComponent/ZfU8SRnAg/ZfU8SRnAg.js\";import*as sharedStyle from\"#framer/local/css/FrSqC_i0G/FrSqC_i0G.js\";import*as sharedStyle1 from\"#framer/local/css/HxfFedCjM/HxfFedCjM.js\";import metadataProvider from\"#framer/local/webPageMetadata/xvPshJTYj/xvPshJTYj.js\";const NavigationFonts=getFonts(Navigation);const HeadingAndIntroFonts=getFonts(HeadingAndIntro);const ButtonFonts=getFonts(Button);const BioCardFonts=getFonts(BioCard);const TestimonialsFonts=getFonts(Testimonials);const TickerFonts=getFonts(Ticker);const CardFonts=getFonts(Card);const SupportYourWholeTeamFonts=getFonts(SupportYourWholeTeam);const CustomerStoriesFonts=getFonts(CustomerStories);const FramerIconFonts=getFonts(FramerIcon);const G2TestimonialsFonts=getFonts(G2Testimonials);const Ticker1Fonts=getFonts(Ticker1);const G2BadgesFonts=getFonts(G2Badges);const MainCTAFonts=getFonts(MainCTA);const FooterFonts=getFonts(Footer);const breakpoints={FugCUXuQr:\"(max-width: 809px)\",GNWGN4nVJ:\"(min-width: 1280px)\",n2KyEHTC6:\"(min-width: 810px) and (max-width: 1023px)\",UUxhJbSjU:\"(min-width: 1024px) and (max-width: 1279px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-1BIBn\";const variantClassNames={FugCUXuQr:\"framer-v-cunai5\",GNWGN4nVJ:\"framer-v-1enoezo\",n2KyEHTC6:\"framer-v-12f03cj\",UUxhJbSjU:\"framer-v-7xc1xp\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 1279-1024\":\"UUxhJbSjU\",\"Desktop 1280\":\"GNWGN4nVJ\",\"Phone 809-0\":\"FugCUXuQr\",\"Tablet 1023-810\":\"n2KyEHTC6\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GNWGN4nVJ\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"FugCUXuQr\",\"n2KyEHTC6\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"FugCUXuQr\",\"n2KyEHTC6\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"FugCUXuQr\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"GNWGN4nVJ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(249, 247, 244); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1enoezo\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12980js-container\",nodeId:\"jg2G4BD06\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{variant:\"L0Vb3mTzi\"},n2KyEHTC6:{variant:\"ORgCn3dqy\"},UUxhJbSjU:{variant:\"IIOSqoHDF\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"jg2G4BD06\",layoutId:\"jg2G4BD06\",style:{width:\"100%\"},variant:\"SMKSMTSsk\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fzeh3s\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ur7o64\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ppxwo3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uyqppc\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 48px)`,y:(componentViewport?.y||0)+0+90+0+0+0+0+0+24+0},n2KyEHTC6:{width:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1199px) - 128px) * 0.47)`,y:(componentViewport?.y||0)+0+90+0+100.5+0+0+0+0},UUxhJbSjU:{width:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) / 2 - 40px)`,y:(componentViewport?.y||0)+0+90+0+191.5+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.45)`,y:(componentViewport?.y||0)+0+90+0+239+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b5962z-container\",nodeId:\"jZm0wMN2h\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{hsobbYJOT:16},n2KyEHTC6:{hsobbYJOT:16},UUxhJbSjU:{hsobbYJOT:16}},children:/*#__PURE__*/_jsx(HeadingAndIntro,{FYNO2kSOt:16,height:\"100%\",HrpP6N7ov:8,hsobbYJOT:24,hUqgzIlxF:4,id:\"jZm0wMN2h\",layoutId:\"jZm0wMN2h\",MKbDxCkdU:\"var(--token-27a27431-fe37-48c5-ba99-6f2fbb127864, rgb(92, 102, 112))\",p0CuyMG90:\"var(--token-f56e7fe6-9c5b-4788-a232-ca0e487c6938, rgb(46, 51, 56))\",style:{width:\"100%\"},variant:\"Ajb3ePFMK\",width:\"100%\",wkIQd2vD7:\"Unlock a world of talent\",xwR2bII6x:\"Hire and manage team members in 240+ countries with compliance and payroll built-in.\",ZBzt7yy4b:16})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ohlm5m\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AanKLaQWj\"},implicitPathVariables:undefined},{href:{webPageId:\"AanKLaQWj\"},implicitPathVariables:undefined},{href:{webPageId:\"AanKLaQWj\"},implicitPathVariables:undefined},{href:{webPageId:\"AanKLaQWj\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 48px)`,y:(componentViewport?.y||0)+0+90+0+0+0+0+232+0+0},n2KyEHTC6:{y:(componentViewport?.y||0)+0+90+0+100.5+0+192+0+0},UUxhJbSjU:{y:(componentViewport?.y||0)+0+90+0+191.5+0+192+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"310px\",y:(componentViewport?.y||0)+0+90+0+239+0+192+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1maaes6-container\",nodeId:\"f6AfLJ7qi\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{style:{width:\"100%\"},Zg5IEHU8D:resolvedLinks[1]},n2KyEHTC6:{Zg5IEHU8D:resolvedLinks[3]},UUxhJbSjU:{Zg5IEHU8D:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{DhryqTLbd:{borderColor:\"rgba(0, 0, 0, 0.08)\",borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"f6AfLJ7qi\",ja5H8whs6:false,layoutId:\"f6AfLJ7qi\",MOuy7REKx:\"Schedule a demo\",style:{maxWidth:\"100%\",width:\"100%\"},UKBjfkzPd:\"var(--token-e5b886d0-a1ef-4526-b382-0a2c92520ef8, rgb(153, 51, 255))\",variant:\"R5bE8vHlY\",width:\"100%\",Zg5IEHU8D:resolvedLinks[0]})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j34ts2\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15spln5\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UUxhJbSjU:{height:535,y:(componentViewport?.y||0)+0+90+0+40+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:534,width:\"395px\",y:(componentViewport?.y||0)+0+90+0+88+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t17v3v-container hidden-cunai5 hidden-12f03cj\",nodeId:\"ghcnetTXN\",rendersWithMotion:true,scopeId:\"xvPshJTYj\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(BioCard,{height:\"100%\",id:\"ghcnetTXN\",layoutId:\"ghcnetTXN\",style:{height:\"100%\",width:\"100%\"},variant:\"ZdAk0MMVN\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7spcb3 hidden-1enoezo hidden-7xc1xp\",\"data-framer-name\":\"Card-Mobile\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:602,intrinsicWidth:395,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+90+0+0+336+0+0+0+0+-9.5918),pixelHeight:1204,pixelWidth:790,positionX:\"center\",positionY:\"center\",sizes:\"229px\",src:\"https://framerusercontent.com/images/PmoOrU2xXHZTQdV1XTsp9VV6Xa0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PmoOrU2xXHZTQdV1XTsp9VV6Xa0.png?scale-down-to=1024 671w,https://framerusercontent.com/images/PmoOrU2xXHZTQdV1XTsp9VV6Xa0.png 790w\"},transformTemplate:undefined},n2KyEHTC6:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:602,intrinsicWidth:395,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+90+0+40+0+0+0+0+5),pixelHeight:1204,pixelWidth:790,positionX:\"center\",positionY:\"center\",sizes:\"225.9471px\",src:\"https://framerusercontent.com/images/PmoOrU2xXHZTQdV1XTsp9VV6Xa0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PmoOrU2xXHZTQdV1XTsp9VV6Xa0.png?scale-down-to=1024 671w,https://framerusercontent.com/images/PmoOrU2xXHZTQdV1XTsp9VV6Xa0.png 790w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:602,intrinsicWidth:395,pixelHeight:1204,pixelWidth:790,positionX:\"center\",positionY:\"center\",sizes:\"241px\",src:\"https://framerusercontent.com/images/PmoOrU2xXHZTQdV1XTsp9VV6Xa0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PmoOrU2xXHZTQdV1XTsp9VV6Xa0.png?scale-down-to=1024 671w,https://framerusercontent.com/images/PmoOrU2xXHZTQdV1XTsp9VV6Xa0.png 790w\"},className:\"framer-1wf8uwa\",\"data-framer-name\":\"Photo 1\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:80,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+90+0+0+336+0+0+0+0+39),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JYjFyWjVgZglDsGU9TfnKGelOKU.png\"}},n2KyEHTC6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:80,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+90+0+40+0+0+0+0+353-176.4551),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JYjFyWjVgZglDsGU9TfnKGelOKU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:80,pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JYjFyWjVgZglDsGU9TfnKGelOKU.png\"},className:\"framer-1ezdt8s\",\"data-framer-name\":\"Flag\",style:{z:29}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:180,intrinsicWidth:273.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+90+0+0+336+0+0+0+0+383-191.4667),pixelHeight:376,pixelWidth:608,positionX:\"center\",positionY:\"center\",sizes:\"237px\",src:\"https://framerusercontent.com/images/fWGVVI5IFFnDu4uKASJT709l8Wo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fWGVVI5IFFnDu4uKASJT709l8Wo.png?scale-down-to=512 512w,https://framerusercontent.com/images/fWGVVI5IFFnDu4uKASJT709l8Wo.png 608w\"}},n2KyEHTC6:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:180,intrinsicWidth:273.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+90+0+40+0+0+0+0+41),pixelHeight:376,pixelWidth:608,positionX:\"center\",positionY:\"center\",sizes:\"189px\",src:\"https://framerusercontent.com/images/fWGVVI5IFFnDu4uKASJT709l8Wo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fWGVVI5IFFnDu4uKASJT709l8Wo.png?scale-down-to=512 512w,https://framerusercontent.com/images/fWGVVI5IFFnDu4uKASJT709l8Wo.png 608w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:180,intrinsicWidth:273.5,pixelHeight:376,pixelWidth:608,positionX:\"center\",positionY:\"center\",sizes:\"202px\",src:\"https://framerusercontent.com/images/fWGVVI5IFFnDu4uKASJT709l8Wo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fWGVVI5IFFnDu4uKASJT709l8Wo.png?scale-down-to=512 512w,https://framerusercontent.com/images/fWGVVI5IFFnDu4uKASJT709l8Wo.png 608w\"},className:\"framer-1kh5mxn\",\"data-framer-name\":\"Screenshot\"})})]})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rdslvm\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1syntpl\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1280px)`,y:(componentViewport?.y||0)+0+873+0+0+64+0},n2KyEHTC6:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px)`,y:(componentViewport?.y||0)+0+547+0+0+88+0},UUxhJbSjU:{width:`min(${componentViewport?.width||\"100vw\"} - 128px, 1280px)`,y:(componentViewport?.y||0)+0+729+0+0+88+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:563,width:`calc(min(${componentViewport?.width||\"100vw\"} - 128px, 1280px) - 128px)`,y:(componentViewport?.y||0)+0+840+0+0+88+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zmje4d-container\",nodeId:\"mcijNosOT\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{variant:\"V0jftOyTe\"},n2KyEHTC6:{variant:\"aTdZLwX25\"}},children:/*#__PURE__*/_jsx(Testimonials,{height:\"100%\",id:\"mcijNosOT\",layoutId:\"mcijNosOT\",style:{width:\"100%\"},variant:\"h5JR3oPv_\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ytee5s\",\"data-border\":true,\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vxfg5a\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mkmikw\",\"data-framer-name\":\"Logo grid\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oxx8sw-container\",isModuleExternal:true,nodeId:\"R7L15DwvS\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{speed:50},n2KyEHTC6:{speed:50},UUxhJbSjU:{speed:50}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:35,height:\"100%\",hoverFactor:1,id:\"R7L15DwvS\",layoutId:\"R7L15DwvS\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bu34fc\",\"data-framer-name\":\"Angellist\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1yu31w3\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:140,svg:'<svg width=\"140\" height=\"25\" viewBox=\"0 0 140 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_6269_22079)\">\\n<path d=\"M29.5327 12.0445L27.0223 4.83996H26.9664L24.3725 12.0445H29.5327ZM29.2816 -6.68185e-05L36.7291 19.634H32.1824L30.6762 15.2618H23.2289L21.6668 19.634H17.2598L24.7908 -6.68185e-05H29.2816\" fill=\"white\"/>\\n<path d=\"M29.5327 12.0445L27.0223 4.83996H26.9664L24.3725 12.0445H29.5327ZM29.2816 -6.68185e-05L36.7291 19.634H32.1824L30.6762 15.2618H23.2289L21.6668 19.634H17.2598L24.7908 -6.68185e-05H29.2816\" fill=\"url(#paint0_linear_6269_22079)\"/>\\n<path d=\"M41.7769 5.41732V7.39724H41.861C42.3631 6.57224 43.0135 5.97204 43.8131 5.59607C44.6127 5.22055 45.4313 5.03242 46.2681 5.03242C47.328 5.03242 48.197 5.17445 48.8761 5.45853C49.5544 5.74303 50.0894 6.13688 50.4795 6.64102C50.8704 7.14543 51.1443 7.75935 51.3024 8.48352C51.4604 9.20785 51.5398 10.0096 51.5398 10.8897V19.634H47.579V11.6046C47.579 10.4317 47.3927 9.5559 47.0212 8.97854C46.6489 8.40087 45.9892 8.11217 45.0408 8.11217C43.9619 8.11217 43.1809 8.42845 42.6974 9.06088C42.2139 9.69343 41.9722 10.734 41.9722 12.182V19.634H38.0117V5.41732H41.7769Z\" fill=\"white\"/>\\n<path d=\"M41.7769 5.41732V7.39724H41.861C42.3631 6.57224 43.0135 5.97204 43.8131 5.59607C44.6127 5.22055 45.4313 5.03242 46.2681 5.03242C47.328 5.03242 48.197 5.17445 48.8761 5.45853C49.5544 5.74303 50.0894 6.13688 50.4795 6.64102C50.8704 7.14543 51.1443 7.75935 51.3024 8.48352C51.4604 9.20785 51.5398 10.0096 51.5398 10.8897V19.634H47.579V11.6046C47.579 10.4317 47.3927 9.5559 47.0212 8.97854C46.6489 8.40087 45.9892 8.11217 45.0408 8.11217C43.9619 8.11217 43.1809 8.42845 42.6974 9.06088C42.2139 9.69343 41.9722 10.734 41.9722 12.182V19.634H38.0117V5.41732H41.7769Z\" fill=\"url(#paint1_linear_6269_22079)\"/>\\n<path d=\"M62.3792 15.9491C62.8069 15.729 63.1602 15.4361 63.4391 15.069C63.7181 14.7026 63.9273 14.2853 64.0667 13.8179C64.2062 13.3503 64.2759 12.8601 64.2759 12.3466C64.2759 11.7601 64.2201 11.2054 64.1086 10.683C63.997 10.1605 63.8106 9.6977 63.5507 9.29446C63.29 8.89118 62.946 8.57029 62.5187 8.33189C62.0906 8.09375 61.5513 7.9744 60.9009 7.9744C60.343 7.9744 59.8638 8.08421 59.4644 8.30427C59.0642 8.52434 58.7295 8.82255 58.4603 9.19795C58.1906 9.57388 57.9954 10.0049 57.8745 10.4905C57.7533 10.9766 57.6932 11.4853 57.6932 12.0167C57.6932 12.5301 57.7443 13.0388 57.8466 13.5428C57.9485 14.0472 58.1255 14.5009 58.3766 14.9042C58.6276 15.3076 58.9573 15.6375 59.3668 15.8941C59.7755 16.151 60.2872 16.279 60.9009 16.279C61.4587 16.279 61.9511 16.1692 62.3792 15.9491V15.9491ZM67.8044 20.6788C67.6463 21.412 67.3065 22.095 66.7863 22.7276C66.2652 23.3597 65.5121 23.8961 64.5269 24.3362C63.541 24.7763 62.2208 24.9963 60.5662 24.9963C59.8592 24.9963 59.1386 24.9091 58.4045 24.735C57.6696 24.5607 57.0001 24.2899 56.3962 23.9237C55.7918 23.5566 55.2898 23.0852 54.89 22.5074C54.4898 21.9302 54.2624 21.2379 54.2066 20.4311H58.1395C58.3251 21.1644 58.6877 21.6731 59.2273 21.9573C59.7662 22.2415 60.3891 22.384 61.0961 22.384C62.2118 22.384 63.025 22.0535 63.5368 21.3938C64.0481 20.7339 64.2941 19.8992 64.2759 18.8914V17.0215H64.2201C63.7921 17.7734 63.1834 18.3275 62.3931 18.6853C61.6025 19.0429 60.7707 19.2212 59.8967 19.2212C58.8182 19.2212 57.8885 19.0336 57.1075 18.6577C56.3265 18.282 55.6849 17.7686 55.1829 17.1177C54.6808 16.4673 54.3135 15.7062 54.0811 14.8352C53.8483 13.9647 53.7324 13.0435 53.7324 12.0718C53.7324 11.1552 53.8669 10.2705 54.1369 9.41798C54.4061 8.56567 54.8013 7.81403 55.3223 7.16311C55.8426 6.5125 56.4888 5.99452 57.2609 5.60946C58.0322 5.22452 58.9205 5.03206 59.9246 5.03206C60.873 5.03206 61.7047 5.20634 62.421 5.55454C63.1366 5.9029 63.7363 6.48939 64.2201 7.31439H64.2759V5.41697H68.0414V18.7266C68.0414 19.295 67.962 19.9455 67.8044 20.6788\" fill=\"white\"/>\\n<path d=\"M62.3792 15.9491C62.8069 15.729 63.1602 15.4361 63.4391 15.069C63.7181 14.7026 63.9273 14.2853 64.0667 13.8179C64.2062 13.3503 64.2759 12.8601 64.2759 12.3466C64.2759 11.7601 64.2201 11.2054 64.1086 10.683C63.997 10.1605 63.8106 9.6977 63.5507 9.29446C63.29 8.89118 62.946 8.57029 62.5187 8.33189C62.0906 8.09375 61.5513 7.9744 60.9009 7.9744C60.343 7.9744 59.8638 8.08421 59.4644 8.30427C59.0642 8.52434 58.7295 8.82255 58.4603 9.19795C58.1906 9.57388 57.9954 10.0049 57.8745 10.4905C57.7533 10.9766 57.6932 11.4853 57.6932 12.0167C57.6932 12.5301 57.7443 13.0388 57.8466 13.5428C57.9485 14.0472 58.1255 14.5009 58.3766 14.9042C58.6276 15.3076 58.9573 15.6375 59.3668 15.8941C59.7755 16.151 60.2872 16.279 60.9009 16.279C61.4587 16.279 61.9511 16.1692 62.3792 15.9491V15.9491ZM67.8044 20.6788C67.6463 21.412 67.3065 22.095 66.7863 22.7276C66.2652 23.3597 65.5121 23.8961 64.5269 24.3362C63.541 24.7763 62.2208 24.9963 60.5662 24.9963C59.8592 24.9963 59.1386 24.9091 58.4045 24.735C57.6696 24.5607 57.0001 24.2899 56.3962 23.9237C55.7918 23.5566 55.2898 23.0852 54.89 22.5074C54.4898 21.9302 54.2624 21.2379 54.2066 20.4311H58.1395C58.3251 21.1644 58.6877 21.6731 59.2273 21.9573C59.7662 22.2415 60.3891 22.384 61.0961 22.384C62.2118 22.384 63.025 22.0535 63.5368 21.3938C64.0481 20.7339 64.2941 19.8992 64.2759 18.8914V17.0215H64.2201C63.7921 17.7734 63.1834 18.3275 62.3931 18.6853C61.6025 19.0429 60.7707 19.2212 59.8967 19.2212C58.8182 19.2212 57.8885 19.0336 57.1075 18.6577C56.3265 18.282 55.6849 17.7686 55.1829 17.1177C54.6808 16.4673 54.3135 15.7062 54.0811 14.8352C53.8483 13.9647 53.7324 13.0435 53.7324 12.0718C53.7324 11.1552 53.8669 10.2705 54.1369 9.41798C54.4061 8.56567 54.8013 7.81403 55.3223 7.16311C55.8426 6.5125 56.4888 5.99452 57.2609 5.60946C58.0322 5.22452 58.9205 5.03206 59.9246 5.03206C60.873 5.03206 61.7047 5.20634 62.421 5.55454C63.1366 5.9029 63.7363 6.48939 64.2201 7.31439H64.2759V5.41697H68.0414V18.7266C68.0414 19.295 67.962 19.9455 67.8044 20.6788\" fill=\"url(#paint2_linear_6269_22079)\"/>\\n<path d=\"M79.5974 8.74491C79.1229 8.23183 78.4023 7.97506 77.4357 7.97506C76.8031 7.97506 76.2778 8.08055 75.8594 8.29122C75.441 8.50231 75.1067 8.7634 74.8556 9.07505C74.6042 9.38701 74.4276 9.71688 74.3253 10.0649C74.223 10.4134 74.1626 10.7248 74.1444 10.9999H80.5872C80.4017 10.0099 80.0712 9.25857 79.5974 8.74491V8.74491ZM75.1202 16.2246C75.7153 16.7931 76.5707 17.0772 77.6868 17.0772C78.486 17.0772 79.174 16.8803 79.7508 16.4858C80.3269 16.092 80.6802 15.6747 80.8108 15.2347H84.2974C83.7391 16.9396 82.8838 18.1588 81.7312 18.8921C80.5779 19.6254 79.1833 19.9919 77.5473 19.9919C76.4126 19.9919 75.3899 19.8134 74.4787 19.4561C73.5675 19.0985 72.7958 18.5897 72.164 17.9298C71.5314 17.2697 71.0432 16.4815 70.6996 15.5647C70.3552 14.6482 70.1836 13.6399 70.1836 12.5397C70.1836 11.4767 70.3599 10.4869 70.7136 9.56992C71.0665 8.65344 71.5686 7.86079 72.2198 7.19123C72.8702 6.5224 73.6466 5.99518 74.5488 5.61012C75.4503 5.22518 76.4498 5.03272 77.5473 5.03272C78.7746 5.03272 79.8434 5.26639 80.755 5.73394C81.6658 6.20135 82.4142 6.82943 83 7.61761C83.5861 8.40611 84.0088 9.30436 84.2695 10.3123C84.5294 11.3208 84.6224 12.3749 84.548 13.4748H74.1444C74.2002 14.7398 74.5252 15.6567 75.1202 16.2246\" fill=\"white\"/>\\n<path d=\"M79.5974 8.74491C79.1229 8.23183 78.4023 7.97506 77.4357 7.97506C76.8031 7.97506 76.2778 8.08055 75.8594 8.29122C75.441 8.50231 75.1067 8.7634 74.8556 9.07505C74.6042 9.38701 74.4276 9.71688 74.3253 10.0649C74.223 10.4134 74.1626 10.7248 74.1444 10.9999H80.5872C80.4017 10.0099 80.0712 9.25857 79.5974 8.74491V8.74491ZM75.1202 16.2246C75.7153 16.7931 76.5707 17.0772 77.6868 17.0772C78.486 17.0772 79.174 16.8803 79.7508 16.4858C80.3269 16.092 80.6802 15.6747 80.8108 15.2347H84.2974C83.7391 16.9396 82.8838 18.1588 81.7312 18.8921C80.5779 19.6254 79.1833 19.9919 77.5473 19.9919C76.4126 19.9919 75.3899 19.8134 74.4787 19.4561C73.5675 19.0985 72.7958 18.5897 72.164 17.9298C71.5314 17.2697 71.0432 16.4815 70.6996 15.5647C70.3552 14.6482 70.1836 13.6399 70.1836 12.5397C70.1836 11.4767 70.3599 10.4869 70.7136 9.56992C71.0665 8.65344 71.5686 7.86079 72.2198 7.19123C72.8702 6.5224 73.6466 5.99518 74.5488 5.61012C75.4503 5.22518 76.4498 5.03272 77.5473 5.03272C78.7746 5.03272 79.8434 5.26639 80.755 5.73394C81.6658 6.20135 82.4142 6.82943 83 7.61761C83.5861 8.40611 84.0088 9.30436 84.2695 10.3123C84.5294 11.3208 84.6224 12.3749 84.548 13.4748H74.1444C74.2002 14.7398 74.5252 15.6567 75.1202 16.2246\" fill=\"url(#paint3_linear_6269_22079)\"/>\\n<path d=\"M90.6166 -6.68185e-05V19.634H86.6562V-6.68185e-05H90.6166\" fill=\"white\"/>\\n<path d=\"M90.6166 -6.68185e-05V19.634H86.6562V-6.68185e-05H90.6166\" fill=\"url(#paint4_linear_6269_22079)\"/>\\n<path d=\"M98.1546 -6.68185e-05V16.0044H107.861V19.634H93.7754V-6.68185e-05H98.1546\" fill=\"white\"/>\\n<path d=\"M98.1546 -6.68185e-05V16.0044H107.861V19.634H93.7754V-6.68185e-05H98.1546\" fill=\"url(#paint5_linear_6269_22079)\"/>\\n<path d=\"M113.461 5.41732V19.634H109.5V5.41732H113.461ZM109.5 3.21753V-6.68185e-05H113.461V3.21753H109.5Z\" fill=\"white\"/>\\n<path d=\"M113.461 5.41732V19.634H109.5V5.41732H113.461ZM109.5 3.21753V-6.68185e-05H113.461V3.21753H109.5Z\" fill=\"url(#paint6_linear_6269_22079)\"/>\\n<path d=\"M119.64 16.1009C119.816 16.4035 120.045 16.651 120.323 16.8434C120.603 17.0359 120.923 17.178 121.286 17.2697C121.648 17.3616 122.025 17.4071 122.415 17.4071C122.695 17.4071 122.987 17.3754 123.294 17.3108C123.601 17.2468 123.88 17.1459 124.131 17.0084C124.382 16.871 124.591 16.6878 124.759 16.4585C124.926 16.2295 125.009 15.9408 125.009 15.5922C125.009 15.0057 124.614 14.5657 123.824 14.2723C123.034 13.9792 121.932 13.6858 120.519 13.3922C119.942 13.2644 119.38 13.1131 118.831 12.9385C118.282 12.7646 117.795 12.5356 117.367 12.251C116.939 11.9671 116.595 11.6095 116.335 11.1786C116.074 10.7482 115.944 10.221 115.944 9.59753C115.944 8.6809 116.125 7.92942 116.488 7.34251C116.851 6.75602 117.329 6.29339 117.924 5.95397C118.52 5.6149 119.189 5.37631 119.933 5.23893C120.677 5.10151 121.439 5.03272 122.22 5.03272C123.001 5.03272 123.758 5.10613 124.493 5.25264C125.228 5.39945 125.883 5.64709 126.46 5.99518C127.036 6.34354 127.515 6.80632 127.897 7.38368C128.277 7.9612 128.506 8.68999 128.58 9.56992H124.814C124.759 8.81844 124.47 8.30955 123.95 8.04369C123.429 7.77814 122.815 7.64507 122.109 7.64507C121.886 7.64507 121.644 7.65879 121.383 7.68625C121.123 7.71386 120.885 7.77352 120.672 7.8651C120.458 7.95703 120.277 8.08979 120.128 8.26376C119.979 8.43815 119.905 8.67193 119.905 8.96494C119.905 9.31345 120.035 9.59753 120.295 9.81745C120.555 10.0375 120.895 10.2161 121.314 10.3538C121.732 10.4912 122.21 10.6149 122.75 10.7248C123.289 10.8349 123.838 10.9544 124.396 11.0824C124.972 11.2109 125.535 11.3668 126.084 11.5498C126.631 11.7334 127.119 11.9762 127.548 12.2786C127.975 12.5812 128.32 12.9572 128.58 13.4061C128.84 13.8554 128.97 14.4097 128.97 15.0697C128.97 16.0047 128.779 16.7884 128.398 17.421C128.017 18.0534 127.52 18.5621 126.906 18.9473C126.292 19.3322 125.59 19.603 124.8 19.7582C124.01 19.9141 123.205 19.9919 122.387 19.9919C121.551 19.9919 120.733 19.9096 119.933 19.7447C119.133 19.5796 118.422 19.3046 117.799 18.9197C117.176 18.5348 116.665 18.026 116.265 17.3933C115.865 16.7609 115.647 15.9681 115.609 15.0147H119.375C119.375 15.4367 119.463 15.7985 119.64 16.1009\" fill=\"white\"/>\\n<path d=\"M119.64 16.1009C119.816 16.4035 120.045 16.651 120.323 16.8434C120.603 17.0359 120.923 17.178 121.286 17.2697C121.648 17.3616 122.025 17.4071 122.415 17.4071C122.695 17.4071 122.987 17.3754 123.294 17.3108C123.601 17.2468 123.88 17.1459 124.131 17.0084C124.382 16.871 124.591 16.6878 124.759 16.4585C124.926 16.2295 125.009 15.9408 125.009 15.5922C125.009 15.0057 124.614 14.5657 123.824 14.2723C123.034 13.9792 121.932 13.6858 120.519 13.3922C119.942 13.2644 119.38 13.1131 118.831 12.9385C118.282 12.7646 117.795 12.5356 117.367 12.251C116.939 11.9671 116.595 11.6095 116.335 11.1786C116.074 10.7482 115.944 10.221 115.944 9.59753C115.944 8.6809 116.125 7.92942 116.488 7.34251C116.851 6.75602 117.329 6.29339 117.924 5.95397C118.52 5.6149 119.189 5.37631 119.933 5.23893C120.677 5.10151 121.439 5.03272 122.22 5.03272C123.001 5.03272 123.758 5.10613 124.493 5.25264C125.228 5.39945 125.883 5.64709 126.46 5.99518C127.036 6.34354 127.515 6.80632 127.897 7.38368C128.277 7.9612 128.506 8.68999 128.58 9.56992H124.814C124.759 8.81844 124.47 8.30955 123.95 8.04369C123.429 7.77814 122.815 7.64507 122.109 7.64507C121.886 7.64507 121.644 7.65879 121.383 7.68625C121.123 7.71386 120.885 7.77352 120.672 7.8651C120.458 7.95703 120.277 8.08979 120.128 8.26376C119.979 8.43815 119.905 8.67193 119.905 8.96494C119.905 9.31345 120.035 9.59753 120.295 9.81745C120.555 10.0375 120.895 10.2161 121.314 10.3538C121.732 10.4912 122.21 10.6149 122.75 10.7248C123.289 10.8349 123.838 10.9544 124.396 11.0824C124.972 11.2109 125.535 11.3668 126.084 11.5498C126.631 11.7334 127.119 11.9762 127.548 12.2786C127.975 12.5812 128.32 12.9572 128.58 13.4061C128.84 13.8554 128.97 14.4097 128.97 15.0697C128.97 16.0047 128.779 16.7884 128.398 17.421C128.017 18.0534 127.52 18.5621 126.906 18.9473C126.292 19.3322 125.59 19.603 124.8 19.7582C124.01 19.9141 123.205 19.9919 122.387 19.9919C121.551 19.9919 120.733 19.9096 119.933 19.7447C119.133 19.5796 118.422 19.3046 117.799 18.9197C117.176 18.5348 116.665 18.026 116.265 17.3933C115.865 16.7609 115.647 15.9681 115.609 15.0147H119.375C119.375 15.4367 119.463 15.7985 119.64 16.1009\" fill=\"url(#paint7_linear_6269_22079)\"/>\\n<path d=\"M139.008 5.41782V8.03032H136.108V15.0699C136.108 15.7299 136.22 16.17 136.443 16.3898C136.666 16.6098 137.113 16.7199 137.781 16.7199C138.005 16.7199 138.218 16.7107 138.423 16.6923C138.627 16.6741 138.823 16.6468 139.008 16.6098V19.6345C138.674 19.6897 138.302 19.7263 137.893 19.7449C137.484 19.7628 137.085 19.7722 136.694 19.7722C136.081 19.7722 135.499 19.7307 134.951 19.6487C134.402 19.5659 133.919 19.4055 133.5 19.1672C133.082 18.9291 132.751 18.5899 132.51 18.1498C132.268 17.7098 132.147 17.1324 132.147 16.4174V8.03032H129.748V5.41782H132.147V1.15561H136.108V5.41782H139.008\" fill=\"white\"/>\\n<path d=\"M139.008 5.41782V8.03032H136.108V15.0699C136.108 15.7299 136.22 16.17 136.443 16.3898C136.666 16.6098 137.113 16.7199 137.781 16.7199C138.005 16.7199 138.218 16.7107 138.423 16.6923C138.627 16.6741 138.823 16.6468 139.008 16.6098V19.6345C138.674 19.6897 138.302 19.7263 137.893 19.7449C137.484 19.7628 137.085 19.7722 136.694 19.7722C136.081 19.7722 135.499 19.7307 134.951 19.6487C134.402 19.5659 133.919 19.4055 133.5 19.1672C133.082 18.9291 132.751 18.5899 132.51 18.1498C132.268 17.7098 132.147 17.1324 132.147 16.4174V8.03032H129.748V5.41782H132.147V1.15561H136.108V5.41782H139.008\" fill=\"url(#paint8_linear_6269_22079)\"/>\\n<path d=\"M11.1937 8.43619C11.8019 6.807 12.2764 5.46207 12.6169 4.40131C12.9574 3.34058 13.1277 2.68935 13.1277 2.44767C13.1277 2.18807 13.0709 1.98664 12.9574 1.84342C12.8437 1.7005 12.6871 1.62858 12.4875 1.62858C12.2333 1.62858 11.9745 1.83673 11.7112 2.25296C11.4477 2.66922 11.1573 3.33863 10.8396 4.26034L9.47761 8.14077L11.1937 8.43619ZM9.38227 12.0481C8.99185 12.0302 8.62169 11.9899 8.27225 11.9272C7.9227 11.8647 7.58904 11.775 7.27125 11.6587C7.41637 11.9454 7.54576 12.2316 7.65939 12.518C7.7729 12.8048 7.86579 13.0867 7.93859 13.3639C8.1565 13.0954 8.38576 12.8518 8.62638 12.6322C8.86684 12.4129 9.1188 12.2182 9.38227 12.0481ZM7.84325 7.97963L6.37237 3.79038C5.99101 2.72514 5.69592 2.02949 5.48708 1.70245C5.27807 1.37571 5.05125 1.21236 4.8061 1.21236C4.61543 1.21236 4.46092 1.28428 4.34303 1.42719C4.225 1.57042 4.16598 1.76287 4.16598 2.00455C4.16598 2.41631 4.32472 3.13243 4.64266 4.1529C4.96044 5.17338 5.43714 6.51162 6.07271 8.16762C6.12718 8.06916 6.20423 7.9998 6.30426 7.95951C6.40413 7.91921 6.5403 7.89908 6.71285 7.89908C6.76732 7.89908 6.87626 7.90371 7.0397 7.91253C7.20315 7.92147 7.47084 7.94415 7.84325 7.97963V7.97963ZM6.50854 14.465C6.66292 14.465 6.80346 14.3959 6.93076 14.2569C7.05787 14.1181 7.1214 13.9682 7.1214 13.8071C7.1214 13.6373 6.99658 13.2412 6.74686 12.6187C6.49703 11.9966 6.18622 11.3857 5.81393 10.7859C5.54155 10.3383 5.2737 10.0005 5.01038 9.77218C4.74691 9.54394 4.49738 9.42978 4.26131 9.42978C4.07064 9.42978 3.85954 9.54871 3.62801 9.78562C3.39647 10.0228 3.28071 10.2444 3.28071 10.4503C3.28071 10.6651 3.3942 10.9873 3.6212 11.417C3.84804 11.8467 4.15236 12.3032 4.53372 12.7866C4.93321 13.315 5.31004 13.7265 5.66412 14.0219C6.01824 14.3173 6.29957 14.465 6.50854 14.465V14.465ZM2.42268 14.1427C2.54979 14.2952 2.72684 14.5187 2.95384 14.8141C3.5531 15.6287 4.10681 16.036 4.61543 16.036C4.78778 16.036 4.94228 15.9823 5.07849 15.8748C5.2147 15.7674 5.2828 15.6555 5.2828 15.5391C5.2828 15.4049 5.19199 15.1812 5.01038 14.8678C4.82865 14.5545 4.57909 14.2011 4.26131 13.8071C3.89813 13.3505 3.59607 13.0171 3.35561 12.8067C3.115 12.5967 2.92191 12.4912 2.77678 12.4912C2.45884 12.4912 2.16602 12.659 1.89832 12.9947C1.63047 13.3304 1.49655 13.7265 1.49655 14.183C1.49655 14.5503 1.58961 14.9598 1.77575 15.4116C1.96173 15.8636 2.232 16.3179 2.58611 16.7745C3.12181 17.4816 3.78675 18.0253 4.58137 18.4057C5.37585 18.7866 6.25432 18.9763 7.21674 18.9763C8.98732 18.9763 10.4696 18.3251 11.6636 17.0229C12.8574 15.7204 13.4545 14.089 13.4545 12.1286C13.4545 11.529 13.409 11.0526 13.3183 10.6987C13.2275 10.3451 13.0777 10.0877 12.8689 9.92659C12.4965 9.62238 11.7725 9.34923 10.6966 9.10754C9.6206 8.86586 8.49699 8.74502 7.32572 8.74502C6.99883 8.74502 6.76732 8.79872 6.63111 8.90612C6.49494 9.01355 6.42683 9.19703 6.42683 9.45663C6.42683 10.0656 6.77185 10.5062 7.46193 10.7792C8.15181 11.0526 9.26861 11.1887 10.8123 11.1887H11.3707C11.4978 11.1887 11.6 11.2357 11.6772 11.3297C11.7542 11.4237 11.8065 11.5647 11.8338 11.7527C11.6793 11.8959 11.3617 12.0596 10.8804 12.2428C10.399 12.4263 10.0313 12.6075 9.77723 12.7866C9.23247 13.1807 8.79435 13.6481 8.46293 14.1897C8.1314 14.7316 7.96582 15.2438 7.96582 15.7271C7.96582 16.0225 8.03606 16.3784 8.17695 16.7946C8.31766 17.2108 8.38805 17.4682 8.38805 17.5666V17.6606L8.36081 17.7815C7.96113 17.7546 7.64579 17.5244 7.41424 17.09C7.18269 16.6558 7.06694 16.0762 7.06694 15.3512V15.2303C6.99414 15.293 6.92395 15.3378 6.85584 15.3646C6.78774 15.3914 6.71285 15.4049 6.63111 15.4049C6.54941 15.4049 6.47224 15.3982 6.3996 15.3847C6.32681 15.3713 6.24507 15.3512 6.15445 15.3243C6.18169 15.4229 6.2021 15.519 6.21574 15.613C6.22934 15.707 6.23615 15.7808 6.23615 15.8346C6.23615 16.1657 6.10448 16.4503 5.8412 16.6872C5.57773 16.9244 5.26448 17.043 4.90144 17.043C4.32941 17.043 3.74831 16.7677 3.15813 16.2172C2.5678 15.6667 2.27286 15.1277 2.27286 14.5993C2.27286 14.5008 2.28421 14.4135 2.30691 14.3374C2.32946 14.2615 2.3682 14.1964 2.42268 14.1427V14.1427ZM12.1743 8.66443C12.9915 8.8169 13.568 9.15677 13.904 9.68491C14.2398 10.2133 14.4079 11.0458 14.4079 12.1824C14.4079 14.4381 13.7201 16.2844 12.3445 17.7211C10.9689 19.1576 9.20976 19.876 7.06694 19.876C6.22252 19.876 5.40309 19.726 4.60861 19.4262C3.81399 19.1263 3.13089 18.7078 2.55887 18.1707C1.90513 17.5801 1.41483 16.9557 1.08796 16.2978C0.761091 15.6399 0.597656 14.9664 0.597656 14.277C0.597656 13.5072 0.765631 12.912 1.10158 12.4912C1.43738 12.0705 1.96854 11.7843 2.69507 11.6318C2.55887 11.3185 2.45884 11.0545 2.39544 10.8396C2.33188 10.6248 2.3001 10.4592 2.3001 10.3428C2.3001 9.94003 2.51574 9.52854 2.94703 9.10754C3.37816 8.68681 3.78463 8.47645 4.16598 8.47645C4.32941 8.47645 4.50176 8.50555 4.68353 8.56372C4.86511 8.62223 5.0738 8.71813 5.31004 8.85242C4.61074 6.90099 4.10242 5.39493 3.78463 4.33416C3.46669 3.27343 3.30795 2.54166 3.30795 2.13884C3.30795 1.58386 3.45307 1.14327 3.74377 0.816262C4.03432 0.489522 4.42929 0.32617 4.92868 0.32617C5.78201 0.32617 6.86266 2.20598 8.17014 5.96557C8.39696 6.61008 8.56962 7.10689 8.68766 7.45601C8.78754 7.17881 8.92812 6.78462 9.10989 6.2744C10.4174 2.5506 11.5431 0.688697 12.4875 0.688697C12.9506 0.688697 13.3204 0.843111 13.5975 1.15194C13.8745 1.46077 14.0129 1.87508 14.0129 2.39393C14.0129 2.78812 13.8608 3.5084 13.5567 4.55572C13.2523 5.60305 12.7917 6.9726 12.1743 8.66443\" fill=\"white\"/>\\n<path d=\"M11.1937 8.43619C11.8019 6.807 12.2764 5.46207 12.6169 4.40131C12.9574 3.34058 13.1277 2.68935 13.1277 2.44767C13.1277 2.18807 13.0709 1.98664 12.9574 1.84342C12.8437 1.7005 12.6871 1.62858 12.4875 1.62858C12.2333 1.62858 11.9745 1.83673 11.7112 2.25296C11.4477 2.66922 11.1573 3.33863 10.8396 4.26034L9.47761 8.14077L11.1937 8.43619ZM9.38227 12.0481C8.99185 12.0302 8.62169 11.9899 8.27225 11.9272C7.9227 11.8647 7.58904 11.775 7.27125 11.6587C7.41637 11.9454 7.54576 12.2316 7.65939 12.518C7.7729 12.8048 7.86579 13.0867 7.93859 13.3639C8.1565 13.0954 8.38576 12.8518 8.62638 12.6322C8.86684 12.4129 9.1188 12.2182 9.38227 12.0481ZM7.84325 7.97963L6.37237 3.79038C5.99101 2.72514 5.69592 2.02949 5.48708 1.70245C5.27807 1.37571 5.05125 1.21236 4.8061 1.21236C4.61543 1.21236 4.46092 1.28428 4.34303 1.42719C4.225 1.57042 4.16598 1.76287 4.16598 2.00455C4.16598 2.41631 4.32472 3.13243 4.64266 4.1529C4.96044 5.17338 5.43714 6.51162 6.07271 8.16762C6.12718 8.06916 6.20423 7.9998 6.30426 7.95951C6.40413 7.91921 6.5403 7.89908 6.71285 7.89908C6.76732 7.89908 6.87626 7.90371 7.0397 7.91253C7.20315 7.92147 7.47084 7.94415 7.84325 7.97963V7.97963ZM6.50854 14.465C6.66292 14.465 6.80346 14.3959 6.93076 14.2569C7.05787 14.1181 7.1214 13.9682 7.1214 13.8071C7.1214 13.6373 6.99658 13.2412 6.74686 12.6187C6.49703 11.9966 6.18622 11.3857 5.81393 10.7859C5.54155 10.3383 5.2737 10.0005 5.01038 9.77218C4.74691 9.54394 4.49738 9.42978 4.26131 9.42978C4.07064 9.42978 3.85954 9.54871 3.62801 9.78562C3.39647 10.0228 3.28071 10.2444 3.28071 10.4503C3.28071 10.6651 3.3942 10.9873 3.6212 11.417C3.84804 11.8467 4.15236 12.3032 4.53372 12.7866C4.93321 13.315 5.31004 13.7265 5.66412 14.0219C6.01824 14.3173 6.29957 14.465 6.50854 14.465V14.465ZM2.42268 14.1427C2.54979 14.2952 2.72684 14.5187 2.95384 14.8141C3.5531 15.6287 4.10681 16.036 4.61543 16.036C4.78778 16.036 4.94228 15.9823 5.07849 15.8748C5.2147 15.7674 5.2828 15.6555 5.2828 15.5391C5.2828 15.4049 5.19199 15.1812 5.01038 14.8678C4.82865 14.5545 4.57909 14.2011 4.26131 13.8071C3.89813 13.3505 3.59607 13.0171 3.35561 12.8067C3.115 12.5967 2.92191 12.4912 2.77678 12.4912C2.45884 12.4912 2.16602 12.659 1.89832 12.9947C1.63047 13.3304 1.49655 13.7265 1.49655 14.183C1.49655 14.5503 1.58961 14.9598 1.77575 15.4116C1.96173 15.8636 2.232 16.3179 2.58611 16.7745C3.12181 17.4816 3.78675 18.0253 4.58137 18.4057C5.37585 18.7866 6.25432 18.9763 7.21674 18.9763C8.98732 18.9763 10.4696 18.3251 11.6636 17.0229C12.8574 15.7204 13.4545 14.089 13.4545 12.1286C13.4545 11.529 13.409 11.0526 13.3183 10.6987C13.2275 10.3451 13.0777 10.0877 12.8689 9.92659C12.4965 9.62238 11.7725 9.34923 10.6966 9.10754C9.6206 8.86586 8.49699 8.74502 7.32572 8.74502C6.99883 8.74502 6.76732 8.79872 6.63111 8.90612C6.49494 9.01355 6.42683 9.19703 6.42683 9.45663C6.42683 10.0656 6.77185 10.5062 7.46193 10.7792C8.15181 11.0526 9.26861 11.1887 10.8123 11.1887H11.3707C11.4978 11.1887 11.6 11.2357 11.6772 11.3297C11.7542 11.4237 11.8065 11.5647 11.8338 11.7527C11.6793 11.8959 11.3617 12.0596 10.8804 12.2428C10.399 12.4263 10.0313 12.6075 9.77723 12.7866C9.23247 13.1807 8.79435 13.6481 8.46293 14.1897C8.1314 14.7316 7.96582 15.2438 7.96582 15.7271C7.96582 16.0225 8.03606 16.3784 8.17695 16.7946C8.31766 17.2108 8.38805 17.4682 8.38805 17.5666V17.6606L8.36081 17.7815C7.96113 17.7546 7.64579 17.5244 7.41424 17.09C7.18269 16.6558 7.06694 16.0762 7.06694 15.3512V15.2303C6.99414 15.293 6.92395 15.3378 6.85584 15.3646C6.78774 15.3914 6.71285 15.4049 6.63111 15.4049C6.54941 15.4049 6.47224 15.3982 6.3996 15.3847C6.32681 15.3713 6.24507 15.3512 6.15445 15.3243C6.18169 15.4229 6.2021 15.519 6.21574 15.613C6.22934 15.707 6.23615 15.7808 6.23615 15.8346C6.23615 16.1657 6.10448 16.4503 5.8412 16.6872C5.57773 16.9244 5.26448 17.043 4.90144 17.043C4.32941 17.043 3.74831 16.7677 3.15813 16.2172C2.5678 15.6667 2.27286 15.1277 2.27286 14.5993C2.27286 14.5008 2.28421 14.4135 2.30691 14.3374C2.32946 14.2615 2.3682 14.1964 2.42268 14.1427V14.1427ZM12.1743 8.66443C12.9915 8.8169 13.568 9.15677 13.904 9.68491C14.2398 10.2133 14.4079 11.0458 14.4079 12.1824C14.4079 14.4381 13.7201 16.2844 12.3445 17.7211C10.9689 19.1576 9.20976 19.876 7.06694 19.876C6.22252 19.876 5.40309 19.726 4.60861 19.4262C3.81399 19.1263 3.13089 18.7078 2.55887 18.1707C1.90513 17.5801 1.41483 16.9557 1.08796 16.2978C0.761091 15.6399 0.597656 14.9664 0.597656 14.277C0.597656 13.5072 0.765631 12.912 1.10158 12.4912C1.43738 12.0705 1.96854 11.7843 2.69507 11.6318C2.55887 11.3185 2.45884 11.0545 2.39544 10.8396C2.33188 10.6248 2.3001 10.4592 2.3001 10.3428C2.3001 9.94003 2.51574 9.52854 2.94703 9.10754C3.37816 8.68681 3.78463 8.47645 4.16598 8.47645C4.32941 8.47645 4.50176 8.50555 4.68353 8.56372C4.86511 8.62223 5.0738 8.71813 5.31004 8.85242C4.61074 6.90099 4.10242 5.39493 3.78463 4.33416C3.46669 3.27343 3.30795 2.54166 3.30795 2.13884C3.30795 1.58386 3.45307 1.14327 3.74377 0.816262C4.03432 0.489522 4.42929 0.32617 4.92868 0.32617C5.78201 0.32617 6.86266 2.20598 8.17014 5.96557C8.39696 6.61008 8.56962 7.10689 8.68766 7.45601C8.78754 7.17881 8.92812 6.78462 9.10989 6.2744C10.4174 2.5506 11.5431 0.688697 12.4875 0.688697C12.9506 0.688697 13.3204 0.843111 13.5975 1.15194C13.8745 1.46077 14.0129 1.87508 14.0129 2.39393C14.0129 2.78812 13.8608 3.5084 13.5567 4.55572C13.2523 5.60305 12.7917 6.9726 12.1743 8.66443\" fill=\"url(#paint9_linear_6269_22079)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_6269_22079\" x1=\"36.6281\" y1=\"0.0208679\" x2=\"36.6281\" y2=\"19.4514\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_6269_22079\" x1=\"51.4697\" y1=\"5.04798\" x2=\"51.4697\" y2=\"19.4982\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_6269_22079\" x1=\"67.9673\" y1=\"5.05335\" x2=\"67.9673\" y2=\"24.8106\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_6269_22079\" x1=\"84.4982\" y1=\"5.04867\" x2=\"84.4982\" y2=\"19.8528\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_6269_22079\" x1=\"90.5961\" y1=\"0.0208679\" x2=\"90.5961\" y2=\"19.4514\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_6269_22079\" x1=\"107.788\" y1=\"0.0208679\" x2=\"107.788\" y2=\"19.4514\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_6269_22079\" x1=\"113.441\" y1=\"0.0208679\" x2=\"113.441\" y2=\"19.4514\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_6269_22079\" x1=\"128.901\" y1=\"5.04867\" x2=\"128.901\" y2=\"19.8528\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_6269_22079\" x1=\"138.96\" y1=\"1.17546\" x2=\"138.96\" y2=\"19.599\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint9_linear_6269_22079\" x1=\"14.3363\" y1=\"0.347015\" x2=\"14.3363\" y2=\"19.6941\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_6269_22079\">\\n<rect x=\"0.599609\" width=\"138.41\" height=\"24.9972\" rx=\"6.43471\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dupj0u\",\"data-framer-name\":\"Kit\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dyqy96\",\"data-framer-name\":\"Kit\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:71,svg:'<svg width=\"71\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M19.414 13.316c8.722 1.688 11.429 9.762 11.5 17.883a.329.329 0 0 1-.328.332h-10.98a.33.33 0 0 1-.33-.328c-.032-6.3-1.053-11.86-7.296-12.1a.33.33 0 0 0-.341.328v11.77a.329.329 0 0 1-.329.33H.33A.329.329 0 0 1 0 31.2V1.21C0 1.028.147.881.329.881H11.31c.181 0 .329.147.329.328v11.236a.302.302 0 0 0 .59.088C15.056 3.268 20.34.94 28.919.882a.33.33 0 0 1 .33.328v11.208a.329.329 0 0 1-.328.328H19.47a.287.287 0 0 0-.055.57Zm51.438 16.053a.657.657 0 0 1-.35.581c-1.033.543-4.227 2.05-7.88 2.05-7.514 0-13.036-3.112-13.142-11.661h-.003v-7.264c0-.182.147-.329.329-.329h8.08a.288.288 0 0 0 .055-.57C51.62 10.922 48.7 7.282 48.6 1.21a.323.323 0 0 1 .322-.33h11.866a.33.33 0 0 1 .329.33v5.115c0 .181.147.328.328.328h6.804a.33.33 0 0 1 .329.33v5.435a.329.329 0 0 1-.329.328h-6.804a.329.329 0 0 0-.328.329v5.86c0 2.07 1.269 2.752 2.957 2.752 2.644 0 5.253-1.192 6.3-1.732a.328.328 0 0 1 .479.292v9.122ZM34.03 31.202V13.074c0-.181.147-.328.328-.328H45.34c.181 0 .328.147.328.328v18.128a.329.329 0 0 1-.328.329H34.359a.329.329 0 0 1-.328-.33Zm-.622-25.615c0 3.085 2.179 5.587 6.365 5.587s6.365-2.502 6.365-5.587C46.14 2.5 43.96 0 39.774 0S33.41 2.501 33.41 5.587Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h71v32H0z\"/></clipPath></defs></svg>',transformTemplate:transformTemplate2,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u5sy5e\",\"data-framer-name\":\"Helpscout\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-140qkr\",\"data-framer-name\":\"Group 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:138,svg:'<svg width=\"138\" height=\"28\" viewBox=\"0 0 138 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M37.8798 5.1359C38.8966 4.93167 39.9277 4.93167 40.9301 5.1359L40.9732 5.15054V22.2614L40.9301 22.276C39.9134 22.4803 38.8966 22.4803 37.8798 22.276L37.8367 22.2614V15.3177H30.9196V22.2614L30.8766 22.276C30.3611 22.3782 29.8598 22.4364 29.3442 22.4364C28.8285 22.4364 28.3274 22.3782 27.8261 22.276L27.7832 22.2614V5.15037L27.8261 5.13574C28.8287 4.91703 29.8598 4.91703 30.8766 5.13574L30.9196 5.15037V12.5898H37.8367V5.15054L37.8798 5.1359ZM48.635 9.94974C50.4109 9.94974 51.8718 10.5332 52.8312 11.6127C53.9197 12.8526 54.3636 14.6906 54.1202 16.9516V17.0098H45.6992C45.7279 19.3148 46.7161 20.4235 48.7067 20.4235C50.1387 20.4235 51.1127 19.7086 51.3132 18.5125V18.4687H51.3561C52.287 18.3374 53.0747 18.3957 53.9197 18.6875L53.9626 18.7021V18.7458C53.7477 20.7591 52.0293 22.7865 48.6781 22.7865C46.7161 22.7865 45.2122 22.1593 44.2241 20.9487C43.3075 19.8254 42.8492 18.2352 42.8492 16.1931C42.8492 12.2836 45.0117 9.94974 48.635 9.94974V9.94974ZM48.5778 12.1671C46.802 12.1671 45.7565 13.2757 45.6706 15.2156H51.2702C51.3132 14.2676 51.0841 13.4798 50.5828 12.9401C50.1101 12.4295 49.4227 12.1671 48.5777 12.1671H48.5778ZM56.1824 5.1359C57.1277 4.9172 58.1015 4.9172 59.0466 5.1359L59.0897 5.15054V22.2614L59.0466 22.276C58.5741 22.3782 58.0872 22.4364 57.6146 22.4364C57.1421 22.4364 56.655 22.3782 56.1824 22.276L56.1395 22.2614V5.15037L56.1824 5.1359ZM67.3674 9.94974C70.8045 9.94974 72.7665 12.2983 72.7665 16.3828C72.7665 20.3797 70.7901 22.772 67.482 22.772C66.2933 22.772 65.2336 22.451 64.231 21.8092V27.5128L64.1881 27.5275C63.7154 27.6296 63.2285 27.6878 62.7559 27.6878C62.2834 27.6878 61.7963 27.6296 61.3239 27.5275L61.2808 27.5128V10.4894L61.3238 10.475C62.0255 10.2561 62.6127 10.2561 63.3289 10.475L63.3575 10.4894L63.5292 11.3939C64.7751 10.4459 66.1071 9.94974 67.3674 9.94974V9.94974ZM64.1881 13.3193V19.4314C65.0331 20.0296 65.8637 20.3212 66.7373 20.3212C68.7852 20.3212 69.8736 18.9647 69.8736 16.4266C69.8736 13.8299 68.7708 12.415 66.7658 12.415C65.8923 12.415 65.0758 12.7067 64.1881 13.3195V13.3193ZM85.3692 13.0422C87.7037 13.9613 90.124 14.9094 90.1382 17.783C90.1097 22.1155 86.0996 22.772 83.665 22.772C81.1875 22.772 79.2541 22.1155 78.0797 20.8318C77.2062 19.8838 76.7908 18.6583 76.8767 17.2726V17.2289L76.9196 17.2142C77.9222 16.9807 78.9533 16.9663 79.9701 17.1705L80.013 17.185V17.2289C79.9271 18.0019 80.1133 18.6292 80.5572 19.1252C81.1588 19.7961 82.2187 20.1608 83.6077 20.1608C84.8681 20.1608 85.8132 19.8836 86.3574 19.3148C86.7297 18.921 86.9158 18.4104 86.9016 17.7686C86.8731 16.5287 85.5124 16.0618 83.2498 15.2595C82.7915 15.099 82.2616 14.9094 81.7174 14.7052L81.4596 14.6177C79.7983 14.005 77.0057 12.9838 77.0342 9.906C77.0772 6.81353 79.5261 4.96094 83.5933 4.96094H83.6652C85.8561 4.97557 87.589 5.58811 88.6633 6.75515C89.5369 7.68868 89.9663 8.9432 89.8948 10.3728V10.4166L89.8518 10.4311C88.7634 10.679 87.761 10.7083 86.7728 10.5041L86.7299 10.4894V10.4459C86.787 9.59981 86.5867 8.91409 86.1283 8.4183C85.5985 7.82023 84.6963 7.51388 83.5362 7.51388C82.3619 7.51388 81.3879 7.83487 80.8294 8.43277C80.4428 8.82677 80.2565 9.3372 80.271 9.9208C80.3138 11.1753 81.6886 11.6857 83.9658 12.5173C84.4098 12.6778 84.8681 12.8528 85.3692 13.0424V13.0422ZM97.4852 12.415C95.4229 12.415 94.4633 13.6695 94.4633 16.3535C94.4633 19.0375 95.4229 20.2921 97.4852 20.2921C98.015 20.2921 99.7907 20.1607 100.063 18.2936V18.2499H100.106C101.051 18.0749 101.939 18.1331 102.741 18.4104L102.784 18.425V18.4687C102.684 19.5774 102.197 20.6131 101.395 21.3716C100.435 22.2905 99.0605 22.772 97.4279 22.772C93.647 22.772 91.5562 20.4963 91.5562 16.3682C91.5562 12.2253 93.6612 9.9351 97.485 9.9351C99.0891 9.9351 100.45 10.4019 101.395 11.2917C102.225 12.0649 102.727 13.159 102.813 14.3551V14.3988L102.77 14.4135C101.925 14.6613 101.037 14.7198 100.106 14.574H100.063V14.5301C99.9627 13.7424 99.5045 12.415 97.4852 12.415ZM110.059 9.94974C113.826 9.94974 115.888 12.2254 115.888 16.3828C115.888 20.5108 113.826 22.7865 110.059 22.7865C106.307 22.7865 104.23 20.5109 104.23 16.3827C104.23 12.2399 106.293 9.94974 110.059 9.94974V9.94974ZM113.052 16.3682C113.052 13.7133 112.078 12.4149 110.059 12.4149C108.011 12.4149 107.066 13.6695 107.066 16.3682C107.066 19.0231 108.04 20.3067 110.059 20.3067C112.078 20.3067 113.052 19.0084 113.052 16.3682ZM125.311 10.4894C126.271 10.2416 127.231 10.2416 128.176 10.4894L128.219 10.5041V22.2614L128.176 22.276C127.488 22.4656 126.772 22.4656 126.085 22.276L126.056 22.2614L125.77 20.9192C124.424 22.1884 123.178 22.7574 121.731 22.7574C119.053 22.7574 117.506 21.0944 117.506 18.177V10.5041L117.549 10.4894C118.495 10.2561 119.468 10.2561 120.414 10.4894L120.457 10.5041V17.5059C120.457 19.4314 121.058 20.2485 122.462 20.2485C123.464 20.2485 124.323 19.8691 125.268 19.0377V10.5041L125.311 10.4894ZM137.241 19.9711C137.456 20.8027 137.456 21.605 137.227 22.3782L137.212 22.4073H137.184C136.367 22.5678 135.651 22.6552 135.021 22.6552C134.005 22.6552 133.231 22.4364 132.687 21.9842C131.684 21.1381 131.599 19.6503 131.599 18.1915L131.57 12.9547H130.095L130.08 12.911C129.894 12.094 129.894 11.2773 130.08 10.475L130.095 10.4311H131.57L131.541 7.19289L131.584 7.17809C132.529 6.95938 133.503 6.95938 134.448 7.17809L134.491 7.19273V10.4311H136.826L136.84 10.475C136.998 11.2773 136.998 12.094 136.84 12.8965L136.826 12.9401H134.492V18.3957C134.492 19.1252 134.649 19.5919 134.964 19.8545C135.365 20.1755 136.024 20.2046 137.17 19.9275L137.227 19.9129L137.241 19.9711Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M37.8798 5.1359C38.8966 4.93167 39.9277 4.93167 40.9301 5.1359L40.9732 5.15054V22.2614L40.9301 22.276C39.9134 22.4803 38.8966 22.4803 37.8798 22.276L37.8367 22.2614V15.3177H30.9196V22.2614L30.8766 22.276C30.3611 22.3782 29.8598 22.4364 29.3442 22.4364C28.8285 22.4364 28.3274 22.3782 27.8261 22.276L27.7832 22.2614V5.15037L27.8261 5.13574C28.8287 4.91703 29.8598 4.91703 30.8766 5.13574L30.9196 5.15037V12.5898H37.8367V5.15054L37.8798 5.1359ZM48.635 9.94974C50.4109 9.94974 51.8718 10.5332 52.8312 11.6127C53.9197 12.8526 54.3636 14.6906 54.1202 16.9516V17.0098H45.6992C45.7279 19.3148 46.7161 20.4235 48.7067 20.4235C50.1387 20.4235 51.1127 19.7086 51.3132 18.5125V18.4687H51.3561C52.287 18.3374 53.0747 18.3957 53.9197 18.6875L53.9626 18.7021V18.7458C53.7477 20.7591 52.0293 22.7865 48.6781 22.7865C46.7161 22.7865 45.2122 22.1593 44.2241 20.9487C43.3075 19.8254 42.8492 18.2352 42.8492 16.1931C42.8492 12.2836 45.0117 9.94974 48.635 9.94974V9.94974ZM48.5778 12.1671C46.802 12.1671 45.7565 13.2757 45.6706 15.2156H51.2702C51.3132 14.2676 51.0841 13.4798 50.5828 12.9401C50.1101 12.4295 49.4227 12.1671 48.5777 12.1671H48.5778ZM56.1824 5.1359C57.1277 4.9172 58.1015 4.9172 59.0466 5.1359L59.0897 5.15054V22.2614L59.0466 22.276C58.5741 22.3782 58.0872 22.4364 57.6146 22.4364C57.1421 22.4364 56.655 22.3782 56.1824 22.276L56.1395 22.2614V5.15037L56.1824 5.1359ZM67.3674 9.94974C70.8045 9.94974 72.7665 12.2983 72.7665 16.3828C72.7665 20.3797 70.7901 22.772 67.482 22.772C66.2933 22.772 65.2336 22.451 64.231 21.8092V27.5128L64.1881 27.5275C63.7154 27.6296 63.2285 27.6878 62.7559 27.6878C62.2834 27.6878 61.7963 27.6296 61.3239 27.5275L61.2808 27.5128V10.4894L61.3238 10.475C62.0255 10.2561 62.6127 10.2561 63.3289 10.475L63.3575 10.4894L63.5292 11.3939C64.7751 10.4459 66.1071 9.94974 67.3674 9.94974V9.94974ZM64.1881 13.3193V19.4314C65.0331 20.0296 65.8637 20.3212 66.7373 20.3212C68.7852 20.3212 69.8736 18.9647 69.8736 16.4266C69.8736 13.8299 68.7708 12.415 66.7658 12.415C65.8923 12.415 65.0758 12.7067 64.1881 13.3195V13.3193ZM85.3692 13.0422C87.7037 13.9613 90.124 14.9094 90.1382 17.783C90.1097 22.1155 86.0996 22.772 83.665 22.772C81.1875 22.772 79.2541 22.1155 78.0797 20.8318C77.2062 19.8838 76.7908 18.6583 76.8767 17.2726V17.2289L76.9196 17.2142C77.9222 16.9807 78.9533 16.9663 79.9701 17.1705L80.013 17.185V17.2289C79.9271 18.0019 80.1133 18.6292 80.5572 19.1252C81.1588 19.7961 82.2187 20.1608 83.6077 20.1608C84.8681 20.1608 85.8132 19.8836 86.3574 19.3148C86.7297 18.921 86.9158 18.4104 86.9016 17.7686C86.8731 16.5287 85.5124 16.0618 83.2498 15.2595C82.7915 15.099 82.2616 14.9094 81.7174 14.7052L81.4596 14.6177C79.7983 14.005 77.0057 12.9838 77.0342 9.906C77.0772 6.81353 79.5261 4.96094 83.5933 4.96094H83.6652C85.8561 4.97557 87.589 5.58811 88.6633 6.75515C89.5369 7.68868 89.9663 8.9432 89.8948 10.3728V10.4166L89.8518 10.4311C88.7634 10.679 87.761 10.7083 86.7728 10.5041L86.7299 10.4894V10.4459C86.787 9.59981 86.5867 8.91409 86.1283 8.4183C85.5985 7.82023 84.6963 7.51388 83.5362 7.51388C82.3619 7.51388 81.3879 7.83487 80.8294 8.43277C80.4428 8.82677 80.2565 9.3372 80.271 9.9208C80.3138 11.1753 81.6886 11.6857 83.9658 12.5173C84.4098 12.6778 84.8681 12.8528 85.3692 13.0424V13.0422ZM97.4852 12.415C95.4229 12.415 94.4633 13.6695 94.4633 16.3535C94.4633 19.0375 95.4229 20.2921 97.4852 20.2921C98.015 20.2921 99.7907 20.1607 100.063 18.2936V18.2499H100.106C101.051 18.0749 101.939 18.1331 102.741 18.4104L102.784 18.425V18.4687C102.684 19.5774 102.197 20.6131 101.395 21.3716C100.435 22.2905 99.0605 22.772 97.4279 22.772C93.647 22.772 91.5562 20.4963 91.5562 16.3682C91.5562 12.2253 93.6612 9.9351 97.485 9.9351C99.0891 9.9351 100.45 10.4019 101.395 11.2917C102.225 12.0649 102.727 13.159 102.813 14.3551V14.3988L102.77 14.4135C101.925 14.6613 101.037 14.7198 100.106 14.574H100.063V14.5301C99.9627 13.7424 99.5045 12.415 97.4852 12.415ZM110.059 9.94974C113.826 9.94974 115.888 12.2254 115.888 16.3828C115.888 20.5108 113.826 22.7865 110.059 22.7865C106.307 22.7865 104.23 20.5109 104.23 16.3827C104.23 12.2399 106.293 9.94974 110.059 9.94974V9.94974ZM113.052 16.3682C113.052 13.7133 112.078 12.4149 110.059 12.4149C108.011 12.4149 107.066 13.6695 107.066 16.3682C107.066 19.0231 108.04 20.3067 110.059 20.3067C112.078 20.3067 113.052 19.0084 113.052 16.3682ZM125.311 10.4894C126.271 10.2416 127.231 10.2416 128.176 10.4894L128.219 10.5041V22.2614L128.176 22.276C127.488 22.4656 126.772 22.4656 126.085 22.276L126.056 22.2614L125.77 20.9192C124.424 22.1884 123.178 22.7574 121.731 22.7574C119.053 22.7574 117.506 21.0944 117.506 18.177V10.5041L117.549 10.4894C118.495 10.2561 119.468 10.2561 120.414 10.4894L120.457 10.5041V17.5059C120.457 19.4314 121.058 20.2485 122.462 20.2485C123.464 20.2485 124.323 19.8691 125.268 19.0377V10.5041L125.311 10.4894ZM137.241 19.9711C137.456 20.8027 137.456 21.605 137.227 22.3782L137.212 22.4073H137.184C136.367 22.5678 135.651 22.6552 135.021 22.6552C134.005 22.6552 133.231 22.4364 132.687 21.9842C131.684 21.1381 131.599 19.6503 131.599 18.1915L131.57 12.9547H130.095L130.08 12.911C129.894 12.094 129.894 11.2773 130.08 10.475L130.095 10.4311H131.57L131.541 7.19289L131.584 7.17809C132.529 6.95938 133.503 6.95938 134.448 7.17809L134.491 7.19273V10.4311H136.826L136.84 10.475C136.998 11.2773 136.998 12.094 136.84 12.8965L136.826 12.9401H134.492V18.3957C134.492 19.1252 134.649 19.5919 134.964 19.8545C135.365 20.1755 136.024 20.2046 137.17 19.9275L137.227 19.9129L137.241 19.9711Z\" fill=\"url(#paint0_linear_6269_22075)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.59225 8.18871L1.72166 16.3776C0.738041 15.3539 0.123116 13.9466 0 12.2831C0 10.7478 0.737878 9.21238 1.72166 8.18871L9.71537 0C10.6991 1.02367 11.3139 2.55893 11.3139 4.09435C11.3139 5.62978 10.5762 7.1652 9.59241 8.18871H9.59225ZM13.0545 19.5271L21.0113 11.3382C22.006 12.4898 22.6278 13.8973 22.6278 15.4326C22.6278 16.968 21.8816 18.5034 20.8872 19.5271L12.9301 27.7158C11.9355 26.6921 11.3139 25.1567 11.3139 23.6215C11.3139 22.086 12.0598 20.5506 13.0545 19.5271V19.5271ZM12.8594 8.18871L15.2087 5.7951L21.0203 0C22.0095 1.00787 22.6277 2.51968 22.6277 4.03149C22.6277 5.54329 21.8859 7.05494 20.8965 8.06281L15.2087 13.8579L12.8594 16.2515L9.52106 19.653L7.17174 22.0466L1.60753 27.7158C0.618191 26.7079 0 25.1961 0 23.6843C0 22.1725 0.74196 20.6607 1.73113 19.653L7.29534 13.9838L9.52089 11.5902L12.8594 8.18871Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.59225 8.18871L1.72166 16.3776C0.738041 15.3539 0.123116 13.9466 0 12.2831C0 10.7478 0.737878 9.21238 1.72166 8.18871L9.71537 0C10.6991 1.02367 11.3139 2.55893 11.3139 4.09435C11.3139 5.62978 10.5762 7.1652 9.59241 8.18871H9.59225ZM13.0545 19.5271L21.0113 11.3382C22.006 12.4898 22.6278 13.8973 22.6278 15.4326C22.6278 16.968 21.8816 18.5034 20.8872 19.5271L12.9301 27.7158C11.9355 26.6921 11.3139 25.1567 11.3139 23.6215C11.3139 22.086 12.0598 20.5506 13.0545 19.5271V19.5271ZM12.8594 8.18871L15.2087 5.7951L21.0203 0C22.0095 1.00787 22.6277 2.51968 22.6277 4.03149C22.6277 5.54329 21.8859 7.05494 20.8965 8.06281L15.2087 13.8579L12.8594 16.2515L9.52106 19.653L7.17174 22.0466L1.60753 27.7158C0.618191 26.7079 0 25.1961 0 23.6843C0 22.1725 0.74196 20.6607 1.73113 19.653L7.29534 13.9838L9.52089 11.5902L12.8594 8.18871Z\" fill=\"url(#paint1_linear_6269_22075)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_6269_22075\" x1=\"136.832\" y1=\"27.6635\" x2=\"136.832\" y2=\"5.17238\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_6269_22075\" x1=\"22.5105\" y1=\"27.6863\" x2=\"22.5105\" y2=\"0.257857\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rglprs\",\"data-framer-name\":\"Drata\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mydwvx\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 95 28\"><path d=\"M 9.527 3.063 C 11.247 3.063 12.771 3.459 14.101 4.252 C 15.431 5.044 16.462 6.164 17.207 7.625 C 17.941 9.073 18.308 10.754 18.308 12.653 C 18.308 14.552 17.941 16.232 17.207 17.68 C 16.474 19.128 15.442 20.248 14.101 21.054 C 12.771 21.846 11.246 22.243 9.527 22.243 L 2.5 22.243 L 2.5 3.063 Z M 5.481 19.21 L 9.389 19.21 C 10.57 19.21 11.602 18.937 12.508 18.404 C 13.402 17.871 14.09 17.092 14.571 16.109 C 15.052 15.112 15.293 13.964 15.293 12.652 C 15.293 11.341 15.053 10.18 14.571 9.196 C 14.089 8.199 13.402 7.434 12.508 6.901 C 11.614 6.369 10.57 6.095 9.389 6.095 L 5.481 6.095 Z M 91.181 22.215 C 89.726 20.689 87.85 19.848 85.908 19.852 C 83.966 19.848 82.09 20.689 80.635 22.215 L 77.173 22.215 L 77.253 22.078 L 79.546 17.051 L 83.111 9.224 L 84.83 12.98 L 82.882 17.256 C 83.864 16.909 84.883 16.734 85.908 16.737 C 86.962 16.737 87.983 16.928 88.945 17.27 L 87.845 14.838 L 87.616 14.333 L 86.825 12.598 L 85.908 10.59 L 84.188 6.833 L 84.876 5.33 L 85.919 3.049 L 94.563 22.078 L 94.643 22.215 Z M 54.784 22.037 C 53.33 20.509 51.454 19.668 49.511 19.674 C 47.569 19.67 45.693 20.511 44.238 22.037 L 40.776 22.037 L 40.857 21.901 L 43.149 16.874 L 46.714 9.046 L 48.434 12.803 L 46.485 17.079 C 47.467 16.731 48.487 16.556 49.511 16.559 C 50.566 16.559 51.586 16.737 52.549 17.092 L 51.529 14.852 L 51.529 14.838 L 51.3 14.333 L 50.302 12.147 L 49.511 10.412 L 47.792 6.655 L 48.48 5.153 L 49.523 2.872 L 58.166 21.901 L 58.246 22.038 L 54.784 22.038 Z M 32.878 22.215 L 29.599 16.614 L 29.576 16.614 L 27.869 13.718 L 28.843 13.718 C 30.15 13.718 31.136 13.376 31.812 12.721 C 32.488 12.052 32.821 11.109 32.821 9.893 C 32.821 8.677 32.488 7.735 31.812 7.079 C 31.135 6.423 30.15 6.095 28.843 6.095 L 23.363 6.095 L 21.587 3.091 L 28.969 3.091 C 30.368 3.091 31.583 3.364 32.614 3.91 C 33.646 4.457 34.437 5.249 34.987 6.26 C 35.538 7.285 35.813 8.5 35.813 9.907 C 35.813 11.356 35.515 12.585 34.93 13.637 C 34.345 14.675 33.497 15.454 32.397 15.959 L 36.099 22.256 L 32.878 22.215 Z M 60.425 6.068 L 60.425 3.063 L 75.442 3.063 L 75.442 6.068 L 69.423 6.068 L 69.423 22.215 L 66.443 22.215 L 66.443 6.068 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9764711018,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ep9hm\",\"data-framer-name\":\"Nearsure\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-74bmpy\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:173,svg:'<svg width=\"173\" height=\"28\" viewBox=\"0 0 173 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_6269_22093)\">\\n<path d=\"M5.37017 26.986C8.13864 26.986 10.3829 24.8781 10.3829 22.2778C10.3829 19.6775 8.13864 17.5696 5.37017 17.5696C2.60171 17.5696 0.357422 19.6775 0.357422 22.2778C0.357422 24.8781 2.60171 26.986 5.37017 26.986Z\" fill=\"white\"/>\\n<path d=\"M5.37017 26.986C8.13864 26.986 10.3829 24.8781 10.3829 22.2778C10.3829 19.6775 8.13864 17.5696 5.37017 17.5696C2.60171 17.5696 0.357422 19.6775 0.357422 22.2778C0.357422 24.8781 2.60171 26.986 5.37017 26.986Z\" fill=\"url(#paint0_linear_6269_22093)\"/>\\n<path d=\"M28.085 9.47743C30.8535 9.47743 33.0977 7.36952 33.0977 4.76924C33.0977 2.16897 30.8535 0.0610352 28.085 0.0610352C25.3165 0.0610352 23.0723 2.16897 23.0723 4.76924C23.0723 7.36952 25.3165 9.47743 28.085 9.47743Z\" fill=\"white\"/>\\n<path d=\"M28.085 9.47743C30.8535 9.47743 33.0977 7.36952 33.0977 4.76924C33.0977 2.16897 30.8535 0.0610352 28.085 0.0610352C25.3165 0.0610352 23.0723 2.16897 23.0723 4.76924C23.0723 7.36952 25.3165 9.47743 28.085 9.47743Z\" fill=\"url(#paint1_linear_6269_22093)\"/>\\n<path d=\"M27.9274 14.4063C27.9274 14.4063 18.4502 12.4201 17.197 11.6108C15.7872 10.6545 13.3591 4.03359 13.3591 4.03359C12.2626 1.75305 9.83458 0.0610352 7.01487 0.0610352C3.2553 0.0610352 0.122332 2.9301 0.200656 6.46126C0.27898 10.8017 3.41195 12.1994 6.1533 12.7879C8.89464 13.3765 12.8892 14.1121 14.299 14.9949C15.3956 15.7306 18.6068 20.9537 20.095 23.3078C21.5832 25.6619 23.5413 26.9861 26.2826 26.9861C30.0422 26.9861 33.0968 24.1171 33.0968 20.5859C33.0968 17.6432 30.9038 15.0684 27.9274 14.4063Z\" fill=\"white\"/>\\n<path d=\"M27.9274 14.4063C27.9274 14.4063 18.4502 12.4201 17.197 11.6108C15.7872 10.6545 13.3591 4.03359 13.3591 4.03359C12.2626 1.75305 9.83458 0.0610352 7.01487 0.0610352C3.2553 0.0610352 0.122332 2.9301 0.200656 6.46126C0.27898 10.8017 3.41195 12.1994 6.1533 12.7879C8.89464 13.3765 12.8892 14.1121 14.299 14.9949C15.3956 15.7306 18.6068 20.9537 20.095 23.3078C21.5832 25.6619 23.5413 26.9861 26.2826 26.9861C30.0422 26.9861 33.0968 24.1171 33.0968 20.5859C33.0968 17.6432 30.9038 15.0684 27.9274 14.4063Z\" fill=\"url(#paint2_linear_6269_22093)\"/>\\n<path d=\"M61.7628 17.9375V4.84277H64.8957V23.2342H62.546L51.424 10.2131V23.2342H48.291V4.84277H50.7191L61.7628 17.9375Z\" fill=\"white\"/>\\n<path d=\"M61.7628 17.9375V4.84277H64.8957V23.2342H62.546L51.424 10.2131V23.2342H48.291V4.84277H50.7191L61.7628 17.9375Z\" fill=\"url(#paint3_linear_6269_22093)\"/>\\n<path d=\"M71.1619 17.7902C71.3969 19.7765 73.12 21.0271 75.7047 21.0271C77.1146 21.0271 78.8377 20.5121 79.6992 19.6293L81.579 21.3214C80.1692 22.7927 77.7411 23.5284 75.6264 23.5284C71.0836 23.5284 68.1855 20.8064 68.1855 16.6867C68.1855 12.7142 71.1619 9.9187 75.4697 9.9187C79.9342 9.9187 82.9101 12.4935 82.4408 17.7902H71.1619ZM79.6209 15.5097C79.4642 13.4499 77.8194 12.3463 75.548 12.3463C73.4333 12.3463 71.7102 13.4499 71.2402 15.5097H79.6209Z\" fill=\"white\"/>\\n<path d=\"M71.1619 17.7902C71.3969 19.7765 73.12 21.0271 75.7047 21.0271C77.1146 21.0271 78.8377 20.5121 79.6992 19.6293L81.579 21.3214C80.1692 22.7927 77.7411 23.5284 75.6264 23.5284C71.0836 23.5284 68.1855 20.8064 68.1855 16.6867C68.1855 12.7142 71.1619 9.9187 75.4697 9.9187C79.9342 9.9187 82.9101 12.4935 82.4408 17.7902H71.1619ZM79.6209 15.5097C79.4642 13.4499 77.8194 12.3463 75.548 12.3463C73.4333 12.3463 71.7102 13.4499 71.2402 15.5097H79.6209Z\" fill=\"url(#paint4_linear_6269_22093)\"/>\\n<path d=\"M96.3842 10.2865H99.2034C99.2034 14.6269 99.2034 18.9673 99.2034 23.2341H96.462L96.3056 21.1007C95.3661 22.7927 93.2513 23.5284 91.5281 23.5284C87.4549 23.5284 84.4785 21.1007 84.4785 16.6867C84.4785 12.3463 87.6114 9.9187 91.6059 9.9187C93.5642 9.9187 95.4439 10.8015 96.3056 12.2728L96.3842 10.2865ZM87.3763 16.7603C87.3763 19.4086 89.4133 21.1007 91.8409 21.1007C97.7938 21.1007 97.7938 12.4935 91.8409 12.4935C89.3346 12.4199 87.3763 14.1119 87.3763 16.7603Z\" fill=\"white\"/>\\n<path d=\"M96.3842 10.2865H99.2034C99.2034 14.6269 99.2034 18.9673 99.2034 23.2341H96.462L96.3056 21.1007C95.3661 22.7927 93.2513 23.5284 91.5281 23.5284C87.4549 23.5284 84.4785 21.1007 84.4785 16.6867C84.4785 12.3463 87.6114 9.9187 91.6059 9.9187C93.5642 9.9187 95.4439 10.8015 96.3056 12.2728L96.3842 10.2865ZM87.3763 16.7603C87.3763 19.4086 89.4133 21.1007 91.8409 21.1007C97.7938 21.1007 97.7938 12.4935 91.8409 12.4935C89.3346 12.4199 87.3763 14.1119 87.3763 16.7603Z\" fill=\"url(#paint5_linear_6269_22093)\"/>\\n<path d=\"M105.782 10.2867L106.017 11.9787C107.035 10.2867 108.602 9.99243 110.09 9.99243C111.421 9.99243 112.753 10.4339 113.536 11.096L112.205 13.4501C111.5 12.9351 110.794 12.6408 109.776 12.6408C107.818 12.6408 106.017 13.8179 106.017 16.172V23.1607H103.119V10.2867H105.782Z\" fill=\"white\"/>\\n<path d=\"M105.782 10.2867L106.017 11.9787C107.035 10.2867 108.602 9.99243 110.09 9.99243C111.421 9.99243 112.753 10.4339 113.536 11.096L112.205 13.4501C111.5 12.9351 110.794 12.6408 109.776 12.6408C107.818 12.6408 106.017 13.8179 106.017 16.172V23.1607H103.119V10.2867H105.782Z\" fill=\"url(#paint6_linear_6269_22093)\"/>\\n<path d=\"M124.265 13.4499C123.168 12.4935 121.994 12.2728 120.662 12.2728C118.861 12.2728 117.686 12.7877 117.686 13.8177C117.686 14.9211 118.94 15.289 120.662 15.5097C123.247 15.7304 126.537 16.2454 126.537 19.5558C126.537 21.9834 124.265 23.6755 120.662 23.6755C118.391 23.6755 116.198 23.2341 114.396 21.2478L115.885 19.3351C117.138 20.6593 119.096 21.2478 120.741 21.2478C122.15 21.2478 123.639 20.8064 123.717 19.5558C123.717 18.3788 122.542 17.9373 120.506 17.7902C117.921 17.5695 114.867 16.7603 114.867 13.8912C114.867 11.0222 117.999 9.9187 120.584 9.9187C122.699 9.9187 124.344 10.3601 125.91 11.6842L124.265 13.4499Z\" fill=\"white\"/>\\n<path d=\"M124.265 13.4499C123.168 12.4935 121.994 12.2728 120.662 12.2728C118.861 12.2728 117.686 12.7877 117.686 13.8177C117.686 14.9211 118.94 15.289 120.662 15.5097C123.247 15.7304 126.537 16.2454 126.537 19.5558C126.537 21.9834 124.265 23.6755 120.662 23.6755C118.391 23.6755 116.198 23.2341 114.396 21.2478L115.885 19.3351C117.138 20.6593 119.096 21.2478 120.741 21.2478C122.15 21.2478 123.639 20.8064 123.717 19.5558C123.717 18.3788 122.542 17.9373 120.506 17.7902C117.921 17.5695 114.867 16.7603 114.867 13.8912C114.867 11.0222 117.999 9.9187 120.584 9.9187C122.699 9.9187 124.344 10.3601 125.91 11.6842L124.265 13.4499Z\" fill=\"url(#paint7_linear_6269_22093)\"/>\\n<path d=\"M132.098 10.2866V17.2018C132.098 19.4088 133.43 20.9537 135.858 20.9537C138.13 20.9537 139.696 19.1881 139.696 17.0547V10.2866H142.594V23.3078H140.01L139.852 21.3951C138.521 22.8664 137.033 23.5285 135.075 23.5285C131.707 23.5285 129.279 21.248 129.279 17.3489V10.3602H132.098V10.2866Z\" fill=\"white\"/>\\n<path d=\"M132.098 10.2866V17.2018C132.098 19.4088 133.43 20.9537 135.858 20.9537C138.13 20.9537 139.696 19.1881 139.696 17.0547V10.2866H142.594V23.3078H140.01L139.852 21.3951C138.521 22.8664 137.033 23.5285 135.075 23.5285C131.707 23.5285 129.279 21.248 129.279 17.3489V10.3602H132.098V10.2866Z\" fill=\"url(#paint8_linear_6269_22093)\"/>\\n<path d=\"M149.172 10.2867L149.408 11.9787C150.426 10.2867 151.992 9.99243 153.481 9.99243C154.812 9.99243 156.143 10.4339 156.926 11.096L155.595 13.4501C154.89 12.9351 154.185 12.6408 153.167 12.6408C151.209 12.6408 149.408 13.8179 149.408 16.172V23.1607H146.51V10.2867H149.172Z\" fill=\"white\"/>\\n<path d=\"M149.172 10.2867L149.408 11.9787C150.426 10.2867 151.992 9.99243 153.481 9.99243C154.812 9.99243 156.143 10.4339 156.926 11.096L155.595 13.4501C154.89 12.9351 154.185 12.6408 153.167 12.6408C151.209 12.6408 149.408 13.8179 149.408 16.172V23.1607H146.51V10.2867H149.172Z\" fill=\"url(#paint9_linear_6269_22093)\"/>\\n<path d=\"M160.609 17.7902C160.844 19.7765 162.568 21.0271 165.152 21.0271C166.562 21.0271 168.285 20.5121 169.146 19.6293L171.027 21.3214C169.616 22.7927 167.189 23.5284 165.074 23.5284C160.531 23.5284 157.633 20.8064 157.633 16.6867C157.633 12.7142 160.609 9.9187 164.917 9.9187C169.381 9.9187 172.358 12.4935 171.888 17.7902H160.609ZM168.99 15.5097C168.833 13.4499 167.189 12.3463 164.917 12.3463C162.803 12.3463 161.079 13.4499 160.609 15.5097H168.99Z\" fill=\"white\"/>\\n<path d=\"M160.609 17.7902C160.844 19.7765 162.568 21.0271 165.152 21.0271C166.562 21.0271 168.285 20.5121 169.146 19.6293L171.027 21.3214C169.616 22.7927 167.189 23.5284 165.074 23.5284C160.531 23.5284 157.633 20.8064 157.633 16.6867C157.633 12.7142 160.609 9.9187 164.917 9.9187C169.381 9.9187 172.358 12.4935 171.888 17.7902H160.609ZM168.99 15.5097C168.833 13.4499 167.189 12.3463 164.917 12.3463C162.803 12.3463 161.079 13.4499 160.609 15.5097H168.99Z\" fill=\"url(#paint10_linear_6269_22093)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_6269_22093\" x1=\"10.3309\" y1=\"26.976\" x2=\"10.3309\" y2=\"17.6572\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_6269_22093\" x1=\"33.0458\" y1=\"9.46739\" x2=\"33.0458\" y2=\"0.148641\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_6269_22093\" x1=\"32.9263\" y1=\"26.9574\" x2=\"32.9263\" y2=\"0.311535\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_6269_22093\" x1=\"64.8096\" y1=\"23.2146\" x2=\"64.8096\" y2=\"5.01388\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_6269_22093\" x1=\"82.4152\" y1=\"23.5139\" x2=\"82.4152\" y2=\"10.0453\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_6269_22093\" x1=\"99.127\" y1=\"23.5139\" x2=\"99.127\" y2=\"10.0453\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_6269_22093\" x1=\"113.482\" y1=\"23.1467\" x2=\"113.482\" y2=\"10.1149\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_6269_22093\" x1=\"126.474\" y1=\"23.6608\" x2=\"126.474\" y2=\"10.0467\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_6269_22093\" x1=\"142.525\" y1=\"23.5144\" x2=\"142.525\" y2=\"10.4098\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint9_linear_6269_22093\" x1=\"156.872\" y1=\"23.1467\" x2=\"156.872\" y2=\"10.1149\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint10_linear_6269_22093\" x1=\"171.862\" y1=\"23.5139\" x2=\"171.862\" y2=\"10.0453\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_6269_22093\">\\n<rect width=\"172\" height=\"27.6782\" fill=\"white\" transform=\"translate(0.199219)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bk1bln\",\"data-framer-name\":\"Vouch\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fs1qmx\",\"data-framer-name\":\"vouch\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:83,svg:'<svg width=\"83\" height=\"30\" viewBox=\"0 0 83 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M56.0102 28.9073C54.9587 28.7234 53.402 28.2875 52.7328 28.0015C51.9408 27.6541 51.1897 27.2591 50.3226 26.7347C49.9607 26.5168 49.6261 26.2648 49.6261 26.2171C49.6261 26.183 49.592 26.1558 49.551 26.1558C49.353 26.1558 47.2363 24.1603 47.2363 23.9764C47.2363 23.9355 47.803 23.9083 48.8409 23.9083H50.4455V22.3078C50.4455 21.4292 50.4659 20.7073 50.4864 20.7073C50.5137 20.7073 50.78 20.9661 51.0805 21.2862C51.7155 21.9672 52.4187 22.553 53.0401 22.9207C53.2859 23.0638 53.5317 23.2136 53.5863 23.2613C53.8321 23.452 55.2865 23.99 55.942 24.1398C57.7923 24.5485 59.3013 24.5349 60.9263 24.0922C61.4521 23.9491 61.6023 23.9423 65.4874 23.9219C68.5941 23.9083 69.4954 23.9219 69.4954 23.99C69.4954 24.1058 67.9796 25.5837 67.4812 25.9515C67.2558 26.1217 67.0578 26.2784 67.0374 26.2988C66.8598 26.5168 64.5588 27.8176 64.1286 27.947C64.0535 27.9674 63.6439 28.1104 63.2137 28.2603C62.3124 28.5872 61.8618 28.703 60.7557 28.8869C59.7724 29.0503 56.8979 29.0639 56.0102 28.9073Z\" fill=\"white\"/>\\n<path d=\"M56.0102 28.9073C54.9587 28.7234 53.402 28.2875 52.7328 28.0015C51.9408 27.6541 51.1897 27.2591 50.3226 26.7347C49.9607 26.5168 49.6261 26.2648 49.6261 26.2171C49.6261 26.183 49.592 26.1558 49.551 26.1558C49.353 26.1558 47.2363 24.1603 47.2363 23.9764C47.2363 23.9355 47.803 23.9083 48.8409 23.9083H50.4455V22.3078C50.4455 21.4292 50.4659 20.7073 50.4864 20.7073C50.5137 20.7073 50.78 20.9661 51.0805 21.2862C51.7155 21.9672 52.4187 22.553 53.0401 22.9207C53.2859 23.0638 53.5317 23.2136 53.5863 23.2613C53.8321 23.452 55.2865 23.99 55.942 24.1398C57.7923 24.5485 59.3013 24.5349 60.9263 24.0922C61.4521 23.9491 61.6023 23.9423 65.4874 23.9219C68.5941 23.9083 69.4954 23.9219 69.4954 23.99C69.4954 24.1058 67.9796 25.5837 67.4812 25.9515C67.2558 26.1217 67.0578 26.2784 67.0374 26.2988C66.8598 26.5168 64.5588 27.8176 64.1286 27.947C64.0535 27.9674 63.6439 28.1104 63.2137 28.2603C62.3124 28.5872 61.8618 28.703 60.7557 28.8869C59.7724 29.0503 56.8979 29.0639 56.0102 28.9073Z\" fill=\"url(#paint0_linear_6269_22106)\"/>\\n<path d=\"M22.8956 22.2343C20.5127 21.7372 18.8466 20.6747 17.6517 18.8699C17.1533 18.1207 17.0645 17.9573 16.9894 17.7189C16.9553 17.6235 16.8529 17.3307 16.7505 17.0651C16.5047 16.4112 16.3066 15.2262 16.3066 14.4021C16.3066 12.6654 16.9553 10.738 17.9522 9.49162C18.3482 9.00806 19.4065 8.02733 19.7548 7.82301C19.9664 7.70042 20.2395 7.54377 20.3556 7.46886C20.7107 7.25772 21.8578 6.82865 22.3903 6.69925C23.1073 6.5358 25.2649 6.5358 26.0296 6.69925C26.8626 6.88314 27.9688 7.3667 28.7335 7.87749C29.4982 8.38829 30.8502 9.78448 30.8502 10.0705C30.8502 10.1046 30.8775 10.1523 30.9048 10.1659C31.0072 10.2067 31.4715 11.133 31.649 11.6506C31.9836 12.6245 32.0792 13.2239 32.0792 14.4089C32.0792 15.3352 32.0519 15.6825 31.9426 16.1456C31.5398 17.821 30.9526 18.9107 29.8669 20.0004C28.9861 20.8722 27.9551 21.526 26.9924 21.8257C26.767 21.8938 26.5076 21.9823 26.412 22.0096C25.8111 22.2139 25.2922 22.2752 24.1929 22.2684C23.5579 22.2616 22.9707 22.248 22.8956 22.2343ZM25.5175 17.4737C26.3847 17.0378 26.9241 16.3772 27.1699 15.4305C27.5796 13.8845 27.0265 12.2704 25.8316 11.5076C25.2854 11.1602 24.9986 11.0921 24.1929 11.0853C23.4896 11.0853 23.4145 11.0989 22.998 11.2964C22.445 11.5621 22.1104 11.8345 21.7622 12.3044C21.2432 13.0059 21.0247 13.9798 21.1613 14.9538C21.3184 16.132 21.8782 16.9425 22.8751 17.4533C23.4009 17.7189 23.7491 17.7802 24.4933 17.7393C24.9645 17.7121 25.1488 17.6644 25.5175 17.4737Z\" fill=\"white\"/>\\n<path d=\"M22.8956 22.2343C20.5127 21.7372 18.8466 20.6747 17.6517 18.8699C17.1533 18.1207 17.0645 17.9573 16.9894 17.7189C16.9553 17.6235 16.8529 17.3307 16.7505 17.0651C16.5047 16.4112 16.3066 15.2262 16.3066 14.4021C16.3066 12.6654 16.9553 10.738 17.9522 9.49162C18.3482 9.00806 19.4065 8.02733 19.7548 7.82301C19.9664 7.70042 20.2395 7.54377 20.3556 7.46886C20.7107 7.25772 21.8578 6.82865 22.3903 6.69925C23.1073 6.5358 25.2649 6.5358 26.0296 6.69925C26.8626 6.88314 27.9688 7.3667 28.7335 7.87749C29.4982 8.38829 30.8502 9.78448 30.8502 10.0705C30.8502 10.1046 30.8775 10.1523 30.9048 10.1659C31.0072 10.2067 31.4715 11.133 31.649 11.6506C31.9836 12.6245 32.0792 13.2239 32.0792 14.4089C32.0792 15.3352 32.0519 15.6825 31.9426 16.1456C31.5398 17.821 30.9526 18.9107 29.8669 20.0004C28.9861 20.8722 27.9551 21.526 26.9924 21.8257C26.767 21.8938 26.5076 21.9823 26.412 22.0096C25.8111 22.2139 25.2922 22.2752 24.1929 22.2684C23.5579 22.2616 22.9707 22.248 22.8956 22.2343ZM25.5175 17.4737C26.3847 17.0378 26.9241 16.3772 27.1699 15.4305C27.5796 13.8845 27.0265 12.2704 25.8316 11.5076C25.2854 11.1602 24.9986 11.0921 24.1929 11.0853C23.4896 11.0853 23.4145 11.0989 22.998 11.2964C22.445 11.5621 22.1104 11.8345 21.7622 12.3044C21.2432 13.0059 21.0247 13.9798 21.1613 14.9538C21.3184 16.132 21.8782 16.9425 22.8751 17.4533C23.4009 17.7189 23.7491 17.7802 24.4933 17.7393C24.9645 17.7121 25.1488 17.6644 25.5175 17.4737Z\" fill=\"url(#paint1_linear_6269_22106)\"/>\\n<path d=\"M38.6334 22.2335C38.1964 22.145 37.22 21.8317 36.8991 21.675C36.4553 21.4503 35.6906 20.8441 35.4857 20.5581C35.3969 20.4355 35.274 20.2789 35.2194 20.2176C35.1102 20.095 34.7005 19.3186 34.5093 18.8691C34.4547 18.7397 34.3454 18.3242 34.2703 17.9564C34.1338 17.3094 34.127 17.0779 34.127 12.0448V6.81421H36.4758H38.8246L38.8587 11.4999C38.886 15.995 38.8929 16.1925 39.0226 16.5126C39.2343 17.0234 39.4937 17.2958 39.9785 17.5205C40.395 17.7181 40.436 17.7249 41.2144 17.6976C41.9245 17.6772 42.0542 17.65 42.3888 17.4797C42.7643 17.289 43.2764 16.8599 43.2764 16.7305C43.2764 16.6965 43.3174 16.6147 43.372 16.5602C43.4198 16.499 43.5222 16.281 43.5905 16.0767C43.6997 15.7362 43.7134 15.3343 43.7339 11.2548L43.7612 6.81421L46.1305 6.82783L48.4998 6.84826V14.374V21.8998L46.1305 21.9202L43.7544 21.9338V21.1166V20.2993L43.5017 20.5785C42.9145 21.2255 42.0678 21.7432 41.0778 22.0428C40.6272 22.1858 40.3336 22.2267 39.6576 22.2403C39.1865 22.2539 38.729 22.2471 38.6334 22.2335Z\" fill=\"white\"/>\\n<path d=\"M38.6334 22.2335C38.1964 22.145 37.22 21.8317 36.8991 21.675C36.4553 21.4503 35.6906 20.8441 35.4857 20.5581C35.3969 20.4355 35.274 20.2789 35.2194 20.2176C35.1102 20.095 34.7005 19.3186 34.5093 18.8691C34.4547 18.7397 34.3454 18.3242 34.2703 17.9564C34.1338 17.3094 34.127 17.0779 34.127 12.0448V6.81421H36.4758H38.8246L38.8587 11.4999C38.886 15.995 38.8929 16.1925 39.0226 16.5126C39.2343 17.0234 39.4937 17.2958 39.9785 17.5205C40.395 17.7181 40.436 17.7249 41.2144 17.6976C41.9245 17.6772 42.0542 17.65 42.3888 17.4797C42.7643 17.289 43.2764 16.8599 43.2764 16.7305C43.2764 16.6965 43.3174 16.6147 43.372 16.5602C43.4198 16.499 43.5222 16.281 43.5905 16.0767C43.6997 15.7362 43.7134 15.3343 43.7339 11.2548L43.7612 6.81421L46.1305 6.82783L48.4998 6.84826V14.374V21.8998L46.1305 21.9202L43.7544 21.9338V21.1166V20.2993L43.5017 20.5785C42.9145 21.2255 42.0678 21.7432 41.0778 22.0428C40.6272 22.1858 40.3336 22.2267 39.6576 22.2403C39.1865 22.2539 38.729 22.2471 38.6334 22.2335Z\" fill=\"url(#paint2_linear_6269_22106)\"/>\\n<path d=\"M56.6946 22.1383C56.4352 22.0634 56.087 21.9748 55.9231 21.934C55.766 21.8931 55.5817 21.8386 55.5134 21.8046C55.452 21.7705 55.2608 21.6888 55.0901 21.6207C54.6599 21.4504 53.745 20.9192 53.506 20.6944C53.3899 20.5855 53.2807 20.5037 53.2602 20.5037C53.2397 20.5037 52.9939 20.2654 52.714 19.9793C52.2633 19.5026 51.6488 18.6512 51.4235 18.1881C51.0548 17.4253 50.8021 16.6557 50.6792 15.9746C50.5563 15.2595 50.5563 13.5501 50.6861 12.8213C50.9523 11.3094 51.7239 9.83144 52.8027 8.76217C53.3216 8.25137 54.1 7.65885 54.4824 7.49539C54.5712 7.46134 54.6941 7.40004 54.7487 7.36599C55.1174 7.14805 55.9504 6.84157 56.5581 6.70536C56.9883 6.61001 57.3911 6.58276 58.4699 6.58276C60.2383 6.58276 60.5183 6.64406 62.0887 7.29788C63.427 7.86317 64.8882 9.27978 65.4481 10.5602C65.7348 11.2072 66.0831 12.4263 66.0831 12.7668C66.0831 12.8622 65.8373 12.8758 63.625 12.8758H61.1738L61.1055 12.617C60.9621 12.1062 60.4637 11.5137 59.9447 11.2412C59.6238 11.071 58.8728 10.9007 58.4699 10.9007C56.6332 10.9075 55.37 12.3173 55.3632 14.3605C55.3632 15.7158 55.8412 16.7647 56.7561 17.4049C58.2651 18.4605 60.6139 17.7863 61.1055 16.1585L61.1874 15.8725H63.6387C65.9192 15.8725 66.0831 15.8793 66.0831 15.9951C66.0831 16.0564 66.0353 16.3424 65.9738 16.6217C65.7007 17.8953 65.1408 19.019 64.3419 19.8771C63.9664 20.279 63.2017 20.926 62.8739 21.1099C62.3482 21.4164 61.6995 21.716 61.3718 21.8182C61.167 21.8795 60.7846 22.0021 60.5183 22.0838C60.1086 22.2064 59.8423 22.2336 58.6065 22.2541C57.3501 22.2677 57.1112 22.2541 56.6946 22.1383Z\" fill=\"white\"/>\\n<path d=\"M56.6946 22.1383C56.4352 22.0634 56.087 21.9748 55.9231 21.934C55.766 21.8931 55.5817 21.8386 55.5134 21.8046C55.452 21.7705 55.2608 21.6888 55.0901 21.6207C54.6599 21.4504 53.745 20.9192 53.506 20.6944C53.3899 20.5855 53.2807 20.5037 53.2602 20.5037C53.2397 20.5037 52.9939 20.2654 52.714 19.9793C52.2633 19.5026 51.6488 18.6512 51.4235 18.1881C51.0548 17.4253 50.8021 16.6557 50.6792 15.9746C50.5563 15.2595 50.5563 13.5501 50.6861 12.8213C50.9523 11.3094 51.7239 9.83144 52.8027 8.76217C53.3216 8.25137 54.1 7.65885 54.4824 7.49539C54.5712 7.46134 54.6941 7.40004 54.7487 7.36599C55.1174 7.14805 55.9504 6.84157 56.5581 6.70536C56.9883 6.61001 57.3911 6.58276 58.4699 6.58276C60.2383 6.58276 60.5183 6.64406 62.0887 7.29788C63.427 7.86317 64.8882 9.27978 65.4481 10.5602C65.7348 11.2072 66.0831 12.4263 66.0831 12.7668C66.0831 12.8622 65.8373 12.8758 63.625 12.8758H61.1738L61.1055 12.617C60.9621 12.1062 60.4637 11.5137 59.9447 11.2412C59.6238 11.071 58.8728 10.9007 58.4699 10.9007C56.6332 10.9075 55.37 12.3173 55.3632 14.3605C55.3632 15.7158 55.8412 16.7647 56.7561 17.4049C58.2651 18.4605 60.6139 17.7863 61.1055 16.1585L61.1874 15.8725H63.6387C65.9192 15.8725 66.0831 15.8793 66.0831 15.9951C66.0831 16.0564 66.0353 16.3424 65.9738 16.6217C65.7007 17.8953 65.1408 19.019 64.3419 19.8771C63.9664 20.279 63.2017 20.926 62.8739 21.1099C62.3482 21.4164 61.6995 21.716 61.3718 21.8182C61.167 21.8795 60.7846 22.0021 60.5183 22.0838C60.1086 22.2064 59.8423 22.2336 58.6065 22.2541C57.3501 22.2677 57.1112 22.2541 56.6946 22.1383Z\" fill=\"url(#paint3_linear_6269_22106)\"/>\\n<path d=\"M5.60038 21.5797C5.52528 21.3822 5.36823 20.8986 5.24533 20.5036C5.03366 19.8294 4.89711 19.4207 4.70592 18.8691C4.65813 18.7397 4.54205 18.3991 4.45329 18.1199C4.28259 17.5682 3.64759 15.6272 3.53152 15.2935C3.49055 15.1845 3.34033 14.7078 3.18329 14.2378C3.03308 13.7679 2.85555 13.2367 2.78727 13.046C2.71899 12.8621 2.56878 12.3989 2.4527 12.0244C2.33663 11.6498 2.2069 11.2548 2.16593 11.139C2.13179 11.03 1.85184 10.1991 1.55824 9.3001C1.25781 8.40109 0.971038 7.52933 0.909586 7.35906C0.704748 6.75972 0.486254 6.8074 3.31302 6.82783L5.81205 6.84826L5.89398 7.12069C5.94178 7.27052 6.03054 7.59062 6.09199 7.83581C6.16027 8.08099 6.25587 8.41471 6.31049 8.58498C6.41291 8.91189 6.51533 9.28647 6.77479 10.2536C6.86355 10.5941 7.04791 11.2479 7.18447 11.7179C7.32102 12.1878 7.47807 12.7531 7.53952 12.9778C7.60097 13.2026 7.71022 13.5704 7.7785 13.7951C7.89457 14.1833 8.09258 14.8916 8.28376 15.634C8.33156 15.8247 8.39984 16.0494 8.44081 16.1448C8.50909 16.3287 8.52274 16.3014 8.8778 15.021C8.9529 14.7622 9.06898 14.3468 9.13726 14.1016C9.20554 13.8564 9.30113 13.5091 9.3421 13.3184C9.48548 12.7531 10.1 10.7371 10.4346 9.77684C10.6257 9.23199 11.1583 8.03332 11.4383 7.52933C11.568 7.30458 11.7046 7.05258 11.7455 6.97085L11.8206 6.81421H14.784C16.846 6.81421 17.7405 6.83464 17.7405 6.88913C17.7405 6.92999 17.5015 7.19561 17.2079 7.48165C15.9652 8.70757 15.2619 9.98116 14.4016 12.5692C14.1012 13.475 13.8281 14.2855 13.7939 14.374C13.7529 14.4694 13.5208 15.1913 13.2682 15.9745C13.0155 16.7646 12.7561 17.5614 12.6878 17.7453C12.5307 18.1812 11.6704 20.7488 11.5953 21.0144C11.5612 21.1302 11.4929 21.3754 11.4383 21.5593L11.3495 21.8998L8.54323 21.9202L5.73694 21.9338L5.60038 21.5797Z\" fill=\"white\"/>\\n<path d=\"M5.60038 21.5797C5.52528 21.3822 5.36823 20.8986 5.24533 20.5036C5.03366 19.8294 4.89711 19.4207 4.70592 18.8691C4.65813 18.7397 4.54205 18.3991 4.45329 18.1199C4.28259 17.5682 3.64759 15.6272 3.53152 15.2935C3.49055 15.1845 3.34033 14.7078 3.18329 14.2378C3.03308 13.7679 2.85555 13.2367 2.78727 13.046C2.71899 12.8621 2.56878 12.3989 2.4527 12.0244C2.33663 11.6498 2.2069 11.2548 2.16593 11.139C2.13179 11.03 1.85184 10.1991 1.55824 9.3001C1.25781 8.40109 0.971038 7.52933 0.909586 7.35906C0.704748 6.75972 0.486254 6.8074 3.31302 6.82783L5.81205 6.84826L5.89398 7.12069C5.94178 7.27052 6.03054 7.59062 6.09199 7.83581C6.16027 8.08099 6.25587 8.41471 6.31049 8.58498C6.41291 8.91189 6.51533 9.28647 6.77479 10.2536C6.86355 10.5941 7.04791 11.2479 7.18447 11.7179C7.32102 12.1878 7.47807 12.7531 7.53952 12.9778C7.60097 13.2026 7.71022 13.5704 7.7785 13.7951C7.89457 14.1833 8.09258 14.8916 8.28376 15.634C8.33156 15.8247 8.39984 16.0494 8.44081 16.1448C8.50909 16.3287 8.52274 16.3014 8.8778 15.021C8.9529 14.7622 9.06898 14.3468 9.13726 14.1016C9.20554 13.8564 9.30113 13.5091 9.3421 13.3184C9.48548 12.7531 10.1 10.7371 10.4346 9.77684C10.6257 9.23199 11.1583 8.03332 11.4383 7.52933C11.568 7.30458 11.7046 7.05258 11.7455 6.97085L11.8206 6.81421H14.784C16.846 6.81421 17.7405 6.83464 17.7405 6.88913C17.7405 6.92999 17.5015 7.19561 17.2079 7.48165C15.9652 8.70757 15.2619 9.98116 14.4016 12.5692C14.1012 13.475 13.8281 14.2855 13.7939 14.374C13.7529 14.4694 13.5208 15.1913 13.2682 15.9745C13.0155 16.7646 12.7561 17.5614 12.6878 17.7453C12.5307 18.1812 11.6704 20.7488 11.5953 21.0144C11.5612 21.1302 11.4929 21.3754 11.4383 21.5593L11.3495 21.8998L8.54323 21.9202L5.73694 21.9338L5.60038 21.5797Z\" fill=\"url(#paint4_linear_6269_22106)\"/>\\n<path d=\"M65.332 21.8467C65.332 21.7923 65.4003 21.6969 65.4754 21.622C65.6325 21.479 66.3835 20.5323 66.5952 20.1986C67.1824 19.2927 67.7764 17.8829 68.0222 16.7932C68.3158 15.5333 68.3363 14.8658 68.3363 7.6874V0.822266H70.7261H73.1159V4.58174V8.34803L73.3753 8.07561C73.9284 7.48989 74.7546 6.96547 75.4715 6.74072C75.8675 6.61132 76.8439 6.4751 77.3492 6.4751C77.8545 6.4751 78.7967 6.61132 79.261 6.74072C80.2784 7.04039 81.4665 8.04155 81.9717 9.0291C82.3336 9.73059 82.4429 10.0439 82.6067 10.8544C82.7365 11.4877 82.7433 11.8147 82.7433 16.7319V21.9353H80.3876H78.0388L78.0183 17.2904C77.9979 12.1211 78.0115 12.3118 77.5267 11.6716C77.1307 11.1404 76.2021 10.8884 75.1984 11.045C74.4815 11.154 74.1674 11.3039 73.7782 11.7057C73.2934 12.2233 73.15 12.6864 73.0954 13.8783C73.0408 15.111 72.9247 16.3097 72.8018 16.9703C72.7472 17.2564 72.7062 17.5424 72.7062 17.6173C72.7062 17.8625 72.119 19.6741 71.8322 20.3007C71.5386 20.9477 71.2655 21.4858 71.1153 21.7105L70.9651 21.9353H68.152C65.8373 21.9353 65.332 21.9217 65.332 21.8467Z\" fill=\"white\"/>\\n<path d=\"M65.332 21.8467C65.332 21.7923 65.4003 21.6969 65.4754 21.622C65.6325 21.479 66.3835 20.5323 66.5952 20.1986C67.1824 19.2927 67.7764 17.8829 68.0222 16.7932C68.3158 15.5333 68.3363 14.8658 68.3363 7.6874V0.822266H70.7261H73.1159V4.58174V8.34803L73.3753 8.07561C73.9284 7.48989 74.7546 6.96547 75.4715 6.74072C75.8675 6.61132 76.8439 6.4751 77.3492 6.4751C77.8545 6.4751 78.7967 6.61132 79.261 6.74072C80.2784 7.04039 81.4665 8.04155 81.9717 9.0291C82.3336 9.73059 82.4429 10.0439 82.6067 10.8544C82.7365 11.4877 82.7433 11.8147 82.7433 16.7319V21.9353H80.3876H78.0388L78.0183 17.2904C77.9979 12.1211 78.0115 12.3118 77.5267 11.6716C77.1307 11.1404 76.2021 10.8884 75.1984 11.045C74.4815 11.154 74.1674 11.3039 73.7782 11.7057C73.2934 12.2233 73.15 12.6864 73.0954 13.8783C73.0408 15.111 72.9247 16.3097 72.8018 16.9703C72.7472 17.2564 72.7062 17.5424 72.7062 17.6173C72.7062 17.8625 72.119 19.6741 71.8322 20.3007C71.5386 20.9477 71.2655 21.4858 71.1153 21.7105L70.9651 21.9353H68.152C65.8373 21.9353 65.332 21.9217 65.332 21.8467Z\" fill=\"url(#paint5_linear_6269_22106)\"/>\\n<path d=\"M31.4651 7.75442C30.3249 6.53531 29.1914 5.79295 27.5732 5.20042C26.9792 4.98248 26.392 4.85308 25.4907 4.73049C24.5211 4.60789 23.9681 4.61471 22.9644 4.75092C21.8651 4.90756 13.3711 4.96886 13.3711 4.81903C13.3711 4.69643 14.5387 3.5863 15.2146 3.06869C16.7987 1.8632 18.0209 1.22981 19.9601 0.623665C22.2201 -0.0846428 24.8762 -0.193613 27.3684 0.317186C28.017 0.446588 29.8879 1.05955 30.3385 1.27749C31.4037 1.80872 31.6495 1.93812 31.7451 2.01985C31.7997 2.07433 31.8748 2.1152 31.8953 2.1152C31.9636 2.1152 33.0014 2.83032 33.377 3.12998C33.9095 3.55905 35.0839 4.71687 35.0839 4.81221C35.0839 4.88713 34.8177 4.90756 33.6159 4.90756H32.1479V6.64428C32.1479 7.59777 32.1274 8.381 32.1001 8.37423C32.066 8.37423 31.7861 8.09495 31.4651 7.75442Z\" fill=\"white\"/>\\n<path d=\"M31.4651 7.75442C30.3249 6.53531 29.1914 5.79295 27.5732 5.20042C26.9792 4.98248 26.392 4.85308 25.4907 4.73049C24.5211 4.60789 23.9681 4.61471 22.9644 4.75092C21.8651 4.90756 13.3711 4.96886 13.3711 4.81903C13.3711 4.69643 14.5387 3.5863 15.2146 3.06869C16.7987 1.8632 18.0209 1.22981 19.9601 0.623665C22.2201 -0.0846428 24.8762 -0.193613 27.3684 0.317186C28.017 0.446588 29.8879 1.05955 30.3385 1.27749C31.4037 1.80872 31.6495 1.93812 31.7451 2.01985C31.7997 2.07433 31.8748 2.1152 31.8953 2.1152C31.9636 2.1152 33.0014 2.83032 33.377 3.12998C33.9095 3.55905 35.0839 4.71687 35.0839 4.81221C35.0839 4.88713 34.8177 4.90756 33.6159 4.90756H32.1479V6.64428C32.1479 7.59777 32.1274 8.381 32.1001 8.37423C32.066 8.37423 31.7861 8.09495 31.4651 7.75442Z\" fill=\"url(#paint6_linear_6269_22106)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_6269_22106\" x1=\"69.38\" y1=\"29.0086\" x2=\"69.38\" y2=\"20.7846\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_6269_22106\" x1=\"31.9974\" y1=\"22.2522\" x2=\"31.9974\" y2=\"6.72265\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_6269_22106\" x1=\"48.4252\" y1=\"22.2313\" x2=\"48.4252\" y2=\"6.9578\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_6269_22106\" x1=\"66.0027\" y1=\"22.2417\" x2=\"66.0027\" y2=\"6.7286\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_6269_22106\" x1=\"17.6526\" y1=\"21.9177\" x2=\"17.6526\" y2=\"6.95488\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_6269_22106\" x1=\"82.653\" y1=\"21.9128\" x2=\"82.653\" y2=\"1.01869\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_6269_22106\" x1=\"34.9714\" y1=\"8.36534\" x2=\"34.9714\" y2=\"0.0779108\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t1tkzp\",\"data-framer-name\":\"Productboard\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1me7vxg\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:200,svg:'<svg width=\"200\" height=\"25\" viewBox=\"0 0 200 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.2213 12.7036L22.0421 23.3743H0.400391L11.2213 12.7036Z\" fill=\"white\"/>\\n<path d=\"M11.2213 12.7036L22.0421 23.3743H0.400391L11.2213 12.7036Z\" fill=\"url(#paint0_linear_6269_22115)\"/>\\n<path d=\"M0.400391 2.0332L11.2213 12.7039L22.0421 2.0332H0.400391Z\" fill=\"white\"/>\\n<path d=\"M0.400391 2.0332L11.2213 12.7039L22.0421 2.0332H0.400391Z\" fill=\"url(#paint1_linear_6269_22115)\"/>\\n<path d=\"M32.1523 12.7039L22.0435 22.6724L11.9348 12.7039L22.0435 2.73542L32.1523 12.7039Z\" fill=\"white\"/>\\n<path d=\"M32.1523 12.7039L22.0435 22.6724L11.9348 12.7039L22.0435 2.73542L32.1523 12.7039Z\" fill=\"url(#paint2_linear_6269_22115)\"/>\\n<path d=\"M32.1523 12.7039L22.0435 22.6724L11.9348 12.7039L22.0435 2.73542L32.1523 12.7039Z\" stroke=\"#FFFBF5\"/>\\n<path d=\"M196.231 7.09059C196.231 7.24564 196.017 7.31359 195.916 7.19512C195.125 6.27352 193.817 5.57491 192.027 5.57491C188.154 5.57491 185.952 8.70732 185.952 12.5C185.952 16.2683 188.154 19.399 192.027 19.399C193.841 19.399 195.258 18.7631 196.138 17.6655C196.238 17.5436 196.458 17.6098 196.458 17.7665V18.939C196.458 19.0261 196.528 19.0958 196.613 19.0958H199.086C199.173 19.0958 199.243 19.0261 199.243 18.939V0.156794C199.243 0.11521 199.226 0.0753287 199.197 0.045924C199.168 0.0165194 199.128 0 199.086 0L196.385 0C196.344 0.000458715 196.305 0.0171804 196.276 0.0465355C196.247 0.0758905 196.231 0.11551 196.231 0.156794V7.09059ZM196.356 12.5C196.356 14.8693 194.965 16.7265 192.66 16.7265C190.382 16.7265 188.965 14.8676 188.965 12.5C188.965 10.0819 190.382 8.24913 192.66 8.24913C194.965 8.24913 196.356 10.0819 196.356 12.5ZM185.201 5.92334C185.201 5.88425 185.187 5.84655 185.16 5.8178C185.134 5.78905 185.097 5.77137 185.058 5.76829C184.962 5.76089 184.866 5.75624 184.77 5.75436C182.909 5.75436 181.825 6.50174 181.229 7.23345C181.128 7.3554 180.897 7.2892 180.897 7.12892V6.03658C180.897 5.9953 180.88 5.95568 180.851 5.92633C180.823 5.89697 180.783 5.88025 180.742 5.87979H178.267C178.226 5.88025 178.187 5.89697 178.158 5.92633C178.129 5.95568 178.112 5.9953 178.112 6.03658V18.939C178.112 19.0261 178.182 19.0958 178.267 19.0958H180.97C181.011 19.0954 181.05 19.0786 181.079 19.0493C181.108 19.0199 181.125 18.9803 181.125 18.939V12.2213C181.125 9.67422 182.391 8.55401 184.518 8.55401C184.698 8.55401 184.89 8.57143 185.022 8.58362C185.044 8.58604 185.067 8.58381 185.088 8.57709C185.109 8.57037 185.129 8.55929 185.146 8.54455C185.163 8.52982 185.176 8.51175 185.186 8.49149C185.195 8.47123 185.2 8.44921 185.201 8.42683V5.92334ZM172.445 12.9094C172.467 12.9062 172.489 12.9077 172.511 12.914C172.533 12.9203 172.552 12.9312 172.569 12.9459C172.586 12.9606 172.6 12.9788 172.609 12.9993C172.619 13.0197 172.624 13.042 172.624 13.0645V13.723C172.624 15.5052 171.434 17.0331 169.003 17.0331C167.559 17.0331 166.672 16.5488 166.672 15.3014C166.672 14.385 167.281 13.6986 169.13 13.4164L172.445 12.9111V12.9094ZM168.396 19.4007C170.269 19.4007 171.678 18.8537 172.591 17.7805C172.69 17.662 172.907 17.7282 172.914 17.885C172.951 18.6429 173.058 19.0941 173.079 19.0941H175.704C175.815 19.0941 175.893 18.9791 175.858 18.8728C175.676 18.2944 175.559 17.3571 175.559 16.5993V10.5139C175.559 7.48432 173.737 5.57491 169.89 5.57491C166.013 5.57491 164.425 7.60976 164.112 9.85888C164.11 9.88051 164.112 9.90242 164.119 9.92317C164.125 9.94392 164.136 9.96305 164.15 9.97932C164.165 9.99559 164.183 10.0086 164.202 10.0176C164.222 10.0266 164.244 10.0313 164.265 10.0314H166.897C166.973 10.0314 167.036 9.97561 167.053 9.9007C167.298 8.7561 168.227 8.07143 169.813 8.07143C171.61 8.07143 172.624 8.88502 172.624 10.4895V10.5575C172.624 10.5951 172.61 10.6315 172.586 10.66C172.561 10.6884 172.527 10.7071 172.49 10.7125L168.825 11.2282C165.358 11.7108 163.789 13.162 163.789 15.4024C163.789 17.6672 165.13 19.4007 168.396 19.4007V19.4007ZM155.815 19.4007C160.017 19.4007 162.65 16.2178 162.65 12.5017C162.65 8.78397 160.017 5.57491 155.815 5.57491C151.638 5.57491 149.006 8.78397 149.006 12.5C149.006 16.2178 151.638 19.399 155.815 19.399V19.4007ZM152.018 12.5017C152.018 9.92857 153.638 8.24913 155.815 8.24913C158.018 8.24913 159.638 9.92857 159.638 12.5C159.638 15.047 158.018 16.7265 155.815 16.7265C153.638 16.7265 152.018 15.047 152.018 12.5V12.5017ZM137.912 7.19512C137.811 7.31359 137.599 7.24564 137.599 7.09059V0.156794C137.599 0.11521 137.583 0.0753287 137.553 0.045924C137.524 0.0165194 137.484 0 137.443 0L134.742 0C134.7 0 134.661 0.0165194 134.631 0.045924C134.602 0.0753287 134.585 0.11521 134.585 0.156794V18.9373C134.585 19.0244 134.655 19.0941 134.742 19.0941H137.215C137.302 19.0941 137.371 19.0244 137.371 18.9373V17.7526C137.371 17.5958 137.587 17.5296 137.685 17.6516C138.584 18.7578 140.003 19.4007 141.801 19.4007C145.698 19.4007 147.902 16.2683 147.902 12.5017C147.902 8.70732 145.698 5.57491 141.801 5.57491C140.032 5.57491 138.709 6.27352 137.912 7.19512V7.19512ZM137.497 12.5C137.497 10.0819 138.888 8.24913 141.192 8.24913C143.471 8.24913 144.89 10.0819 144.89 12.5C144.89 14.8693 143.471 16.7265 141.192 16.7265C138.89 16.7265 137.497 14.8676 137.497 12.5V12.5ZM132.027 16.6045C132.026 16.58 132.02 16.556 132.009 16.5341C131.998 16.5123 131.983 16.4931 131.963 16.478C131.944 16.4628 131.922 16.4521 131.898 16.4466C131.874 16.4411 131.849 16.4409 131.825 16.446C131.651 16.4808 131.384 16.5244 131.091 16.5244C130.053 16.5244 129.624 16.0139 129.624 14.9704V8.4547C129.624 8.41342 129.641 8.37399 129.67 8.34496C129.699 8.31593 129.739 8.29965 129.78 8.29965H131.923C132.01 8.29965 132.079 8.22996 132.079 8.14286V6.04007C132.079 5.99848 132.063 5.9586 132.033 5.9292C132.004 5.89979 131.964 5.88328 131.923 5.88328H129.778C129.758 5.88328 129.738 5.87922 129.719 5.87134C129.7 5.86346 129.682 5.85191 129.668 5.83735C129.653 5.82279 129.642 5.80551 129.634 5.78648C129.626 5.76746 129.622 5.74707 129.622 5.72648V2.60279C129.622 2.5615 129.606 2.52188 129.577 2.49253C129.548 2.46317 129.508 2.44645 129.467 2.44599H126.766C126.725 2.44599 126.685 2.46251 126.656 2.49192C126.626 2.52132 126.61 2.5612 126.61 2.60279V5.72822C126.61 5.74881 126.606 5.7692 126.598 5.78823C126.59 5.80725 126.578 5.82453 126.564 5.83909C126.549 5.85365 126.532 5.8652 126.513 5.87308C126.494 5.88096 126.474 5.88502 126.453 5.88502H124.766C124.725 5.88501 124.686 5.90129 124.656 5.93032C124.627 5.95935 124.61 5.99879 124.61 6.04007V8.14634C124.61 8.23345 124.679 8.30314 124.766 8.30314H126.453C126.54 8.30314 126.61 8.37282 126.61 8.45819V15.2787C126.61 17.7735 127.775 19.1742 130.458 19.1742C131.203 19.1742 131.7 19.0906 131.912 19.047C131.945 19.0398 131.975 19.0212 131.996 18.9945C132.017 18.9678 132.028 18.9346 132.027 18.9007V16.6045V16.6045ZM110.778 12.5C110.778 16.3188 113.462 19.399 117.335 19.399C121.137 19.399 123.109 16.8101 123.533 14.4861C123.537 14.4641 123.536 14.4415 123.53 14.42C123.524 14.3985 123.514 14.3785 123.499 14.3616C123.485 14.3446 123.467 14.331 123.447 14.3218C123.426 14.3126 123.404 14.308 123.382 14.3084H120.596C120.561 14.3087 120.527 14.3204 120.499 14.3418C120.472 14.3632 120.452 14.3931 120.443 14.4268C120.053 15.7875 118.885 16.7265 117.309 16.7265C115.158 16.7265 113.791 14.9704 113.791 12.5C113.791 10.0052 115.158 8.24913 117.309 8.24913C118.885 8.24913 120.053 9.18815 120.443 10.5488C120.462 10.6185 120.525 10.6672 120.596 10.6672H123.382C123.404 10.6676 123.426 10.663 123.447 10.6538C123.467 10.6446 123.485 10.631 123.499 10.6141C123.514 10.5971 123.524 10.5771 123.53 10.5556C123.536 10.5341 123.537 10.5115 123.533 10.4895C123.109 8.1655 121.137 5.57665 117.335 5.57665C113.462 5.57665 110.778 8.65679 110.778 12.5V12.5ZM105.705 13.493C105.705 15.6568 104.542 16.8031 102.669 16.8031C100.846 16.8031 100.112 15.6063 100.112 13.7997V6.03658C100.112 5.995 100.096 5.95512 100.067 5.92571C100.037 5.89631 99.9973 5.87979 99.9558 5.87979H97.255C97.2135 5.87979 97.1736 5.89631 97.1443 5.92571C97.1149 5.95512 97.0984 5.995 97.0984 6.03658V14.2073C97.0984 17.2875 98.7454 19.399 101.933 19.399C103.704 19.399 104.912 18.7317 105.589 17.9042C105.691 17.7787 105.935 17.8502 105.935 18.0122V18.939C105.935 19.0261 106.005 19.0958 106.091 19.0958H108.563C108.65 19.0958 108.719 19.0261 108.719 18.939V6.03658C108.719 5.995 108.703 5.95512 108.673 5.92571C108.644 5.89631 108.604 5.87979 108.563 5.87979H105.862C105.82 5.87979 105.781 5.89631 105.751 5.92571C105.722 5.95512 105.705 5.995 105.705 6.03658V13.493ZM91.775 7.09059C91.775 7.24564 91.5611 7.31359 91.4602 7.19512C90.6689 6.27352 89.3611 5.57491 87.5715 5.57491C83.6984 5.57491 81.495 8.70732 81.495 12.5C81.495 16.2683 83.6984 19.399 87.5715 19.399C89.3837 19.399 90.8011 18.7631 91.6828 17.6655C91.7819 17.5436 92.001 17.6098 92.001 17.7665V18.939C92.001 19.0261 92.0706 19.0958 92.1576 19.0958H94.6306C94.7176 19.0958 94.7871 19.0261 94.7871 18.939V0.156794C94.7871 0.11521 94.7706 0.0753287 94.7413 0.045924C94.7119 0.0165194 94.6721 0 94.6306 0L91.9298 0C91.8882 0 91.8484 0.0165194 91.8191 0.045924C91.7897 0.0753287 91.7732 0.11521 91.7732 0.156794V7.09059H91.775ZM91.9002 12.5C91.9002 14.8693 90.5089 16.7265 88.2045 16.7265C85.9263 16.7265 84.5071 14.8676 84.5071 12.5C84.5071 10.0819 85.9263 8.24913 88.2045 8.24913C90.5071 8.24913 91.9002 10.0819 91.9002 12.5ZM73.4445 19.4007C77.648 19.4007 80.2793 16.2178 80.2793 12.5017C80.2793 8.78223 77.6497 5.57491 73.4445 5.57491C69.2689 5.57491 66.6358 8.78397 66.6358 12.5C66.6358 16.2178 69.2689 19.399 73.4445 19.399V19.4007ZM69.648 12.5017C69.648 9.92857 71.2671 8.24913 73.4445 8.24913C75.648 8.24913 77.2671 9.92857 77.2671 12.5C77.2671 15.047 75.648 16.7265 73.4445 16.7265C71.2671 16.7265 69.648 15.047 69.648 12.5V12.5017ZM66.2897 5.92334C66.2899 5.88425 66.2752 5.84655 66.2488 5.8178C66.2223 5.78905 66.186 5.77137 66.1471 5.76829C66.0516 5.76089 65.9559 5.75624 65.8602 5.75436C63.9993 5.75436 62.9141 6.50174 62.3176 7.23345C62.2167 7.3554 61.9871 7.2892 61.9871 7.12892V6.03658C61.9871 5.995 61.9706 5.95512 61.9413 5.92571C61.9119 5.89631 61.8721 5.87979 61.8306 5.87979H59.3576C59.3161 5.87979 59.2762 5.89631 59.2469 5.92571C59.2175 5.95512 59.201 5.995 59.201 6.03658V18.939C59.201 19.0261 59.2706 19.0958 59.3576 19.0958H62.0584C62.1454 19.0958 62.215 19.0261 62.215 18.939V12.2213C62.215 9.67422 63.4793 8.55401 65.6063 8.55401C65.7889 8.55401 65.9784 8.57143 66.1106 8.58362C66.1328 8.58604 66.1553 8.58381 66.1766 8.57709C66.198 8.57037 66.2177 8.55929 66.2345 8.54455C66.2513 8.52982 66.2649 8.51175 66.2744 8.49149C66.2839 8.47123 66.2892 8.44921 66.2897 8.42683V5.92334ZM47.0376 17.8955C47.0376 17.7387 47.2532 17.6707 47.3558 17.7909C48.1506 18.723 49.4741 19.4007 51.241 19.4007C55.1384 19.4007 57.3419 16.2683 57.3419 12.5017C57.3419 8.70732 55.1384 5.57491 51.241 5.57491C49.441 5.57491 48.0219 6.23868 47.1228 7.33449C47.0254 7.4547 46.8097 7.38676 46.8097 7.22997V6.03658C46.8097 5.995 46.7932 5.95512 46.7639 5.92571C46.7345 5.89631 46.6947 5.87979 46.6532 5.87979H44.1819C44.1404 5.87979 44.1006 5.89631 44.0712 5.92571C44.0419 5.95512 44.0254 5.995 44.0254 6.03658V24.2334C44.0254 24.3206 44.095 24.3902 44.1819 24.3902H46.8828C46.9697 24.3902 47.0393 24.3206 47.0393 24.2334V17.8955H47.0376ZM46.9367 12.5C46.9367 10.0557 48.328 8.19686 50.6323 8.19686C52.9106 8.19686 54.3297 10.0557 54.3297 12.5C54.3297 14.8693 52.9106 16.7265 50.6323 16.7265C48.3297 16.7265 46.9367 14.8676 46.9367 12.5Z\" fill=\"white\"/>\\n<path d=\"M196.231 7.09059C196.231 7.24564 196.017 7.31359 195.916 7.19512C195.125 6.27352 193.817 5.57491 192.027 5.57491C188.154 5.57491 185.952 8.70732 185.952 12.5C185.952 16.2683 188.154 19.399 192.027 19.399C193.841 19.399 195.258 18.7631 196.138 17.6655C196.238 17.5436 196.458 17.6098 196.458 17.7665V18.939C196.458 19.0261 196.528 19.0958 196.613 19.0958H199.086C199.173 19.0958 199.243 19.0261 199.243 18.939V0.156794C199.243 0.11521 199.226 0.0753287 199.197 0.045924C199.168 0.0165194 199.128 0 199.086 0L196.385 0C196.344 0.000458715 196.305 0.0171804 196.276 0.0465355C196.247 0.0758905 196.231 0.11551 196.231 0.156794V7.09059ZM196.356 12.5C196.356 14.8693 194.965 16.7265 192.66 16.7265C190.382 16.7265 188.965 14.8676 188.965 12.5C188.965 10.0819 190.382 8.24913 192.66 8.24913C194.965 8.24913 196.356 10.0819 196.356 12.5ZM185.201 5.92334C185.201 5.88425 185.187 5.84655 185.16 5.8178C185.134 5.78905 185.097 5.77137 185.058 5.76829C184.962 5.76089 184.866 5.75624 184.77 5.75436C182.909 5.75436 181.825 6.50174 181.229 7.23345C181.128 7.3554 180.897 7.2892 180.897 7.12892V6.03658C180.897 5.9953 180.88 5.95568 180.851 5.92633C180.823 5.89697 180.783 5.88025 180.742 5.87979H178.267C178.226 5.88025 178.187 5.89697 178.158 5.92633C178.129 5.95568 178.112 5.9953 178.112 6.03658V18.939C178.112 19.0261 178.182 19.0958 178.267 19.0958H180.97C181.011 19.0954 181.05 19.0786 181.079 19.0493C181.108 19.0199 181.125 18.9803 181.125 18.939V12.2213C181.125 9.67422 182.391 8.55401 184.518 8.55401C184.698 8.55401 184.89 8.57143 185.022 8.58362C185.044 8.58604 185.067 8.58381 185.088 8.57709C185.109 8.57037 185.129 8.55929 185.146 8.54455C185.163 8.52982 185.176 8.51175 185.186 8.49149C185.195 8.47123 185.2 8.44921 185.201 8.42683V5.92334ZM172.445 12.9094C172.467 12.9062 172.489 12.9077 172.511 12.914C172.533 12.9203 172.552 12.9312 172.569 12.9459C172.586 12.9606 172.6 12.9788 172.609 12.9993C172.619 13.0197 172.624 13.042 172.624 13.0645V13.723C172.624 15.5052 171.434 17.0331 169.003 17.0331C167.559 17.0331 166.672 16.5488 166.672 15.3014C166.672 14.385 167.281 13.6986 169.13 13.4164L172.445 12.9111V12.9094ZM168.396 19.4007C170.269 19.4007 171.678 18.8537 172.591 17.7805C172.69 17.662 172.907 17.7282 172.914 17.885C172.951 18.6429 173.058 19.0941 173.079 19.0941H175.704C175.815 19.0941 175.893 18.9791 175.858 18.8728C175.676 18.2944 175.559 17.3571 175.559 16.5993V10.5139C175.559 7.48432 173.737 5.57491 169.89 5.57491C166.013 5.57491 164.425 7.60976 164.112 9.85888C164.11 9.88051 164.112 9.90242 164.119 9.92317C164.125 9.94392 164.136 9.96305 164.15 9.97932C164.165 9.99559 164.183 10.0086 164.202 10.0176C164.222 10.0266 164.244 10.0313 164.265 10.0314H166.897C166.973 10.0314 167.036 9.97561 167.053 9.9007C167.298 8.7561 168.227 8.07143 169.813 8.07143C171.61 8.07143 172.624 8.88502 172.624 10.4895V10.5575C172.624 10.5951 172.61 10.6315 172.586 10.66C172.561 10.6884 172.527 10.7071 172.49 10.7125L168.825 11.2282C165.358 11.7108 163.789 13.162 163.789 15.4024C163.789 17.6672 165.13 19.4007 168.396 19.4007V19.4007ZM155.815 19.4007C160.017 19.4007 162.65 16.2178 162.65 12.5017C162.65 8.78397 160.017 5.57491 155.815 5.57491C151.638 5.57491 149.006 8.78397 149.006 12.5C149.006 16.2178 151.638 19.399 155.815 19.399V19.4007ZM152.018 12.5017C152.018 9.92857 153.638 8.24913 155.815 8.24913C158.018 8.24913 159.638 9.92857 159.638 12.5C159.638 15.047 158.018 16.7265 155.815 16.7265C153.638 16.7265 152.018 15.047 152.018 12.5V12.5017ZM137.912 7.19512C137.811 7.31359 137.599 7.24564 137.599 7.09059V0.156794C137.599 0.11521 137.583 0.0753287 137.553 0.045924C137.524 0.0165194 137.484 0 137.443 0L134.742 0C134.7 0 134.661 0.0165194 134.631 0.045924C134.602 0.0753287 134.585 0.11521 134.585 0.156794V18.9373C134.585 19.0244 134.655 19.0941 134.742 19.0941H137.215C137.302 19.0941 137.371 19.0244 137.371 18.9373V17.7526C137.371 17.5958 137.587 17.5296 137.685 17.6516C138.584 18.7578 140.003 19.4007 141.801 19.4007C145.698 19.4007 147.902 16.2683 147.902 12.5017C147.902 8.70732 145.698 5.57491 141.801 5.57491C140.032 5.57491 138.709 6.27352 137.912 7.19512V7.19512ZM137.497 12.5C137.497 10.0819 138.888 8.24913 141.192 8.24913C143.471 8.24913 144.89 10.0819 144.89 12.5C144.89 14.8693 143.471 16.7265 141.192 16.7265C138.89 16.7265 137.497 14.8676 137.497 12.5V12.5ZM132.027 16.6045C132.026 16.58 132.02 16.556 132.009 16.5341C131.998 16.5123 131.983 16.4931 131.963 16.478C131.944 16.4628 131.922 16.4521 131.898 16.4466C131.874 16.4411 131.849 16.4409 131.825 16.446C131.651 16.4808 131.384 16.5244 131.091 16.5244C130.053 16.5244 129.624 16.0139 129.624 14.9704V8.4547C129.624 8.41342 129.641 8.37399 129.67 8.34496C129.699 8.31593 129.739 8.29965 129.78 8.29965H131.923C132.01 8.29965 132.079 8.22996 132.079 8.14286V6.04007C132.079 5.99848 132.063 5.9586 132.033 5.9292C132.004 5.89979 131.964 5.88328 131.923 5.88328H129.778C129.758 5.88328 129.738 5.87922 129.719 5.87134C129.7 5.86346 129.682 5.85191 129.668 5.83735C129.653 5.82279 129.642 5.80551 129.634 5.78648C129.626 5.76746 129.622 5.74707 129.622 5.72648V2.60279C129.622 2.5615 129.606 2.52188 129.577 2.49253C129.548 2.46317 129.508 2.44645 129.467 2.44599H126.766C126.725 2.44599 126.685 2.46251 126.656 2.49192C126.626 2.52132 126.61 2.5612 126.61 2.60279V5.72822C126.61 5.74881 126.606 5.7692 126.598 5.78823C126.59 5.80725 126.578 5.82453 126.564 5.83909C126.549 5.85365 126.532 5.8652 126.513 5.87308C126.494 5.88096 126.474 5.88502 126.453 5.88502H124.766C124.725 5.88501 124.686 5.90129 124.656 5.93032C124.627 5.95935 124.61 5.99879 124.61 6.04007V8.14634C124.61 8.23345 124.679 8.30314 124.766 8.30314H126.453C126.54 8.30314 126.61 8.37282 126.61 8.45819V15.2787C126.61 17.7735 127.775 19.1742 130.458 19.1742C131.203 19.1742 131.7 19.0906 131.912 19.047C131.945 19.0398 131.975 19.0212 131.996 18.9945C132.017 18.9678 132.028 18.9346 132.027 18.9007V16.6045V16.6045ZM110.778 12.5C110.778 16.3188 113.462 19.399 117.335 19.399C121.137 19.399 123.109 16.8101 123.533 14.4861C123.537 14.4641 123.536 14.4415 123.53 14.42C123.524 14.3985 123.514 14.3785 123.499 14.3616C123.485 14.3446 123.467 14.331 123.447 14.3218C123.426 14.3126 123.404 14.308 123.382 14.3084H120.596C120.561 14.3087 120.527 14.3204 120.499 14.3418C120.472 14.3632 120.452 14.3931 120.443 14.4268C120.053 15.7875 118.885 16.7265 117.309 16.7265C115.158 16.7265 113.791 14.9704 113.791 12.5C113.791 10.0052 115.158 8.24913 117.309 8.24913C118.885 8.24913 120.053 9.18815 120.443 10.5488C120.462 10.6185 120.525 10.6672 120.596 10.6672H123.382C123.404 10.6676 123.426 10.663 123.447 10.6538C123.467 10.6446 123.485 10.631 123.499 10.6141C123.514 10.5971 123.524 10.5771 123.53 10.5556C123.536 10.5341 123.537 10.5115 123.533 10.4895C123.109 8.1655 121.137 5.57665 117.335 5.57665C113.462 5.57665 110.778 8.65679 110.778 12.5V12.5ZM105.705 13.493C105.705 15.6568 104.542 16.8031 102.669 16.8031C100.846 16.8031 100.112 15.6063 100.112 13.7997V6.03658C100.112 5.995 100.096 5.95512 100.067 5.92571C100.037 5.89631 99.9973 5.87979 99.9558 5.87979H97.255C97.2135 5.87979 97.1736 5.89631 97.1443 5.92571C97.1149 5.95512 97.0984 5.995 97.0984 6.03658V14.2073C97.0984 17.2875 98.7454 19.399 101.933 19.399C103.704 19.399 104.912 18.7317 105.589 17.9042C105.691 17.7787 105.935 17.8502 105.935 18.0122V18.939C105.935 19.0261 106.005 19.0958 106.091 19.0958H108.563C108.65 19.0958 108.719 19.0261 108.719 18.939V6.03658C108.719 5.995 108.703 5.95512 108.673 5.92571C108.644 5.89631 108.604 5.87979 108.563 5.87979H105.862C105.82 5.87979 105.781 5.89631 105.751 5.92571C105.722 5.95512 105.705 5.995 105.705 6.03658V13.493ZM91.775 7.09059C91.775 7.24564 91.5611 7.31359 91.4602 7.19512C90.6689 6.27352 89.3611 5.57491 87.5715 5.57491C83.6984 5.57491 81.495 8.70732 81.495 12.5C81.495 16.2683 83.6984 19.399 87.5715 19.399C89.3837 19.399 90.8011 18.7631 91.6828 17.6655C91.7819 17.5436 92.001 17.6098 92.001 17.7665V18.939C92.001 19.0261 92.0706 19.0958 92.1576 19.0958H94.6306C94.7176 19.0958 94.7871 19.0261 94.7871 18.939V0.156794C94.7871 0.11521 94.7706 0.0753287 94.7413 0.045924C94.7119 0.0165194 94.6721 0 94.6306 0L91.9298 0C91.8882 0 91.8484 0.0165194 91.8191 0.045924C91.7897 0.0753287 91.7732 0.11521 91.7732 0.156794V7.09059H91.775ZM91.9002 12.5C91.9002 14.8693 90.5089 16.7265 88.2045 16.7265C85.9263 16.7265 84.5071 14.8676 84.5071 12.5C84.5071 10.0819 85.9263 8.24913 88.2045 8.24913C90.5071 8.24913 91.9002 10.0819 91.9002 12.5ZM73.4445 19.4007C77.648 19.4007 80.2793 16.2178 80.2793 12.5017C80.2793 8.78223 77.6497 5.57491 73.4445 5.57491C69.2689 5.57491 66.6358 8.78397 66.6358 12.5C66.6358 16.2178 69.2689 19.399 73.4445 19.399V19.4007ZM69.648 12.5017C69.648 9.92857 71.2671 8.24913 73.4445 8.24913C75.648 8.24913 77.2671 9.92857 77.2671 12.5C77.2671 15.047 75.648 16.7265 73.4445 16.7265C71.2671 16.7265 69.648 15.047 69.648 12.5V12.5017ZM66.2897 5.92334C66.2899 5.88425 66.2752 5.84655 66.2488 5.8178C66.2223 5.78905 66.186 5.77137 66.1471 5.76829C66.0516 5.76089 65.9559 5.75624 65.8602 5.75436C63.9993 5.75436 62.9141 6.50174 62.3176 7.23345C62.2167 7.3554 61.9871 7.2892 61.9871 7.12892V6.03658C61.9871 5.995 61.9706 5.95512 61.9413 5.92571C61.9119 5.89631 61.8721 5.87979 61.8306 5.87979H59.3576C59.3161 5.87979 59.2762 5.89631 59.2469 5.92571C59.2175 5.95512 59.201 5.995 59.201 6.03658V18.939C59.201 19.0261 59.2706 19.0958 59.3576 19.0958H62.0584C62.1454 19.0958 62.215 19.0261 62.215 18.939V12.2213C62.215 9.67422 63.4793 8.55401 65.6063 8.55401C65.7889 8.55401 65.9784 8.57143 66.1106 8.58362C66.1328 8.58604 66.1553 8.58381 66.1766 8.57709C66.198 8.57037 66.2177 8.55929 66.2345 8.54455C66.2513 8.52982 66.2649 8.51175 66.2744 8.49149C66.2839 8.47123 66.2892 8.44921 66.2897 8.42683V5.92334ZM47.0376 17.8955C47.0376 17.7387 47.2532 17.6707 47.3558 17.7909C48.1506 18.723 49.4741 19.4007 51.241 19.4007C55.1384 19.4007 57.3419 16.2683 57.3419 12.5017C57.3419 8.70732 55.1384 5.57491 51.241 5.57491C49.441 5.57491 48.0219 6.23868 47.1228 7.33449C47.0254 7.4547 46.8097 7.38676 46.8097 7.22997V6.03658C46.8097 5.995 46.7932 5.95512 46.7639 5.92571C46.7345 5.89631 46.6947 5.87979 46.6532 5.87979H44.1819C44.1404 5.87979 44.1006 5.89631 44.0712 5.92571C44.0419 5.95512 44.0254 5.995 44.0254 6.03658V24.2334C44.0254 24.3206 44.095 24.3902 44.1819 24.3902H46.8828C46.9697 24.3902 47.0393 24.3206 47.0393 24.2334V17.8955H47.0376ZM46.9367 12.5C46.9367 10.0557 48.328 8.19686 50.6323 8.19686C52.9106 8.19686 54.3297 10.0557 54.3297 12.5C54.3297 14.8693 52.9106 16.7265 50.6323 16.7265C48.3297 16.7265 46.9367 14.8676 46.9367 12.5Z\" fill=\"url(#paint3_linear_6269_22115)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_6269_22115\" x1=\"21.9299\" y1=\"23.363\" x2=\"21.9299\" y2=\"12.8029\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_6269_22115\" x1=\"21.9299\" y1=\"12.6926\" x2=\"21.9299\" y2=\"2.13248\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_6269_22115\" x1=\"32.7522\" y1=\"23.3519\" x2=\"32.7522\" y2=\"2.23176\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_6269_22115\" x1=\"198.438\" y1=\"24.3642\" x2=\"198.438\" y2=\"0.226917\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.672493\" stop-color=\"#FAFBFC\" stop-opacity=\"0.01\"/>\\n<stop offset=\"0.999641\" stop-color=\"#FAFBFC\" stop-opacity=\"0.64\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})],speed:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m4wsrl\",\"data-border\":true,\"data-framer-name\":\"One platform\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zy9vet\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bql58h\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:(componentViewport?.y||0)+0+1600+20+0+48+0+0+0},n2KyEHTC6:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px, 1280px)`,y:(componentViewport?.y||0)+0+1346+0+0+88+0+0+0},UUxhJbSjU:{width:`min((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) * 0.8, 1280px)`,y:(componentViewport?.y||0)+0+1576+0+0+88+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px, 1280px) * 0.8)`,y:(componentViewport?.y||0)+0+1719+0+0+128+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qsv9le-container\",nodeId:\"Fmb4gsgFi\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2KyEHTC6:{FYNO2kSOt:8}},children:/*#__PURE__*/_jsx(HeadingAndIntro,{FYNO2kSOt:16,height:\"100%\",HrpP6N7ov:8,hsobbYJOT:24,hUqgzIlxF:4,id:\"Fmb4gsgFi\",layoutId:\"Fmb4gsgFi\",MKbDxCkdU:\"var(--token-27a27431-fe37-48c5-ba99-6f2fbb127864, rgb(92, 102, 112))\",p0CuyMG90:\"var(--token-f56e7fe6-9c5b-4788-a232-ca0e487c6938, rgb(46, 51, 56))\",style:{width:\"100%\"},variant:\"TB11bTnw0\",width:\"100%\",wkIQd2vD7:\"Built for US-based companies hiring anywhere\",xwR2bII6x:\"Hire and pay in the US and 240+ countries.\",ZBzt7yy4b:16})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wr4snq\",\"data-framer-name\":\"Card and Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:(componentViewport?.y||0)+0+1600+20+0+48+160+48+434},n2KyEHTC6:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) / 2 - 32px, 1px)`,y:(componentViewport?.y||0)+0+1346+0+0+88+160+65},UUxhJbSjU:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) / 2 - 32px, 1px)`,y:(componentViewport?.y||0)+0+1576+0+0+88+160+41}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:408,width:\"500px\",y:(componentViewport?.y||0)+0+1719+0+0+128+160+65,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6z21i9-container\",nodeId:\"tOgtP3uKl\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{variant:\"HAOmVcGfR\"},n2KyEHTC6:{variant:\"ECi9PNpys\"}},children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"tOgtP3uKl\",j6iSkTOCi:\"Learn more\",KDBmW6xCU:\"Run payroll for your entire team\",Kt_heebdP:\"PwDDpvdZu\",layoutId:\"tOgtP3uKl\",nrWxLtsqb:\"https://plane.com/payroll\",SkrV526AW:\"Hire and pay employees & contractors in the US and internationally, from one screen. Pay your entire team in just a few clicks.\",style:{width:\"100%\"},variant:\"d_TDmeQtV\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:410.5,intrinsicWidth:591,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1600+20+0+48+160+48+0),pixelHeight:770,pixelWidth:1182,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,src:\"https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png?scale-down-to=512 512w,https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png 1182w\"}},n2KyEHTC6:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:410.5,intrinsicWidth:591,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1346+0+0+88+160+64),pixelHeight:770,pixelWidth:1182,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) / 2)`,src:\"https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png?scale-down-to=512 512w,https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png 1182w\"}},UUxhJbSjU:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:410.5,intrinsicWidth:591,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1576+0+0+88+160+40),pixelHeight:770,pixelWidth:1182,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) / 2)`,src:\"https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png?scale-down-to=512 512w,https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png 1182w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:410.5,intrinsicWidth:591,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1719+0+0+128+160+64),pixelHeight:770,pixelWidth:1182,positionX:\"center\",positionY:\"center\",sizes:\"591px\",src:\"https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png?scale-down-to=512 512w,https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rNclinEY0CKUppesQsls0Qe8Eo.png 1182w\"},className:\"framer-ceg8wp\",\"data-framer-name\":\"1\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lq2guo\",\"data-framer-name\":\"Card and Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:586.5,intrinsicWidth:591,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1600+20+0+48+1098+48+0),pixelHeight:957,pixelWidth:1186,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,src:\"https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png 1186w\"}},n2KyEHTC6:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:586.5,intrinsicWidth:591,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1346+0+0+88+698+64),pixelHeight:957,pixelWidth:1186,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) * 0.45)`,src:\"https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png 1186w\"}},UUxhJbSjU:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:586.5,intrinsicWidth:591,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1576+0+0+88+650+40),pixelHeight:957,pixelWidth:1186,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) / 2)`,src:\"https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png 1186w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:586.5,intrinsicWidth:591,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1719+0+0+128+698+64),pixelHeight:957,pixelWidth:1186,positionX:\"center\",positionY:\"center\",sizes:\"591px\",src:\"https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v9jc5Xho5AKxSCcj4kZucfFQ.png 1186w\"},className:\"framer-1ntq0ms\",\"data-framer-name\":\"2\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:(componentViewport?.y||0)+0+1600+20+0+48+1098+48+611},n2KyEHTC6:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) * 0.55 - 91px, 1px)`,y:(componentViewport?.y||0)+0+1346+0+0+88+698+153.5},UUxhJbSjU:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) / 2 - 32px, 1px)`,y:(componentViewport?.y||0)+0+1576+0+0+88+650+129.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:408,width:\"500px\",y:(componentViewport?.y||0)+0+1719+0+0+128+698+153.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dqrrj-container\",nodeId:\"YgoQYmsRU\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{variant:\"FJVwfnpVj\"},n2KyEHTC6:{variant:\"RJzhhxHig\"}},children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"YgoQYmsRU\",j6iSkTOCi:\"Learn more\",KDBmW6xCU:\"Get a platform that scales with you\",Kt_heebdP:\"PwDDpvdZu\",layoutId:\"YgoQYmsRU\",nrWxLtsqb:\"https://plane.com/platform\",SkrV526AW:\"Plane grows with you as your needs change, with automated payments, in-country compliance, and custom workflows from simple to complex\",style:{width:\"100%\"},variant:\"RRqXVbU_e\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4r9sj4\",\"data-framer-name\":\"Card and Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:(componentViewport?.y||0)+0+1600+20+0+48+2213+48+486},n2KyEHTC6:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) / 2 - 32px, 1px)`,y:(componentViewport?.y||0)+0+1346+0+0+88+1413+91},UUxhJbSjU:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) / 2 - 32px, 1px)`,y:(componentViewport?.y||0)+0+1576+0+0+88+1317+40}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:408,width:\"500px\",y:(componentViewport?.y||0)+0+1719+0+0+128+1413+91,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lidm6v-container\",nodeId:\"gfxDZ3AXs\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{variant:\"BE31uYjT5\"},n2KyEHTC6:{variant:\"rOLXIu56Z\"}},children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"gfxDZ3AXs\",j6iSkTOCi:\"Customers & users love our support\",KDBmW6xCU:\"Receive exceptional Slack support\",Kt_heebdP:\"PwDDpvdZu\",layoutId:\"gfxDZ3AXs\",nrWxLtsqb:\"https://plane.com/customers\",SkrV526AW:\"Get your questions answered quickly with our knowledgeable 24/5 support, available via Slack, chat, and email\",style:{width:\"100%\"},variant:\"As1vodxMQ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:491,intrinsicWidth:577,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1600+20+0+48+2213+48+0),pixelHeight:928,pixelWidth:1044,src:\"https://framerusercontent.com/images/B8a8GxIWOfEI7BRuzoDWDcVQKNs.png\"}},n2KyEHTC6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:491,intrinsicWidth:577,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1346+0+0+88+1413+64),pixelHeight:928,pixelWidth:1044,src:\"https://framerusercontent.com/images/B8a8GxIWOfEI7BRuzoDWDcVQKNs.png\"}},UUxhJbSjU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:491,intrinsicWidth:577,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1576+0+0+88+1317+45),pixelHeight:928,pixelWidth:1044,src:\"https://framerusercontent.com/images/B8a8GxIWOfEI7BRuzoDWDcVQKNs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:491,intrinsicWidth:577,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1719+0+0+128+1413+64),pixelHeight:928,pixelWidth:1044,src:\"https://framerusercontent.com/images/B8a8GxIWOfEI7BRuzoDWDcVQKNs.png\"},className:\"framer-g8w8c9\",\"data-framer-name\":\"3\"})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{y:(componentViewport?.y||0)+0+4871},n2KyEHTC6:{y:(componentViewport?.y||0)+0+3461},UUxhJbSjU:{y:(componentViewport?.y||0)+0+3557}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1206,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3914,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mpezwh-container\",nodeId:\"nmWxoBImr\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{variant:\"GLkm952KY\"},n2KyEHTC6:{variant:\"jyFlSi_Aw\"},UUxhJbSjU:{variant:\"nkhHPoo1G\"}},children:/*#__PURE__*/_jsx(SupportYourWholeTeam,{height:\"100%\",id:\"nmWxoBImr\",layoutId:\"nmWxoBImr\",style:{width:\"100%\"},variant:\"cQBpx25ry\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{y:(componentViewport?.y||0)+0+6077},n2KyEHTC6:{y:(componentViewport?.y||0)+0+4667},UUxhJbSjU:{y:(componentViewport?.y||0)+0+4763}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:832,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mfdq57-container\",nodeId:\"AadYFCgLr\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{variant:\"Je0GRN_cw\"},n2KyEHTC6:{variant:\"ItOsecFyw\"}},children:/*#__PURE__*/_jsx(CustomerStories,{height:\"100%\",id:\"AadYFCgLr\",layoutId:\"AadYFCgLr\",style:{width:\"100%\"},variant:\"tWs4x_DG9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wwt63d\",\"data-border\":true,\"data-framer-name\":\"Stay in control   (and compliant) as you grow\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b8njn4\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 48px)`,y:(componentViewport?.y||0)+0+6909+0+48+0},n2KyEHTC6:{y:(componentViewport?.y||0)+0+5499+0+88+0},UUxhJbSjU:{y:(componentViewport?.y||0)+0+5595+0+88+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:`calc((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) * 0.793)`,y:(componentViewport?.y||0)+0+5952+0+128+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rk079d-container\",nodeId:\"chpwRGBuL\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2KyEHTC6:{ZBzt7yy4b:8}},children:/*#__PURE__*/_jsx(HeadingAndIntro,{FYNO2kSOt:16,height:\"100%\",HrpP6N7ov:8,hsobbYJOT:24,hUqgzIlxF:4,id:\"chpwRGBuL\",layoutId:\"chpwRGBuL\",MKbDxCkdU:\"var(--token-27a27431-fe37-48c5-ba99-6f2fbb127864, rgb(92, 102, 112))\",p0CuyMG90:\"var(--token-f56e7fe6-9c5b-4788-a232-ca0e487c6938, rgb(46, 51, 56))\",style:{width:\"100%\"},variant:\"ukKkfwgU_\",width:\"100%\",wkIQd2vD7:\"Stay in control (and compliant) as you grow\",xwR2bII6x:\"Plane is designed to support companies as they expand.\",ZBzt7yy4b:16})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ziqc1f\",\"data-framer-name\":\"Layout\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ya1ac7\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:602,intrinsicWidth:395,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6909+0+48+208+0+0+-8.2),pixelHeight:1204,pixelWidth:790,positionX:\"center\",positionY:\"center\",sizes:\"293px\",src:\"https://framerusercontent.com/images/zzQY3B1M2yuqhJFTaDxNaEN9kQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zzQY3B1M2yuqhJFTaDxNaEN9kQ.png?scale-down-to=1024 671w,https://framerusercontent.com/images/zzQY3B1M2yuqhJFTaDxNaEN9kQ.png 790w\"}},n2KyEHTC6:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:602,intrinsicWidth:395,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5499+0+88+208+0+-.0167),pixelHeight:1204,pixelWidth:790,positionX:\"center\",positionY:\"center\",sizes:\"352px\",src:\"https://framerusercontent.com/images/zzQY3B1M2yuqhJFTaDxNaEN9kQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zzQY3B1M2yuqhJFTaDxNaEN9kQ.png?scale-down-to=1024 671w,https://framerusercontent.com/images/zzQY3B1M2yuqhJFTaDxNaEN9kQ.png 790w\"}},UUxhJbSjU:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:602,intrinsicWidth:395,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5595+0+88+208+0+-.0167),pixelHeight:1204,pixelWidth:790,positionX:\"center\",positionY:\"center\",sizes:\"353px\",src:\"https://framerusercontent.com/images/zzQY3B1M2yuqhJFTaDxNaEN9kQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zzQY3B1M2yuqhJFTaDxNaEN9kQ.png?scale-down-to=1024 671w,https://framerusercontent.com/images/zzQY3B1M2yuqhJFTaDxNaEN9kQ.png 790w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:602,intrinsicWidth:395,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5952+0+128+208+0+-.0167),pixelHeight:1204,pixelWidth:790,positionX:\"center\",positionY:\"center\",sizes:\"395px\",src:\"https://framerusercontent.com/images/zzQY3B1M2yuqhJFTaDxNaEN9kQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zzQY3B1M2yuqhJFTaDxNaEN9kQ.png?scale-down-to=1024 671w,https://framerusercontent.com/images/zzQY3B1M2yuqhJFTaDxNaEN9kQ.png 790w\"},className:\"framer-1t7sg2b\",\"data-framer-name\":\"Photo\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:180,intrinsicWidth:273.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6909+0+48+208+0+0+0-193.4294),pixelHeight:417,pixelWidth:613,positionX:\"center\",positionY:\"center\",sizes:\"274px\",src:\"https://framerusercontent.com/images/KZ2Y91IjXGRU0uW9mxkRPrGLl8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KZ2Y91IjXGRU0uW9mxkRPrGLl8.png?scale-down-to=512 512w,https://framerusercontent.com/images/KZ2Y91IjXGRU0uW9mxkRPrGLl8.png 613w\"}},n2KyEHTC6:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:180,intrinsicWidth:273.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5499+0+88+208+0+0-90.4),pixelHeight:417,pixelWidth:613,positionX:\"center\",positionY:\"center\",sizes:\"274px\",src:\"https://framerusercontent.com/images/KZ2Y91IjXGRU0uW9mxkRPrGLl8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KZ2Y91IjXGRU0uW9mxkRPrGLl8.png?scale-down-to=512 512w,https://framerusercontent.com/images/KZ2Y91IjXGRU0uW9mxkRPrGLl8.png 613w\"}},UUxhJbSjU:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:180,intrinsicWidth:273.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5595+0+88+208+0+44.4833),pixelHeight:417,pixelWidth:613,positionX:\"center\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/KZ2Y91IjXGRU0uW9mxkRPrGLl8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KZ2Y91IjXGRU0uW9mxkRPrGLl8.png?scale-down-to=512 512w,https://framerusercontent.com/images/KZ2Y91IjXGRU0uW9mxkRPrGLl8.png 613w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:180,intrinsicWidth:273.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5952+0+128+208+0+44.4833),pixelHeight:417,pixelWidth:613,positionX:\"center\",positionY:\"center\",sizes:\"274px\",src:\"https://framerusercontent.com/images/KZ2Y91IjXGRU0uW9mxkRPrGLl8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KZ2Y91IjXGRU0uW9mxkRPrGLl8.png?scale-down-to=512 512w,https://framerusercontent.com/images/KZ2Y91IjXGRU0uW9mxkRPrGLl8.png 613w\"},className:\"framer-q9c1ag\",\"data-framer-name\":\"Screenshot\",style:{transformPerspective:1200,z:48}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7clrcw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12j85sn\",\"data-framer-name\":\"Feature Sections/Feature\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ftbn7b\",\"data-framer-name\":\"Brand icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hwx4hk\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uxks8z-container\",\"data-framer-name\":\"chart-bar\",isAuthoredByUser:true,isModuleExternal:true,name:\"chart-bar\",nodeId:\"G3evGwI1F\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(FramerIcon,{color:\"var(--token-e5b886d0-a1ef-4526-b382-0a2c92520ef8, rgb(153, 51, 255))\",height:\"100%\",id:\"G3evGwI1F\",layoutId:\"G3evGwI1F\",name:\"chart-bar\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3 13.125C3 12.5037 3.50368 12 4.125 12H6.375C6.99632 12 7.5 12.5037 7.5 13.125V19.875C7.5 20.4963 6.99632 21 6.375 21H4.125C3.50368 21 3 20.4963 3 19.875V13.125Z\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9.75 8.625C9.75 8.00368 10.2537 7.5 10.875 7.5H13.125C13.7463 7.5 14.25 8.00368 14.25 8.625V19.875C14.25 20.4963 13.7463 21 13.125 21H10.875C10.2537 21 9.75 20.4963 9.75 19.875V8.625Z\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M16.5 4.125C16.5 3.50368 17.0037 3 17.625 3H19.875C20.4963 3 21 3.50368 21 4.125V19.875C21 20.4963 20.4963 21 19.875 21H17.625C17.0037 21 16.5 20.4963 16.5 19.875V4.125Z\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 112px, 1px)`,y:(componentViewport?.y||0)+0+6909+0+48+208+0+58+0+0+0},n2KyEHTC6:{y:(componentViewport?.y||0)+0+5499+0+88+208+0+0+0+0},UUxhJbSjU:{y:(componentViewport?.y||0)+0+5595+0+88+208+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) * 0.45 - 64px, 1px)`,y:(componentViewport?.y||0)+0+5952+0+128+208+0+0+-91+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g6i5im-container\",nodeId:\"YLKTzHX2W\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(HeadingAndIntro,{FYNO2kSOt:16,height:\"100%\",HrpP6N7ov:8,hsobbYJOT:24,hUqgzIlxF:4,id:\"YLKTzHX2W\",layoutId:\"YLKTzHX2W\",MKbDxCkdU:\"var(--token-27a27431-fe37-48c5-ba99-6f2fbb127864, rgb(92, 102, 112))\",p0CuyMG90:\"var(--token-f56e7fe6-9c5b-4788-a232-ca0e487c6938, rgb(46, 51, 56))\",style:{width:\"100%\"},variant:\"TICaw3fzu\",width:\"100%\",wkIQd2vD7:\"Grow from 1 to 1,000 employees and contractors\",xwR2bII6x:\"Does your payroll platform have several features you don\u2019t need, but  they keep trying to upsell you anyway? Plane offers simple, useful  components that you can combine to meet complex needs as you grow.\",ZBzt7yy4b:16})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1atppt7\",\"data-framer-name\":\"Feature Sections/Feature\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-90gcjq\",\"data-framer-name\":\"Brand icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16c2zal\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lr3ya8-container\",\"data-framer-name\":\"cog-6-tooth\",isAuthoredByUser:true,isModuleExternal:true,name:\"cog-6-tooth\",nodeId:\"OYBthFjz4\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(FramerIcon,{color:\"var(--token-e5b886d0-a1ef-4526-b382-0a2c92520ef8, rgb(153, 51, 255))\",height:\"100%\",id:\"OYBthFjz4\",layoutId:\"OYBthFjz4\",name:\"cog-6-tooth\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.59356 3.94014C9.68397 3.39768 10.1533 3.00009 10.7033 3.00009H13.2972C13.8472 3.00009 14.3165 3.39768 14.4069 3.94014L14.6204 5.22119C14.6828 5.59523 14.9327 5.9068 15.2645 6.09045C15.3387 6.13151 15.412 6.17393 15.4844 6.21766C15.8095 6.41393 16.2048 6.47495 16.5604 6.34175L17.7772 5.88587C18.2922 5.69293 18.8712 5.9006 19.1462 6.37687L20.4432 8.6233C20.7181 9.09957 20.6085 9.70482 20.1839 10.0544L19.1795 10.8812C18.887 11.122 18.742 11.4938 18.7491 11.8726C18.7498 11.915 18.7502 11.9575 18.7502 12.0001C18.7502 12.0427 18.7498 12.0852 18.7491 12.1275C18.742 12.5064 18.887 12.8782 19.1795 13.119L20.1839 13.9458C20.6085 14.2953 20.7181 14.9006 20.4432 15.3769L19.1462 17.6233C18.8712 18.0996 18.2922 18.3072 17.7772 18.1143L16.5604 17.6584C16.2048 17.5252 15.8095 17.5862 15.4844 17.7825C15.412 17.8263 15.3387 17.8687 15.2645 17.9097C14.9327 18.0934 14.6828 18.4049 14.6204 18.779L14.4069 20.06C14.3165 20.6025 13.8472 21.0001 13.2972 21.0001H10.7033C10.1533 21.0001 9.68397 20.6025 9.59356 20.06L9.38005 18.779C9.31771 18.4049 9.06774 18.0934 8.73597 17.9097C8.66179 17.8687 8.58847 17.8263 8.51604 17.7825C8.19101 17.5863 7.79568 17.5252 7.44011 17.6584L6.22325 18.1143C5.70826 18.3072 5.12926 18.0996 4.85429 17.6233L3.55731 15.3769C3.28234 14.9006 3.39199 14.2954 3.81657 13.9458L4.82092 13.119C5.11343 12.8782 5.25843 12.5064 5.25141 12.1276C5.25063 12.0852 5.25023 12.0427 5.25023 12.0001C5.25023 11.9575 5.25063 11.915 5.25141 11.8726C5.25843 11.4938 5.11343 11.122 4.82092 10.8812L3.81657 10.0544C3.39199 9.70484 3.28234 9.09958 3.55731 8.62332L4.85429 6.37688C5.12926 5.90061 5.70825 5.69295 6.22325 5.88588L7.4401 6.34176C7.79566 6.47496 8.19099 6.41394 8.51603 6.21767C8.58846 6.17393 8.66179 6.13151 8.73597 6.09045C9.06774 5.9068 9.31771 5.59523 9.38005 5.22119L9.59356 3.94014Z\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3432 10.3431 9.00001 12 9.00001C13.6569 9.00001 15 10.3432 15 12Z\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 112px, 1px)`,y:(componentViewport?.y||0)+0+6909+0+48+208+0+58+0+208+0},n2KyEHTC6:{y:(componentViewport?.y||0)+0+5499+0+88+208+0+0+208+0},UUxhJbSjU:{y:(componentViewport?.y||0)+0+5595+0+88+208+0+0+208+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) * 0.45 - 64px, 1px)`,y:(componentViewport?.y||0)+0+5952+0+128+208+0+0+117+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9ceel2-container\",nodeId:\"tOD2v7c5R\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(HeadingAndIntro,{FYNO2kSOt:16,height:\"100%\",HrpP6N7ov:8,hsobbYJOT:24,hUqgzIlxF:4,id:\"tOD2v7c5R\",layoutId:\"tOD2v7c5R\",MKbDxCkdU:\"var(--token-27a27431-fe37-48c5-ba99-6f2fbb127864, rgb(92, 102, 112))\",p0CuyMG90:\"var(--token-f56e7fe6-9c5b-4788-a232-ca0e487c6938, rgb(46, 51, 56))\",style:{width:\"100%\"},variant:\"TICaw3fzu\",width:\"100%\",wkIQd2vD7:\"Set it and forget it, with automated payments\",xwR2bII6x:\"We like automating your manual work for you. Set up automated payments once, and we\u2019ll take care of the rest.\",ZBzt7yy4b:16})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kbjc0x\",\"data-framer-name\":\"Feature Sections/Feature\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tfbun6\",\"data-framer-name\":\"Brand icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1juf0ow\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x5ifah-container\",\"data-framer-name\":\"shield-check\",isAuthoredByUser:true,isModuleExternal:true,name:\"shield-check\",nodeId:\"TLFFUoSUX\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(FramerIcon,{color:\"var(--token-e5b886d0-a1ef-4526-b382-0a2c92520ef8, rgb(153, 51, 255))\",height:\"100%\",id:\"TLFFUoSUX\",layoutId:\"TLFFUoSUX\",name:\"shield-check\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9 12.7498L11.25 14.9998L15 9.74985M12 2.71411C9.8495 4.75073 6.94563 5.99986 3.75 5.99986C3.69922 5.99986 3.64852 5.99955 3.59789 5.99892C3.2099 7.17903 3 8.43995 3 9.74991C3 15.3414 6.82432 20.0397 12 21.3719C17.1757 20.0397 21 15.3414 21 9.74991C21 8.43995 20.7901 7.17903 20.4021 5.99892C20.3515 5.99955 20.3008 5.99986 20.25 5.99986C17.0544 5.99986 14.1505 4.75073 12 2.71411Z\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 112px, 1px)`,y:(componentViewport?.y||0)+0+6909+0+48+208+0+58+0+416+0},n2KyEHTC6:{y:(componentViewport?.y||0)+0+5499+0+88+208+0+0+416+0},UUxhJbSjU:{y:(componentViewport?.y||0)+0+5595+0+88+208+0+0+416+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) * 0.45 - 64px, 1px)`,y:(componentViewport?.y||0)+0+5952+0+128+208+0+0+325+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w8azza-container\",nodeId:\"SymBYlupE\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(HeadingAndIntro,{FYNO2kSOt:16,height:\"100%\",HrpP6N7ov:8,hsobbYJOT:24,hUqgzIlxF:4,id:\"SymBYlupE\",layoutId:\"SymBYlupE\",MKbDxCkdU:\"var(--token-27a27431-fe37-48c5-ba99-6f2fbb127864, rgb(92, 102, 112))\",p0CuyMG90:\"var(--token-f56e7fe6-9c5b-4788-a232-ca0e487c6938, rgb(46, 51, 56))\",style:{width:\"100%\"},variant:\"TICaw3fzu\",width:\"100%\",wkIQd2vD7:\"Automated tax compliance\",xwR2bII6x:\"Plane takes care of your compliance needs, including collecting W-8 and  W-9 forms, submitting your 1099, and incorporating I-9 completion into onboarding\",ZBzt7yy4b:16})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ztpqt\",\"data-framer-name\":\"Feature Sections/Feature\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p9heu4\",\"data-framer-name\":\"Brand icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-18d5w1b\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w9wfry-container\",\"data-framer-name\":\"map-pin\",isAuthoredByUser:true,isModuleExternal:true,name:\"map-pin\",nodeId:\"GNORm3Otn\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(FramerIcon,{color:\"var(--token-e5b886d0-a1ef-4526-b382-0a2c92520ef8, rgb(153, 51, 255))\",height:\"100%\",id:\"GNORm3Otn\",layoutId:\"GNORm3Otn\",name:\"map-pin\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15 10.5C15 12.1569 13.6569 13.5 12 13.5C10.3431 13.5 9 12.1569 9 10.5C9 8.84315 10.3431 7.5 12 7.5C13.6569 7.5 15 8.84315 15 10.5Z\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M19.5 10.5C19.5 17.6421 12 21.75 12 21.75C12 21.75 4.5 17.6421 4.5 10.5C4.5 6.35786 7.85786 3 12 3C16.1421 3 19.5 6.35786 19.5 10.5Z\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 112px, 1px)`,y:(componentViewport?.y||0)+0+6909+0+48+208+0+58+0+624+0},n2KyEHTC6:{y:(componentViewport?.y||0)+0+5499+0+88+208+0+0+624+0},UUxhJbSjU:{y:(componentViewport?.y||0)+0+5595+0+88+208+0+0+624+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) * 0.45 - 64px, 1px)`,y:(componentViewport?.y||0)+0+5952+0+128+208+0+0+533+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vm5sqo-container\",nodeId:\"SFEvxsTmi\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(HeadingAndIntro,{FYNO2kSOt:16,height:\"100%\",HrpP6N7ov:8,hsobbYJOT:24,hUqgzIlxF:4,id:\"SFEvxsTmi\",layoutId:\"SFEvxsTmi\",MKbDxCkdU:\"var(--token-27a27431-fe37-48c5-ba99-6f2fbb127864, rgb(92, 102, 112))\",p0CuyMG90:\"var(--token-f56e7fe6-9c5b-4788-a232-ca0e487c6938, rgb(46, 51, 56))\",style:{width:\"100%\"},variant:\"TICaw3fzu\",width:\"100%\",wkIQd2vD7:\"Local compliance, wherever you\u2019re hiring\",xwR2bII6x:\"Get localized contracts for contractors and employees and expert help on your local compliance questions\",ZBzt7yy4b:16})})})})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o68w3o\",\"data-framer-name\":\"Treat your team fairly\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ymcpk7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xpkbc6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4f8d7h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:203.5,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8055+0+48+0+0+0+0+0),pixelHeight:407,pixelWidth:490,src:\"https://framerusercontent.com/images/ZK9uWtE9Gin27j2nVj037JYM.svg\"}},n2KyEHTC6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:203.5,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6667+0+88+0+0+0+0),pixelHeight:407,pixelWidth:490,src:\"https://framerusercontent.com/images/ZK9uWtE9Gin27j2nVj037JYM.svg\"}},UUxhJbSjU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:203.5,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6763+0+88+0+0+0+0),pixelHeight:407,pixelWidth:490,src:\"https://framerusercontent.com/images/ZK9uWtE9Gin27j2nVj037JYM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:203.5,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7018+0+128+0+0+0+0),pixelHeight:407,pixelWidth:490,src:\"https://framerusercontent.com/images/ZK9uWtE9Gin27j2nVj037JYM.svg\"},className:\"framer-1mbmams\",\"data-framer-name\":\"Talent-is-everywhere\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aedtj9\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-rcgjgg\",\"data-framer-name\":\"Copy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-tvi0w7\",\"data-styles-preset\":\"FrSqC_i0G\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-cffae27a-ef96-49e0-a61d-ab45c807ee2b, rgb(252, 247, 255))\"},children:\"Talent knows no borders. \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9vaw==\",\"--framer-font-family\":'\"CircularXX Book\", \"CircularXX Book Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"37px\",\"--framer-text-color\":\"rgb(246, 229, 255)\"},children:[\"It\u2019s not contained to a 20-mile radius.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9vaw==\",\"--framer-font-family\":'\"CircularXX Book\", \"CircularXX Book Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"37px\",\"--framer-text-color\":\"rgb(246, 229, 255)\"},children:[\"We often miss out on the magic of finding the most exceptional people that could propel us forward because we get stuck figuring out the logistics.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9vaw==\",\"--framer-font-family\":'\"CircularXX Book\", \"CircularXX Book Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"37px\",\"--framer-text-color\":\"rgb(246, 229, 255)\"},children:[\"At Plane, we believe your focus should be on finding and fostering the best talent the world has to offer, so we built the platform to help you do it.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9vaw==\",\"--framer-font-family\":'\"CircularXX Book\", \"CircularXX Book Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"37px\",\"--framer-text-color\":\"rgb(246, 229, 255)\"},children:\"Not only can you hire and pay your whole global team through Plane, but you can also give everyone a world-class payroll and HR experience, regardless of whether they\u2019re a contractor or employee. We\u2019ve fully supported both worker types from day one, from giving them full access to the platform to direct customer support from our team. Treat your team right with Plane.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9vaw==\",\"--framer-font-family\":'\"CircularXX Book\", \"CircularXX Book Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"37px\",\"--framer-text-color\":\"rgb(246, 229, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9sZA==\",\"--framer-font-family\":'\"CircularXX Bold\", \"CircularXX Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"37px\",\"--framer-text-color\":\"rgb(246, 229, 255)\"},children:\"\u2014Matt Pelc, CEO at Plane\"})]}),className:\"framer-1cuvisk\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris diam turpis, dictum et fermentum interdum, congue nec augue. Donec non faucibus est. Donec malesuada ex id elit convallis, quis sollicitudin eros tristique. Etiam hendrerit sapien commodo lorem fringilla, eu porta tellus fringilla. Pellentesque tincidunt pharetra pellentesque. Etiam ornare varius leo, at accumsan nisi ornare vitae. Integer aliquet felis tellus, ut lacinia tortor placerat id. Sed vitae feugiat nibh, in dignissim velit. Donec sodales mi non urna porta consectetur. Sed lectus lectus, fringilla id consectetur in, porta quis odio. Integer ac mollis nisi, a mollis quam. Praesent vel purus non nunc egestas mollis. Curabitur vitae lorem eget dui suscipit tristique. Nunc consectetur\",fonts:[\"CUSTOM;CircularXX Book\",\"CUSTOM;CircularXX Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qfl6ev hidden-cunai5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rokg82\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lavlg9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-120i3a3\",\"data-styles-preset\":\"HxfFedCjM\",style:{\"--framer-text-color\":\"var(--token-cffae27a-ef96-49e0-a61d-ab45c807ee2b, rgb(252, 247, 255))\"},children:\"Learn what contractors are saying about Plane.\"})}),className:\"framer-ka9uw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wq2524-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MYvPS4gea\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"flex-end\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:0,height:\"100%\",hoverFactor:.5,id:\"MYvPS4gea\",layoutId:\"MYvPS4gea\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hqymw8\",\"data-framer-name\":\"Testimonial 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"240px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-r5hmj4-container\",inComponentSlot:true,nodeId:\"ut64wkXzK\",rendersWithMotion:true,scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(G2Testimonials,{cUVZmPnFb:\"Software Engineer\",E_FrKphUN:\"Carlos Matheus S.\",guo_ebKQD:\"https://www.g2.com/products/plane/reviews/plane-review-10736177\",height:\"100%\",id:\"ut64wkXzK\",layoutId:\"ut64wkXzK\",RkdvdwVj_:\"\u201CGreat platform with awesome support. It\u2019s easy to use and easy to integrate with my bank account.\u201D\",s3IthGIku:addImageAlt({pixelHeight:380,pixelWidth:370,src:\"https://framerusercontent.com/images/PTmxCd9oWtVD461pIGGEZG53CUI.png\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1up8fsa\",\"data-framer-name\":\"Testimonial 3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"240px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1byqx0o-container\",inComponentSlot:true,nodeId:\"hBAzah0VD\",rendersWithMotion:true,scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(G2Testimonials,{cUVZmPnFb:\"Sales Administrator\",E_FrKphUN:\"Melanie C. \",guo_ebKQD:\"https://www.g2.com/products/plane/reviews/plane-review-9726015\",height:\"100%\",id:\"hBAzah0VD\",layoutId:\"hBAzah0VD\",pWV_tRANo:addImageAlt({pixelHeight:248,pixelWidth:248,src:\"https://framerusercontent.com/images/4Xxit89G9H0ZHSRXsD85kTsqjKI.png\"},\"\"),RkdvdwVj_:\"\u201CFast and efficient service.\u201D\",s3IthGIku:addImageAlt({pixelHeight:376,pixelWidth:370,src:\"https://framerusercontent.com/images/9dazjs8IyDOoaPpTCc0yZzBWLU.png\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rbahap\",\"data-framer-name\":\"Testimonial 4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"240px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ousjd8-container\",inComponentSlot:true,nodeId:\"Qr_Njdbog\",rendersWithMotion:true,scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(G2Testimonials,{cUVZmPnFb:\"Client Success Manager\",E_FrKphUN:\"Juan M. \",guo_ebKQD:\"https://www.g2.com/products/plane/reviews/plane-review-10584776\",height:\"100%\",id:\"Qr_Njdbog\",layoutId:\"Qr_Njdbog\",pWV_tRANo:addImageAlt({pixelHeight:248,pixelWidth:248,src:\"https://framerusercontent.com/images/QWnhG7QNuiQY9mGvJNSbGJjo.png\"},\"\"),RkdvdwVj_:\"\u201CGreat experience with support.\u201D\",s3IthGIku:addImageAlt({pixelHeight:380,pixelWidth:370,src:\"https://framerusercontent.com/images/5ISU1tDs8f4zWhwbDE8hQQe8.png\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17k2e09\",\"data-framer-name\":\"Testimonial 2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"240px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eloj6f-container\",inComponentSlot:true,nodeId:\"yUDkPscAi\",rendersWithMotion:true,scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(G2Testimonials,{cUVZmPnFb:\"Brazil, CSR\",E_FrKphUN:\"Ana S. \",guo_ebKQD:\"https://www.g2.com/products/plane/reviews/plane-review-9924880\",height:\"100%\",id:\"yUDkPscAi\",layoutId:\"yUDkPscAi\",RkdvdwVj_:\"\u201CPlane is very useful, easy to understand and user friendly. Customer support is also very responsive.\u201D\",s3IthGIku:addImageAlt({pixelHeight:380,pixelWidth:370,src:\"https://framerusercontent.com/images/y6b1KoDAZLZS5W2iV2pZcLWyE.png\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dxaish\",\"data-framer-name\":\"Testimonial 5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"240px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-odlquo-container\",inComponentSlot:true,nodeId:\"N8I6pw1tT\",rendersWithMotion:true,scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(G2Testimonials,{cUVZmPnFb:\"Technical Author\",E_FrKphUN:\"Pavel P. \",guo_ebKQD:\"https://www.g2.com/products/plane/reviews/plane-review-10375135\",height:\"100%\",id:\"N8I6pw1tT\",layoutId:\"N8I6pw1tT\",pWV_tRANo:addImageAlt({pixelHeight:248,pixelWidth:248,src:\"https://framerusercontent.com/images/wRHkKSjmZjN8MIHiNqDMEWLv6c.png\"},\"\"),RkdvdwVj_:\"\u201CI received my first payment very fast even before the expected date.\u201D\",s3IthGIku:addImageAlt({pixelHeight:390,pixelWidth:370,src:\"https://framerusercontent.com/images/UlFkvMK57mLiV7T8Rfyt2jlhNI.png\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-69ibj2\",\"data-framer-name\":\"Testimonial 6\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"240px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y9wj0-container\",inComponentSlot:true,nodeId:\"GeuyGM7XR\",rendersWithMotion:true,scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(G2Testimonials,{cUVZmPnFb:\"Medical Interpreter\",E_FrKphUN:\"Mar\\xeda Fernanda O.\",guo_ebKQD:\"https://www.g2.com/products/plane/reviews/plane-review-10374843\",height:\"100%\",id:\"GeuyGM7XR\",layoutId:\"GeuyGM7XR\",pWV_tRANo:addImageAlt({pixelHeight:248,pixelWidth:248,src:\"https://framerusercontent.com/images/1Ec6g0qojCV7hAggD4DwsHLlw.png\"},\"\"),RkdvdwVj_:\"\u201CEasy to understand, quick, safe.\u201D \",s3IthGIku:addImageAlt({pixelHeight:380,pixelWidth:370,src:\"https://framerusercontent.com/images/Bh7I54y3xLfnkpY600yJWz90.png\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sns7el\",\"data-framer-name\":\"Support\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-146394p\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uftmhf\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 48px)`,y:(componentViewport?.y||0)+0+9532+48+0+0+0+0},n2KyEHTC6:{y:(componentViewport?.y||0)+0+8441+88+0+0+0+0},UUxhJbSjU:{y:(componentViewport?.y||0)+0+8537+88+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.7632)`,y:(componentViewport?.y||0)+0+8872+128+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l7f6tk-container\",nodeId:\"yD_hDz2gf\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2KyEHTC6:{ZBzt7yy4b:8}},children:/*#__PURE__*/_jsx(HeadingAndIntro,{FYNO2kSOt:16,height:\"100%\",HrpP6N7ov:8,hsobbYJOT:24,hUqgzIlxF:4,id:\"yD_hDz2gf\",layoutId:\"yD_hDz2gf\",MKbDxCkdU:\"var(--token-27a27431-fe37-48c5-ba99-6f2fbb127864, rgb(92, 102, 112))\",p0CuyMG90:\"var(--token-f56e7fe6-9c5b-4788-a232-ca0e487c6938, rgb(46, 51, 56))\",style:{width:\"100%\"},variant:\"ukKkfwgU_\",width:\"100%\",wkIQd2vD7:\"Superb support for your whole team\",xwR2bII6x:\"Receive thoughtful support from friendly, knowledgeable humans \u2014 not chatbots \u2014 on Slack.\",ZBzt7yy4b:16})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r4d7l9\",\"data-framer-name\":\"Frame 1752\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tqez7j\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9gkxzq\",\"data-framer-name\":\"Feature Sections/Feature\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9k3w57\",\"data-framer-name\":\"Brand icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-tciwqc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12pqc8o-container\",\"data-framer-name\":\"lifebuoy\",isAuthoredByUser:true,isModuleExternal:true,name:\"lifebuoy\",nodeId:\"spzV5K9VQ\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(FramerIcon,{color:\"var(--token-e5b886d0-a1ef-4526-b382-0a2c92520ef8, rgb(153, 51, 255))\",height:\"100%\",id:\"spzV5K9VQ\",layoutId:\"spzV5K9VQ\",name:\"lifebuoy\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.7124 4.3299C17.2999 4.69153 17.8548 5.12691 18.364 5.63604C18.8731 6.14517 19.3085 6.70012 19.6701 7.28763M16.7124 4.3299L13.2636 8.46838M16.7124 4.3299C13.8316 2.5567 10.1684 2.5567 7.28763 4.3299M19.6701 7.28763L15.5316 10.7364M19.6701 7.28763C21.4433 10.1684 21.4433 13.8316 19.6701 16.7124M15.5316 10.7364C15.3507 10.2297 15.0574 9.75408 14.6517 9.34835C14.2459 8.94262 13.7703 8.6493 13.2636 8.46838M15.5316 10.7364C15.8228 11.5519 15.8228 12.4481 15.5316 13.2636M13.2636 8.46838C12.4481 8.17721 11.5519 8.17721 10.7364 8.46838M15.5316 13.2636C15.3507 13.7703 15.0574 14.2459 14.6517 14.6517C14.2459 15.0574 13.7703 15.3507 13.2636 15.5316M15.5316 13.2636L19.6701 16.7124M19.6701 16.7124C19.3085 17.2999 18.8731 17.8548 18.364 18.364C17.8548 18.8731 17.2999 19.3085 16.7124 19.6701M16.7124 19.6701L13.2636 15.5316M16.7124 19.6701C13.8316 21.4433 10.1684 21.4433 7.28763 19.6701M13.2636 15.5316C12.4481 15.8228 11.5519 15.8228 10.7364 15.5316M10.7364 15.5316C10.2297 15.3507 9.75408 15.0574 9.34835 14.6517C8.94262 14.2459 8.6493 13.7703 8.46838 13.2636M10.7364 15.5316L7.28763 19.6701M7.28763 19.6701C6.70012 19.3085 6.14517 18.8731 5.63604 18.364C5.12691 17.8548 4.69153 17.2999 4.3299 16.7124M4.3299 16.7124L8.46838 13.2636M4.3299 16.7124C2.5567 13.8316 2.5567 10.1684 4.3299 7.28763M8.46838 13.2636C8.17721 12.4481 8.17721 11.5519 8.46838 10.7364M8.46838 10.7364C8.6493 10.2297 8.94262 9.75408 9.34835 9.34835C9.75408 8.94262 10.2297 8.6493 10.7364 8.46838M8.46838 10.7364L4.3299 7.28763M10.7364 8.46838L7.28763 4.3299M7.28763 4.3299C6.70012 4.69153 6.14517 5.12691 5.63604 5.63604C5.12691 6.14517 4.69153 6.70013 4.3299 7.28763\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 112px, 1px)`,y:(componentViewport?.y||0)+0+9532+48+0+208+0+410+0+0+0},n2KyEHTC6:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 192px, 1px)`,y:(componentViewport?.y||0)+0+8441+88+0+208+0+426+0+0+0},UUxhJbSjU:{y:(componentViewport?.y||0)+0+8537+88+0+208+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.45 - 64px, 1px)`,y:(componentViewport?.y||0)+0+8872+128+0+208+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pg3gs2-container\",nodeId:\"DbckfzYbW\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(HeadingAndIntro,{FYNO2kSOt:16,height:\"100%\",HrpP6N7ov:8,hsobbYJOT:24,hUqgzIlxF:4,id:\"DbckfzYbW\",layoutId:\"DbckfzYbW\",MKbDxCkdU:\"var(--token-27a27431-fe37-48c5-ba99-6f2fbb127864, rgb(92, 102, 112))\",p0CuyMG90:\"var(--token-f56e7fe6-9c5b-4788-a232-ca0e487c6938, rgb(46, 51, 56))\",style:{width:\"100%\"},variant:\"TICaw3fzu\",width:\"100%\",wkIQd2vD7:\"Get questions answered quickly for you, your contractors, and employees\",xwR2bII6x:\"No need for you to act as a go-between. Our team is available 24/5 to answer questions directly for you and your entire team.\",ZBzt7yy4b:16})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hxqota\",\"data-framer-name\":\"Feature Sections/Feature\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bmxej3\",\"data-framer-name\":\"Brand icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ues4rl\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8mkqir-container\",\"data-framer-name\":\"light-bulb\",isAuthoredByUser:true,isModuleExternal:true,name:\"light-bulb\",nodeId:\"EAbK0FMhA\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(FramerIcon,{color:\"var(--token-e5b886d0-a1ef-4526-b382-0a2c92520ef8, rgb(153, 51, 255))\",height:\"100%\",id:\"EAbK0FMhA\",layoutId:\"EAbK0FMhA\",name:\"light-bulb\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 18V12.75M12 12.75C12.5179 12.75 13.0206 12.6844 13.5 12.561M12 12.75C11.4821 12.75 10.9794 12.6844 10.5 12.561M14.25 20.0394C13.5212 20.1777 12.769 20.25 12 20.25C11.231 20.25 10.4788 20.1777 9.75 20.0394M13.5 22.422C13.007 22.4736 12.5066 22.5 12 22.5C11.4934 22.5 10.993 22.4736 10.5 22.422M14.25 18V17.8083C14.25 16.8254 14.9083 15.985 15.7585 15.4917C17.9955 14.1938 19.5 11.7726 19.5 9C19.5 4.85786 16.1421 1.5 12 1.5C7.85786 1.5 4.5 4.85786 4.5 9C4.5 11.7726 6.00446 14.1938 8.24155 15.4917C9.09173 15.985 9.75 16.8254 9.75 17.8083V18\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 112px, 1px)`,y:(componentViewport?.y||0)+0+9532+48+0+208+0+410+0+208+0},n2KyEHTC6:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 192px, 1px)`,y:(componentViewport?.y||0)+0+8441+88+0+208+0+426+0+208+0},UUxhJbSjU:{y:(componentViewport?.y||0)+0+8537+88+0+208+0+0+208+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.45 - 64px, 1px)`,y:(componentViewport?.y||0)+0+8872+128+0+208+0+0+208+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11841vx-container\",nodeId:\"zaBbEmgbO\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(HeadingAndIntro,{FYNO2kSOt:16,height:\"100%\",HrpP6N7ov:8,hsobbYJOT:24,hUqgzIlxF:4,id:\"zaBbEmgbO\",layoutId:\"zaBbEmgbO\",MKbDxCkdU:\"var(--token-27a27431-fe37-48c5-ba99-6f2fbb127864, rgb(92, 102, 112))\",p0CuyMG90:\"var(--token-f56e7fe6-9c5b-4788-a232-ca0e487c6938, rgb(46, 51, 56))\",style:{width:\"100%\"},variant:\"TICaw3fzu\",width:\"100%\",wkIQd2vD7:\"Expert help for complex questions\",xwR2bII6x:\"Have questions about local employment laws or immigration? Get advice on compliance and immigration from our team of experts.\",ZBzt7yy4b:16})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-99s2f1\",\"data-framer-name\":\"Feature Sections/Feature\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rf7br3\",\"data-framer-name\":\"Brand icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-shne5p\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15a4agp-container\",\"data-framer-name\":\"face-smile\",isAuthoredByUser:true,isModuleExternal:true,name:\"face-smile\",nodeId:\"ZLtL5qaqU\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(FramerIcon,{color:\"var(--token-e5b886d0-a1ef-4526-b382-0a2c92520ef8, rgb(153, 51, 255))\",height:\"100%\",id:\"ZLtL5qaqU\",layoutId:\"ZLtL5qaqU\",name:\"face-smile\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.182 15.182C13.4246 16.9393 10.5754 16.9393 8.81802 15.182M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12ZM9.75 9.75C9.75 10.1642 9.58211 10.5 9.375 10.5C9.16789 10.5 9 10.1642 9 9.75C9 9.33579 9.16789 9 9.375 9C9.58211 9 9.75 9.33579 9.75 9.75ZM9.375 9.75H9.3825V9.765H9.375V9.75ZM15 9.75C15 10.1642 14.8321 10.5 14.625 10.5C14.4179 10.5 14.25 10.1642 14.25 9.75C14.25 9.33579 14.4179 9 14.625 9C14.8321 9 15 9.33579 15 9.75ZM14.625 9.75H14.6325V9.765H14.625V9.75Z\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 112px, 1px)`,y:(componentViewport?.y||0)+0+9532+48+0+208+0+410+0+416+0},n2KyEHTC6:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 192px, 1px)`,y:(componentViewport?.y||0)+0+8441+88+0+208+0+426+0+416+0},UUxhJbSjU:{y:(componentViewport?.y||0)+0+8537+88+0+208+0+0+416+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.45 - 64px, 1px)`,y:(componentViewport?.y||0)+0+8872+128+0+208+0+0+416+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wgj2lm-container\",nodeId:\"zo3Fbe0Ol\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(HeadingAndIntro,{FYNO2kSOt:16,height:\"100%\",HrpP6N7ov:8,hsobbYJOT:24,hUqgzIlxF:4,id:\"zo3Fbe0Ol\",layoutId:\"zo3Fbe0Ol\",MKbDxCkdU:\"var(--token-27a27431-fe37-48c5-ba99-6f2fbb127864, rgb(92, 102, 112))\",p0CuyMG90:\"var(--token-f56e7fe6-9c5b-4788-a232-ca0e487c6938, rgb(46, 51, 56))\",style:{width:\"100%\"},variant:\"TICaw3fzu\",width:\"100%\",wkIQd2vD7:\"Friendly, consultative sales team\",xwR2bII6x:\"We don\u2019t believe in hard-selling. Our sales team is happy to offer advice on your HR and payroll needs. If Plane isn\u2019t the best match for you now, we even like to suggest alternatives.\",ZBzt7yy4b:16})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uucucl\",\"data-framer-name\":\"Frame 1709\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:378,intrinsicWidth:651,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9532+48+0+208+0+0+0),pixelHeight:756,pixelWidth:1302,sizes:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png 1302w\"}},n2KyEHTC6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:378,intrinsicWidth:651,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8441+88+0+208+0+0+0),pixelHeight:756,pixelWidth:1302,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) * 0.8, 1px)`,src:\"https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png 1302w\"}},UUxhJbSjU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:378,intrinsicWidth:651,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8537+88+0+208+30.5+68.5),pixelHeight:756,pixelWidth:1302,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) / 2, 1px)`,src:\"https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png 1302w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:378,intrinsicWidth:651,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8872+128+0+208+30.5+68.5),pixelHeight:756,pixelWidth:1302,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 128px) / 2, 1px)`,src:\"https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IP3q4sS7xsEYVhLuNLSGhX7VP7Y.png 1302w\"},className:\"framer-1u5gcg9\",\"data-framer-name\":\"Map\"})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{y:(componentViewport?.y||0)+0+10822},n2KyEHTC6:{y:(componentViewport?.y||0)+0+9827},UUxhJbSjU:{y:(componentViewport?.y||0)+0+9497}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:520,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+9912,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rwltln-container\",nodeId:\"wvTcaDRuq\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{variant:\"uWTrCzLPq\"},n2KyEHTC6:{variant:\"AyCtldyGf\"},UUxhJbSjU:{variant:\"SbVmYRuYE\"}},children:/*#__PURE__*/_jsx(G2Badges,{height:\"100%\",id:\"wvTcaDRuq\",layoutId:\"wvTcaDRuq\",style:{width:\"100%\"},variant:\"WTEllx2Ml\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-up8x0g\",\"data-framer-name\":\"Simple centered/Desktop\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{y:(componentViewport?.y||0)+0+11342+0+0},n2KyEHTC6:{y:(componentViewport?.y||0)+0+10347+0+0},UUxhJbSjU:{y:(componentViewport?.y||0)+0+10017+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:`min(${componentViewport?.width||\"100vw\"}, 1280px)`,y:(componentViewport?.y||0)+0+10432+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cm10qs-container\",nodeId:\"qyvAbmfuh\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{variant:\"JecbTcv1X\"}},children:/*#__PURE__*/_jsx(MainCTA,{height:\"100%\",id:\"qyvAbmfuh\",layoutId:\"qyvAbmfuh\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"wGsYrnKVy\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{y:(componentViewport?.y||0)+0+11702},n2KyEHTC6:{y:(componentViewport?.y||0)+0+10707},UUxhJbSjU:{y:(componentViewport?.y||0)+0+10377}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:505,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+10792,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m6mtzq-container\",nodeId:\"tQQsg19RE\",scopeId:\"xvPshJTYj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FugCUXuQr:{variant:\"gWsWR7hXk\"},n2KyEHTC6:{variant:\"S0oixVucA\"},UUxhJbSjU:{variant:\"zqKKKQkhB\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"tQQsg19RE\",layoutId:\"tQQsg19RE\",style:{width:\"100%\"},variant:\"fg6vjMWmI\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1BIBn.framer-1rfn7eg, .framer-1BIBn .framer-1rfn7eg { display: block; }\",\".framer-1BIBn.framer-1enoezo { align-content: flex-start; align-items: flex-start; background-color: #f9f7f4; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-1BIBn .framer-12980js-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-1BIBn .framer-fzeh3s { 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: 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-ur7o64 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1280px; min-height: 750px; overflow: visible; padding: 0px 64px 40px 64px; position: relative; width: 1px; }\",\".framer-1BIBn .framer-ppxwo3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 45%; }\",\".framer-1BIBn .framer-uyqppc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-1b5962z-container, .framer-1BIBn .framer-zmje4d-container, .framer-1BIBn .framer-1mpezwh-container, .framer-1BIBn .framer-1mfdq57-container, .framer-1BIBn .framer-r5hmj4-container, .framer-1BIBn .framer-1byqx0o-container, .framer-1BIBn .framer-1ousjd8-container, .framer-1BIBn .framer-1eloj6f-container, .framer-1BIBn .framer-odlquo-container, .framer-1BIBn .framer-1y9wj0-container, .framer-1BIBn .framer-1rwltln-container, .framer-1BIBn .framer-1m6mtzq-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-1BIBn .framer-1ohlm5m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1BIBn .framer-1maaes6-container { cursor: pointer; flex: none; height: auto; max-width: 310px; position: relative; width: 310px; }\",\".framer-1BIBn .framer-j34ts2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-1BIBn .framer-15spln5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 60px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-t17v3v-container { flex: none; height: 534px; position: relative; transform-style: preserve-3d; width: 395px; }\",\".framer-1BIBn .framer-7spcb3 { flex: none; height: 383px; overflow: hidden; position: relative; width: 435px; }\",\".framer-1BIBn .framer-1wf8uwa { aspect-ratio: 0.6561461794019934 / 1; backface-visibility: hidden; flex: none; height: var(--framer-aspect-ratio-supported, 367px); left: 38px; overflow: visible; position: absolute; top: 50%; transform: translateY(-50%); transform-style: preserve-3d; width: 241px; }\",\".framer-1BIBn .framer-1ezdt8s { -webkit-filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.08)); aspect-ratio: 1 / 1; backface-visibility: hidden; bottom: 128px; filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.08)); flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 3px; overflow: visible; position: absolute; transform-style: preserve-3d; width: 48px; z-index: 1; }\",\".framer-1BIBn .framer-1kh5mxn { -webkit-filter: drop-shadow(0px 5px 3px rgba(0, 0, 0, 0.06)); backface-visibility: hidden; filter: drop-shadow(0px 5px 3px rgba(0, 0, 0, 0.06)); flex: none; height: 217px; left: 0px; overflow: visible; position: absolute; top: 0px; transform-style: preserve-3d; width: 202px; }\",\".framer-1BIBn .framer-1rdslvm { align-content: center; align-items: center; background-color: #4a0080; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-1syntpl { align-content: center; align-items: center; background-color: #4a007f; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 88px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-ytee5s { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.08); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-vxfg5a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-mkmikw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-1oxx8sw-container { flex: 1 0 0px; height: 100px; position: relative; width: 1px; }\",\".framer-1BIBn .framer-bu34fc { aspect-ratio: 3.0434782608695654 / 1; gap: 0px; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 140px; }\",\".framer-1BIBn .framer-1yu31w3 { flex: none; height: 25px; left: -1px; position: absolute; top: 12px; width: 140px; }\",\".framer-1BIBn .framer-dupj0u { gap: 0px; height: 46px; overflow: visible; position: relative; width: 64px; }\",\".framer-1BIBn .framer-1dyqy96 { aspect-ratio: 2.21875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); left: 53%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 57px; }\",\".framer-1BIBn .framer-1u5sy5e { aspect-ratio: 3.4146341463414633 / 1; gap: 0px; height: var(--framer-aspect-ratio-supported, 41px); overflow: visible; position: relative; width: 140px; }\",\".framer-1BIBn .framer-140qkr { flex: none; height: 28px; left: 0px; position: absolute; top: 7px; width: 138px; }\",\".framer-1BIBn .framer-1rglprs { height: 46px; overflow: hidden; position: relative; width: 96px; }\",\".framer-1BIBn .framer-mydwvx { flex: none; height: 28px; left: calc(48.50746268656719% - 95px / 2); position: absolute; top: calc(50.00000000000002% - 28px / 2); width: 95px; }\",\".framer-1BIBn .framer-4ep9hm { gap: 0px; height: 46px; overflow: visible; position: relative; width: 173px; }\",\".framer-1BIBn .framer-74bmpy { flex: none; height: 28px; left: 0px; position: absolute; top: 9px; width: 173px; }\",\".framer-1BIBn .framer-1bk1bln { aspect-ratio: 2.0434782608695654 / 1; gap: 0px; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 94px; }\",\".framer-1BIBn .framer-fs1qmx { flex: none; height: 30px; left: calc(50.00000000000002% - 83px / 2); position: absolute; top: calc(50.00000000000002% - 30px / 2); width: 83px; }\",\".framer-1BIBn .framer-1t1tkzp { aspect-ratio: 4.478260869565218 / 1; gap: 0px; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 206px; }\",\".framer-1BIBn .framer-1me7vxg { flex: none; height: 25px; left: calc(50.00000000000002% - 200px / 2); position: absolute; top: calc(50.00000000000002% - 25px / 2); width: 200px; }\",\".framer-1BIBn .framer-1m4wsrl { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-zy9vet { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 128px 64px 128px 64px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-bql58h { 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; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-qsv9le-container { flex: none; height: auto; position: relative; width: 80%; }\",\".framer-1BIBn .framer-1wr4snq, .framer-1BIBn .framer-1lq2guo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 64px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-6z21i9-container, .framer-1BIBn .framer-dqrrj-container, .framer-1BIBn .framer-lidm6v-container { flex: none; height: auto; position: relative; width: 500px; }\",\".framer-1BIBn .framer-ceg8wp { aspect-ratio: 1.4414634146341463 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 410px); overflow: visible; position: relative; width: 591px; }\",\".framer-1BIBn .framer-1ntq0ms { aspect-ratio: 1.0076726342710998 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 587px); overflow: visible; position: relative; width: 591px; }\",\".framer-1BIBn .framer-4r9sj4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 64px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-g8w8c9 { aspect-ratio: 1.1255411255411256 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 462px); overflow: visible; position: relative; width: 520px; }\",\".framer-1BIBn .framer-1wwt63d { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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: 100%; }\",\".framer-1BIBn .framer-1b8njn4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 128px 64px 128px 64px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-1rk079d-container { flex: none; height: auto; position: relative; width: 79%; }\",\".framer-1BIBn .framer-ziqc1f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 602px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-1ya1ac7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-1BIBn .framer-1t7sg2b { align-content: center; align-items: center; aspect-ratio: 0.6561461794019934 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 602px); justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; transform-style: preserve-3d; width: 395px; z-index: 1; }\",\".framer-1BIBn .framer-q9c1ag { align-content: center; align-items: center; aspect-ratio: 1.5194444444444444 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 181px); justify-content: center; left: 297px; overflow: visible; padding: 0px; position: absolute; top: 44px; transform-style: preserve-3d; width: 274px; z-index: 1; }\",\".framer-1BIBn .framer-7clrcw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 45%; }\",\".framer-1BIBn .framer-12j85sn, .framer-1BIBn .framer-1atppt7, .framer-1BIBn .framer-kbjc0x, .framer-1BIBn .framer-19ztpqt, .framer-1BIBn .framer-9gkxzq, .framer-1BIBn .framer-hxqota, .framer-1BIBn .framer-99s2f1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-1ftbn7b, .framer-1BIBn .framer-90gcjq, .framer-1BIBn .framer-1tfbun6, .framer-1BIBn .framer-1p9heu4, .framer-1BIBn .framer-9k3w57, .framer-1BIBn .framer-bmxej3, .framer-1BIBn .framer-rf7br3 { align-content: center; align-items: center; background-color: #e9cbff; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 48px; }\",\".framer-1BIBn .framer-1hwx4hk, .framer-1BIBn .framer-16c2zal, .framer-1BIBn .framer-1juf0ow, .framer-1BIBn .framer-18d5w1b, .framer-1BIBn .framer-tciwqc, .framer-1BIBn .framer-1ues4rl, .framer-1BIBn .framer-shne5p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; }\",\".framer-1BIBn .framer-uxks8z-container, .framer-1BIBn .framer-1lr3ya8-container, .framer-1BIBn .framer-1x5ifah-container, .framer-1BIBn .framer-1w9wfry-container, .framer-1BIBn .framer-12pqc8o-container, .framer-1BIBn .framer-8mkqir-container, .framer-1BIBn .framer-15a4agp-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-1BIBn .framer-g6i5im-container, .framer-1BIBn .framer-9ceel2-container, .framer-1BIBn .framer-w8azza-container, .framer-1BIBn .framer-1vm5sqo-container, .framer-1BIBn .framer-pg3gs2-container, .framer-1BIBn .framer-11841vx-container, .framer-1BIBn .framer-wgj2lm-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-1BIBn .framer-o68w3o { align-content: center; align-items: center; background-color: #4a007f; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-1ymcpk7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 128px 64px 128px 64px; position: relative; width: 1px; }\",\".framer-1BIBn .framer-1xpkbc6 { align-content: flex-start; align-items: flex-start; 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-1BIBn .framer-4f8d7h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 30%; }\",\".framer-1BIBn .framer-1mbmams { aspect-ratio: 1.203931203931204 / 1; flex: none; height: 277px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 334px); }\",\".framer-1BIBn .framer-1aedtj9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 60%; }\",\".framer-1BIBn .framer-rcgjgg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-1cuvisk { --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-1BIBn .framer-qfl6ev { 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: 100%; }\",\".framer-1BIBn .framer-rokg82 { background-color: rgba(255, 255, 255, 0.08); flex: none; height: 1px; left: 0px; overflow: hidden; position: absolute; top: 64px; width: 100%; z-index: 1; }\",\".framer-1BIBn .framer-1lavlg9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-1BIBn .framer-ka9uw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 0px; position: absolute; top: 138px; white-space: pre; width: auto; z-index: 1; }\",\".framer-1BIBn .framer-1wq2524-container { flex: none; height: 408px; position: relative; width: 100%; z-index: 1; }\",\".framer-1BIBn .framer-hqymw8, .framer-1BIBn .framer-1up8fsa, .framer-1BIBn .framer-1rbahap, .framer-1BIBn .framer-17k2e09, .framer-1BIBn .framer-1dxaish { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-1BIBn .framer-69ibj2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 214px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-1BIBn .framer-1sns7el { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 128px 0px 128px 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-146394p { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px 64px 0px 64px; position: relative; width: 1px; }\",\".framer-1BIBn .framer-uftmhf { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-l7f6tk-container { flex: none; height: auto; position: relative; width: 76%; }\",\".framer-1BIBn .framer-r4d7l9 { align-content: center; align-items: center; 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-1BIBn .framer-1tqez7j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 45%; }\",\".framer-1BIBn .framer-1uucucl { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 515px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; will-change: var(--framer-will-change-override, transform); }\",\".framer-1BIBn .framer-1u5gcg9 { aspect-ratio: 1.7222222222222223 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 334px); overflow: visible; position: relative; width: 1px; }\",\".framer-1BIBn .framer-up8x0g { align-content: center; align-items: center; background-color: #4a007f; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1BIBn .framer-1cm10qs-container { flex: none; height: auto; max-width: 1280px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-1BIBn[data-border=\"true\"]::after, .framer-1BIBn [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 (max-width: 809px) { .framer-1BIBn.framer-1enoezo { width: 390px; } .framer-1BIBn .framer-12980js-container { order: 0; } .framer-1BIBn .framer-fzeh3s { order: 1; } .framer-1BIBn .framer-ur7o64 { flex-direction: column; min-height: unset; padding: 0px 24px 64px 24px; } .framer-1BIBn .framer-ppxwo3 { gap: 48px; justify-content: center; width: 100%; } .framer-1BIBn .framer-uyqppc { padding: 24px 0px 0px 0px; } .framer-1BIBn .framer-1ohlm5m { padding: 0px 0px 64px 0px; width: 100%; } .framer-1BIBn .framer-1maaes6-container { max-width: unset; width: 100%; } .framer-1BIBn .framer-j34ts2 { flex-wrap: wrap; width: 100%; } .framer-1BIBn .framer-15spln5, .framer-1BIBn .framer-146394p { padding: 0px 24px 0px 24px; } .framer-1BIBn .framer-7spcb3 { overflow: visible; width: 317px; } .framer-1BIBn .framer-1wf8uwa { height: var(--framer-aspect-ratio-supported, 349px); left: 8px; top: -10px; transform: unset; width: 229px; } .framer-1BIBn .framer-1ezdt8s { bottom: unset; height: var(--framer-aspect-ratio-supported, 59px); left: -17px; top: 39px; width: 59px; } .framer-1BIBn .framer-1kh5mxn { bottom: -64px; height: 255px; left: unset; right: -9px; top: unset; width: 237px; } .framer-1BIBn .framer-1rdslvm { order: 2; padding: 0px 24px 0px 24px; } .framer-1BIBn .framer-1syntpl { padding: 64px 0px 0px 0px; } .framer-1BIBn .framer-ytee5s { padding: 0px; } .framer-1BIBn .framer-1m4wsrl { order: 3; padding: 20px 20px 0px 20px; } .framer-1BIBn .framer-zy9vet { padding: 48px 0px 48px 0px; } .framer-1BIBn .framer-qsv9le-container, .framer-1BIBn .framer-1rk079d-container, .framer-1BIBn .framer-1aedtj9, .framer-1BIBn .framer-l7f6tk-container { width: 100%; } .framer-1BIBn .framer-1wr4snq, .framer-1BIBn .framer-1lq2guo { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; flex-direction: column; gap: 24px; justify-content: flex-start; padding: 48px 0px 48px 0px; } .framer-1BIBn .framer-6z21i9-container, .framer-1BIBn .framer-dqrrj-container, .framer-1BIBn .framer-lidm6v-container, .framer-1BIBn .framer-1tqez7j { order: 1; width: 100%; } .framer-1BIBn .framer-ceg8wp { height: var(--framer-aspect-ratio-supported, 243px); order: 0; width: 100%; } .framer-1BIBn .framer-1ntq0ms { height: var(--framer-aspect-ratio-supported, 347px); order: 0; width: 100%; } .framer-1BIBn .framer-4r9sj4 { flex-direction: column; gap: 24px; justify-content: flex-start; padding: 48px 0px 0px 0px; } .framer-1BIBn .framer-g8w8c9 { height: var(--framer-aspect-ratio-supported, 311px); order: 0; width: 100%; } .framer-1BIBn .framer-1mpezwh-container { order: 4; } .framer-1BIBn .framer-1mfdq57-container { order: 5; } .framer-1BIBn .framer-1wwt63d { order: 6; } .framer-1BIBn .framer-1b8njn4, .framer-1BIBn .framer-1ymcpk7 { padding: 48px 24px 48px 24px; } .framer-1BIBn .framer-ziqc1f { flex-direction: column; gap: 58px; height: min-content; justify-content: flex-start; } .framer-1BIBn .framer-1ya1ac7 { height: min-content; min-height: 602px; width: 100%; } .framer-1BIBn .framer-1t7sg2b { height: var(--framer-aspect-ratio-supported, 447px); left: 0px; top: -8px; width: 293px; } .framer-1BIBn .framer-q9c1ag { bottom: 13px; left: 54px; top: unset; } .framer-1BIBn .framer-7clrcw { height: min-content; justify-content: flex-start; width: 100%; } .framer-1BIBn .framer-o68w3o { order: 7; } .framer-1BIBn .framer-1xpkbc6 { flex-direction: column; } .framer-1BIBn .framer-4f8d7h { padding: 0px 0px 40px 0px; width: 100%; } .framer-1BIBn .framer-1mbmams { height: 191px; width: var(--framer-aspect-ratio-supported, 230px); } .framer-1BIBn .framer-1sns7el { order: 8; padding: 48px 0px 48px 0px; } .framer-1BIBn .framer-r4d7l9 { flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-1BIBn .framer-1uucucl { height: min-content; order: 0; width: 100%; } .framer-1BIBn .framer-1u5gcg9 { height: var(--framer-aspect-ratio-supported, 199px); order: 0; } .framer-1BIBn .framer-1rwltln-container { order: 9; } .framer-1BIBn .framer-up8x0g { order: 10; } .framer-1BIBn .framer-1m6mtzq-container { order: 11; }}\",\"@media (min-width: 1024px) and (max-width: 1279px) { .framer-1BIBn.framer-1enoezo { width: 1024px; } .framer-1BIBn .framer-12980js-container { order: 0; } .framer-1BIBn .framer-fzeh3s { order: 1; } .framer-1BIBn .framer-ur7o64 { min-height: unset; padding: 40px 64px 64px 64px; } .framer-1BIBn .framer-ppxwo3 { padding: 0px 40px 0px 0px; width: 50%; } .framer-1BIBn .framer-15spln5 { order: 0; padding: 0px 0px 0px 16px; } .framer-1BIBn .framer-t17v3v-container { height: 535px; } .framer-1BIBn .framer-1rdslvm { order: 2; } .framer-1BIBn .framer-1syntpl { padding: 88px 0px 0px 0px; } .framer-1BIBn .framer-ytee5s { padding: 48px 0px 48px 0px; } .framer-1BIBn .framer-mkmikw { width: 1216px; } .framer-1BIBn .framer-1m4wsrl { order: 3; } .framer-1BIBn .framer-zy9vet { align-content: flex-start; align-items: flex-start; padding: 88px 64px 88px 64px; } .framer-1BIBn .framer-bql58h { width: 80%; } .framer-1BIBn .framer-qsv9le-container { width: 100%; } .framer-1BIBn .framer-1wr4snq, .framer-1BIBn .framer-1lq2guo, .framer-1BIBn .framer-4r9sj4 { gap: 32px; justify-content: flex-start; padding: 40px 0px 40px 0px; } .framer-1BIBn .framer-6z21i9-container { flex: 1 0 0px; order: 0; width: 1px; } .framer-1BIBn .framer-ceg8wp { height: var(--framer-aspect-ratio-supported, 311px); order: 1; width: 50%; } .framer-1BIBn .framer-1ntq0ms { height: var(--framer-aspect-ratio-supported, 445px); width: 50%; } .framer-1BIBn .framer-dqrrj-container, .framer-1BIBn .framer-lidm6v-container { flex: 1 0 0px; width: 1px; } .framer-1BIBn .framer-g8w8c9 { aspect-ratio: 1.1256281407035176 / 1; height: var(--framer-aspect-ratio-supported, 398px); width: 50%; } .framer-1BIBn .framer-1mpezwh-container { order: 4; } .framer-1BIBn .framer-1mfdq57-container { order: 5; } .framer-1BIBn .framer-1wwt63d { order: 6; } .framer-1BIBn .framer-1b8njn4, .framer-1BIBn .framer-1ymcpk7 { padding: 88px 64px 88px 64px; } .framer-1BIBn .framer-ziqc1f, .framer-1BIBn .framer-7clrcw { height: min-content; } .framer-1BIBn .framer-1ya1ac7 { height: 602px; } .framer-1BIBn .framer-1t7sg2b { height: var(--framer-aspect-ratio-supported, 538px); width: 353px; } .framer-1BIBn .framer-q9c1ag { height: var(--framer-aspect-ratio-supported, 136px); width: 207px; } .framer-1BIBn .framer-o68w3o { order: 7; } .framer-1BIBn .framer-1mbmams { height: var(--framer-aspect-ratio-supported, 224px); max-width: 350px; width: 100%; } .framer-1BIBn .framer-1sns7el { order: 8; padding: 88px 0px 88px 0px; } .framer-1BIBn .framer-1u5gcg9 { height: var(--framer-aspect-ratio-supported, 260px); } .framer-1BIBn .framer-1rwltln-container { order: 9; } .framer-1BIBn .framer-up8x0g { order: 10; } .framer-1BIBn .framer-1m6mtzq-container { order: 11; }}\",\"@media (min-width: 810px) and (max-width: 1023px) { .framer-1BIBn.framer-1enoezo { width: 810px; } .framer-1BIBn .framer-12980js-container { order: 0; } .framer-1BIBn .framer-fzeh3s { order: 1; } .framer-1BIBn .framer-ur7o64 { max-width: 1199px; min-height: unset; padding: 40px 64px 64px 64px; } .framer-1BIBn .framer-ppxwo3 { width: 47%; } .framer-1BIBn .framer-15spln5 { padding: 0px; } .framer-1BIBn .framer-7spcb3 { height: 353px; order: 0; } .framer-1BIBn .framer-1wf8uwa { height: var(--framer-aspect-ratio-supported, 345px); left: 37px; top: 50%; width: 226px; } .framer-1BIBn .framer-1ezdt8s { bottom: 132px; height: var(--framer-aspect-ratio-supported, 45px); left: 21px; width: 45px; } .framer-1BIBn .framer-1kh5mxn { height: 203px; left: 199px; top: 41px; width: 189px; } .framer-1BIBn .framer-1rdslvm { order: 2; padding: 0px; } .framer-1BIBn .framer-ytee5s { padding: 24px 0px 24px 0px; } .framer-1BIBn .framer-1m4wsrl { order: 3; } .framer-1BIBn .framer-zy9vet, .framer-1BIBn .framer-1ymcpk7 { padding: 88px 64px 88px 64px; } .framer-1BIBn .framer-qsv9le-container { width: 100%; } .framer-1BIBn .framer-1wr4snq, .framer-1BIBn .framer-4r9sj4 { gap: 32px; justify-content: flex-start; } .framer-1BIBn .framer-6z21i9-container, .framer-1BIBn .framer-dqrrj-container, .framer-1BIBn .framer-lidm6v-container { flex: 1 0 0px; width: 1px; } .framer-1BIBn .framer-ceg8wp { height: var(--framer-aspect-ratio-supported, 237px); width: 50%; } .framer-1BIBn .framer-1lq2guo { gap: 91px; justify-content: flex-start; } .framer-1BIBn .framer-1ntq0ms { height: var(--framer-aspect-ratio-supported, 305px); width: 45%; } .framer-1BIBn .framer-g8w8c9 { height: var(--framer-aspect-ratio-supported, 303px); width: 50%; } .framer-1BIBn .framer-1mpezwh-container { order: 4; } .framer-1BIBn .framer-1mfdq57-container { order: 5; } .framer-1BIBn .framer-1wwt63d { order: 6; } .framer-1BIBn .framer-1b8njn4 { min-height: 1000px; padding: 88px 64px 88px 64px; } .framer-1BIBn .framer-ziqc1f, .framer-1BIBn .framer-7clrcw { height: min-content; } .framer-1BIBn .framer-1ya1ac7 { height: min-content; justify-content: flex-start; min-height: 600px; } .framer-1BIBn .framer-1t7sg2b { height: var(--framer-aspect-ratio-supported, 537px); width: 352px; } .framer-1BIBn .framer-q9c1ag { bottom: -90px; left: 72px; top: unset; } .framer-1BIBn .framer-o68w3o { order: 7; } .framer-1BIBn .framer-1mbmams { height: var(--framer-aspect-ratio-supported, 170px); max-width: 350px; width: 100%; } .framer-1BIBn .framer-1aedtj9 { width: 50%; } .framer-1BIBn .framer-1sns7el { order: 8; padding: 88px 0px 88px 0px; } .framer-1BIBn .framer-r4d7l9 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 48px; justify-content: flex-start; } .framer-1BIBn .framer-1tqez7j { align-content: flex-start; align-items: flex-start; justify-content: flex-start; order: 1; width: 100%; } .framer-1BIBn .framer-1uucucl { align-content: flex-start; align-items: flex-start; height: min-content; justify-content: flex-start; order: 0; width: 80%; } .framer-1BIBn .framer-1u5gcg9 { height: var(--framer-aspect-ratio-supported, 317px); } .framer-1BIBn .framer-1rwltln-container { order: 9; } .framer-1BIBn .framer-up8x0g { order: 10; } .framer-1BIBn .framer-1m6mtzq-container { order: 11; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10678.5\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FugCUXuQr\":{\"layout\":[\"fixed\",\"auto\"]},\"UUxhJbSjU\":{\"layout\":[\"fixed\",\"auto\"]},\"n2KyEHTC6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerxvPshJTYj=withCSS(Component,css,\"framer-1BIBn\");export default FramerxvPshJTYj;FramerxvPshJTYj.displayName=\"Home\";FramerxvPshJTYj.defaultProps={height:10678.5,width:1280};addFonts(FramerxvPshJTYj,[{explicitInter:true,fonts:[{family:\"CircularXX Book\",source:\"custom\",url:\"https://framerusercontent.com/assets/9vMGvswvM7l1spOGCs2pQ6JU8.woff2\"},{family:\"CircularXX Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/NgP6RrcGyAR7PjyyR6OPJCgIrw.woff2\"},{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\"}]},...NavigationFonts,...HeadingAndIntroFonts,...ButtonFonts,...BioCardFonts,...TestimonialsFonts,...TickerFonts,...CardFonts,...SupportYourWholeTeamFonts,...CustomerStoriesFonts,...FramerIconFonts,...G2TestimonialsFonts,...Ticker1Fonts,...G2BadgesFonts,...MainCTAFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxvPshJTYj\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"10678.5\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FugCUXuQr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UUxhJbSjU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n2KyEHTC6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1280\"}},\"__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", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withPreserve3d", "Component", "props", "p", "MotionDivWithPreserve3d", "withPreserve3d", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "click", "flag", "flagStart", "flagStart1", "height", "id", "idleStart", "image", "imageStart", "screenshotStart", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BIs7FFGRv", "RPpA5h59J", "ll2VXj9c9", "cNVbb4YK8", "ytAe9Vdbl", "NywESlmT0", "LrBDhQ8QM", "ILLh9Wssr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap172ucq0", "args", "onAppeartgxibe", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "css", "FramerYZFwFqOix", "withCSS", "YZFwFqOix_default", "addPropertyControls", "ControlType", "addFonts", "CardFonts", "getFonts", "YZFwFqOix_default", "MotionDivWithPreserve3dw78ega", "withCodeBoundaryForOverrides", "motion", "withPreserve3d", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearoqcjh2", "args", "onAppearec01ex", "onAppear14crvvc", "onAppear103lj45", "onAppear1ntf89m", "onAppear1dlvvjp", "onAppear7t5h4c", "onAppear1ezp6bo", "onAppearqh3wgk", "onAppear1m7pr26", "onAppearg72z1x", "onAppearlvckv6", "onAppear1dwo0y3", "onAppear1i2f4xj", "onAppear1uf8iwh", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramereTFvcAHlT", "withCSS", "eTFvcAHlT_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "flag", "height", "id", "image", "link", "name1", "testimonial", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "E_FrKphUN", "cUVZmPnFb", "RkdvdwVj_", "s3IthGIku", "guo_ebKQD", "pWV_tRANo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerjXTtAJtRU", "withCSS", "jXTtAJtRU_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "xsTq_uibW", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapjxd9p8", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "SVG", "css", "FramerrKmtMVlJd", "withCSS", "rKmtMVlJd_default", "addPropertyControls", "ControlType", "addFonts", "HeadingAndIntroFonts", "getFonts", "ZfU8SRnAg_default", "ButtonRight2Fonts", "rKmtMVlJd_default", "ButtonFonts", "C8gGkBsPY_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "fiasu9zo9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "xsTq_uibW1oa9gzl", "args", "xsTq_uibW124jdvs", "xsTq_uibWc7fhxn", "xsTq_uibW2tdxby", "xsTq_uibWafhc2f", "xsTq_uibW1y6yyht", "xsTq_uibW1bv2yd3", "xsTq_uibW1bsggke", "xsTq_uibW3zykl1", "xsTq_uibWf2k3k8", "xsTq_uibWonve8p", "xsTq_uibWyg4bps", "xsTq_uibW1941so6", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "SVG", "RichText2", "css", "FramerKpAblWMdA", "withCSS", "KpAblWMdA_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "fzlJsWEVm_default", "HeadingAndIntroFonts", "ZfU8SRnAg_default", "ButtonFonts", "C8gGkBsPY_default", "BioCardFonts", "eTFvcAHlT_default", "TestimonialsFonts", "QrPFdSb_N_default", "TickerFonts", "Ticker", "CardFonts", "f8Aqaiqcq_default", "SupportYourWholeTeamFonts", "dBaxddP_c_default", "CustomerStoriesFonts", "KpAblWMdA_default", "FramerIconFonts", "FramerIcon", "G2TestimonialsFonts", "jXTtAJtRU_default", "Ticker1Fonts", "G2BadgesFonts", "ncAVb0W_d_default", "MainCTAFonts", "xYGlbluV0_default", "FooterFonts", "QMXRYdw_I_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "addImageAlt", "image", "alt", "HTMLStyle", "value", "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", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "ResolveLinks", "resolvedLinks", "getLoadingLazyAtYPosition", "Image2", "SVG", "RichText2", "x", "css", "FramerxvPshJTYj", "withCSS", "xvPshJTYj_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
